@charset "UTF-8";
:root {
  --accent: #be6234;
  --nav: #18323a;
  --bg: #f4f5f7;
  --text: #18252b;
  --muted: #65747c;
  --line: #dce3e6;
  --white: #fff;
  --success: #207864;
  --danger: #b43232;
  font:
    16px/1.5 -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  outline-offset: 3px;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.5;
  cursor: wait;
}
h1,
h2,
h3,
p {
  margin: 0 0 16px;
}
h1 {
  font-size: clamp(27px, 3.4vw, 45px);
  line-height: 1.17;
  letter-spacing: -0.035em;
  font-weight: 650;
}
h2 {
  font-size: 25px;
  letter-spacing: -0.02em;
}
h3 {
  font-size: 18px;
  line-height: 1.35;
}
small,
.small {
  font-size: 13px;
}
label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 550;
  min-width: 0;
}
input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cad4d9;
  border-radius: 7px;
  padding: 10px 12px;
  color: var(--text);
  background: white;
}
input[type="checkbox"] {
  width: 20px;
  min-height: 20px;
  height: 20px;
  accent-color: var(--accent);
}
input[type="color"] {
  height: 44px;
  padding: 4px;
}
textarea {
  min-height: 96px;
  resize: vertical;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
}
label.check {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}
button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 17px;
  border: 1px solid #cbd5d9;
  border-radius: 7px;
  background: white;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
button:hover,
.btn:hover {
  filter: brightness(0.96);
}
.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.dark {
  background: var(--nav);
  border-color: var(--nav);
  color: white;
}
.ghost {
  background: transparent;
  border-color: transparent;
}
.danger {
  color: var(--danger);
  border-color: #efc6c4;
}
.btn-small {
  padding: 6px 11px;
  min-height: 34px;
  font-size: 13px;
}
.muted {
  color: var(--muted);
}
.positive {
  color: var(--success);
}
.negative {
  color: var(--danger);
}
.mono {
  font:
    13px ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
}
.row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.between {
  justify-content: space-between;
}
.grow {
  flex: 1;
  min-width: 140px;
}
.stack {
  display: grid;
  gap: 18px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.wide {
  grid-column: 1/-1;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}
.subtle {
  background: #eef3f4;
  border: 0;
}
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  padding: 4px 8px;
  background: #eaf1ef;
  color: #316957;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.tag.warm {
  background: #fff0de;
  color: #8a5b1b;
}
.tag.gray {
  background: #eef1f4;
  color: #586873;
}
.tag.bad {
  background: #fce8e7;
  color: #ac3d39;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 15px;
}
.divider {
  height: 1px;
  background: var(--line);
  margin: 22px 0;
}
.demo-banner {
  background: #fff1d4;
  color: #805313;
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 23px;
  letter-spacing: -0.06em;
}
.logo img {
  width: 38px;
  height: 38px;
}
.logo em {
  font-style: normal;
  color: var(--accent);
}
.shop-top {
  background: var(--nav);
  color: #c3d0d3;
  font-size: 12px;
  padding: 9px 5vw;
}
.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5vw;
  background: white;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.shop-header nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 550;
}
.shop-header .phone {
  font-weight: 650;
}
.shop-main {
  max-width: 1480px;
  padding: 0 5vw 64px;
  margin: auto;
}
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--nav);
  color: white;
  margin: 30px 0 54px;
  border-radius: 16px;
  overflow: hidden;
  min-height: 440px;
}
.hero-copy {
  padding: 54px 48px;
  align-self: center;
}
.hero h1 {
  font-size: clamp(34px, 4.2vw, 62px);
  max-width: 620px;
}
.hero p {
  max-width: 520px;
  color: #c3d1d5;
}
.hero .eyebrow {
  color: #dcb088;
}
.hero-art {
  background: linear-gradient(135deg, #203f48, #36585d);
  display: grid;
  place-items: center;
  padding: 24px;
}
.hero-art img {
  width: 70%;
  max-height: 365px;
  object-fit: contain;
  mix-blend-mode: screen;
  opacity: 0.82;
}
.hero-note {
  font-size: 12px;
  color: #9bb0b5;
}
.section {
  margin-top: 44px;
}
.category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card .photo {
  display: block;
  background: #edf0f1;
  position: relative;
}
.product-card .photo img {
  width: 100%;
  height: 255px;
  object-fit: contain;
}
.product-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card h3 {
  margin: 6px 0;
  font-size: 17px;
}
.product-card .price {
  font-size: 22px;
  font-weight: 650;
  margin-top: 16px;
}
.product-card .buyrow {
  margin-top: auto;
  padding-top: 18px;
}
.product-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
}
.filterbar {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  margin: 24px 0;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  align-items: center;
}
.shop-footer {
  background: var(--nav);
  color: #dae3e5;
  padding: 44px 5vw;
}
.shop-footer a {
  color: #bcd1d5;
}
.mobile-contacts {
  display: none;
}
.contact-map {
  border: 0;
  border-radius: 12px;
  width: 100%;
  min-height: 350px;
}
.service {
  padding: 26px;
  border-left: 3px solid var(--accent);
  background: white;
}
.service p {
  color: var(--muted);
  margin: 0;
}
.empty {
  padding: 55px 20px;
  text-align: center;
  color: var(--muted);
}
.empty h2 {
  color: var(--text);
}
.loading {
  padding: 80px;
  text-align: center;
  color: var(--muted);
}
.auth {
  max-width: 560px;
  margin: 5vh auto;
  padding: 22px;
}
.auth .card {
  margin-top: 25px;
}
.auth h1 {
  font-size: 30px;
}
.auth .step {
  display: flex;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}
.notice {
  padding: 14px 17px;
  border-radius: 8px;
  background: #eef3f6;
  color: #4b6370;
  font-size: 14px;
}
.notice.warning {
  background: #fff2dd;
  color: #865c1e;
}
.notice.error {
  background: #fceceb;
  color: #a43330;
}
.workspace {
  display: grid;
  grid-template-columns: 246px minmax(0, 1fr);
  min-height: 100vh;
}
.sidebar {
  background: var(--nav);
  color: #d1dfe2;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 24px 15px;
  display: flex;
  flex-direction: column;
}
.sidebar .logo {
  color: white;
  padding: 0 9px;
  margin-bottom: 22px;
}
.sidebar .logo img {
  width: 33px;
  height: 33px;
  border: 1px solid #5b7076;
  border-radius: 8px;
}
.nav-group {
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #8aa3aa;
  margin: 21px 12px 8px;
}
.sidebar a.item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  border-radius: 7px;
  font-size: 14px;
  margin: 2px 0;
}
.sidebar a.item:hover,
.sidebar a.active {
  background: #2d4a53;
  color: white;
}
.sidebar a.active {
  box-shadow: inset 3px 0 var(--accent);
}
.sidebar .nav-icon {
  font-size: 17px;
  width: 22px;
  text-align: center;
  color: #a6c0c7;
}
.sidebar .side-bottom {
  margin-top: auto;
  padding: 25px 10px 0;
}
.workspace-content {
  min-width: 0;
}
.work-header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 34px;
  border-bottom: 1px solid var(--line);
  background: white;
}
.search-trigger {
  justify-content: flex-start;
  background: #f2f5f6;
  border-color: transparent;
  color: var(--muted);
  min-width: 270px;
}
.search-trigger kbd {
  margin-left: auto;
  font-size: 12px;
  border: 1px solid #d2dce0;
  border-radius: 4px;
  padding: 1px 5px;
}
.avatar {
  width: 35px;
  height: 35px;
  background: #e1ebec;
  color: #315762;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 650;
}
.work-body {
  padding: 32px;
  max-width: 1800px;
  margin: auto;
}
.work-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.work-title h1 {
  font-size: 30px;
  margin-bottom: 5px;
}
.kpi {
  padding: 22px;
  display: block;
}
.kpi .number {
  font-size: 29px;
  letter-spacing: -0.03em;
  font-weight: 650;
  margin: 12px 0 6px;
  font-variant-numeric: tabular-nums;
}
.kpi .label {
  font-size: 13px;
  color: var(--muted);
}
.kpi .icon {
  width: 35px;
  height: 35px;
  background: #eaf0f2;
  color: #426571;
  border-radius: 7px;
  display: grid;
  place-items: center;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.table-wrap {
  overflow: auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.data-table th {
  text-align: left;
  color: #6b7980;
  font-size: 12px;
  font-weight: 600;
  background: #f8fafb;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.data-table td {
  padding: 16px;
  vertical-align: middle;
  border-bottom: 1px solid #edf1f3;
}
.data-table tbody tr:last-child td {
  border-bottom: 0;
}
.data-table tr.clickable {
  cursor: pointer;
}
.data-table tr.clickable:hover {
  background: #f8fafb;
}
.data-table .num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.data-table .thumb {
  width: 36px;
  height: 46px;
  object-fit: contain;
  border-radius: 4px;
}
.toolbar {
  margin: 18px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.toolbar input {
  max-width: 380px;
}
.toolbar select {
  width: auto;
  max-width: 230px;
}
.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}
.bar-row {
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr) 105px;
  gap: 14px;
  align-items: center;
  font-size: 13px;
}
.bar-track {
  height: 12px;
  background: #edf2f3;
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: #567f8a;
  border-radius: 3px;
  min-width: 2px;
}
.attention-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.attention-row:last-child {
  border: 0;
}
.attention-row p {
  margin: 0;
  font-size: 14px;
}
.attention-number {
  font-size: 24px;
  min-width: 36px;
  font-weight: 650;
  color: var(--accent);
}
.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}
.order-summary {
  position: sticky;
  top: 22px;
}
.total-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  font-size: 14px;
}
.total-row.final {
  font-size: 23px;
  font-weight: 650;
  border-top: 1px solid var(--line);
  margin-top: 10px;
  padding-top: 18px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
.form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  position: sticky;
  bottom: -24px;
  background: white;
  padding: 14px 0;
}
.form-actions .error-text {
  flex: 1;
  color: var(--danger);
  font-size: 14px;
}
.order-line {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) 80px 110px 30px;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.order-line small {
  color: var(--muted);
}
.order-line input {
  min-height: 38px;
  padding: 7px;
}
.order-line .remove {
  padding: 0;
  min-height: 30px;
  background: none;
  border: none;
  color: #8b6660;
}
.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0;
}
.tabs {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.tabs a,
.tabs button {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
  background: white;
}
.tabs .active {
  background: var(--nav);
  color: white;
  border-color: var(--nav);
}
.permissions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.permissions label {
  font:
    13px ui-monospace,
    monospace;
}
.module-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.module-row small {
  color: var(--muted);
}
.edit-block {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f1f5f6;
  padding: 12px;
  border-radius: 8px;
  margin: 8px 0;
}
.edit-block .name {
  flex: 1;
}
.mini-preview {
  background: var(--nav);
  color: white;
  padding: 34px;
  border-radius: 12px;
  min-height: 300px;
}
.mini-preview h2 {
  font-size: 34px;
}
.phone-only {
  display: none;
}
.status-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.status-flow span {
  font-size: 13px;
  color: var(--muted);
}
.metrics-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
}
.break {
  overflow-wrap: anywhere;
}
.portal {
  max-width: 1000px;
  margin: 45px auto;
  padding: 20px;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}
.media-grid img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: #edf1f3;
}
.mobile-menu-btn {
  display: none;
}
dialog {
  border: 0;
  border-radius: 14px;
  padding: 28px;
  max-width: min(940px, 94vw);
  width: 760px;
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 30px 100px #0c26324a;
}
dialog::backdrop {
  background: #0f293975;
  backdrop-filter: blur(3px);
}
.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.dialog-header h2 {
  margin: 0;
}
.dialog-header button {
  border: 0;
  font-size: 20px;
}
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
}
.product-detail .photo {
  width: 100%;
  height: 380px;
  object-fit: contain;
  background: #eef2f3;
  border-radius: 10px;
}
.product-detail .large-price {
  font-size: 35px;
  font-weight: 650;
  margin: 20px 0;
}
.props {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 14px;
}
.props span {
  color: var(--muted);
  display: block;
  font-size: 12px;
}
#toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  max-width: 90vw;
  border-radius: 9px;
  background: #16333b;
  color: white;
  padding: 13px 22px;
  box-shadow: 0 6px 35px #0d252230;
  display: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 1150px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .shop-header nav {
    gap: 15px;
  }
  .workspace {
    grid-template-columns: 210px minmax(0, 1fr);
  }
  .work-body {
    padding: 24px;
  }
  .grid4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .order-layout {
    grid-template-columns: 1fr;
  }
  .order-summary {
    position: static;
  }
  .hero-copy {
    padding: 35px;
  }
  .search-trigger {
    min-width: 200px;
  }
  .media-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .shop-header {
    padding: 17px 20px;
    flex-wrap: wrap;
  }
  .shop-header nav {
    order: 3;
    flex-basis: 100%;
    justify-content: space-between;
  }
  .shop-header .phone {
    display: none;
  }
  .shop-top {
    padding: 7px 20px;
    font-size: 11px;
  }
  .hero {
    grid-template-columns: 1fr;
    margin-top: 20px;
    min-height: 0;
  }
  .hero-copy {
    padding: 30px;
  }
  .hero-art {
    display: none;
  }
  .shop-main {
    padding: 0 20px 45px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
  }
  .product-card .photo img {
    height: 215px;
  }
  .product-card .content {
    padding: 14px;
  }
  .product-card .price {
    font-size: 20px;
  }
  .product-card .buyrow {
    flex-wrap: wrap;
  }
  .product-card .buyrow button {
    width: 100%;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
  .filterbar {
    grid-template-columns: 1fr 1fr;
  }
  .filterbar label:first-child {
    grid-column: 1/-1;
  }
  .workspace {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: fixed;
    left: -260px;
    width: 246px;
    z-index: 110;
    transition: left 0.2s;
  }
  .workspace.menu-open .sidebar {
    left: 0;
  }
  .mobile-menu-btn {
    display: inline-flex;
  }
  .work-header {
    height: 66px;
    padding: 0 17px;
  }
  .work-header .search-trigger {
    min-width: 0;
    flex: 1;
  }
  .search-trigger kbd,
  .work-header .username {
    display: none;
  }
  .work-body {
    padding: 20px 15px;
  }
  .work-title h1 {
    font-size: 26px;
  }
  .work-title {
    gap: 10px;
  }
  .work-title .primary {
    min-height: 40px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 19px;
  }
  .grid4 {
    gap: 12px;
  }
  .kpi .number {
    font-size: 25px;
  }
  .grid4 .kpi {
    padding: 16px;
  }
  .mobile-contacts {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--line);
    justify-content: space-around;
    z-index: 90;
    padding: 10px;
  }
  .mobile-contacts a {
    font-size: 13px;
    font-weight: 600;
    padding: 6px;
  }
  .shop-footer {
    padding-bottom: 95px;
  }
  .product-detail {
    grid-template-columns: 1fr;
  }
  .product-detail .photo {
    height: 250px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .order-line {
    grid-template-columns: minmax(100px, 1fr) 62px 85px 24px;
    gap: 7px;
    font-size: 13px;
  }
  .order-line input {
    padding: 5px;
  }
  .bar-row {
    grid-template-columns: 85px minmax(0, 1fr) 90px;
    gap: 8px;
    font-size: 12px;
  }
  .permissions {
    grid-template-columns: 1fr;
  }
  dialog {
    padding: 20px;
  }
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .auth {
    padding: 16px;
  }
  .data-table td,
  .data-table th {
    padding: 12px;
  }
  .phone-only {
    display: initial;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@media print {
  .sidebar,
  .work-header,
  .toolbar,
  .form-actions,
  .shop-header,
  .mobile-contacts,
  button {
    display: none !important;
  }
  .workspace {
    display: block;
  }
  .card {
    break-inside: avoid;
  }
}

.product-zoom{width:100%;padding:0;border:0;background:none;cursor:zoom-in}.image-viewer{max-width:1000px;width:94vw}.image-scroll{overflow:auto;max-height:80vh}.image-scroll img{object-fit:contain;display:block;margin:auto}.nav-mobile-only{display:none!important}@media(max-width:760px){.nav-mobile-only{display:initial!important}.nav-desktop-only{display:none!important}}
