/*
 * SteadySMM
 * Perfect Panel visual layer
 */

:root {
  --steady-canvas: #f3f5f4;
  --steady-surface: #ffffff;
  --steady-surface-soft: #eef2f0;
  --steady-surface-strong: #e3e9e6;
  --steady-ink: #17201c;
  --steady-ink-soft: #4e5d56;
  --steady-muted: #718079;
  --steady-line: #d9e0dc;
  --steady-line-strong: #bcc8c2;
  --steady-primary: #12684c;
  --steady-primary-hover: #0d533d;
  --steady-primary-soft: #dff1e9;
  --steady-dark: #17201c;
  --steady-dark-hover: #29352f;
  --steady-warning: #b86a13;
  --steady-warning-soft: #fff1d8;
  --steady-danger: #b33b3b;
  --steady-danger-soft: #fbe7e5;
  --steady-info: #176d87;
  --steady-info-soft: #e2f2f6;
  --steady-focus: rgba(18, 104, 76, 0.2);
  --steady-shadow: 0 10px 30px rgba(23, 32, 28, 0.06);
  --steady-shadow-raised: 0 14px 34px rgba(23, 32, 28, 0.12);
  --steady-radius: 6px;
  --steady-control-height: 54px;
}

html[data-theme="dark"] {
  --steady-canvas: #111714;
  --steady-surface: #18201c;
  --steady-surface-soft: #202a25;
  --steady-surface-strong: #29352f;
  --steady-ink: #f1f5f3;
  --steady-ink-soft: #c3cdc8;
  --steady-muted: #94a49c;
  --steady-line: #34423b;
  --steady-line-strong: #526159;
  --steady-primary: #55c595;
  --steady-primary-hover: #76d4ad;
  --steady-primary-soft: #193d2f;
  --steady-dark: #0b100e;
  --steady-dark-hover: #000000;
  --steady-warning: #f2b55e;
  --steady-warning-soft: #3b2d18;
  --steady-danger: #ff8a84;
  --steady-danger-soft: #402321;
  --steady-info: #75c7dc;
  --steady-info-soft: #19323a;
  --steady-focus: rgba(85, 197, 149, 0.24);
  --steady-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  --steady-shadow-raised: 0 16px 38px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--steady-canvas);
}

body.steady-body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--steady-canvas);
  color: var(--steady-ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.steady-body a {
  color: var(--steady-primary);
  text-decoration: none;
}

body.steady-body a:hover,
body.steady-body a:focus {
  color: var(--steady-primary-hover);
  text-decoration: none;
}

body.steady-body ::selection {
  background: var(--steady-primary);
  color: #ffffff;
}

body.steady-body h1,
body.steady-body h2,
body.steady-body h3,
body.steady-body h4,
body.steady-body h5,
body.steady-body h6 {
  color: var(--steady-ink);
  font-weight: 700;
  letter-spacing: 0;
}

body.steady-body img {
  max-width: 100%;
}

.steady-content {
  min-height: calc(100vh - 74px);
  padding: 34px 0 58px;
}

.steady-content > section,
.steady-content > article {
  width: 100%;
}

.steady-content .container {
  width: min(100% - 32px, 1220px);
}

.steady-content .container-fluid {
  width: 100%;
  padding-right: 34px;
  padding-left: 34px;
}

.steady-page-header,
.steady-page-heading {
  margin: 0 0 24px;
}

.steady-page-header h1,
.steady-page-heading h1,
.steady-page-title {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 750;
}

.steady-page-heading p,
.steady-page-header p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--steady-muted);
}

.nowrap {
  white-space: nowrap;
}

.rtl-content,
.rtl-form,
.rtl-table,
.rtl-nav {
  direction: rtl;
}

.well {
  margin-bottom: 22px;
  padding: 26px;
  background: var(--steady-surface);
  border: 1px solid var(--steady-line);
  border-radius: var(--steady-radius);
  box-shadow: var(--steady-shadow);
}

.well-float {
  box-shadow: var(--steady-shadow);
}

/* Navigation */

.steady-panel-nav,
.steady-public-nav {
  min-height: 74px;
  margin: 0;
  background: var(--steady-surface);
  border: 0;
  border-bottom: 1px solid var(--steady-line);
  border-radius: 0;
}

.steady-panel-nav {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.steady-panel-nav .steady-nav-inner,
.steady-public-nav .steady-nav-inner {
  min-height: 74px;
  padding-right: 28px;
  padding-left: 28px;
}

.steady-public-nav .steady-nav-inner {
  width: min(100% - 24px, 1220px);
}

.steady-panel-nav .navbar-header,
.steady-public-nav .navbar-header {
  min-height: 74px;
}

.steady-panel-nav .navbar-brand,
.steady-public-nav .navbar-brand {
  display: flex;
  align-items: center;
  height: 74px;
  padding: 0 24px 0 0;
  color: var(--steady-ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.steady-panel-nav .navbar-brand img,
.steady-public-nav .navbar-brand img {
  width: auto;
  max-width: 180px;
  height: 36px;
  object-fit: contain;
}

.steady-brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--steady-ink);
  font-size: 21px;
  font-weight: 800;
}

.steady-brand-wordmark::before {
  width: 4px;
  height: 22px;
  background: var(--steady-primary);
  border-radius: 2px;
  content: "";
}

.steady-panel-nav .navbar-nav > li > a,
.steady-public-nav .navbar-nav > li > a {
  min-height: 74px;
  padding: 26px 13px 20px;
  color: var(--steady-ink-soft);
  border-bottom: 3px solid transparent;
  font-size: 14px;
  font-weight: 650;
  line-height: 25px;
}

.steady-panel-nav .navbar-nav > li > a:hover,
.steady-panel-nav .navbar-nav > li > a:focus,
.steady-public-nav .navbar-nav > li > a:hover,
.steady-public-nav .navbar-nav > li > a:focus {
  color: var(--steady-ink);
  background: transparent;
  border-bottom-color: var(--steady-line-strong);
}

.steady-panel-nav .navbar-nav > .active > a,
.steady-panel-nav .navbar-nav > .active > a:hover,
.steady-panel-nav .navbar-nav > .active > a:focus,
.steady-public-nav .navbar-nav > .active > a,
.steady-public-nav .navbar-nav > .active > a:hover,
.steady-public-nav .navbar-nav > .active > a:focus {
  color: var(--steady-primary);
  background: transparent;
  border-bottom-color: var(--steady-primary);
}

.navbar-icon {
  margin-right: 7px;
}

.steady-panel-nav .badge {
  min-width: 72px;
  padding: 8px 11px;
  color: var(--steady-primary);
  background: var(--steady-surface);
  border: 1px solid var(--steady-primary);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 750;
}

.steady-mobile-balance {
  display: none;
}

html[data-theme="dark"] .steady-panel-nav .badge {
  color: var(--steady-primary);
  background: var(--steady-surface);
}

.steady-panel-nav .dropdown-menu,
.steady-public-nav .dropdown-menu,
.steady-content .dropdown-menu {
  min-width: 210px;
  padding: 7px;
  background: var(--steady-surface);
  border: 1px solid var(--steady-line);
  border-radius: var(--steady-radius);
  box-shadow: var(--steady-shadow-raised);
}

.steady-panel-nav .dropdown-menu > li > a,
.steady-public-nav .dropdown-menu > li > a,
.steady-content .dropdown-menu > li > a {
  padding: 11px 12px;
  overflow: hidden;
  color: var(--steady-ink-soft);
  border-radius: 4px;
  text-overflow: ellipsis;
}

.steady-panel-nav .dropdown-menu > li > a:hover,
.steady-public-nav .dropdown-menu > li > a:hover,
.steady-content .dropdown-menu > li > a:hover,
.steady-content .dropdown-menu > .active > a {
  color: var(--steady-ink);
  background: var(--steady-surface-soft);
}

.navbar-toggle {
  margin-top: 17px;
  margin-right: 0;
  padding: 12px;
  border-color: var(--steady-line) !important;
  border-radius: 5px;
}

.navbar-default .navbar-toggle .icon-bar {
  background: var(--steady-ink);
}

.steady-public-footer {
  min-height: 54px;
  color: var(--steady-muted);
  background: var(--steady-surface);
  border-top: 1px solid var(--steady-line);
  font-size: 12px;
}

.steady-public-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
}

/* Controls */

.form-group {
  margin-bottom: 20px;
}

.control-label,
.form-group > label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--steady-ink);
  font-size: 13px;
  font-weight: 700;
}

.form-control {
  height: var(--steady-control-height);
  padding: 12px 15px;
  color: var(--steady-ink);
  background: var(--steady-surface);
  border: 1px solid var(--steady-line-strong);
  border-radius: var(--steady-radius);
  box-shadow: none;
  font-size: 16px;
  line-height: 1.4;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

textarea.form-control {
  min-height: 132px;
  height: auto;
  resize: vertical;
}

.form-control:hover {
  border-color: var(--steady-muted);
}

.form-control:focus {
  border-color: var(--steady-primary);
  box-shadow: 0 0 0 4px var(--steady-focus);
}

.form-control[readonly],
.form-control[disabled],
fieldset[disabled] .form-control {
  color: var(--steady-ink-soft);
  background: var(--steady-surface-soft);
  border-color: var(--steady-line);
  opacity: 1;
}

select.form-control {
  cursor: pointer;
}

.help-block {
  margin-top: 8px;
  color: var(--steady-muted);
  font-size: 13px;
}

.input-group .form-control {
  z-index: 1;
}

.input-group-btn .btn {
  height: var(--steady-control-height);
  min-width: var(--steady-control-height);
  padding: 0;
}

.btn {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--steady-radius);
  font-size: 14px;
  font-weight: 750;
  line-height: 20px;
  transition: transform 100ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.btn:active,
.btn.active {
  transform: translateY(1px);
  box-shadow: none;
}

.btn-primary,
.btn-primary:focus {
  color: #ffffff;
  background: var(--steady-primary);
  border-color: var(--steady-primary);
  box-shadow: 0 6px 16px rgba(18, 104, 76, 0.16);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary,
.open > .dropdown-toggle.btn-primary:hover {
  color: #ffffff;
  background: var(--steady-primary-hover);
  border-color: var(--steady-primary-hover);
}

html[data-theme="dark"] .btn-primary,
html[data-theme="dark"] .btn-primary:focus {
  color: #102019;
}

.btn-default,
.btn-default:focus {
  color: var(--steady-ink);
  background: var(--steady-surface);
  border-color: var(--steady-line-strong);
}

.btn-default:hover,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: var(--steady-ink);
  background: var(--steady-surface-soft);
  border-color: var(--steady-muted);
}

.btn-link {
  color: var(--steady-primary);
}

.btn-xs {
  min-height: 32px;
  padding: 5px 9px;
  border-radius: 4px;
  font-size: 12px;
}

.steady-primary-button,
.steady-place-order-button,
.steady-pay-button,
.steady-support-submit,
.steady-signin-button,
.steady-reset-password-button,
.steady-set-password-button,
.steady-two-factor-button {
  min-height: 54px;
  padding-right: 24px;
  padding-left: 24px;
}

.steady-field-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.steady-checkbox-label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  line-height: 1.45;
  cursor: pointer;
}

.steady-checkbox-label input,
.steady-notification-table input[type="checkbox"] {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--steady-primary);
}

/* Feedback */

.alert {
  position: relative;
  padding: 15px 44px 15px 16px;
  color: var(--steady-ink);
  background: var(--steady-surface-soft);
  border: 1px solid var(--steady-line);
  border-radius: var(--steady-radius);
}

.alert-success {
  color: var(--steady-primary);
  background: var(--steady-primary-soft);
  border-color: var(--steady-primary);
}

.alert-danger {
  color: var(--steady-danger);
  background: var(--steady-danger-soft);
  border-color: var(--steady-danger);
}

.alert-warning {
  color: var(--steady-warning);
  background: var(--steady-warning-soft);
  border-color: var(--steady-warning);
}

.alert-info {
  color: var(--steady-info);
  background: var(--steady-info-soft);
  border-color: var(--steady-info);
}

.alert .close {
  position: absolute;
  top: 11px;
  right: 13px;
  color: currentColor;
  text-shadow: none;
  opacity: 0.65;
}

#notify-wrapper {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1060;
  width: min(420px, calc(100% - 44px));
  margin: 0;
  box-shadow: var(--steady-shadow-raised);
}

/* Order flow */

.steady-order-container {
  max-width: 1160px;
}

.steady-order-panel {
  padding: 0;
  overflow: visible;
}

.steady-order-header {
  margin: 0;
  padding: 25px 30px;
  background: var(--steady-dark);
  border-radius: var(--steady-radius) var(--steady-radius) 0 0;
}

body.steady-body .steady-order-header h1 {
  margin: 0;
  color: #ffffff;
  font-size: 27px;
}

html[data-theme="dark"] .steady-order-header {
  background: #0b100e;
}

html[data-theme="dark"] body.steady-body .steady-order-header h1 {
  color: #f5f8f6;
}

.steady-order-form {
  padding: 34px 32px 38px;
}

.steady-order-form .form-group {
  margin-bottom: 23px;
}

.steady-dynamic-fields > .form-group:last-child {
  margin-bottom: 23px;
}

.steady-order-form .form-control {
  height: 58px;
}

.steady-order-form textarea.form-control {
  height: auto;
}

.steady-service-search .input-wrapper {
  position: relative;
}

.steady-search-button {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 54px;
  height: 54px;
  color: var(--steady-muted);
  background: transparent;
  border: 0;
}

.steady-search-input .form-control {
  padding-left: 52px;
}

.rtl-form .steady-search-button {
  right: 0;
  left: auto;
}

.rtl-form .steady-search-input .form-control {
  padding-right: 52px;
  padding-left: 15px;
}

.steady-service-description {
  margin: 0;
}

.steady-service-average {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin: -8px 0 23px;
  padding: 10px 13px;
  color: var(--steady-ink-soft);
  background: var(--steady-surface-soft);
  border-left: 3px solid var(--steady-primary);
  border-radius: var(--steady-radius);
  font-size: 13px;
}

.steady-service-average > i {
  color: var(--steady-primary);
}

.steady-service-average > strong {
  margin-left: auto;
  color: var(--steady-ink);
  font-size: 14px;
  text-align: right;
}

.steady-service-average.is-empty > strong {
  color: var(--steady-muted);
  font-size: 13px;
  font-weight: 500;
}

.rtl-form .steady-service-average {
  border-right: 3px solid var(--steady-primary);
  border-left: 0;
}

.rtl-form .steady-service-average > strong {
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.steady-service-description .control-label {
  display: block;
  margin-bottom: 9px;
}

.steady-service-description .panel-body {
  padding: 17px;
  color: var(--steady-ink-soft);
  background: var(--steady-surface-soft);
  border: 1px solid var(--steady-line);
  border-left: 4px solid var(--steady-primary);
  border-radius: var(--steady-radius);
}

.steady-description-copy {
  display: none !important;
}

.steady-platform-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
}

.steady-platform-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  padding: 10px 15px;
  color: var(--steady-ink-soft);
  background: var(--steady-surface);
  border: 1px solid var(--steady-line-strong);
  border-radius: var(--steady-radius);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.steady-platform-tab-icon {
  display: inline-flex;
  flex: 0 0 22px;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  overflow: hidden;
  font-size: 18px;
  line-height: 1;
}

.steady-platform-tab-icon img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.steady-platform-tab-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.steady-platform-tab:hover,
.steady-platform-tab:focus {
  color: var(--steady-ink);
  background: var(--steady-surface-soft);
  border-color: var(--steady-muted);
  outline: 0;
}

.steady-platform-tab.is-active {
  color: #ffffff;
  background: var(--steady-dark);
  border-color: var(--steady-dark);
}

#fields .panel-body,
#fields [class*="description"] {
  color: var(--steady-ink-soft);
}

#fields .panel-body {
  padding: 17px;
  background: var(--steady-surface-soft);
  border: 1px solid var(--steady-line);
  border-left: 4px solid var(--steady-primary);
  border-radius: var(--steady-radius);
}

.steady-quantity-limits {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin-top: 8px;
  color: var(--steady-muted);
  font-size: 12px;
  font-weight: 700;
}

.steady-place-order-button,
.steady-pay-button,
.steady-support-submit {
  width: 100%;
}

.steady-agreement {
  padding: 15px;
  background: var(--steady-surface-soft);
  border: 1px solid var(--steady-line);
  border-radius: var(--steady-radius);
}

.steady-agreement .checkbox {
  margin: 0;
}

.steady-agreement .checkbox label.steady-checkbox-label {
  padding-left: 0;
}

.steady-agreement .steady-checkbox-label input[type="checkbox"] {
  position: static;
  margin: 0;
}

.steady-agreement a {
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.steady-order-success {
  padding: 22px;
  color: var(--steady-ink);
  background: var(--steady-surface);
  border: 1px solid var(--steady-line);
  border-top: 4px solid var(--steady-primary);
  box-shadow: var(--steady-shadow);
}

.steady-order-success .close {
  top: 15px;
  right: 16px;
}

.steady-order-success-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding-right: 34px;
}

.steady-order-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  min-width: 46px;
  height: 46px;
  color: #ffffff;
  background: var(--steady-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--steady-primary-soft);
  animation: steady-success-pop 320ms ease-out both;
}

.steady-order-success-reference {
  display: block;
  margin-bottom: 2px;
  color: var(--steady-muted);
  font-size: 12px;
  font-weight: 750;
}

body.steady-body .steady-order-success h2 {
  margin: 0;
  color: var(--steady-ink);
  font-size: 24px;
  line-height: 1.15;
}

.steady-order-receipt {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 18px 0 0;
  overflow: hidden;
  background: var(--steady-line);
  border: 1px solid var(--steady-line);
  border-radius: var(--steady-radius);
}

.steady-order-receipt > div {
  min-width: 0;
  padding: 14px 15px;
  background: var(--steady-surface);
}

.steady-order-receipt-service,
.steady-order-receipt-link {
  grid-column: 1 / -1;
}

.steady-order-receipt-balance {
  grid-column: 1 / -1;
}

.steady-order-receipt dt {
  color: var(--steady-muted);
  font-size: 12px;
  font-weight: 750;
}

.steady-order-receipt dd {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
  color: var(--steady-ink);
  line-height: 1.45;
}

.steady-order-receipt-service dd {
  font-weight: 700;
}

.steady-order-receipt-quantity dd,
.steady-order-receipt-charge dd,
.steady-order-receipt-balance dd {
  font-size: 17px;
  font-weight: 750;
}

.steady-order-success-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.steady-order-success-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  color: var(--steady-primary);
  border-color: var(--steady-primary);
  font-weight: 750;
}

.steady-order-success-link:hover,
.steady-order-success-link:focus {
  color: #ffffff;
  background: var(--steady-primary);
  border-color: var(--steady-primary);
}

@keyframes steady-success-pop {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }

  70% {
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.steady-order-note,
.steady-page-note {
  color: var(--steady-ink-soft);
}

/* Select enhancements used by Perfect Panel */

.select2-container,
.select2-container--default,
.bootstrap-select {
  width: 100% !important;
}

.select2-container .select2-selection--single,
.select2-container--default .select2-selection--single,
.bootstrap-select > .dropdown-toggle {
  height: var(--steady-control-height);
  padding: 14px 40px 12px 15px;
  color: var(--steady-ink);
  background: var(--steady-surface);
  border: 1px solid var(--steady-line-strong);
  border-radius: var(--steady-radius);
  box-shadow: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-right: 24px;
  overflow: hidden;
  color: var(--steady-ink);
  line-height: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 13px;
  right: 11px;
}

.select2-dropdown {
  z-index: 1060;
  overflow: hidden;
  background: var(--steady-surface);
  border-color: var(--steady-line-strong);
  border-radius: var(--steady-radius);
  box-shadow: var(--steady-shadow-raised);
}

.select2-search--dropdown {
  padding: 10px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  height: 44px;
  color: var(--steady-ink);
  background: var(--steady-surface);
  border: 1px solid var(--steady-line-strong);
  border-radius: 4px;
}

.select2-container--default .select2-results__option {
  padding: 11px 13px;
  overflow-wrap: anywhere;
  color: var(--steady-ink-soft);
  line-height: 1.4;
  white-space: normal;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  color: var(--steady-ink);
  background: var(--steady-primary-soft);
}

.select2-results__options {
  max-height: min(360px, 52vh) !important;
  overscroll-behavior: contain;
}

.select2-container--open {
  z-index: 1060;
}

#order-form .select2-container {
  max-width: 100%;
}

/* Tables and filters */

.steady-table-container {
  max-width: 1600px;
  margin: 0 auto;
}

.steady-table-toolbar,
.steady-history-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 17px;
}

.steady-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.steady-table-search,
.steady-history-search {
  width: min(100%, 360px);
}

.steady-status-tabs,
.steady-status-nav .nav-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
}

.nav-pills > li {
  float: none;
}

.nav-pills > li > a {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--steady-ink-soft);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--steady-radius);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-pills > li > a:hover,
.nav-pills > li > a:focus {
  color: var(--steady-ink);
  background: var(--steady-surface);
  border-color: var(--steady-line);
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #ffffff;
  background: var(--steady-dark);
  border-color: var(--steady-dark);
}

html[data-theme="dark"] .nav-pills > li.active > a {
  color: #132019;
}

.steady-table-panel,
.steady-history-table-panel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
}

.steady-table-scroll,
.steady-history-table-panel .table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.steady-data-table,
.steady-history-table,
.steady-table-panel .table {
  width: 100%;
  min-width: 880px;
  margin: 0;
}

.steady-data-table > thead > tr > th,
.steady-history-table > thead > tr > th,
.steady-table-panel .table > thead > tr > th {
  padding: 14px 15px;
  color: var(--steady-muted);
  background: var(--steady-surface-soft);
  border: 0;
  border-bottom: 1px solid var(--steady-line);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  vertical-align: middle;
}

.steady-data-table > tbody > tr > td,
.steady-history-table > tbody > tr > td,
.steady-table-panel .table > tbody > tr > td {
  padding: 15px;
  color: var(--steady-ink-soft);
  background: var(--steady-surface);
  border-top: 1px solid var(--steady-line);
  vertical-align: middle;
}

.steady-data-table > tbody > tr:hover > td,
.steady-history-table > tbody > tr:hover > td {
  background: var(--steady-surface-soft);
}

.steady-category-row > td {
  color: #ffffff !important;
  background: var(--steady-dark) !important;
  border-color: var(--steady-dark) !important;
  font-weight: 800;
}

.steady-category-image {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  object-fit: contain;
}

.steady-table-link,
.steady-order-link,
.steady-history-link {
  max-width: 340px;
  overflow: hidden;
  overflow-wrap: anywhere;
  text-overflow: ellipsis;
}

.steady-start-count-cell,
.steady-remains-cell {
  color: var(--steady-ink) !important;
  font-weight: 750;
}

.steady-status-cell {
  color: var(--steady-primary) !important;
  font-weight: 750;
}

.steady-ticket-unread td {
  background: var(--steady-primary-soft) !important;
}

.steady-table-actions {
  text-align: right;
}

.order-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  width: auto;
}

.steady-action-state {
  color: var(--steady-muted);
  font-size: 12px;
  font-weight: 700;
}

.steady-favourite-button {
  color: var(--steady-warning);
  background: transparent;
  border: 0;
}

.steady-pagination,
.steady-pagination-nav {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.pagination {
  display: flex;
  gap: 5px;
  margin: 0;
}

.pagination > li > a,
.pagination > li > span {
  min-width: 42px;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--steady-ink-soft);
  background: var(--steady-surface);
  border: 1px solid var(--steady-line);
  border-radius: var(--steady-radius) !important;
  text-align: center;
}

.pagination > .active > a,
.pagination > .active > a:hover,
.pagination > .active > a:focus {
  color: #ffffff;
  background: var(--steady-primary);
  border-color: var(--steady-primary);
}

/* Funds, support and account forms */

.steady-funds-header,
.steady-support-header {
  max-width: 970px;
  margin-right: auto;
  margin-left: auto;
}

.steady-funds-panel,
.steady-support-panel,
.steady-settings-section {
  padding: 28px;
}

.steady-funds-form,
.steady-support-form {
  width: min(100%, 680px);
  margin: 0 auto;
}

.steady-payment-history,
.steady-ticket-history {
  margin-top: 34px;
}

.steady-settings-heading {
  margin: 0 0 20px;
}

.steady-settings-heading h2 {
  margin: 0;
  font-size: 19px;
}

.steady-settings-heading p {
  margin: 7px 0 0;
  color: var(--steady-muted);
}

.steady-api-key-settings {
  border-left: 4px solid var(--steady-primary);
}

.steady-account-modal .modal-content {
  background: var(--steady-surface);
  border: 1px solid var(--steady-line);
  border-radius: var(--steady-radius);
  box-shadow: var(--steady-shadow-raised);
}

.modal-header,
.modal-footer {
  border-color: var(--steady-line);
}

.modal-header .close {
  color: var(--steady-ink);
  text-shadow: none;
  opacity: 0.7;
}

.modal-title {
  font-size: 20px;
}

.modal-body {
  color: var(--steady-ink-soft);
}

.tickets-uploader {
  min-height: 48px;
}

/* Authentication */

.steady-guest .steady-content {
  display: flex;
  align-items: flex-start;
  min-height: calc(100vh - 128px);
  padding-top: 54px;
}

.steady-guest .steady-content > * {
  min-width: 0;
}

.steady-auth-page {
  position: relative;
}

.steady-auth-container {
  max-width: 1080px;
}

.steady-signin-page .steady-auth-container,
.steady-signup-page .steady-auth-container {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(480px, 1.15fr);
  max-width: 1120px;
  padding: 0;
}

.steady-signin-page .steady-auth-container::before,
.steady-signin-page .steady-auth-container::after,
.steady-signup-page .steady-auth-container::before,
.steady-signup-page .steady-auth-container::after {
  display: none;
  content: none;
}

.steady-auth-brand {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 540px;
  padding: 46px;
  overflow: hidden;
  color: #ffffff;
  background: #102019;
  border-radius: var(--steady-radius) 0 0 var(--steady-radius);
  box-shadow: var(--steady-shadow-raised);
}

.steady-auth-brand::before,
.steady-auth-brand::after {
  position: absolute;
  right: 0;
  background: var(--steady-primary);
  content: "";
}

.steady-auth-brand::before {
  top: 0;
  width: 9px;
  height: 42%;
}

.steady-auth-brand::after {
  top: 42%;
  width: 38%;
  height: 9px;
}

.steady-auth-brand-inner {
  position: relative;
  z-index: 1;
}

body.steady-body .steady-auth-brand h2 {
  max-width: 410px;
  margin: 0;
  color: #ffffff;
  font-size: 38px;
  line-height: 1.1;
}

.steady-signin-page .steady-auth-row,
.steady-signup-page .steady-auth-row {
  display: flex;
  width: 100%;
  margin: 0;
}

.steady-signin-page .steady-auth-column,
.steady-signup-page .steady-auth-column {
  display: flex;
  float: none;
  width: 100%;
  max-width: none;
  margin-left: 0;
  padding: 0;
}

.steady-signin-page .steady-auth-panel,
.steady-signup-page .steady-auth-panel {
  width: 100%;
  margin: 0;
  padding: 44px;
  border-top: 0;
  border-radius: 0 var(--steady-radius) var(--steady-radius) 0;
}

.steady-auth-column {
  max-width: 680px;
}

.steady-auth-panel {
  padding: 34px;
  border-top: 5px solid var(--steady-primary);
  box-shadow: var(--steady-shadow-raised);
}

.steady-auth-header {
  margin-bottom: 26px;
}

.steady-auth-header h1 {
  margin: 0;
  font-size: 29px;
}

.steady-auth-description {
  margin: 9px 0 0;
  color: var(--steady-muted);
}

.steady-auth-actions {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.steady-auth-actions > .btn:only-child {
  grid-column: 1 / -1;
}

.steady-auth-actions .btn {
  width: 100%;
}

.steady-google-signin,
.steady-google-signin > div {
  max-width: 100%;
}

.steady-auth-switch {
  margin: 24px 0 0;
  color: var(--steady-muted);
  text-align: center;
}

.forgot-password {
  font-size: 13px;
  font-weight: 650;
}

.steady-auth-note {
  color: var(--steady-ink-soft);
}

.steady-captcha {
  max-width: 100%;
  overflow: hidden;
}

/* Tickets */

.steady-ticket-thread {
  padding: 28px;
}

.steady-ticket-extra-fields > .form-group {
  margin-bottom: 23px;
}

.steady-ticket-extra-fields > .form-group:last-child {
  margin-bottom: 23px;
}

.steady-ticket-extra-fields .control-label {
  display: block;
  margin-bottom: 9px;
}

.steady-ticket-messages {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.steady-ticket-message {
  width: min(86%, 680px);
}

.steady-ticket-message-customer {
  align-self: flex-end;
  margin-left: auto;
}

.steady-ticket-message-support {
  align-self: flex-start;
  margin-right: auto;
}

.steady-ticket-bubble {
  padding: 16px 18px;
  color: var(--steady-ink);
  background: var(--steady-surface-soft);
  border: 1px solid var(--steady-line);
  border-radius: var(--steady-radius);
}

.steady-ticket-message-customer .steady-ticket-bubble {
  background: var(--steady-primary-soft);
  border-color: var(--steady-primary);
}

.steady-ticket-message-text {
  overflow-wrap: anywhere;
  line-height: 1.55;
  white-space: pre-wrap;
}

.steady-page-title {
  overflow-wrap: anywhere;
}

.steady-ticket-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 7px;
  color: var(--steady-muted);
  font-size: 12px;
}

.steady-ticket-files {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.steady-ticket-file {
  overflow-wrap: anywhere;
}

.steady-ticket-reply-form {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--steady-line);
}

.steady-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 700;
}

/* Service and API pages */

.steady-service-description-cell {
  max-width: 480px;
  color: var(--steady-ink-soft);
}

.steady-api-panel {
  padding: 30px;
}

.steady-api-overview .table,
.steady-api-parameters .table {
  margin-bottom: 0;
}

.steady-api-method {
  padding: 30px 0;
  border-top: 1px solid var(--steady-line);
}

.steady-api-method-title {
  margin: 0 0 18px;
  font-size: 21px;
}

.steady-api-type-selector {
  margin-bottom: 16px;
}

.steady-api-example-title {
  margin: 20px 0 9px;
  font-size: 14px;
}

.steady-api-example {
  max-height: 440px;
  padding: 18px;
  overflow: auto;
  color: #d8efe5;
  background: #101713;
  border: 1px solid #2f4138;
  border-radius: var(--steady-radius);
  font-size: 13px;
}

.steady-api-code-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

code {
  color: var(--steady-primary);
  background: var(--steady-primary-soft);
}

/* Affiliates */

.steady-affiliate-link {
  max-width: 460px;
  overflow-wrap: anywhere;
  color: var(--steady-primary) !important;
  font-weight: 700;
}

.steady-affiliate-payout-action {
  text-align: right;
}

.steady-child-panel-action-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.steady-name-server-list {
  margin: 10px 0 0;
  padding-left: 22px;
}

/* Blog and content */

.steady-info-content,
.steady-blog-post,
.steady-blog-article-panel {
  color: var(--steady-ink-soft);
  font-size: 16px;
  line-height: 1.72;
}

.steady-info-content h1,
.steady-blog-post h2,
.steady-blog-article-heading h1 {
  color: var(--steady-ink);
}

.steady-blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.steady-blog-post {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
}

.steady-blog-post-heading h2 {
  margin: 0 0 18px;
  font-size: 23px;
  line-height: 1.25;
}

.steady-blog-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 4px;
}

.steady-blog-post-content {
  flex: 1;
}

.steady-blog-link {
  align-self: flex-start;
  margin-top: 20px;
}

.steady-blog-article-image {
  width: 100%;
  max-height: 520px;
  margin-bottom: 26px;
  object-fit: cover;
  border-radius: 4px;
}

.steady-blog-article-heading h1 {
  margin: 0 0 24px;
  font-size: 34px;
}

.steady-blog-article-actions {
  margin-top: 18px;
}

.steady-terms-content h2 {
  margin: 34px 0 12px;
  padding-top: 22px;
  color: var(--steady-ink);
  border-top: 1px solid var(--steady-line);
  font-size: 19px;
}

.steady-terms-content p {
  margin: 0 0 16px;
}

.steady-legal-updated {
  color: var(--steady-muted);
  font-size: 13px;
}

/* Dark compatibility for Bootstrap elements */

html[data-theme="dark"] body.steady-body,
html[data-theme="dark"] .table,
html[data-theme="dark"] .modal-content,
html[data-theme="dark"] .panel-body {
  color: var(--steady-ink);
}

html[data-theme="dark"] .close {
  color: var(--steady-ink);
}

/* Tablet */

@media (max-width: 991px) {
  .steady-content {
    padding-top: 26px;
  }

  .steady-content .container-fluid {
    padding-right: 22px;
    padding-left: 22px;
  }

  .steady-panel-nav .steady-nav-inner,
  .steady-public-nav .steady-nav-inner {
    padding-right: 18px;
    padding-left: 18px;
  }

  .steady-panel-nav .navbar-header,
  .steady-public-nav .navbar-header {
    position: relative;
    float: none;
    margin-right: 0;
    margin-left: 0;
  }

  .steady-panel-nav .navbar-header {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .steady-panel-nav .navbar-brand {
    float: none;
    order: 1;
    min-width: 0;
  }

  .steady-panel-nav .navbar-left,
  .steady-panel-nav .navbar-right,
  .steady-public-nav .navbar-left,
  .steady-public-nav .navbar-right {
    float: none !important;
  }

  .steady-panel-nav .navbar-toggle,
  .steady-public-nav .navbar-toggle {
    display: block;
  }

  .steady-panel-nav .navbar-toggle {
    float: none;
    order: 3;
    margin-right: 0;
    margin-left: 10px;
  }

  .steady-panel-nav .steady-mobile-balance {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 2;
    flex: 0 0 auto;
    min-height: 34px;
    margin-left: auto;
    padding: 0;
    text-decoration: none;
    z-index: 2;
  }

  .rtl-navbar.steady-panel-nav .navbar-toggle {
    margin-right: 10px;
    margin-left: 0;
  }

  .rtl-navbar.steady-panel-nav .steady-mobile-balance {
    margin-right: auto;
    margin-left: 0;
  }

  .steady-panel-nav .navbar-collapse,
  .steady-public-nav .navbar-collapse {
    padding: 0 0 14px;
    border-top: 1px solid var(--steady-line);
    box-shadow: none;
  }

  .steady-panel-nav .navbar-collapse.collapse,
  .steady-public-nav .navbar-collapse.collapse {
    display: none !important;
  }

  .steady-panel-nav .navbar-collapse.collapse.in,
  .steady-public-nav .navbar-collapse.collapse.in {
    display: block !important;
    overflow-y: auto !important;
  }

  .steady-panel-nav .navbar-nav,
  .steady-public-nav .navbar-nav {
    float: none !important;
    margin: 8px 0 0;
  }

  .steady-panel-nav .navbar-nav > li,
  .steady-public-nav .navbar-nav > li {
    float: none;
  }

  .steady-panel-nav .navbar-nav > li > a,
  .steady-public-nav .navbar-nav > li > a {
    min-height: 48px;
    padding: 12px 10px;
    border: 0;
    border-radius: 4px;
    line-height: 24px;
  }

  .steady-panel-nav .navbar-nav > .active > a,
  .steady-public-nav .navbar-nav > .active > a {
    background: var(--steady-primary-soft);
  }

  .steady-table-toolbar,
  .steady-history-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .steady-table-search,
  .steady-history-search {
    width: 100%;
  }

  .steady-blog-list {
    grid-template-columns: 1fr;
  }

  .steady-signin-page .steady-auth-container,
  .steady-signup-page .steady-auth-container {
    grid-template-columns: minmax(230px, 0.7fr) minmax(430px, 1.3fr);
  }

  .steady-auth-brand {
    min-height: 510px;
    padding: 30px;
  }

  body.steady-body .steady-auth-brand h2 {
    font-size: 30px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  :root {
    --steady-control-height: 54px;
  }

  .steady-content {
    padding: 20px 0 38px;
  }

  .steady-content .container,
  .steady-public-nav .steady-nav-inner,
  .steady-public-footer-inner {
    width: calc(100% - 20px);
  }

  .steady-public-footer-inner {
    gap: 16px;
  }

  .steady-content .container-fluid {
    padding-right: 10px;
    padding-left: 10px;
  }

  .steady-panel-nav .steady-nav-inner,
  .steady-public-nav .steady-nav-inner {
    padding-right: 10px;
    padding-left: 10px;
  }

  .steady-page-header,
  .steady-page-heading {
    margin-bottom: 18px;
  }

  .steady-page-header h1,
  .steady-page-heading h1,
  .steady-page-title {
    font-size: 25px;
  }

  .well {
    margin-bottom: 15px;
    padding: 20px 16px;
  }

  .steady-order-panel {
    padding: 0;
  }

  .steady-order-header {
    padding: 20px 17px;
  }

  body.steady-body .steady-order-header h1 {
    font-size: 24px;
  }

  .steady-order-form {
    padding: 24px 16px 26px;
  }

  .steady-order-form .form-control {
    height: 56px;
  }

  .steady-service-average {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .steady-service-average > strong {
    width: 100%;
    margin-left: 24px;
    text-align: left;
  }

  .rtl-form .steady-service-average > strong {
    margin-right: 24px;
    margin-left: 0;
    text-align: right;
  }

  .steady-order-success {
    padding: 18px 15px 16px;
  }

  .steady-order-success-heading {
    gap: 12px;
    padding-right: 26px;
  }

  .steady-order-success-icon {
    width: 42px;
    min-width: 42px;
    height: 42px;
    box-shadow: 0 0 0 5px var(--steady-primary-soft);
  }

  body.steady-body .steady-order-success h2 {
    font-size: 22px;
  }

  .steady-order-receipt {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 17px;
  }

  .steady-order-receipt > div {
    padding: 12px;
  }

  .steady-order-success-actions,
  .steady-order-success-link {
    width: 100%;
  }

  .steady-auth-panel {
    padding: 26px 18px;
  }

  .steady-signin-page .steady-auth-container,
  .steady-signup-page .steady-auth-container {
    display: block;
    padding: 0;
  }

  .steady-auth-brand {
    align-items: center;
    min-height: 150px;
    padding: 24px 18px;
    border-radius: var(--steady-radius) var(--steady-radius) 0 0;
  }

  .steady-auth-brand::before {
    width: 7px;
    height: 55%;
  }

  .steady-auth-brand::after {
    top: 55%;
    width: 28%;
    height: 7px;
  }

  body.steady-body .steady-auth-brand h2 {
    max-width: 280px;
    font-size: 25px;
  }

  .steady-signin-page .steady-auth-panel,
  .steady-signup-page .steady-auth-panel {
    padding: 26px 18px;
    border-radius: 0 0 var(--steady-radius) var(--steady-radius);
  }

  .steady-guest .steady-content {
    padding-top: 25px;
  }

  .steady-auth-actions {
    grid-template-columns: 1fr;
  }

  .steady-auth-actions > * {
    grid-column: 1;
  }

  .steady-field-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .steady-funds-panel,
  .steady-support-panel,
  .steady-settings-section,
  .steady-ticket-thread,
  .steady-api-panel {
    padding: 20px 16px;
  }

  .steady-funds-form,
  .steady-funds-form .form-group,
  .steady-funds-form #amount-fields,
  .steady-funds-form #amount-fields > *,
  .steady-funds-form .help-block,
  .steady-funds-form [class*="description"],
  .steady-funds-note,
  .steady-funds-note * {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: break-word;
  }

  .steady-funds-form .select2-container {
    width: 100% !important;
    max-width: 100%;
  }

  .steady-funds-form .select2-container .select2-selection--single,
  .steady-funds-form .select2-container--default .select2-selection--single {
    display: flex;
    align-items: center;
    height: auto;
    min-height: 56px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .steady-funds-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    width: 100%;
    min-width: 0;
    overflow: visible;
    line-height: 1.35;
    text-overflow: clip;
    white-space: normal;
    word-break: break-word;
  }

  .steady-funds-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
  }

  .steady-funds-form #amount-fields table,
  .steady-funds-form #amount-fields img,
  .steady-funds-note table,
  .steady-funds-note img {
    max-width: 100% !important;
    height: auto;
  }

  .steady-status-tabs,
  .steady-status-nav .nav-pills {
    margin-right: -10px;
    margin-left: -10px;
    padding: 0 10px 7px;
  }

  .steady-data-table,
  .steady-history-table,
  .steady-table-panel .table:not(.steady-services-table) {
    min-width: 760px;
  }

  .steady-table-panel.well-float,
  .steady-history-table-panel.well-float {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .steady-services-panel {
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .steady-services-panel .steady-table-scroll {
    overflow: visible;
  }

  .steady-services-panel .steady-services-table,
  .steady-table-panel .steady-services-table,
  .steady-data-table.steady-services-table {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0 !important;
    background: transparent;
  }

  .steady-services-table > thead {
    display: none;
  }

  .steady-services-table > tbody {
    display: grid;
    width: 100%;
    min-width: 0;
    gap: 12px;
  }

  .steady-services-table > tbody > tr {
    width: 100%;
    min-width: 0;
  }

  .steady-services-table .steady-category-row {
    display: block;
    margin: 10px 0 0;
  }

  .steady-services-table .steady-category-row:first-child {
    margin-top: 0;
  }

  .steady-services-table .steady-category-row > td {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 14px 15px;
    overflow: hidden;
    border: 1px solid var(--steady-dark);
    border-radius: var(--steady-radius);
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .steady-services-table .steady-category-row strong {
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .steady-services-table .steady-service-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    background: var(--steady-surface);
    border: 1px solid var(--steady-line);
    border-radius: var(--steady-radius);
    box-shadow: var(--steady-shadow);
  }

  .steady-services-table .steady-service-row > td {
    display: flex;
    min-width: 0;
    padding: 12px 14px;
    border: 0;
    border-top: 1px solid var(--steady-line);
  }

  .steady-services-table .steady-service-row > td::before {
    display: block;
    margin-bottom: 4px;
    color: var(--steady-muted);
    content: attr(data-label);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .steady-services-table .steady-service-row > td:not(.steady-favourite-cell) {
    align-items: flex-start;
    flex-direction: column;
  }

  .steady-services-table .steady-service-name-cell {
    display: flex !important;
    grid-column: 1 / -1;
    order: -2;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    color: var(--steady-ink) !important;
    border-top: 0;
    overflow-wrap: anywhere;
    font-size: 14px;
    font-weight: 700;
    text-overflow: clip !important;
    white-space: normal !important;
    word-break: break-word;
  }

  .steady-services-table .steady-service-name-cell > * {
    max-width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
    word-break: break-word;
  }

  .steady-services-table .steady-favourite-cell {
    grid-column: 1 / -1;
    order: -3;
    align-items: center;
    justify-content: flex-end;
    min-height: 42px;
    border-top: 0;
  }

  .steady-services-table .steady-favourite-cell::before {
    margin: 0 auto 0 0;
  }

  .steady-services-table .steady-table-actions {
    grid-column: 1 / -1;
  }

  .steady-services-table .steady-table-actions-empty {
    display: none;
  }

  .steady-services-table .steady-table-actions .btn {
    width: 100%;
    min-height: 46px;
  }

  .steady-ticket-list-panel {
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .steady-ticket-list-panel .steady-table-scroll {
    overflow: visible;
  }

  .steady-ticket-list-panel .steady-ticket-table {
    display: block;
    width: 100%;
    min-width: 0 !important;
    background: transparent;
  }

  .steady-ticket-table > thead {
    display: none;
  }

  .steady-ticket-table > tbody {
    display: grid;
    width: 100%;
    gap: 12px;
  }

  .steady-ticket-table > tbody > tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
    overflow: hidden;
    background: var(--steady-surface);
    border: 1px solid var(--steady-line);
    border-radius: var(--steady-radius);
    box-shadow: var(--steady-shadow);
  }

  .steady-ticket-table > tbody > tr > td {
    display: flex;
    min-width: 0;
    padding: 12px 14px;
    border: 0;
    border-top: 1px solid var(--steady-line);
    flex-direction: column;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .steady-ticket-table > tbody > tr > td::before {
    margin-bottom: 4px;
    color: var(--steady-muted);
    content: attr(data-label);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .steady-ticket-table .steady-ticket-subject-cell {
    grid-column: 1 / -1;
    order: -2;
    border-top: 0;
    font-size: 15px;
    font-weight: 700;
  }

  .steady-ticket-table .steady-ticket-updated-cell {
    grid-column: 1 / -1;
  }

  .steady-payment-history .steady-table-panel {
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .steady-payment-history .steady-table-scroll {
    overflow: visible;
  }

  .steady-payment-history .steady-payment-table {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0 !important;
    background: transparent;
  }

  .steady-payment-table > thead {
    display: none;
  }

  .steady-payment-table > tbody {
    display: grid;
    width: 100%;
    min-width: 0;
    gap: 12px;
  }

  .steady-payment-table > tbody > tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
    overflow: hidden;
    background: var(--steady-surface);
    border: 1px solid var(--steady-line);
    border-radius: var(--steady-radius);
    box-shadow: var(--steady-shadow);
  }

  .steady-payment-table > tbody > tr > td {
    display: flex;
    min-width: 0;
    padding: 12px 14px;
    overflow: visible;
    border: 0;
    border-top: 1px solid var(--steady-line);
    flex-direction: column;
    overflow-wrap: anywhere;
    text-align: left;
    text-overflow: clip;
    white-space: normal;
    word-break: break-word;
  }

  .steady-payment-table > tbody > tr > td::before {
    display: block;
    margin-bottom: 4px;
    color: var(--steady-muted);
    content: attr(data-label);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .steady-payment-table .steady-payment-method-cell {
    grid-column: 1 / -1;
    order: -2;
    border-top: 0;
    font-size: 14px;
    font-weight: 700;
  }

  .steady-payment-table .steady-payment-actions-cell {
    grid-column: 1 / -1;
  }

  .steady-payment-table .steady-payment-actions-cell:empty {
    display: none;
  }

  .steady-payment-table .steady-payment-actions-cell .btn {
    width: 100%;
    min-height: 46px;
  }

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

  .steady-platform-tab {
    padding-right: 10px;
    padding-left: 10px;
    white-space: normal;
  }

  .select2-container--open .select2-dropdown {
    max-width: calc(100vw - 20px) !important;
  }

  .steady-data-table > thead > tr > th,
  .steady-history-table > thead > tr > th,
  .steady-table-panel .table > thead > tr > th,
  .steady-data-table > tbody > tr > td,
  .steady-history-table > tbody > tr > td,
  .steady-table-panel .table > tbody > tr > td {
    padding: 13px 12px;
  }

  .steady-ticket-message {
    width: 94%;
  }

  .steady-ticket-meta {
    flex-direction: column;
    gap: 1px;
  }

  .steady-child-panel-action-alert {
    align-items: stretch;
    flex-direction: column;
  }

  .steady-child-panel-action-alert .btn {
    width: 100%;
  }

  .steady-blog-article-heading h1 {
    font-size: 28px;
  }

  .pagination {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .modal-dialog {
    margin: 10px;
  }

  #notify-wrapper {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
  }
}

@media (max-width: 420px) {
  .steady-panel-nav .navbar-brand {
    max-width: calc(100% - 165px);
  }

  .steady-public-nav .navbar-brand {
    max-width: calc(100% - 62px);
  }

  .steady-panel-nav .navbar-brand img {
    max-width: 120px;
  }

  .steady-public-nav .navbar-brand img {
    max-width: 150px;
  }

  .steady-toolbar-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .steady-toolbar-actions .dropdown,
  .steady-toolbar-actions .btn {
    width: 100%;
  }

  .steady-affiliate-payout-action {
    text-align: left;
  }
}

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