﻿:root {
  --bg-1: #dfeaf6;
  --bg-2: #edf4e7;
  --glass: rgba(255, 255, 255, 0.45);
  --glass-border: rgba(255, 255, 255, 0.62);
  --text: #1f2a33;
  --muted: #5d6c77;
  --shadow: 0 10px 30px rgba(29, 46, 58, 0.14);
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  height: 100%;
}

body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-size: 15px;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.65), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(187, 215, 255, 0.5), transparent 45%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
}

.app-shell {
  display: grid;
  grid-template-columns: 290px 1fr 280px;
  grid-template-areas: "left center right";
  gap: 12px;
  padding: 12px;
  height: 100vh;
}

.panel {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px;
  min-height: 0;
}

.panel-left {
  grid-area: left;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.catalog-sidebar {
  height: calc(100vh - 16px);
}

.catalog-head {
  flex: 0 0 auto;
}

.catalog-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 6px;
}

.panel-center {
  grid-area: center;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.panel-right {
  grid-area: right;
  display: grid;
  align-content: start;
  gap: 5px;
  height: calc(100vh - 20px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: 16px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.brand {
  margin: 0 0 12px;
  font-size: 22px;
}

#searchInput {
  width: 100% !important;
  display: block;
  box-sizing: border-box;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

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

.icon-btn{
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid #d7e0e6;
  background:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  color:#1f2a33;
  min-height:40px;
  padding:0;
}

.icon-btn:hover{
  background:#f3f6f8;
  box-shadow:0 6px 18px rgba(0,0,0,.10);
  transform:translateY(-1px);
}

.icon-btn:active{
  transform:translateY(0);
  box-shadow:none;
}

.icon{
  width:20px;
  height:20px;
  display:block;
}

button,
.input,
select {
  border: 1px solid rgba(41, 66, 84, 0.2);
  border-radius: 8px;
  padding: 6px 10px;
  font: inherit;
  font-size: 13px;
  color: inherit;
  background: rgba(255, 255, 255, 0.74);
}

.input,
select {
  height: 40px;
}

button {
  cursor: pointer;
  min-height: 42px;
  font-size: 14px;
}

.btn-primary {
  background: #2d6a4f;
  border-color: #2d6a4f;
  color: #fff;
}

.btn-accent {
  background: #2f5166;
  border-color: #2f5166;
  color: #fff;
}

.scene-viewport {
  flex: 1;
  min-height: 0;
  border: 1px dashed rgba(41, 66, 84, 0.35);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
  position: relative;
}

.scene-viewport canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.catalog-content {
  margin-top: 12px;
}

.catalog-list.catalog-content {
  margin-top: 10px;
}

.card-list {
  display: grid;
  gap: 10px;
}

.card {
  padding: 10px;
  border: 1px solid rgba(41, 66, 84, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
}

.card .name {
  font-weight: 600;
  margin-bottom: 2px;
}

.card .sku,
.help-text,
.muted {
  color: var(--muted);
  font-size: 13px;
}

.setting-card {
  border: 1px solid rgba(41, 66, 84, 0.14);
  border-radius: 14px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.setting-card h2 {
  margin: 0 0 4px;
  font-size: 14px;
}

.setting-card label {
  display: block;
  margin: 4px 0 2px;
  font-size: 13px;
}

.field-row.is-hidden {
  display: none;
}

.is-hidden {
  display: none;
}

.hidden {
  display: none !important;
}

.area-row {
  margin-top: 5px;
  font-size: 12px;
}

.help-text {
  margin: 5px 0 0;
}

.fence-picker {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
  border: 1px solid #d7e0e6;
  border-radius: 12px;
  background: #fff;
}

#fencePicker {
  display: none;
}

.fence-status {
  margin-top: 8px;
  font-size: 12px;
  color: #41525f;
  white-space: pre-wrap;
}

.fence-status.error {
  color: #b42318;
}

.fence-status.ok {
  color: #0f766e;
}

.fence-tile {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid #d7e0e6;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: box-shadow .2s ease, transform .2s ease;
}

.fence-tile:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, .10);
  transform: translateY(-1px);
}

.fence-tile__img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: #f2f5f7;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fence-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fence-tile__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #14212b;
}

.fence-tile__meta {
  margin-top: 4px;
  font-size: 12px;
  color: #4b5b66;
}

.fence-tile__noimg {
  font-size: 11px;
  color: #60707a;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 30, .55);
}

.modal__panel {
  position: relative;
  width: min(720px, calc(100vw - 28px));
  border-radius: 20px;
  overflow: hidden;
  max-height: calc(100vh - 24px);
  background: #fff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .25);
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 12px;
  background: #fff;
  border-bottom: 1px solid #e8edf1;
}

.modal__title {
  font-size: 20px;
  font-weight: 800;
  color: #12202b;
}

.modal__subtitle {
  margin-top: 4px;
  font-size: 13px;
  color: #4f5f69;
}

.modal__close {
  width: 36px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  border-radius: 10px;
}

.modal__body {
  padding: 16px 20px 20px;
  background: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 14px;
}

.f {
  display: grid;
  gap: 6px;
}

.f__label {
  font-size: 12px;
  font-weight: 700;
  color: #20313f;
  margin-bottom: 6px;
}

.f input {
  width: 100%;
  height: 46px;
  border-radius: 14px;
  border: 1px solid #d7e0e6;
  padding: 10px 12px;
  font-size: 14px;
  background: #fff;
}

.f input::placeholder {
  color: #a0adb7;
}

.f input:focus {
  outline: none;
  border-color: #86b7d6;
  box-shadow: 0 0 0 4px rgba(134, 183, 214, .25);
}

.req {
  color: #b42318;
}

.f__hint {
  min-height: 16px;
  font-size: 12px;
  color: #b42318;
}

.consent {
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px;
  border: 1px solid #d7e0e6;
  border-radius: 16px;
  background: #fafcfd;
  line-height: 1.35;
  font-size: 13px;
  color: #233747;
}

.consent input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
}

.consent a {
  color: #0f6177;
}

.modal__actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.btn {
  height: 46px;
  border-radius: 14px;
  padding: 0 18px;
  font-weight: 700;
  border: 1px solid #d7e0e6;
  background: #fff;
  color: #1f2a33;
  cursor: pointer;
}

.modal .btn-primary {
  border: 0;
  background: #1f6feb;
  color: #fff;
}

.modal .btn-primary:hover {
  filter: brightness(0.98);
}

.modal .btn:hover {
  background: #f3f6f8;
}

.modal__status {
  margin-top: 10px;
  min-height: 18px;
  font-size: 13px;
  color: #355468;
}

.modal__status.ok {
  color: #0f766e;
}

.modal__status.error {
  color: #b42318;
}

.req {
  color: #b42318;
  font-weight: 800;
}

.kp-success {
  padding: 26px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.kp-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #e9f7ef;
  color: #0f766e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
}

.kp-success__title {
  font-size: 20px;
  font-weight: 900;
  color: #0f1a22;
}

.kp-success__text {
  font-size: 14px;
  color: #556773;
  max-width: 520px;
}

@media (max-width: 1320px) {
  .fence-picker {
    grid-template-columns: 1fr;
  }
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle {
  position: relative;
  display: inline-flex;
}

.toggle-slider {
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: rgba(41, 66, 84, 0.25);
  position: relative;
  transition: background 0.2s ease;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.toggle input:checked + .toggle-slider {
  background: #2d6a4f;
}

.toggle input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.button-row.compact button {
  padding: 4px 7px;
  font-size: 11px;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin: 0;
}

.swatch {
  width: 22px;
  height: 22px;
  min-height: 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  background: transparent;
  padding: 0;
}

.swatch--light {
  border-color: rgba(0, 0, 0, 0.25);
}

.swatch--light.active {
  border-color: rgba(0, 0, 0, 0.35);
}

.swatch.active {
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.5);
}

.segmented {
  display: flex;
  gap: 8px;
}

.segmented button {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  font-size: 18px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.66);
  display: flex;
  align-items: center;
  justify-content: center;
}

.segmented svg {
  width: 20px;
  height: 20px;
}

.segmented button.active {
  background: rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.6);
  box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.25);
}

.layer-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

#overlayUI {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.obj-controls {
  position: absolute;
  display: flex;
  gap: 6px;
  transform: translate(-50%, -120%);
  pointer-events: auto;
}

.obj-controls button {
  width: 24px;
  height: 24px;
  min-height: 24px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(23, 38, 49, 0.72);
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

#btnAddLayer {
  display: block;
  width: 100%;
  margin-top: 12px;
}

#viewportHint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  max-width: min(70%, 460px);
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.28);
  color: #1f2a33;
  font-size: 11px;
  line-height: 1.3;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

[data-tooltip] {
  position: relative;
}

[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .app-shell {
    grid-template-columns: 270px 1fr;
    grid-template-areas:
      "left center"
      "right right";
  }

  .panel-center {
    min-height: 70vh;
  }
}

@media (max-width: 1280px) {
  body { font-size: 14px; }
  .panel,
  .panel__content { padding: 12px; }
  .segmented button { width: 38px; height: 38px; }
}

@media (max-width: 900px) {
  .app-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "center"
      "left"
      "right";
    height: auto;
    min-height: 100vh;
  }

  .panel-center {
    min-height: 70vh;
  }
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.catalog-title {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
}

.catalog-tree {
  display: grid;
  gap: 8px;
}

.catalog-category {
  margin-left: calc(var(--level, 0) * 10px);
}

.catalog-category__title {
  margin: 0 0 5px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  color: #2c4353;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

.catalog-category__chev {
  font-size: 11px;
  opacity: 0.8;
  transition: transform 0.16s ease;
}

.catalog-category__chev.is-open {
  transform: rotate(90deg);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.item-card,
.catalog-item {
  padding: 8px 9px;
  border: 1px solid rgba(41, 66, 84, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  transition: transform 0.14s ease, border-color 0.14s ease, background 0.14s ease;
  position: relative;
}
.item-card.is-loading,
.catalog-item.is-loading {
  pointer-events: none;
}
.item-card__loading {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(19, 32, 42, 0.46);
  backdrop-filter: blur(1px);
}
.item-card.is-loading .item-card__loading,
.catalog-item.is-loading .item-card__loading {
  display: flex;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 90px;
  height: 14px;
  box-shadow: 0 3px 0 #fff;
  position: relative;
  clip-path: inset(-40px 0 -5px);
}
.loader:before {
  content: "";
  position: absolute;
  inset: auto calc(50% - 17px) 0;
  height: 50px;
  --g: no-repeat linear-gradient(#ccc 0 0);
  background: var(--g), var(--g), var(--g), var(--g);
  background-size: 16px 14px;
  animation:
    l7-1 2s infinite linear,
    l7-2 2s infinite linear;
}
@keyframes l7-1 {
  0%,
  100% { background-position: 0 -50px,100% -50px; }
  17.5% { background-position: 0 100%,100% -50px,0 -50px,100% -50px; }
  35% { background-position: 0 100%,100% 100%,0 -50px,100% -50px; }
  52.5% { background-position: 0 100%,100% 100%,0 calc(100% - 16px),100% -50px; }
  70%,
  98% { background-position: 0 100%,100% 100%,0 calc(100% - 16px),100% calc(100% - 16px); }
}
@keyframes l7-2 {
  0%,70% { transform: translate(0); }
  100% { transform: translate(200%); }
}

.item-card__thumb,
.catalog-item__thumb {
  width: 100%;
  height: 86px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 6px;
  background: rgba(198, 211, 222, 0.35);
}

.catalog-thumb {
  background: rgba(198, 211, 222, 0.35);
}

.catalog-thumb--fallback {
  opacity: 0.7;
}

.item-card:hover,
.catalog-item:hover {
  transform: translateY(-1px);
  border-color: rgba(20, 184, 166, 0.65);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 14px rgba(31, 42, 51, 0.12);
}

.item-card:active,
.catalog-item:active {
  transform: translateY(0);
}

#previewTooltip {
  position: fixed;
  z-index: 9999;
  display: none;
  pointer-events: none;
  max-width: 220px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(23, 38, 49, 0.85);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  padding: 6px;
}

#previewTooltip img {
  display: block;
  width: 100%;
  max-width: 220px;
  border-radius: 10px;
}

/* KP modal refresh */
.modal{ position:fixed; inset:0; z-index:2000; display:flex; align-items:center; justify-content:center; }
.modal.hidden{ display:none !important; }
.modal__backdrop{ position:absolute; inset:0; background: radial-gradient(1200px 600px at 30% 20%, rgba(31,111,235,.20), rgba(10,20,30,.55)); backdrop-filter: blur(2px); }

.modal__panel{ position:relative; width:min(760px, calc(100vw - 28px)); max-height: calc(100vh - 28px); overflow:auto; border-radius:22px; box-shadow: 0 26px 90px rgba(0,0,0,.35); }

.kp-card{ background:#fff; border-radius:22px; overflow:hidden; }
.kp-card__top{
  display:flex; justify-content:space-between; gap:16px;
  padding:18px 20px;
  background: linear-gradient(135deg, #f6fbff 0%, #ffffff 45%, #f8fafc 100%);
  border-bottom:1px solid #e7eef5;
}
.kp-card__title{ font-size:22px; font-weight:900; color:#0f1a22; letter-spacing:-0.2px; }
.kp-card__sub{ margin-top:4px; font-size:13px; color:#5c6f7c; line-height:1.35; max-width:520px; }

.kp-x{
  width:40px; height:40px; border-radius:14px;
  border:1px solid #dbe6ef; background:#fff;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; color:#22313b;
}
.kp-x svg{ width:18px; height:18px; }
.kp-x:hover{ background:#f2f6fa; }

.kp-card__body{ padding:18px 20px 20px; }

.kp-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 760px){ .kp-grid{ grid-template-columns: 1fr; } }

.kp-label{
  font-size:12px; font-weight:800; color:#30424f;
  margin-bottom:7px;
}
.req{ color:#b42318; }

.kp-input{
  height:48px;
  display:flex; align-items:center; gap:10px;
  border:1px solid #dbe6ef;
  border-radius:16px;
  padding:0 12px;
  background:#fff;
  transition: box-shadow .12s ease, border-color .12s ease, transform .12s ease;
}
.kp-ico{ width:22px; display:flex; justify-content:center; opacity:.75; font-size:16px; }
.kp-input input{
  width:100%;
  height:100%;
  border:0;
  outline:none;
  font-size:14px;
  background:transparent;
  color:#10202a;
}
.kp-input input::placeholder{ color:#9aa8b3; }
.kp-input:focus-within{
  border-color:#86b7d6;
  box-shadow:0 0 0 4px rgba(134,183,214,.25);
}

.kp-err{
  margin-top:6px;
  font-size:12px;
  color:#b42318;
  min-height:16px;
}

.kp-consent{
  margin-top:14px;
  padding:14px 14px;
  border:1px solid #dbe6ef;
  border-radius:18px;
  background: #f7fbff;
}
.kp-consent__row{
  display:flex;
  gap:12px;
  align-items:flex-start;
  font-size:13px;
  color:#2b3c47;
  line-height:1.35;
}
.kp-consent__row input{ width:18px; height:18px; margin-top:2px; }
.kp-consent a{ color:#1f6feb; text-decoration:none; font-weight:800; }
.kp-consent a:hover{ text-decoration:underline; }

.kp-actions{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1fr 180px;
  gap:10px;
  align-items:center;
}
@media (max-width: 760px){ .kp-actions{ grid-template-columns:1fr; } }

.kp-btn{
  height:48px;
  border-radius:16px;
  padding:0 18px;
  font-weight:900;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.kp-btn--primary{
  background: linear-gradient(180deg, #2b7bff 0%, #1f6feb 100%);
  color:#fff;
  box-shadow:0 10px 22px rgba(31,111,235,.28);
}
.kp-btn--primary:hover{ transform: translateY(-1px); box-shadow:0 14px 26px rgba(31,111,235,.34); }
.kp-btn--primary:active{ transform: translateY(0); box-shadow:0 8px 18px rgba(31,111,235,.26); }

.kp-btn--ghost{
  background:#fff;
  color:#1c2a33;
  border-color:#dbe6ef;
}
.kp-btn--ghost:hover{ background:#f3f7fb; }

.kp-status{
  margin-top:10px;
  font-size:13px;
  color:#355468;
  min-height:18px;
}

.kp-ok{
  padding:22px 6px 8px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:10px;
}
.kp-ok__badge{
  width:64px; height:64px;
  border-radius:22px;
  background: linear-gradient(180deg, #e9fff2, #eaf7ff);
  color:#0f766e;
  display:flex; align-items:center; justify-content:center;
  border:1px solid #d7f3e5;
}
.kp-ok__badge svg{ width:28px; height:28px; }
.kp-ok__title{ font-size:22px; font-weight:1000; color:#0f1a22; }
.kp-ok__text{ font-size:14px; color:#566a77; max-width:560px; line-height:1.45; }

