/* Logic Server brand overlay for Twenty-One. Do not edit theme.min.css. */
:root {
  --ls-primary: #19615c;
  --ls-primary-hover: #134a47;
  --ls-primary-light: #2a7871;
  --ls-primary-subtle: #e6f2f1;
  --ls-bg: #f4f7f8;
  --ls-surface: #ffffff;
  --ls-text: #1a2332;
  --ls-muted: #5c6b7a;
  --ls-border: #d5dee3;
  --ls-success: #1b7f4e;
  --ls-warning: #b7791f;
  --ls-danger: #c53030;
  --ls-radius: 16px;
}

.bg-primary {
  background-color: #19615c !important;
}

html,
body,
.primary-bg-color,
button,
input,
select,
textarea {
  font-family: "Vazirmatn FD", "Font Awesome 5 Pro", Vazirmatn, Tahoma, sans-serif;
  color: var(--ls-text);
}

/* Hetzner panel CSS loads later and used to force system-ui. Keep text on Vazirmatn, icons on FA. */
.hc {
  font-family: "Vazirmatn FD", "Font Awesome 5 Pro", Vazirmatn, Tahoma, sans-serif !important;
}

/* Keep Font Awesome glyphs from inheriting Vazirmatn / button font-weight. */
.fa,
.fas,
.far,
.fal,
.fab,
.fad,
.fa-solid,
.fa-regular,
.fa-light,
.fa-brands,
.fa-duotone {
  display: inline-block;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa,
.fas,
.fa-solid,
.fa::before,
.fas::before,
.fa-solid::before {
  font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
}
.far,
.fa-regular,
.far::before,
.fa-regular::before {
  font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free" !important;
  font-weight: 400 !important;
}
.fal,
.fa-light,
.fal::before,
.fa-light::before {
  font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free" !important;
  font-weight: 300 !important;
}
.fab,
.fa-brands,
.fab::before,
.fa-brands::before {
  font-family: "Font Awesome 5 Brands" !important;
  font-weight: 400 !important;
}
.fad,
.fa-duotone,
.fad::before,
.fa-duotone::before,
.fad::after,
.fa-duotone::after {
  font-family: "Font Awesome 5 Duotone" !important;
  font-weight: 900 !important;
}
.btn .fa,
.btn .fas,
.btn .far,
.btn .fal,
.btn .fab,
.btn .fad {
  display: inline-block;
  line-height: 1;
}

body.primary-bg-color,
body {
  background: var(--ls-bg);
  color: var(--ls-text);
}

a {
  color: var(--ls-primary);
}
a:hover {
  color: var(--ls-primary-hover);
}

.btn-primary,
.btn-info,
.btn-success {
  background-color: var(--ls-primary) !important;
  border-color: var(--ls-primary) !important;
  color: #fff !important;
  border-radius: 10px;
  font-weight: 700;
}
.btn-primary:hover,
.btn-info:hover,
.btn-success:hover,
.btn-primary:focus,
.btn-info:focus {
  background-color: var(--ls-primary-hover) !important;
  border-color: var(--ls-primary-hover) !important;
  color: #fff !important;
}

.btn-default,
.btn-outline-primary,
.btn-light {
  border-radius: 10px;
  font-weight: 700;
}
.btn-outline-primary {
  color: var(--ls-primary) !important;
  border-color: var(--ls-primary) !important;
}
.btn-outline-primary:hover {
  background: var(--ls-primary) !important;
  color: #fff !important;
}

.badge-info,
.badge-primary {
  background: var(--ls-primary) !important;
}

.card,
.panel,
.modal-content {
  border: 1px solid var(--ls-border);
  border-radius: var(--ls-radius);
  box-shadow: 0 8px 24px rgba(26, 35, 50, 0.04);
}

.card-header,
.card-footer {
  background: #f7fbfb;
  border-color: var(--ls-border);
}

.form-control,
.custom-select,
select.form-control {
  min-height: 44px;
  border: 1px solid var(--ls-border);
  border-radius: 10px;
}
.form-control:focus,
.custom-select:focus {
  border-color: var(--ls-primary);
  box-shadow: 0 0 0 0.2rem rgba(25, 97, 92, 0.25);
}

/* Header / chrome */
#header.header,
#header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-top: 0;
  border-bottom: 1px solid rgba(213, 222, 227, 0.9);
  box-shadow: 0 8px 24px rgba(26, 35, 50, 0.04);
}
#header .ls-header-main {
  background: transparent;
  display: block;
}
#header .ls-header-main > .container {
  display: block;
  width: 100%;
  max-width: 1200px;
}
#header .ls-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 72px;
  gap: 8px 16px;
}
#header .navbar-brand {
  order: 1;
  padding: 0;
  margin: 0;
  color: var(--ls-primary) !important;
  font-weight: 800;
  line-height: 1;
}
#header .logo-img {
  max-height: 24px;
  width: auto;
  display: block;
}
#header .main-navbar-wrapper,
#header #mainNavbar {
  order: 3;
  flex: 1 1 100%;
  padding: 0 0 12px;
  background: transparent;
  border: 0;
}
#header .ls-header-tools {
  order: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-inline-start: auto;
}
#header .topbar {
  background: #0f3d3a;
  border-bottom: 0;
  min-height: 36px;
}
#header .topbar .container {
  padding-top: 4px;
  padding-bottom: 4px;
}
#header .topbar .btn {
  font-weight: 600;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.88);
  padding: 4px 8px;
}
#header .topbar .active-client .input-group-text {
  color: rgba(255, 255, 255, 0.7);
}
#header .topbar .btn-active-client,
#header .btn-active-client {
  font-weight: 700;
  color: #fff;
}
#header .topbar .active-client .btn {
  color: rgba(255, 255, 255, 0.88);
}
#header .dropdown-menu {
  margin-top: 10px;
  border: 1px solid var(--ls-border);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(26, 35, 50, 0.12);
  padding: 8px;
  min-width: 240px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
}
#header .dropdown-item,
#header .dropdown-menu a {
  border-radius: 10px;
  font-weight: 600;
  color: var(--ls-text);
  padding: 8px 12px;
}
#header .dropdown-menu a:hover,
#header .dropdown-item:hover {
  background: var(--ls-primary-subtle);
  color: var(--ls-primary);
}
#header .ls-header-cart,
#header .cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  background: #fff;
  color: var(--ls-text) !important;
}
#header .ls-header-cart:hover,
#header .cart-btn:hover {
  border-color: var(--ls-primary);
  color: var(--ls-primary) !important;
  background: var(--ls-primary-subtle);
}
#header .cart-btn .badge {
  position: absolute;
  top: -6px;
  left: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--ls-primary) !important;
  font-size: 10px;
  line-height: 18px;
}
#header .ls-header-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  background: #fff;
  color: var(--ls-text);
}
#header .ls-header-menus {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#header #nav > li > a,
#header .ls-header-account > li > a,
#header .main-navbar-wrapper a {
  color: #243140;
  font-weight: 600;
}
#header #nav > li > a {
  display: block;
  padding: 8px 11px;
  border-radius: 10px;
  font-size: 13.5px;
  white-space: nowrap;
}
#header #nav > li > a:hover,
#header .ls-header-account > li > a:hover {
  background: var(--ls-primary-subtle);
  color: var(--ls-primary);
}
#header .ls-header-account > li > a {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  border: 1px solid var(--ls-border);
  background: #fff;
}
@media (min-width: 1200px) {
  #header .ls-header-inner {
    flex-wrap: nowrap;
    min-height: 76px;
    gap: 20px;
  }
  #header .navbar-brand {
    flex: 0 0 auto;
  }
  #header .main-navbar-wrapper,
  #header #mainNavbar {
    order: 2;
    flex: 1 1 auto;
    display: flex !important;
    align-items: center;
    padding: 0;
    min-width: 0;
  }
  #header .ls-header-tools {
    order: 3;
    margin-inline-start: 0;
  }
  #header .ls-header-menus {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
  }
  #header #nav {
    flex: 1 1 auto;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    min-width: 0;
    height: 26px;
    max-height: 26px;
    padding: 0;
    margin: 0;
    overflow: visible;
  }
  #header #nav > li {
    flex: 0 0 auto;
    width: auto;
  }
  #header #nav > li > a {
    padding: 6px 9px;
  }
  #header .ls-header-account {
    flex: 0 0 auto;
    flex-direction: row;
  }
}

.master-breadcrumb {
  background: transparent;
  padding-top: 14px;
  padding-bottom: 0;
}
.breadcrumb {
  background: transparent;
  padding: 0;
  font-size: 0.82rem;
}
.breadcrumb-item a {
  color: var(--ls-primary);
  font-weight: 700;
}

/* Sidebar — keep list-group / data-identifier intact */
.sidebar .card-sidebar,
.sidebar .card {
  border-radius: 16px;
  overflow: hidden;
}
.sidebar .card-header,
.sidebar .card-sidebar .card-header {
  background: #e6f2f1 !important;
  color: #134a47;
}
.sidebar .card-title {
  color: var(--ls-muted);
  font-size: 0.8rem;
  font-weight: 800;
}
.sidebar .list-group-item {
  border-color: #eef2f4;
  font-weight: 700;
}
.sidebar .list-group-item.active,
.sidebar .list-group-item-action.active {
  background: var(--ls-primary-subtle) !important;
  color: var(--ls-primary) !important;
  border-color: var(--ls-primary-subtle) !important;
}
.sidebar .list-group-item-action:hover {
  background: var(--ls-primary-subtle);
  color: var(--ls-primary);
}

/* Footer */
#footer.footer,
#footer {
  background: #0f3330;
  border-top: 0;
  color: rgba(255, 255, 255, 0.82);
  padding: 0 !important;
  margin: 0;
  font-size: 0.92rem;
}
#footer .ls-footer-main {
  padding: 48px 0 36px;
  background:
    radial-gradient(circle at 12% 0%, rgba(42, 120, 113, 0.35), transparent 42%),
    linear-gradient(180deg, #134a47 0%, #0f3330 100%);
}
#footer .ls-footer-grid {
  align-items: flex-start;
}
#footer .ls-footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  color: var(--ls-primary) !important;
  font-weight: 800;
}
#footer .ls-footer-logo .logo-img {
  max-height: 32px;
  width: auto;
  display: block;
}
#footer .ls-footer-tagline {
  max-width: 280px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  line-height: 1.7;
}
#footer .ls-footer-contact {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
#footer .ls-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}
#footer .ls-footer-contact i {
  margin-top: 4px;
  color: #8fd0c8;
  width: 14px;
}
#footer .ls-footer-title {
  display: inline-block;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(143, 208, 200, 0.45);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}
#footer .ls-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .ls-footer-links li {
  margin-bottom: 8px;
}
#footer a,
#footer .nav-link,
#footer .ls-footer-links a,
#footer .ls-footer-contact a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}
#footer a:hover,
#footer .nav-link:hover,
#footer .ls-footer-links a:hover,
#footer .ls-footer-contact a:hover {
  color: #fff;
  text-decoration: none;
}
#footer .ls-footer-social .btn,
#footer .ls-footer-social .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0 0 0 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}
#footer .ls-footer-social .btn:hover,
#footer .ls-footer-social .btn-icon:hover {
  background: var(--ls-primary-light) !important;
}
#footer .ls-footer-bar {
  padding: 16px 0;
  background: #0b2725;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
#footer .ls-footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
}
#footer .copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.68);
}
#footer .ls-footer-bar-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
}
#footer .ls-footer-locale {
  min-height: 36px;
  padding: 4px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  font-weight: 700;
}
#footer .ls-footer-col {
  margin-top: 8px;
}

@media (max-width: 991px) {
  #footer .ls-footer-main {
    padding: 36px 0 24px;
  }
  #footer .ls-footer-col {
    margin-top: 24px;
  }
  #footer .ls-footer-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

section#main-body {
  padding-top: 8px;
  padding-bottom: 48px;
}

/* Auth — do not constrain #registration; that form is full-width */
.ls-auth,
.login-form {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.login-form .card,
.ls-auth .card,
.mw-540 {
  border-radius: 20px;
}
.login-form .h3,
.ls-auth .card-title,
#registration .card-title {
  font-weight: 800;
  color: var(--ls-text);
}
.login-form .btn-primary,
.ls-auth .btn-primary {
  min-height: 44px;
}
#registration .btn-primary {
  min-height: 52px;
}

/* Login */
.ls-login-page {
  max-width: 880px;
  margin: 8px auto 32px;
}
.ls-login-page .tooltip {
  display: none !important;
}
.ls-login-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  overflow: hidden;
  border: 1px solid var(--ls-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(19, 74, 71, 0.1);
}
.ls-login-aside {
  position: relative;
  overflow: hidden;
  padding: 36px 32px;
  color: #fff;
  background:
    radial-gradient(420px 180px at 0% 100%, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(160deg, #134a47 0%, #19615c 52%, #2a7871 100%);
}
.ls-login-aside::after {
  content: "";
  position: absolute;
  left: -48px;
  bottom: -64px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.ls-login-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.ls-login-aside h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff !important;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.35;
}
.ls-login-aside p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}
.ls-login-page .login-form,
.ls-login-form,
.ls-login-aside,
.ls-login-card {
  min-width: 0;
  max-width: 100%;
}
.ls-login-page .login-form,
.ls-login-form {
  margin: 0;
  background: #fff;
}
.ls-login-card {
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.ls-login-card-body {
  padding: 28px 28px 18px;
}
.ls-login-page label,
.ls-login-page .form-control-label {
  font-weight: 700;
  color: var(--ls-text);
}
.ls-login-pw-head {
  margin-bottom: 8px;
}
.ls-login-pw-head a {
  font-weight: 800;
}
.ls-login-page .form-control,
.ls-login-page .input-group-text,
.ls-login-page .btn-reveal-pw {
  height: 48px;
  min-height: 48px;
}
.ls-login-page .form-control {
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  color: var(--ls-text);
  font-size: 14px;
  font-weight: 600;
}
.ls-login-page .input-group {
  width: 100%;
  min-width: 0;
  flex-wrap: nowrap;
}
.ls-login-page .input-group > .form-control {
  min-width: 0;
  width: 100%;
}
.ls-login-page .input-group-merge .form-control {
  border-radius: 12px;
}
.ls-login-page .input-group-merge .form-control:not(:last-child) {
  border-radius: 12px 0 0 12px;
}
.ls-login-page .input-group-prepend .input-group-text {
  border: 1px solid var(--ls-border);
  border-inline-end: 0;
  border-radius: 12px 0 0 12px;
  background: #f7fbfb;
  color: var(--ls-primary);
}
.ls-login-page .input-group-append .btn-reveal-pw {
  border: 1px solid var(--ls-border);
  border-inline-start: 0;
  border-radius: 0 12px 12px 0;
  background: #fff;
  color: var(--ls-primary);
  font-weight: 700;
}
.ls-login-page .form-control:focus {
  border-color: var(--ls-primary);
  box-shadow: 0 0 0 0.2rem rgba(25, 97, 92, 0.25);
}
.ls-login-page .input-group-merge .form-control:focus {
  z-index: 3;
}
.ls-login-captcha {
  min-width: 0;
  max-width: 100%;
  margin: 4px 0 16px;
  padding: 12px;
  background: #f3faf9;
  border: 1px solid var(--ls-border);
  border-radius: 14px;
}
.ls-login-captcha > .text-center,
.ls-login-captcha > .row,
.ls-login-captcha .col-md-8 {
  width: 100%;
  max-width: none;
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
}
.ls-login-captcha p {
  display: none;
}
div#default-captcha-domainchecker {
  padding-bottom: 0 !important;
}
.ls-login-page #default-captcha-domainchecker {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 8px;
  margin: 0;
  padding: 0;
  min-width: 0;
  max-width: 100%;
}
.ls-login-page #default-captcha-domainchecker > .col-6 {
  width: auto;
  max-width: 100%;
  min-width: 0;
  flex: 1 1 0;
  padding: 0;
}
.ls-login-page #default-captcha-domainchecker > .captchaimage {
  flex: 0 0 auto;
  width: auto;
  max-width: 46%;
  padding: 0;
  text-align: center;
}
.ls-login-page .captchaimage img {
  display: block;
  width: 120px;
  max-width: 100%;
  height: auto;
  max-height: 36px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--ls-border);
  background: #fff;
  cursor: pointer;
}
.ls-login-page #default-captcha-domainchecker #inputCaptcha {
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
  height: 48px;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.12em;
  background: #fff;
}
.ls-login-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 16px;
  font-weight: 700;
  color: var(--ls-text);
  cursor: pointer;
}
.ls-login-remember .form-check-input {
  margin: 0;
  position: static;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.ls-login-actions .btn-primary {
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
[dir="rtl"] .ls-login-actions .fa-arrow-right {
  transform: scaleX(-1);
}
.ls-login-footer {
  padding: 14px 28px;
  background: #f7fbfb;
  border-top: 1px solid #eef2f4;
  text-align: center;
  font-weight: 600;
}
.ls-login-footer a {
  font-weight: 800;
  margin-inline-start: 4px;
}
.ls-login-page .input-group-prepend {
  display: none;
}
[dir="rtl"] .ls-login-page .input-group-merge .form-control {
  border-radius: 12px;
}
[dir="rtl"] .ls-login-page .input-group-merge .form-control:not(:last-child) {
  border-radius: 0 12px 12px 0;
}
[dir="rtl"] .ls-login-page .input-group-append .btn-reveal-pw {
  border-radius: 12px 0 0 12px;
  border-inline-start: 0;
  border-right: 0;
}
.ls-header-toggle .ls-burger {
  display: block;
  position: relative;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 1px;
}
.ls-header-toggle .ls-burger::before,
.ls-header-toggle .ls-burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.ls-header-toggle .ls-burger::before {
  top: -6px;
}
.ls-header-toggle .ls-burger::after {
  top: 6px;
}

@media (max-width: 767px) {
  .ls-login-shell {
    grid-template-columns: minmax(0, 1fr);
  }
  .ls-login-aside {
    padding: 22px 22px 18px;
  }
  .ls-login-aside h1 {
    font-size: 24px;
  }
  .ls-login-card-body,
  .ls-login-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.ls-pwreset-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ls-pwreset-actions .btn {
  flex: 1 1 140px;
  min-height: 48px;
  border-radius: 12px;
  font-weight: 800;
}

/* Register */
.ls-register-hero {
  background: linear-gradient(135deg, #e6f2f1 0%, #ffffff 72%);
  border: 1px solid var(--ls-border);
  border-radius: 20px;
  padding: 24px 26px;
  margin: 0 0 24px;
}
.ls-register-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--ls-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.ls-register-hero h1 {
  margin: 0;
  color: var(--ls-primary-hover);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
}
.ls-register-hero p {
  margin: 8px 0 0;
  font-weight: 600;
  color: var(--ls-muted);
}
.ls-register-hero a {
  font-weight: 800;
}
#registration {
  counter-reset: ls-reg;
  padding-bottom: 12px;
}
#registration .card {
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(26, 35, 50, 0.05);
}
#registration .card-body {
  padding: 22px 22px 10px !important;
}
#registration .card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eef2f4;
  font-size: 16px;
}
#registration .card-title::before {
  counter-increment: ls-reg;
  content: counter(ls-reg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--ls-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
#registration .sub-heading {
  height: auto;
  border: 0;
  margin: 0 0 18px;
  text-align: start;
}
#registration .sub-heading span {
  display: block;
  position: static;
  top: auto;
  padding: 0;
  background: transparent;
  color: var(--ls-primary-hover);
  font-size: 16px;
  font-weight: 800;
}
#registration .field,
#registration .form-control,
#registration select.field,
#registration select.form-control {
  width: 100% !important;
  max-width: 100%;
  height: 48px !important;
  min-height: 48px;
  border: 1px solid var(--ls-border) !important;
  border-radius: 12px !important;
  color: var(--ls-text);
  font-size: 14px;
  font-weight: 600;
  background: #fff;
}
#registration .prepend-icon .field,
#registration .prepend-icon .form-control {
  padding-inline-start: 14px;
}
#registration .prepend-icon .field-icon {
  width: 44px;
  height: 48px !important;
  line-height: 48px !important;
  color: var(--ls-primary);
}
#registration .field-icon i {
  color: var(--ls-primary) !important;
}
#registration .field:focus,
#registration .form-control:focus {
  border-color: var(--ls-primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(25, 97, 92, 0.25) !important;
}
#registration .generate-password {
  min-height: 40px;
  border-radius: 10px;
  font-weight: 800;
  color: var(--ls-primary);
  border-color: var(--ls-primary);
}
#registration .password-strength-meter .progress {
  height: 8px;
  border-radius: 999px;
  background: #eef2f4;
}
#registration .password-strength-meter .progress-bar {
  background-color: var(--ls-primary) !important;
}
#registration .ls-register-tos {
  margin: 8px 0 18px;
  padding: 14px 16px;
  background: #f3faf9;
  border: 1px solid var(--ls-border);
  border-radius: 14px;
  text-align: start;
  font-weight: 600;
}
#registration .ls-register-actions .btn,
#registration .ls-register-actions input.btn {
  width: 100%;
  max-width: 420px;
  min-height: 52px;
  border-radius: 12px;
  font-weight: 800;
}
#registration .ls-register-login-foot {
  margin: 12px 0 0;
  font-weight: 700;
}
#registration .ls-register-captcha {
  margin: 4px 0 16px;
  padding: 12px;
  background: #f3faf9;
  border: 1px solid var(--ls-border);
  border-radius: 14px;
}
#registration .ls-register-captcha > .text-center,
#registration .ls-register-captcha > .row,
#registration .ls-register-captcha .col-md-8 {
  width: 100%;
  max-width: none;
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
}
#registration .ls-register-captcha p {
  display: none;
}
#registration #default-captcha-domainchecker {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 10px;
  margin: 0;
  padding-bottom: 0 !important;
}
#registration #default-captcha-domainchecker > .col-6 {
  width: auto;
  max-width: none;
  flex: 1 1 0;
  padding: 0;
}
#registration #default-captcha-domainchecker > .captchaimage {
  flex: 0 0 auto;
  width: auto;
}
#registration .captchaimage img {
  display: block;
  height: 48px;
  width: auto;
  border-radius: 10px;
  border: 1px solid var(--ls-border);
  background: #fff;
  cursor: pointer;
}
#registration #inputCaptcha {
  height: 48px;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.16em;
  background: #fff;
  float: none !important;
}

@media (max-width: 767px) {
  .ls-register-hero h1 {
    font-size: 22px;
  }
}

/* Submit ticket */
.ls-ticket-hero {
  background: linear-gradient(135deg, #e6f2f1 0%, #ffffff 72%);
  border: 1px solid var(--ls-border);
  border-radius: 20px;
  padding: 24px 26px;
  margin: 0 0 24px;
}
.ls-ticket-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--ls-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.ls-ticket-hero h1 {
  margin: 0;
  color: var(--ls-primary-hover);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
}
.ls-ticket-hero p {
  margin: 8px 0 0;
  font-weight: 600;
  color: var(--ls-muted);
}
.ls-ticket-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 14px !important;
}
.ls-ticket-hero-links a + a::before {
  content: "·";
  display: inline-block;
  margin-inline-end: 16px;
  color: var(--ls-border);
  font-weight: 800;
}
.ls-ticket-depts {
  margin-left: -10px;
  margin-right: -10px;
}
.ls-ticket-depts > [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}
.ls-ticket-dept {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 118px;
  height: 100%;
  padding: 20px 18px;
  background: #fff;
  border: 1px solid var(--ls-border);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(26, 35, 50, 0.05);
  color: var(--ls-text) !important;
  text-decoration: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.ls-ticket-dept:hover {
  border-color: var(--ls-primary);
  box-shadow: 0 16px 36px rgba(25, 97, 92, 0.14);
  transform: translateY(-2px);
  color: var(--ls-text) !important;
}
.ls-ticket-dept-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 16px;
  background: var(--ls-primary-subtle);
  color: var(--ls-primary);
  font-size: 20px;
}
.ls-ticket-dept-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  flex: 1;
}
.ls-ticket-dept-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ls-primary-hover);
  line-height: 1.4;
}
.ls-ticket-dept-desc {
  color: var(--ls-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}
.ls-ticket-dept-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: #f3faf9;
  color: var(--ls-primary);
}
.ls-ticket-page {
  counter-reset: ls-ticket;
  padding-bottom: 12px;
}
.ls-ticket-card {
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(26, 35, 50, 0.05);
}
.ls-ticket-card .card-body {
  padding: 22px;
}
.ls-ticket-card .card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eef2f4;
  font-size: 16px;
  font-weight: 800;
  color: var(--ls-text);
}
.ls-ticket-card:not(.ls-ticket-confirm):not(.ls-ticket-kb) .card-title::before {
  counter-increment: ls-ticket;
  content: counter(ls-ticket);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--ls-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.ls-ticket-page label {
  font-weight: 700;
  color: var(--ls-text);
}
.ls-ticket-page .form-control,
.ls-ticket-page select.form-control {
  height: 48px;
  min-height: 48px;
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  color: var(--ls-text);
  font-size: 14px;
  font-weight: 600;
  background: #fff;
}
.ls-ticket-page textarea.form-control,
.ls-ticket-page .markdown-editor {
  height: auto;
  min-height: 220px;
}
.ls-ticket-page .form-control:focus,
.ls-ticket-page select.form-control:focus {
  border-color: var(--ls-primary);
  box-shadow: 0 0 0 0.2rem rgba(25, 97, 92, 0.25);
}
.ls-ticket-page .form-control:disabled,
.ls-ticket-page .form-control.disabled {
  background: #f4f7f8;
  color: var(--ls-muted);
}
.ls-ticket-page .md-editor {
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  overflow: hidden;
}
.ls-ticket-page .md-editor.md-focused,
.ls-ticket-page .md-editor.active {
  border-color: var(--ls-primary);
  box-shadow: 0 0 0 0.2rem rgba(25, 97, 92, 0.18);
}
.ls-ticket-page .custom-file,
.ls-ticket-page .custom-file-label,
.ls-ticket-page .custom-file-input {
  height: 48px;
  border-radius: 12px;
}
.ls-ticket-page .custom-file-label {
  border: 1px solid var(--ls-border);
  font-weight: 600;
  line-height: 34px;
}
.ls-ticket-page .custom-file-label::after {
  height: 46px;
  line-height: 34px;
  background: var(--ls-primary-subtle);
  color: var(--ls-primary);
  font-weight: 800;
  border-radius: 0 12px 12px 0;
}
.ls-ticket-page .attachment-group .btn-default {
  min-height: 48px;
  border-radius: 0 12px 12px 0;
  font-weight: 800;
  color: var(--ls-primary);
  border-color: var(--ls-border);
}
.ls-ticket-filehint {
  margin-top: 8px;
}
.ls-ticket-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 8px 0 0;
}
.ls-ticket-actions .btn-primary {
  width: 100%;
  max-width: 420px;
  min-height: 52px;
  border-radius: 12px;
  font-weight: 800;
}
.ls-ticket-actions .btn-default {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 140px;
  margin-top: 0;
}
.ls-ticket-confirm {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.ls-ticket-confirm .card-title {
  justify-content: center;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 8px;
}
.ls-ticket-confirm-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 4px auto 16px;
  border-radius: 50%;
  background: #e6f6ed;
  color: var(--ls-success);
  font-size: 26px;
}
.ls-ticket-confirm-number a {
  font-size: 28px;
  font-weight: 800;
}
.ls-ticket-confirm-btn {
  min-height: 48px;
  min-width: 200px;
  border-radius: 12px;
  font-weight: 800;
}
.ls-ticket-kb .list-group-item {
  margin-bottom: 8px;
  border: 1px solid var(--ls-border) !important;
  border-radius: 12px !important;
}
.ls-ticket-kb .list-group-item a {
  font-weight: 700;
}
#autoAnswerSuggestions {
  margin-bottom: 18px;
}

@media (max-width: 767px) {
  .ls-ticket-hero h1 {
    font-size: 22px;
  }
  .ls-ticket-dept {
    min-height: 0;
  }
}
[dir="rtl"] .ls-ticket-page .custom-file-label::after,
[dir="rtl"] .ls-ticket-page .attachment-group .btn-default {
  border-radius: 12px 0 0 12px;
}

/* Homepage / dashboard */
.home-domain-search {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--ls-border);
  margin-bottom: 24px;
}
.home-domain-search h2 {
  font-weight: 800;
  color: var(--ls-text);
}
.home-domain-search .btn-primary {
  min-height: 48px;
}
.card-columns.home .card {
  border-radius: 20px;
}
.action-icon-btns a {
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--ls-border);
  color: var(--ls-text) !important;
  font-weight: 700;
}
.action-icon-btns a:hover {
  border-color: var(--ls-primary);
  color: var(--ls-primary) !important;
}
.action-icon-btns .ico-container {
  color: var(--ls-primary);
}

.tiles {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--ls-border);
  background: #fff;
}
.tiles .tile {
  color: var(--ls-text);
}
.tiles .tile .stat {
  color: var(--ls-primary);
  font-weight: 800;
}
.tiles .highlight.bg-color-blue,
.tiles .highlight.bg-color-green,
.tiles .highlight.bg-color-red,
.tiles .highlight.bg-color-gold {
  background: var(--ls-primary) !important;
}

/* Client area dashboard */
.ls-dash-hero {
  background: linear-gradient(135deg, #e6f2f1 0%, #ffffff 72%);
  border: 1px solid var(--ls-border);
  border-radius: 20px;
  padding: 24px 26px;
  margin: 0 0 20px;
}
.ls-dash-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--ls-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.ls-dash-hero h1 {
  margin: 0;
  color: var(--ls-primary-hover);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
}
.ls-dash-hero p {
  margin: 8px 0 0;
  font-weight: 600;
  color: var(--ls-muted);
}
.ls-dash-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 14px !important;
}
.ls-dash-hero-links a {
  font-weight: 800;
}
.ls-dash-hero-links a + a::before {
  content: "·";
  display: inline-block;
  margin-inline-end: 16px;
  color: var(--ls-border);
  font-weight: 800;
}
.ls-dashboard-tiles {
  border: 0 !important;
  background: transparent !important;
  overflow: visible !important;
  border-radius: 0 !important;
}
.ls-dashboard-tiles .row {
  margin: -8px;
}
.ls-dashboard-tiles .row > [class*="col-"] {
  padding: 8px;
}
.ls-dashboard-tiles .tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  min-height: 132px;
  height: 100%;
  padding: 20px 18px 16px;
  background: #fff !important;
  border: 1px solid var(--ls-border) !important;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(26, 35, 50, 0.05);
  color: var(--ls-text) !important;
  text-decoration: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.ls-dashboard-tiles .tile:hover {
  border-color: var(--ls-primary) !important;
  box-shadow: 0 16px 36px rgba(25, 97, 92, 0.14);
  transform: translateY(-2px);
  color: var(--ls-text) !important;
}
.ls-dashboard-tiles .tile i {
  display: none !important;
}
[dir="rtl"] .ls-dashboard-tiles .tile i {
  left: 16px;
  right: auto;
}
[dir="ltr"] .ls-dashboard-tiles .tile i {
  right: 16px;
  left: auto;
}
.ls-dashboard-tiles .tile:hover i {
  color: var(--ls-primary) !important;
  font-size: 18px !important;
}
.ls-dashboard-tiles .tile .stat {
  margin-top: 8px;
  color: var(--ls-primary-hover);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}
.ls-dashboard-tiles .tile .title {
  margin-top: 6px;
  color: var(--ls-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
}
.ls-dashboard-tiles .tile .highlight {
  margin-top: 12px;
  height: 3px;
  border-radius: 999px;
  background: var(--ls-primary) !important;
}
.ls-dashboard .client-home-cards .card {
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(26, 35, 50, 0.05);
}
.ls-dashboard .client-home-cards .card-header {
  padding: 16px 18px 12px;
  border-bottom: 1px solid #eef2f4;
  background: #fff;
}
.ls-dashboard .client-home-cards .card-title {
  color: var(--ls-primary-hover);
  font-size: 15px;
  font-weight: 800;
}
.ls-dashboard .client-home-cards .card-title i {
  color: var(--ls-primary);
}
.ls-dashboard .client-home-cards .card-title .badge {
  background: var(--ls-primary-subtle);
  color: var(--ls-primary);
  font-weight: 800;
}
.ls-dashboard .client-home-cards .card-header .btn {
  background: var(--ls-primary) !important;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 800;
}
.ls-dashboard .client-home-cards .card-body {
  padding: 0;
}
.ls-dashboard .client-home-cards .list-group {
  max-height: 220px;
  border-color: #eef2f4 !important;
}
.ls-dashboard .client-home-cards .list-group-item {
  padding: 10px 16px;
  border-color: #eef2f4 !important;
  font-weight: 600;
}
.ls-dashboard .client-home-cards .list-group-item:hover {
  background: #f3faf9;
  color: var(--ls-primary);
}
.ls-dashboard .client-home-cards .card-footer:empty {
  display: none;
}
.ls-dashboard .client-home-cards .card-footer {
  padding: 12px 16px;
  background: #f7fbfb;
  border-top: 1px solid #eef2f4;
}

@media (max-width: 767px) {
  .ls-dash-hero h1 {
    font-size: 22px;
  }
  .ls-dashboard-tiles .tile {
    min-height: 116px;
  }
  .ls-dashboard-tiles .tile .stat {
    font-size: 26px;
  }
}

/* DataTables / lists */
.table-container,
.dataTables_wrapper {
  background: #fff;
  border: 1px solid var(--ls-border);
  border-radius: 18px;
  padding: 12px 12px 8px;
}
table.table-list,
table.dataTable,
.table {
  color: var(--ls-text);
}
table.table-list thead th,
table.dataTable thead th,
.table thead th {
  color: var(--ls-muted);
  font-size: 0.75rem;
  font-weight: 800;
  border-bottom-color: #eef2f4;
}
.table-list tbody tr:hover,
.dataTable tbody tr:hover {
  background: var(--ls-primary-subtle);
}
.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid var(--ls-border);
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: var(--ls-primary) !important;
  border-color: var(--ls-primary) !important;
  color: #fff !important;
}
.label-success,
.badge-success,
.status-active,
.label.status {
  border-radius: 999px;
}

/* Product details */
.tab-content .nav-tabs .nav-link.active,
.nav-tabs .nav-link.active {
  color: var(--ls-primary);
  border-color: var(--ls-border) var(--ls-border) #fff;
  font-weight: 800;
}
.ls-product-hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
  padding: 24px 26px;
  background: linear-gradient(135deg, #e6f2f1 0%, #ffffff 72%);
  border: 1px solid var(--ls-border);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(26, 35, 50, 0.05);
}
.ls-product-hero-main {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ls-product-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 16px;
  background: var(--ls-primary);
  color: #fff;
  font-size: 20px;
}
.ls-ico {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  overflow: visible;
  vertical-align: -0.15em;
}
.ls-product-hero-icon .ls-ico {
  width: 22px;
  height: 22px;
}
.ls-product-details .nav-link .ls-ico {
  width: 15px;
  height: 15px;
  margin-inline-end: 6px;
  vertical-align: -2px;
}
.ls-product-details .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ls-product-details .btn .ls-ico {
  width: 15px;
  height: 15px;
  margin: 0;
}
.ls-product-kicker {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--ls-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.ls-product-hero h1 {
  margin: 0 0 6px;
  color: var(--ls-primary-hover);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
}
.ls-product-domain {
  margin: 0 0 10px;
  color: var(--ls-muted);
  font-weight: 700;
}
.ls-product-details .product-status {
  display: inline-flex;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 999px;
  background: #eef2f4;
}
.ls-product-details .product-status-text {
  padding: 5px 12px;
  color: var(--ls-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: none;
}
.ls-product-details .product-status-active {
  background: #e6f6ed;
}
.ls-product-details .product-status-active .product-status-text {
  color: var(--ls-success);
}
.ls-product-details .product-status-pending {
  background: #fff6e5;
}
.ls-product-details .product-status-pending .product-status-text {
  color: var(--ls-warning);
}
.ls-product-details .product-status-suspended {
  background: #fde8e8;
}
.ls-product-details .product-status-suspended .product-status-text {
  color: var(--ls-danger);
}
.ls-product-details .product-status-cancelled,
.ls-product-details .product-status-terminated,
.ls-product-details .product-status-fraud {
  background: #eef2f4;
}
.ls-product-details .product-status-cancelled .product-status-text,
.ls-product-details .product-status-terminated .product-status-text,
.ls-product-details .product-status-fraud .product-status-text {
  color: var(--ls-muted);
}
.ls-product-actions {
  margin: 0;
}
.ls-product-actions .btn {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 800;
}
.ls-product-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.ls-product-stat {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--ls-border);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(26, 35, 50, 0.04);
}
.ls-product-stat span {
  display: block;
  margin-bottom: 6px;
  color: var(--ls-muted);
  font-size: 12px;
  font-weight: 800;
}
.ls-product-stat strong {
  display: block;
  color: var(--ls-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}
.ls-product-stat-due {
  background: var(--ls-primary-subtle);
  border-color: #c5d9d6;
}
.ls-product-stat-due strong {
  color: var(--ls-primary-hover);
}
.ls-product-hook {
  margin-bottom: 16px;
}
.ls-product-tabs {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ls-border);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(26, 35, 50, 0.05);
}
.ls-product-details .nav-tabs {
  margin: 0;
  padding: 12px 12px 0;
  border-bottom-color: var(--ls-border);
  background: #f7fbfb;
}
.ls-product-details .nav-tabs .nav-link {
  margin-bottom: -1px;
  padding: 10px 14px;
  border-radius: 12px 12px 0 0;
  color: var(--ls-muted);
  font-weight: 700;
}
.ls-product-details .nav-tabs .nav-link.active {
  background: #fff;
  color: var(--ls-primary-hover);
  border-color: var(--ls-border) var(--ls-border) #fff;
  font-weight: 800;
}
.ls-product-details .product-details-tab-container {
  margin: 0;
  padding: 18px 22px 22px;
  border: 0;
  background: #fff;
}
.ls-product-kv {
  display: grid;
  grid-template-columns: minmax(120px, 34%) 1fr;
  gap: 8px 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eef2f4;
  align-items: start;
}
.ls-product-kv:last-of-type {
  border-bottom: 0;
}
.ls-product-kv span {
  color: var(--ls-muted);
  font-size: 13px;
  font-weight: 800;
}
.ls-product-kv div {
  color: var(--ls-text);
  font-weight: 700;
  line-height: 1.7;
  word-break: break-word;
}
.ls-product-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.ls-product-inline-actions .btn {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--ls-border);
  background: #f7fbfb;
  color: var(--ls-primary-hover);
  font-weight: 800;
}
.ls-product-details .module-client-area {
  margin-top: 16px;
  padding: 16px 0 0;
  border-top: 1px solid #eef2f4;
}
.ls-product-details .module-client-area a,
.ls-product-details .module-client-area .btn,
.module-client-area .btn-link {
  display: inline-block;
  margin: 4px;
  padding: 10px 14px;
  border: 1px solid #e6edf0;
  border-radius: 14px;
  background: #f7fbfb;
  color: var(--ls-primary-hover);
  font-weight: 700;
}
.ls-product-card {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(26, 35, 50, 0.05);
}
.ls-product-card .card-title {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eef2f4;
  color: var(--ls-primary-hover);
  font-size: 18px;
  font-weight: 800;
}
.ls-product-download,
.ls-product-addon {
  margin-bottom: 16px;
  border-radius: 16px;
}
.ls-product-download {
  height: 100%;
  padding: 16px 18px;
  background: #f7fbfb;
  border: 1px solid var(--ls-border);
}
.ls-product-download h4 {
  margin: 0 0 8px;
  color: var(--ls-primary-hover);
  font-size: 16px;
  font-weight: 800;
}
.ls-product-addon .card-header {
  font-weight: 800;
}
.ls-product-details .form-control {
  min-height: 48px;
}
.ls-product-pw-actions .btn-primary {
  min-height: 48px;
  min-width: 180px;
  font-weight: 800;
}
.ls-product-module-overview .card,
#cPanelUsagePanel,
.cpanel-usage-stats,
.ls-product-module-overview .panel,
#cPanelPackagePanel,
#cPanelExtrasPurchasePanel,
#cPanelGetSitejet,
#cPanelQuickShortcutsPanel,
#cPanelQuickEmailPanel,
#cPanelBillingOverviewPanel,
#cPanelWordPress,
#cPanelConfigurableOptionsPanel,
#cPanelMetricStatsPanel,
#cPanelAdditionalInfoPanel {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ls-border) !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 28px rgba(26, 35, 50, 0.05);
}
.ls-cpanel #cPanelPackagePanel,
.ls-product-module-overview #cPanelPackagePanel {
  background: linear-gradient(135deg, #e6f2f1 0%, #ffffff 72%);
}
.ls-cpanel .card-header,
.ls-cpanel .panel-heading,
.ls-product-module-overview .card-header,
.ls-product-module-overview .panel-heading {
  padding: 14px 20px;
  background: #f7fbfb !important;
  border-bottom: 1px solid #eef2f4 !important;
}
.ls-cpanel .card-title,
.ls-cpanel .panel-title,
.ls-product-module-overview .card-title,
.ls-product-module-overview .panel-title {
  color: var(--ls-text);
  font-size: 15px;
  font-weight: 800;
}
.ls-cpanel .card-body,
.ls-cpanel .panel-body,
.ls-product-module-overview .card-body,
.ls-product-module-overview .panel-body {
  padding: 18px 20px 20px;
}
.ls-cpanel .cpanel-package-details em,
.ls-product-module-overview .cpanel-package-details em {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--ls-primary);
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.ls-cpanel .cpanel-package-details h4,
.ls-product-module-overview .cpanel-package-details h4 {
  margin: 8px 0 6px !important;
  color: var(--ls-primary-hover);
  font-size: 24px;
  font-weight: 800;
}
.ls-cpanel .cpanel-package-details a,
.ls-product-module-overview .cpanel-package-details a {
  color: var(--ls-muted);
  font-weight: 700;
}
.ls-cpanel #cPanelPackagePanel .btn,
.ls-product-module-overview #cPanelPackagePanel .btn {
  min-height: 40px;
  margin: 4px;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 800;
}
.ls-cpanel #cPanelPackagePanel .btn-success,
.ls-cpanel #cPanelPackagePanel .btn-primary,
.ls-product-module-overview #cPanelPackagePanel .btn-success,
.ls-product-module-overview #cPanelPackagePanel .btn-primary {
  background: var(--ls-primary) !important;
  border-color: var(--ls-primary) !important;
}
.ls-cpanel .cpanel-usage-stats strong,
.ls-product-module-overview .cpanel-usage-stats strong {
  color: var(--ls-text);
  font-weight: 800;
}
.ls-cpanel .cpanel-feature-row > [class*="col-"],
.ls-product-module-overview .cpanel-feature-row > [class*="col-"] {
  margin-bottom: 12px;
}
.ls-cpanel .cpanel-feature-row a,
.ls-product-module-overview .cpanel-feature-row a {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 112px;
  margin: 0 !important;
  padding: 14px 10px !important;
  background: #f7fbfb !important;
  border: 1px solid var(--ls-border) !important;
  border-radius: 16px !important;
  color: var(--ls-text) !important;
  font-size: 13px;
  font-weight: 800 !important;
  text-decoration: none !important;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.ls-cpanel .cpanel-feature-row a:hover,
.ls-product-module-overview .cpanel-feature-row a:hover {
  border-color: var(--ls-primary) !important;
  box-shadow: 0 12px 28px rgba(25, 97, 92, 0.12);
  transform: translateY(-2px);
  color: var(--ls-primary-hover) !important;
}
.ls-cpanel .cpanel-feature-row img,
.ls-product-module-overview .cpanel-feature-row img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.ls-cpanel #frmCreateEmailAccount .form-control,
.ls-cpanel #wpNewBlogTitle,
.ls-cpanel #wpNewPath,
.ls-cpanel #wpAdminPass,
.ls-cpanel #wordPressInstances,
.ls-product-module-overview #frmCreateEmailAccount .form-control {
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid #d5dee3;
}
.ls-cpanel #frmCreateEmailAccount .btn-primary,
.ls-cpanel #btnInstallWordpress,
.ls-product-module-overview #frmCreateEmailAccount .btn-primary {
  min-height: 48px;
  border-radius: 10px;
  font-weight: 800;
  background: var(--ls-primary) !important;
  border-color: var(--ls-primary) !important;
}
.ls-cpanel #cPanelBillingOverviewPanel .row,
.ls-cpanel #cPanelConfigurableOptionsPanel .row,
.ls-cpanel #cPanelAdditionalInfoPanel .row,
.ls-product-module-overview #cPanelBillingOverviewPanel .row {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #eef2f4;
}
.ls-cpanel #cPanelBillingOverviewPanel .row:last-child,
.ls-cpanel #cPanelConfigurableOptionsPanel .row:last-child,
.ls-cpanel #cPanelAdditionalInfoPanel .row:last-child {
  border-bottom: 0;
}
.ls-cpanel #cPanelBillingOverviewPanel .text-right,
.ls-cpanel #cPanelConfigurableOptionsPanel .text-right,
.ls-cpanel #cPanelAdditionalInfoPanel .text-right,
[dir="rtl"] .ls-cpanel #cPanelBillingOverviewPanel .text-right,
[dir="rtl"] .ls-cpanel #cPanelConfigurableOptionsPanel .text-right,
[dir="rtl"] .ls-cpanel #cPanelAdditionalInfoPanel .text-right {
  text-align: start !important;
  color: var(--ls-muted);
  font-weight: 700;
}
.ls-product-invoice-alert {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 16px;
  font-weight: 600;
}
.ls-product-invoice-alert .float-right {
  float: none !important;
}
.ls-product-invoice-alert .btn {
  background: var(--ls-primary) !important;
  border-color: var(--ls-primary) !important;
  color: #fff !important;
}
@media (max-width: 767px) {
  .ls-product-hero h1 {
    font-size: 22px;
  }
  .ls-product-kv {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Invoice / quote standalone */
.invoice-container {
  background: #fff;
  border: 1px solid var(--ls-border);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(26, 35, 50, 0.05);
  margin-top: 24px;
  margin-bottom: 24px;
}
.invoice-status .unpaid {
  background: #fde8e8;
  color: var(--ls-danger);
  border-radius: 999px;
  padding: 4px 12px;
  font-weight: 800;
}
.invoice-status .paid {
  background: #e6f6ed;
  color: var(--ls-success);
  border-radius: 999px;
  padding: 4px 12px;
  font-weight: 800;
}
.invoice-status .draft,
.invoice-status .cancelled {
  background: #eef2f4;
  color: var(--ls-muted);
  border-radius: 999px;
  padding: 4px 12px;
  font-weight: 800;
}
.invoice-status .refunded {
  background: #e8eef8;
  color: #24568a;
  border-radius: 999px;
  padding: 4px 12px;
  font-weight: 800;
}
.invoice-status .collections {
  background: #fff4d6;
  color: var(--ls-warning);
  border-radius: 999px;
  padding: 4px 12px;
  font-weight: 800;
}
.payment-btn-container input[type="submit"],
.payment-btn-container button,
.payment-btn-container .btn {
  background: var(--ls-primary) !important;
  border-color: var(--ls-primary) !important;
  color: #fff !important;
  min-height: 44px;
  border-radius: 10px;
  font-weight: 800;
}

body.invoice-page {
  background: var(--ls-bg);
  min-height: 100vh;
}
.ls-invoice-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}
.ls-invoice-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.ls-invoice-back {
  font-weight: 800;
  color: var(--ls-primary-hover);
}
html:not([dir="rtl"]) .ls-invoice-back i {
  transform: scaleX(-1);
}
.ls-invoice-toolbar-actions {
  display: flex;
  gap: 8px;
}
.ls-invoice-toolbar-actions .btn {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--ls-border);
  background: #fff;
  color: var(--ls-primary-hover);
  font-weight: 800;
}
.invoice-container.ls-invoice {
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(26, 35, 50, 0.08);
}
.ls-invoice-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 32px;
  background: linear-gradient(135deg, #e6f2f1 0%, #ffffff 72%);
  border-bottom: 1px solid var(--ls-border);
}
.ls-invoice-brand img {
  max-height: 56px;
  max-width: 240px;
}
.ls-invoice-brand h2 {
  margin: 0;
  color: var(--ls-primary-hover);
  font-weight: 800;
}
.ls-invoice-kicker {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--ls-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.ls-invoice-headmeta {
  text-align: end;
}
.ls-invoice .invoice-status span {
  display: inline-block;
}
.ls-invoice-hero h1 {
  margin: 0 0 10px;
  color: var(--ls-primary-hover);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
}
.ls-invoice .invoice-status {
  margin: 0;
  font-size: 14px;
  text-transform: none;
}
.ls-invoice-due {
  margin-top: 8px;
  font-weight: 600;
  color: var(--ls-muted);
}
.ls-invoice-payband {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 32px;
  background: #134a47;
  color: #fff;
}
.ls-invoice-payband-copy span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.8;
}
.ls-invoice-payband-copy strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
}
.ls-invoice-payband-copy small {
  display: block;
  margin-top: 4px;
  opacity: 0.85;
  font-weight: 600;
}
.ls-invoice-payband .payment-btn-container {
  margin: 0;
}
.ls-invoice-payband .payment-btn-container input[type="submit"],
.ls-invoice-payband .payment-btn-container button,
.ls-invoice-payband .payment-btn-container .btn {
  background: #fff !important;
  border-color: #fff !important;
  color: #134a47 !important;
}
.ls-invoice-payband .payment-btn-container img {
  max-height: 48px;
}
.ls-invoice-body {
  padding: 24px 32px 32px;
}
.ls-invoice-parties,
.ls-invoice-meta {
  margin-bottom: 8px;
}
.ls-invoice-card {
  height: 100%;
  margin-bottom: 16px;
  padding: 18px 18px 14px;
  background: #f7fbfb;
  border: 1px solid var(--ls-border);
  border-radius: 16px;
}
.ls-invoice-card h3 {
  margin: 0 0 10px;
  color: var(--ls-primary-hover);
  font-size: 13px;
  font-weight: 800;
}
.ls-invoice-card address {
  margin: 0;
  font-style: normal;
  font-weight: 600;
  line-height: 1.7;
  color: var(--ls-text);
}
.ls-invoice-card-inline span:first-child {
  display: block;
  margin-bottom: 6px;
  color: var(--ls-muted);
  font-size: 13px;
  font-weight: 800;
}
.ls-invoice-card-inline strong {
  font-size: 15px;
}
.ls-invoice .custom-select {
  min-height: 44px;
  width: 100%;
  border-radius: 10px;
  font-weight: 700;
}
.ls-invoice [data-role="paymethod-info"] form {
  width: 100%;
}
.ls-invoice-body > .card,
.ls-invoice-body > .panel {
  margin-bottom: 16px;
}
.ls-invoice-items,
.ls-invoice .transactions-container {
  overflow: hidden;
  border: 1px solid var(--ls-border);
  border-radius: 16px;
  box-shadow: none;
}
.ls-invoice-items .card-header,
.ls-invoice-credit .card-header {
  background: #fff;
  border-bottom: 1px solid #eef2f4;
  padding: 14px 18px;
}
.ls-invoice-items .card-title,
.ls-invoice-section-title {
  color: var(--ls-primary-hover);
  font-size: 16px !important;
  font-weight: 800;
}
.ls-invoice-section-title {
  margin: 0 0 12px;
  padding: 14px 18px 0;
}
.ls-invoice table.table {
  margin-bottom: 0;
  background: #fff;
}
.ls-invoice table thead td {
  background: #f7fbfb;
  font-weight: 800;
  color: var(--ls-muted);
  border-color: #eef2f4;
}
.ls-invoice table td {
  padding: 12px 16px;
  border-color: #eef2f4;
  font-weight: 600;
  vertical-align: middle;
}
.ls-invoice td.total-row {
  background: #f7fbfb;
}
.ls-invoice-grandtotal td,
.ls-invoice-balance td {
  background: var(--ls-primary-subtle) !important;
  color: var(--ls-primary-hover);
  font-size: 15px;
}
.ls-invoice-taxhint {
  margin: 10px 0 18px;
  color: var(--ls-muted);
  font-weight: 600;
}
.ls-invoice .transactions-container {
  margin-top: 18px;
  padding-bottom: 8px;
}
.ls-invoice-credit {
  border-radius: 16px;
  overflow: hidden;
}
.ls-invoice-footlink {
  margin: 18px 0 0;
  font-weight: 800;
}

@media (max-width: 767px) {
  .ls-invoice-hero,
  .ls-invoice-payband,
  .ls-invoice-body {
    padding-left: 18px;
    padding-right: 18px;
  }
  .ls-invoice-hero h1 {
    font-size: 22px;
  }
  .ls-invoice-payband-copy strong {
    font-size: 22px;
  }
}

@media print {
  body.invoice-page {
    background: #fff !important;
  }
  .ls-invoice-page {
    max-width: none;
    padding: 0;
  }
  .invoice-container.ls-invoice {
    box-shadow: none;
    border: 0;
  }
  .ls-invoice-hero {
    background: #fff !important;
  }
  .ls-invoice-payband {
    display: none !important;
  }
}

/* Tickets */
.view-ticket {
  overflow: hidden;
  border-radius: 20px;
}
.ls-ticket-view .ls-ticket-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.ls-ticket-view .ls-ticket-hero-actions .btn {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 800;
}
.ls-ticket-view .ls-ticket-thread {
  counter-reset: none;
}
.ls-ticket-view .ls-ticket-thread .card-body {
  padding: 16px 18px;
}
.ls-ticket-view .ls-ticket-thread .card-body + .card-body {
  padding-top: 0;
}
.ls-ticket-view .ls-ticket-card .card-title::before {
  display: none;
}
.ticket-reply {
  overflow: hidden;
  margin-bottom: 4px;
  border: 1px solid #eef2f4;
  border-radius: 16px;
  background: #fff;
}
.ticket-reply.staff {
  background: var(--ls-primary-subtle);
  border-color: #c5d9d6;
}
.ticket-reply .posted-by {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 16px;
  color: var(--ls-muted);
  font-size: 13px;
  font-weight: 600;
}
.ticket-reply .posted-by-name {
  color: var(--ls-primary-hover);
  font-weight: 800;
}
.ticket-reply .posted-on {
  color: var(--ls-muted);
  font-weight: 700;
}
.ticket-reply .requestor-badge {
  display: none;
}
.ticket-reply .message {
  line-height: 1.7;
}
.ticket-reply .attachments {
  border-top: 1px solid #eef2f4;
  background: #f7fbfb;
}
.ticket-reply .attachment-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.ticket-reply .attachment-list a {
  color: var(--ls-primary);
  font-weight: 700;
}

/* Store / MarketConnect landings */
.landing-page .hero,
.landing-page.ssl .hero,
.landing-page .preview-promo {
  background: linear-gradient(135deg, #134a47 0%, #19615c 52%, #2a7871 100%) !important;
  color: #fff !important;
}
.landing-page .hero h2,
.landing-page .hero h3,
.landing-page .hero p {
  color: #fff !important;
}
.landing-page .btn-primary,
.landing-page .btn-success {
  background: #fff !important;
  color: var(--ls-primary-hover) !important;
  border-color: #fff !important;
}
.landing-page .btn-default {
  border-radius: 10px;
  font-weight: 700;
}

/* Alerts */
.alert-success {
  background: #e6f6ed;
  border-color: var(--ls-success);
  color: var(--ls-success);
}
.alert-danger,
.alert-error {
  background: #fde8e8;
  border-color: var(--ls-danger);
  color: var(--ls-danger);
}
.alert-warning {
  background: #fff6e5;
  border-color: var(--ls-warning);
  color: var(--ls-warning);
}
.alert-info {
  background: var(--ls-primary-subtle);
  border-color: var(--ls-primary);
  color: var(--ls-primary-hover);
}

.modal-header {
  border-bottom-color: var(--ls-border);
}
.modal-footer {
  border-top-color: var(--ls-border);
}

[dir="rtl"] .float-right,
[dir="rtl"] .float-sm-right,
[dir="rtl"] .float-md-right {
  float: left !important;
}
[dir="rtl"] .text-sm-left,
[dir="rtl"] .text-left {
  text-align: right !important;
}
[dir="rtl"] .text-sm-right,
[dir="rtl"] .text-right {
  text-align: left !important;
}
[dir="rtl"] .mr-auto {
  margin-right: 0 !important;
  margin-left: auto !important;
}
[dir="rtl"] .ml-auto {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.label.status,
span.label.status {
  border-radius: 999px;
  font-weight: 800;
  padding: 0.35em 0.75em;
  display: inline-block;
}
.label.status.status-active,
.label.status.status-paid,
.label.status.status-closed,
.label.status.status-complete,
.label.status.status-completed {
  background: #e6f6ed !important;
  color: var(--ls-success) !important;
}
.label.status.status-pending,
.label.status.status-unpaid,
.label.status.status-open,
.label.status.status-customer-reply {
  background: #fff6e5 !important;
  color: var(--ls-warning) !important;
}
.label.status.status-suspended,
.label.status.status-overdue,
.label.status.status-answered {
  background: #fde8e8 !important;
  color: var(--ls-danger) !important;
}
.label.status.status-cancelled,
.label.status.status-terminated,
.label.status.status-fraud,
.label.status.status-refunded,
.label.status.status-collections {
  background: #eef2f4 !important;
  color: var(--ls-muted) !important;
}

.view-filter-btns .list-group-item {
  border-radius: 10px;
  margin-bottom: 6px;
  font-weight: 700;
}
.view-filter-btns .list-group-item.active {
  background: var(--ls-primary-subtle);
  color: var(--ls-primary);
  border-color: var(--ls-primary-subtle);
}

.ls-home h2,
.ls-home .pricing-card-title {
  font-weight: 800;
}
.ls-home .card-columns.home .card-body {
  min-height: 180px;
}

.ls-product-details .nav-tabs {
  border-bottom-color: var(--ls-border);
}
#alertUnpaidInvoice .btn,
#alertOverdueInvoice .btn {
  padding: 10px;
  border-radius: 10px;
  font-weight: 800;
}

body.invoice-page {
  background: var(--ls-bg);
}
.invoice-container {
  background: #fff;
  padding: 28px;
}
.invoice-container table.table {
  background: #fff;
}

#ticketReplyContainer .card,
.markdown-editor {
  border-radius: 16px;
}

.primary-content > .card {
  border-radius: 18px;
}

.landing-page .certificate-options,
.landing-page .feature,
.landing-page .card {
  border-radius: 18px;
}

#order-standard_cart .btn-success,
#order-standard_cart .checkout-btn,
#order-standard_cart button[type="submit"].btn-success {
  background-color: var(--ls-primary) !important;
  border-color: var(--ls-primary) !important;
}

[dir="rtl"] .dropdown-menu-left {
  right: auto;
  left: 0;
}
[dir="rtl"] .dropdown-menu[x-placement] {
  right: auto !important;
}
[dir="rtl"] .input-group-prepend {
  margin-right: 0;
  margin-left: -1px;
}

[dir="rtl"] .icheckbox_square-blue,
[dir="rtl"] .iradio_square-blue,
[dir="rtl"] .icheckbox_square-green {
  margin-right: 0 !important;
  margin-left: 8px !important;
}
[dir="rtl"] .dropdown-toggle::after {
  margin-left: 0;
  margin-right: 0.255em;
}
[dir="rtl"] .mr-1 { margin-right: 0 !important; margin-left: 0.25rem !important; }
[dir="rtl"] .mr-2 { margin-right: 0 !important; margin-left: 0.5rem !important; }
[dir="rtl"] .mr-3 { margin-right: 0 !important; margin-left: 1rem !important; }
[dir="rtl"] .mr-4 { margin-right: 0 !important; margin-left: 1.5rem !important; }
[dir="rtl"] .mr-5 { margin-right: 0 !important; margin-left: 3rem !important; }
[dir="rtl"] .ml-1 { margin-left: 0 !important; margin-right: 0.25rem !important; }
[dir="rtl"] .ml-2 { margin-left: 0 !important; margin-right: 0.5rem !important; }
[dir="rtl"] .ml-3 { margin-left: 0 !important; margin-right: 1rem !important; }
[dir="rtl"] .ml-4 { margin-left: 0 !important; margin-right: 1.5rem !important; }
[dir="rtl"] .ml-5 { margin-left: 0 !important; margin-right: 3rem !important; }
[dir="rtl"] .pr-1 { padding-right: 0 !important; padding-left: 0.25rem !important; }
[dir="rtl"] .pr-2 { padding-right: 0 !important; padding-left: 0.5rem !important; }
[dir="rtl"] .pr-3 { padding-right: 0 !important; padding-left: 1rem !important; }
[dir="rtl"] .pl-1 { padding-left: 0 !important; padding-right: 0.25rem !important; }
[dir="rtl"] .pl-2 { padding-left: 0 !important; padding-right: 0.5rem !important; }
[dir="rtl"] .pl-3 { padding-left: 0 !important; padding-right: 1rem !important; }

@media print {
  #header,
  #footer,
  .master-breadcrumb,
  .d-print-none {
    display: none !important;
  }
}

/* Affiliates */
.ls-aff-hero {
  background: linear-gradient(135deg, #e6f2f1 0%, #ffffff 72%);
  border: 1px solid var(--ls-border);
  border-radius: 20px;
  padding: 24px 26px;
  margin: 0 0 20px;
}
.ls-aff-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--ls-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.ls-aff-hero h1 {
  margin: 0;
  color: var(--ls-primary-hover);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
}
.ls-aff-hero p {
  margin: 8px 0 0;
  font-weight: 600;
  color: var(--ls-muted);
}
.ls-aff-card {
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(26, 35, 50, 0.05);
}
.ls-aff-card .card-body {
  padding: 22px;
}
.ls-aff-card .card-title,
.ls-aff-card .h3 {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eef2f4;
  font-size: 16px;
  font-weight: 800;
  color: var(--ls-text);
}
.ls-aff-benefits {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.ls-aff-benefits li {
  position: relative;
  margin: 0 0 12px;
  padding: 14px 16px 14px 48px;
  background: #f7fbfb;
  border: 1px solid #d5dee3;
  border-radius: 14px;
  font-weight: 600;
  color: var(--ls-text);
}
[dir="rtl"] .ls-aff-benefits li {
  padding: 14px 48px 14px 16px;
}
.ls-aff-benefits li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  position: absolute;
  top: 14px;
  left: 16px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  color: var(--ls-primary);
}
[dir="rtl"] .ls-aff-benefits li::before {
  left: auto;
  right: 16px;
}
.ls-aff-actions {
  margin: 0;
}
.ls-aff-actions .btn,
.ls-aff-actions .btn-success,
.ls-aff-actions .btn-danger {
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  font-weight: 800;
  background: var(--ls-primary) !important;
  border-color: var(--ls-primary) !important;
  color: #fff !important;
}
.ls-aff-actions .btn:hover,
.ls-aff-actions .btn-success:hover,
.ls-aff-actions .btn-danger:hover {
  background: var(--ls-primary-hover) !important;
  border-color: var(--ls-primary-hover) !important;
}
.ls-aff-actions .btn.disabled,
.ls-aff-actions .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.ls-aff-withdraw-hint {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
}
.ls-aff-stats {
  margin-left: -8px;
  margin-right: -8px;
  margin-bottom: 8px;
}
.ls-aff-stats > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}
.ls-aff .affiliate-stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 132px;
  margin: 0 0 16px;
  padding: 20px 18px 16px;
  background: #fff !important;
  border: 1px solid var(--ls-border) !important;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(26, 35, 50, 0.05);
  color: var(--ls-text);
  font-size: 13px;
  font-weight: 800;
  text-align: start;
}
.ls-aff .affiliate-stat i {
  float: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 0 12px;
  padding: 0;
  border-radius: 14px;
  background: var(--ls-primary-subtle);
  color: var(--ls-primary);
  font-size: 18px;
  font-weight: 900;
}
.ls-aff .affiliate-stat span {
  display: block;
  margin-bottom: 4px;
  color: var(--ls-primary-hover);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}
.ls-aff-card .form-control {
  min-height: 48px;
  border: 1px solid #d5dee3;
  border-radius: 10px;
  font-weight: 700;
}
.ls-aff-balance-card .table {
  margin-bottom: 18px;
  background: #fff;
  border: 0;
}
.ls-aff-balance-card .table td {
  padding: 14px 16px;
  border-color: #eef2f4;
  font-weight: 600;
}
.ls-aff-balance-card .table td.text-right,
[dir="rtl"] .ls-aff-balance-card .table td.text-right {
  text-align: start !important;
  color: var(--ls-muted);
  font-weight: 700;
}
.ls-aff-balance-card .table strong {
  color: var(--ls-primary-hover);
  font-weight: 800;
}
.ls-aff-section-title {
  margin: 8px 0 14px;
  color: var(--ls-text);
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 767px) {
  .ls-aff-hero h1 {
    font-size: 22px;
  }
  .ls-aff .affiliate-stat {
    min-height: 116px;
  }
  .ls-aff .affiliate-stat span {
    font-size: 26px;
  }
}

/* Services list */
.ls-services-page .ls-dash-hero {
  margin-bottom: 18px;
}
.ls-services-table {
  overflow: hidden;
}
.ls-services-page .dataTables_wrapper .dataTables_filter {
  margin-bottom: 8px;
}
.ls-services-page .dataTables_wrapper .dataTables_filter input {
  min-width: 220px;
}
.ls-services-page table.table-list tbody td {
  vertical-align: middle;
  padding-top: 16px;
  padding-bottom: 16px;
  border-color: #eef2f4;
}
.ls-services-page table.table-list tbody tr {
  cursor: pointer;
}
.ls-services-page table.table-list tbody tr:hover .ls-svc-name {
  color: var(--ls-primary);
}
.ls-svc-product {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.ls-svc-name {
  color: var(--ls-primary-hover);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}
.ls-svc-domain {
  color: var(--ls-muted) !important;
  font-size: 13px;
  font-weight: 600;
}
.ls-svc-domain:hover {
  color: var(--ls-primary) !important;
}
.ls-svc-amount {
  display: block;
  color: var(--ls-text);
  font-weight: 800;
}
.ls-svc-cycle {
  display: block;
  margin-top: 2px;
  color: var(--ls-muted);
  font-size: 12px;
  font-weight: 700;
}
.ls-svc-date {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ls-primary-subtle);
  color: var(--ls-primary-hover);
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.ls-services-page .label.status {
  min-width: 86px;
  padding: 6px 12px;
  font-weight: 800;
}

@media (max-width: 767px) {
  .ls-services-page .dataTables_wrapper .dataTables_filter input {
    min-width: 0;
    width: 100%;
  }
}

/* Invoices list */
.ls-invoices-page .ls-dash-hero {
  margin-bottom: 18px;
}
.ls-invoices-table {
  overflow: hidden;
}
.ls-invoices-page .dataTables_wrapper .dataTables_filter {
  margin-bottom: 8px;
}
.ls-invoices-page .dataTables_wrapper .dataTables_filter input {
  min-width: 220px;
}
.ls-invoices-page table.table-list tbody td {
  vertical-align: middle;
  padding-top: 16px;
  padding-bottom: 16px;
  border-color: #eef2f4;
}
.ls-invoices-page table.table-list tbody tr {
  cursor: pointer;
}
.ls-invoices-page table.table-list tbody tr:hover .ls-inv-num {
  color: var(--ls-primary);
}
.ls-inv-num {
  color: var(--ls-primary-hover);
  font-size: 15px;
  font-weight: 800;
}
.ls-inv-amount {
  color: var(--ls-text);
  font-weight: 800;
}
.ls-inv-date {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ls-primary-subtle);
  color: var(--ls-primary-hover);
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.ls-invoices-page .label.status {
  min-width: 86px;
  padding: 6px 12px;
  font-weight: 800;
}

@media (max-width: 767px) {
  .ls-invoices-page .dataTables_wrapper .dataTables_filter input {
    min-width: 0;
    width: 100%;
  }
}

/* Tickets list */
.ls-tickets-page .ls-dash-hero {
  margin-bottom: 18px;
}
.ls-tickets-table {
  overflow: hidden;
}
.ls-tickets-page .dataTables_wrapper .dataTables_filter {
  margin-bottom: 8px;
}
.ls-tickets-page .dataTables_wrapper .dataTables_filter input {
  min-width: 220px;
}
.ls-tickets-page table.table-list tbody td {
  vertical-align: middle;
  padding-top: 16px;
  padding-bottom: 16px;
  border-color: #eef2f4;
}
.ls-tickets-page table.table-list tbody tr {
  cursor: pointer;
}
.ls-tkt-dept {
  color: var(--ls-muted);
  font-size: 13px;
  font-weight: 700;
}
.ls-tkt-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  border: 0 !important;
  color: inherit;
  text-decoration: none;
}
.ls-tkt-link .ticket-number {
  color: var(--ls-primary);
  font-size: 12px;
  font-weight: 800;
}
.ls-tkt-link .ticket-subject {
  color: var(--ls-primary-hover);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}
.ls-tkt-link .ticket-subject.unread {
  color: var(--ls-text);
}
.ls-tickets-page table.table-list tbody tr:hover .ticket-subject {
  color: var(--ls-primary);
}
.ls-tkt-date {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ls-primary-subtle);
  color: var(--ls-primary-hover);
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.ls-tickets-page .label.status {
  min-width: 86px;
  padding: 6px 12px;
  font-weight: 800;
}

@media (max-width: 767px) {
  .ls-tickets-page .dataTables_wrapper .dataTables_filter input {
    min-width: 0;
    width: 100%;
  }
}

/* Domains list */
.ls-domains-page .ls-dash-hero {
  margin-bottom: 18px;
}
.ls-dom-bulk .btn {
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 10px;
  border-color: var(--ls-border);
  font-weight: 700;
}
.ls-dom-bulk .btn:hover,
.ls-dom-bulk .btn:focus {
  border-color: var(--ls-primary);
  color: var(--ls-primary);
}
.ls-dom-bulk,
.ls-dom-bulk > .btn-group {
  overflow: visible;
}
.ls-dom-bulk .dropdown-menu {
  min-width: max-content;
  width: max-content;
  max-width: min(92vw, 280px);
  padding: 8px;
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(26, 35, 50, 0.12);
}
.ls-dom-bulk .dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto;
  min-width: 100%;
  white-space: nowrap;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 700;
  color: var(--ls-text);
}
.ls-dom-bulk .dropdown-item:hover,
.ls-dom-bulk .dropdown-item:focus {
  background: var(--ls-primary-subtle);
  color: var(--ls-primary);
}
.ls-domains-table {
  overflow: hidden;
}
.ls-domains-page .dataTables_wrapper .dataTables_filter {
  margin-bottom: 8px;
}
.ls-domains-page .dataTables_wrapper .dataTables_filter input {
  min-width: 220px;
}
.ls-domains-page table.table-list tbody td {
  vertical-align: middle;
  padding-top: 16px;
  padding-bottom: 16px;
  border-color: #eef2f4;
}
.ls-domains-page table.table-list tbody tr {
  cursor: pointer;
}
.ls-dom-product {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.ls-dom-name {
  color: var(--ls-primary-hover) !important;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}
.ls-domains-page table.table-list tbody tr:hover .ls-dom-name {
  color: var(--ls-primary) !important;
}
.ls-dom-renew {
  color: var(--ls-muted);
  font-size: 12px;
  font-weight: 700;
}
.ls-dom-date {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ls-primary-subtle);
  color: var(--ls-primary-hover);
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.ls-domains-page .label.status {
  min-width: 86px;
  padding: 6px 12px;
  font-weight: 800;
}

@media (max-width: 767px) {
  .ls-domains-page .dataTables_wrapper .dataTables_filter input {
    min-width: 0;
    width: 100%;
  }
}

/* Domain details */
.ls-domain-details .ls-product-hero {
  margin-bottom: 18px;
}
.ls-domain-card {
  margin-bottom: 18px;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(26, 35, 50, 0.05);
}
.ls-domain-card .card-title {
  color: var(--ls-primary-hover);
  font-size: 18px;
  font-weight: 800;
}
.ls-domain-details .form-control {
  min-height: 48px;
  border-radius: 12px;
}
.ls-domain-details .btn-primary {
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 800;
}
.ls-domain-actions {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ls-domain-actions li + li {
  margin-top: 8px;
}
.ls-domain-actions a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  color: var(--ls-text);
  font-weight: 700;
}
.ls-domain-actions a:hover {
  border-color: var(--ls-primary);
  color: var(--ls-primary);
  background: var(--ls-primary-subtle);
  text-decoration: none;
}
.ls-domain-addon {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--ls-border);
  border-radius: 16px;
}
.ls-domain-addon-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 16px;
  background: var(--ls-primary-subtle);
  color: var(--ls-primary);
  font-size: 20px;
}
.ls-domain-addon-copy strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ls-primary-hover);
  font-weight: 800;
}
.ls-domain-addon-copy p {
  margin-bottom: 12px;
  color: var(--ls-muted);
}
.ls-product-details .product-status-expired,
.ls-product-details .product-status-cancelled,
.ls-product-details .product-status-grace,
.ls-product-details .product-status-redemption {
  background: #eef2f4;
}
.ls-product-details .product-status-expired .product-status-text,
.ls-product-details .product-status-cancelled .product-status-text,
.ls-product-details .product-status-grace .product-status-text,
.ls-product-details .product-status-redemption .product-status-text {
  color: var(--ls-muted);
}

/* Hosting IP unblock modal */
.ls-ipunblock-modal .modal-dialog {
  max-width: 420px;
}
.ls-ipunblock-modal .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(19, 74, 71, 0.28);
}
.ls-ipunblock-modal-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 14px;
  background: linear-gradient(135deg, #165650 0%, #19615c 100%);
  color: #fff;
}
.ls-ipunblock-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 16px;
}
.ls-ipunblock-modal-titles {
  min-width: 0;
  flex: 1;
}
.ls-ipunblock-modal-titles span {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
}
.ls-ipunblock-modal-titles h2 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}
.ls-ipunblock-modal-head .close {
  margin: 0;
  padding: 0;
  color: #fff;
  opacity: 0.8;
  font-size: 28px;
  font-weight: 400;
  text-shadow: none;
}
.ls-ipunblock-modal-head .close:hover {
  opacity: 1;
}
.ls-ipunblock-modal-body {
  padding: 18px;
}
.ls-ipunblock-modal-body > p {
  margin: 0 0 14px;
  color: var(--ls-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}
.ls-ipunblock-modal-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.ls-ipunblock-modal-meta div {
  padding: 10px 12px;
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  background: #f4f7f8;
}
.ls-ipunblock-modal-meta span {
  display: block;
  margin-bottom: 4px;
  color: var(--ls-muted);
  font-size: 11px;
  font-weight: 700;
}
.ls-ipunblock-modal-meta strong {
  color: var(--ls-primary-hover);
  font-size: 13px;
  font-weight: 800;
}
.ls-ipunblock-modal-label {
  display: block;
  margin-bottom: 6px;
  color: var(--ls-muted);
  font-size: 12px;
  font-weight: 700;
}
.ls-ipunblock-modal-body .form-control {
  min-height: 42px;
  margin-bottom: 6px;
  border-radius: 10px;
  font-weight: 700;
}
.ls-ipunblock-modal-body small {
  display: block;
  margin-bottom: 14px;
  color: var(--ls-muted);
  font-size: 11px;
}
.ls-ipunblock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  padding: 10px 16px;
  border: 0;
  border-radius: 12px;
  background: var(--ls-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.ls-ipunblock-btn:hover,
.ls-ipunblock-btn:focus {
  color: #fff;
  background: var(--ls-primary-hover);
}
.ls-ipunblock-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.ls-ipunblock-btn.is-busy {
  pointer-events: none;
}
.ls-ipunblock-hint {
  margin: 8px 0 0;
  color: var(--ls-muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.ls-ipunblock-status {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}
.ls-ipunblock-status.is-ok {
  background: #e6f6ed;
  color: #1b7f4e;
}
.ls-ipunblock-status.is-bad {
  background: #fde8e8;
  color: #c53030;
}
.ls-domain-ns {
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  background: #f4f7f8;
}
.ls-domain-ns span {
  display: block;
  margin-bottom: 6px;
  color: var(--ls-muted);
  font-size: 11px;
  font-weight: 700;
}
.ls-domain-ns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ls-domain-ns li {
  color: var(--ls-primary-hover);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}
.ls-domain-warn {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff6e5;
  color: #8a5a12;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}
.ls-domain-confirm {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--ls-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  cursor: pointer;
}
.ls-domain-confirm input {
  margin-top: 3px;
}
.sidebar .js-ls-domain-open {
  cursor: pointer;
}
#lsFeaturesPanel .js-ls-ipunblock-open,
.sidebar .js-ls-ipunblock-open {
  cursor: pointer;
}
.ls-hostinfo-modal .modal-dialog {
  max-width: 460px;
}
.ls-hostinfo-row {
  margin: 0 0 12px;
  padding: 12px 14px;
  border: 1px solid var(--ls-border);
  border-radius: 14px;
  background: #f7fbfb;
}
.ls-hostinfo-row > span {
  display: block;
  margin-bottom: 8px;
  color: var(--ls-muted);
  font-size: 12px;
  font-weight: 800;
}
.ls-hostinfo-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.ls-hostinfo-value strong,
.ls-hostinfo-dns strong {
  color: var(--ls-primary-hover);
  font-size: 15px;
  font-weight: 800;
  word-break: break-all;
}
.ls-hostinfo-row small {
  display: block;
  margin: 8px 0 0 !important;
  color: var(--ls-muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.7;
}
.ls-hostinfo-dns {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ls-hostinfo-dns li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  border-top: 1px solid #e6eef0;
}
.ls-hostinfo-dns li:first-child {
  padding-top: 0;
  border-top: 0;
}
.ls-hostinfo-copy {
  flex: 0 0 auto;
  min-width: 52px;
  height: 30px;
  padding: 0 10px;
  border: 1px solid var(--ls-primary);
  border-radius: 8px;
  background: #fff;
  color: var(--ls-primary);
  font-size: 12px;
  font-weight: 800;
}
.ls-hostinfo-copy:hover,
.ls-hostinfo-copy.is-copied {
  background: var(--ls-primary);
  color: #fff;
}
.ls-feat-ico {
  display: block;
  width: 18px;
  height: 18px;
  color: var(--ls-primary);
}
.sidebar-menu-item-icon-wrapper .ls-feat-ico {
  width: 18px;
  height: 18px;
}
.ls-ipunblock-modal-icon .ls-feat-ico {
  width: 20px;
  height: 20px;
  color: #fff;
}
.ls-ipunblock-btn .ls-feat-ico {
  width: 17px;
  height: 17px;
  color: currentColor;
}
.sidebar [menuItemName="lsFeatures"] .sidebar-menu-item-icon-wrapper,
#lsFeaturesPanel .sidebar-menu-item-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0 0 0 8px;
  border-radius: 8px;
  background: var(--ls-primary-subtle);
  color: var(--ls-primary);
}
[dir="rtl"] .sidebar [menuItemName="lsFeatures"] .sidebar-menu-item-icon-wrapper,
[dir="rtl"] #lsFeaturesPanel .sidebar-menu-item-icon-wrapper {
  margin: 0 0 0 8px;
}
.sidebar .js-ls-hostinfo-open,
#lsFeaturesPanel .js-ls-hostinfo-open {
  cursor: pointer;
}
.sidebar .js-ls-ssl-open,
#lsFeaturesPanel .js-ls-ssl-open {
  cursor: pointer;
}
.ls-ssl-covers {
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  background: #f4f7f8;
}
.ls-ssl-covers span {
  display: block;
  margin-bottom: 6px;
  color: var(--ls-muted);
  font-size: 11px;
  font-weight: 700;
}
.ls-ssl-covers ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ls-ssl-covers li {
  padding: 4px 10px;
  border-radius: 999px;
  background: #e7f1f0;
  color: var(--ls-primary-hover);
  font-size: 12px;
  font-weight: 800;
}
.ls-ssl-dns {
  margin: 0 0 12px;
}
.ls-ssl-dns .ls-hostinfo-row {
  margin-bottom: 8px;
}
.ls-ssl-dns .ls-hostinfo-row > span {
  word-break: break-all;
}
