:root {
  color-scheme: light;
  --blue: #1a63d4;
  --blue-dark: #154fa9;
  --green: #269f4f;
  --orange: #f59e0b;
  --red: #e5484d;
  --ink: #111827;
  --text: #1f2937;
  --secondary: #7b8190;
  --placeholder: #b6bbc6;
  --grouped: #f2f2f7;
  --surface: #f7f7fb;
  --input: #f3f3f8;
  --card: #ffffff;
  --border: rgba(60, 60, 67, 0.18);
  --shadow: 0 10px 28px rgba(27, 36, 50, 0.12);
  --radius: 8px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--grouped);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  border: 0;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

a {
  color: var(--blue);
}

.app-root {
  width: 100%;
  min-height: 100dvh;
  background: var(--grouped);
}

.app-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  background: var(--grouped);
  overflow: hidden;
  transform: translateZ(0);
}

.desktop-image {
  display: none;
}

.main-content {
  flex: 1;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  direction: ltr;
  min-height: calc(56px + var(--safe-top));
  padding: var(--safe-top) 10px 0;
  background: rgba(242, 242, 247, 0.92);
  backdrop-filter: blur(18px);
}

.top-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(27, 36, 50, 0.08);
}

.icon-button.flat {
  background: transparent;
  box-shadow: none;
}

.icon-button svg,
.svg-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.hero {
  position: relative;
  min-height: 40dvh;
  height: 310px;
  overflow: hidden;
  background: #dceaf5;
}

.hero.compact {
  min-height: 0;
  height: 210px;
  margin: 0;
  border-radius: var(--radius);
}

.hero img,
.update-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  inset-inline: 20px;
  bottom: 18px;
  z-index: 1;
  color: white;
  text-align: start;
}

.hero-copy h2 {
  margin: 0 0 4px;
  font-size: 1.45rem;
  line-height: 1.12;
  font-weight: 850;
}

.hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.screen-pad {
  padding: 16px;
}

.stack {
  display: grid;
  gap: 14px;
}

.stack.large {
  gap: 20px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.card.pad {
  padding: 16px;
}

.action-list {
  padding: 20px;
  display: grid;
  gap: 14px;
}

.row-button,
.menu-row,
.category-row,
.location-row,
.report-row,
.update-row {
  width: 100%;
  color: inherit;
  background: var(--card);
  border-radius: var(--radius);
  text-align: start;
}

.row-button {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  gap: 14px;
  align-items: center;
  min-height: 86px;
  padding: 16px;
}

[dir="rtl"] .row-button {
  grid-template-columns: 48px 1fr auto auto;
}

.row-button h3,
.report-row h3,
.update-row h3 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.2;
  font-weight: 800;
}

.row-button p,
.report-row p,
.update-row p {
  margin: 4px 0 0;
  color: var(--secondary);
  font-size: 0.94rem;
}

.action-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
}

.action-icon.report {
  color: var(--orange);
  background: rgba(245, 158, 11, 0.14);
}

.action-icon.payment {
  color: var(--green);
  background: rgba(38, 159, 79, 0.14);
}

.action-icon.updates {
  color: var(--blue);
  background: rgba(26, 99, 212, 0.12);
}

.chevron {
  color: var(--secondary);
}

.badge {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}

.summary-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  color: var(--blue);
  background: rgba(26, 99, 212, 0.09);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 750;
}

.dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--blue);
}

.primary-button,
.secondary-button,
.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.primary-button {
  color: white;
  background: var(--blue);
}

.primary-button:hover {
  background: var(--blue-dark);
}

.primary-button:disabled {
  color: white;
  background: #a2a7b3;
}

.secondary-button {
  color: var(--blue);
  background: var(--surface);
}

.danger-button {
  color: var(--red);
  background: rgba(229, 72, 77, 0.09);
}

.form-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: var(--card);
  border-radius: var(--radius);
}

.field-label,
.section-title {
  display: block;
  margin: 0;
  font-weight: 800;
}

.hint,
.muted {
  color: var(--secondary);
}

.field,
.textarea,
.select {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  color: var(--ink);
  background: var(--input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  text-align: inherit;
}

.textarea {
  min-height: 150px;
  resize: vertical;
}

.field:focus,
.textarea:focus,
.select:focus,
.otp-cell:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 99, 212, 0.12);
}

.language-selector {
  gap: 8px;
}

.language-selector > .muted {
  font-size: 0.82rem;
  text-align: start;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 2px;
  min-height: 34px;
  background: #e9e9ef;
  border-radius: 999px;
}

.segmented button {
  min-height: 30px;
  color: var(--ink);
  background: transparent;
  border-radius: 999px;
  font-size: 0.88rem;
}

.segmented button.active {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.language-segmented {
  direction: ltr;
}

.language-segmented button {
  direction: ltr;
}

.language-segmented [data-lang="he"] {
  direction: rtl;
}

.page-heading {
  margin: 0;
  color: var(--ink);
  font-size: 1.9rem;
  line-height: 1.12;
  font-weight: 850;
  text-align: start;
}

.center-screen {
  min-height: calc(100dvh - 80px);
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 24px;
  text-align: center;
}

.onboarding-screen {
  min-height: calc(100dvh - 80px);
  align-content: start;
  text-align: center;
}

.onboarding-screen .payment-art {
  margin: 12px auto 0;
}

.otp-wrap {
  position: relative;
}

.otp-cells {
  display: flex;
  justify-content: center;
  gap: 12px;
  direction: ltr;
}

.otp-cell {
  display: grid;
  place-items: center;
  width: 54px;
  height: 58px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1.35rem;
  font-weight: 800;
  text-align: center;
  outline: none;
}

.shake {
  animation: shake 0.38s linear;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-8px);
  }
  50% {
    transform: translateX(8px);
  }
  75% {
    transform: translateX(-5px);
  }
}

.location-row,
.category-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  background: var(--surface);
}

.category-row.selected,
.location-row.fallback {
  background: rgba(26, 99, 212, 0.1);
}

.radio {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--secondary);
  border-radius: 999px;
}

.category-row.selected .radio {
  border: 5px solid var(--blue);
}

.reports-screen {
  position: relative;
  min-height: 100%;
  align-content: start;
  padding-bottom: calc(96px + var(--safe-bottom));
}

.report-row {
  direction: ltr;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 16px 14px;
}

.report-row-body {
  min-width: 0;
  flex: 1;
}

[dir="rtl"] .report-row-body {
  direction: rtl;
  text-align: right;
}

[dir="ltr"] .report-row-body {
  direction: ltr;
  text-align: left;
}

.report-row-side {
  direction: ltr;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  justify-content: space-between;
  flex: 0 0 auto;
  min-width: 122px;
  padding: 2px 0;
}

.report-row-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}

.report-row-side > .chevron {
  align-self: flex-start;
}

.report-id {
  color: var(--blue);
  font-size: 0.78rem;
}

.report-row-top,
.update-title-line,
.detail-row,
.composer-actions,
.profile-lines {
  display: flex;
  align-items: center;
  gap: 8px;
}

.report-row-top {
  align-items: flex-start;
}

.report-row-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--secondary);
  font-size: 0.82rem;
}

.floating-add {
  position: fixed;
  bottom: calc(22px + var(--safe-bottom));
  inset-inline-end: 18px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: white;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(26, 99, 212, 0.28);
}

.floating-add svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.4;
}

[dir="ltr"] .floating-add {
  inset-inline-end: 18px;
}

.mono {
  font-variant-numeric: tabular-nums;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--radius);
  color: var(--blue);
  background: rgba(26, 99, 212, 0.12);
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-chip.in-progress {
  color: var(--orange);
  background: rgba(245, 158, 11, 0.13);
}

.status-chip.closed {
  color: var(--green);
  background: rgba(38, 159, 79, 0.13);
}

.empty-state {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 360px;
  padding: 24px;
  text-align: center;
  color: var(--secondary);
}

.empty-state h3 {
  margin: 0;
  color: var(--ink);
}

.payment-art {
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  margin: 0 auto;
  color: var(--blue);
  background: rgba(26, 99, 212, 0.1);
  border-radius: 999px;
}

.payment-art svg {
  width: 78px;
  height: 78px;
}

.update-row {
  position: relative;
  min-height: 104px;
  padding: 14px;
}

.update-row-text {
  display: grid;
  gap: 6px;
  padding-inline-start: 54px;
}

[dir="rtl"] .update-row-text {
  padding-inline-start: 0;
  padding-inline-end: 54px;
}

.update-icon {
  position: absolute;
  inset-block-start: 14px;
  inset-inline-start: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--blue);
  background: rgba(26, 99, 212, 0.12);
  border-radius: var(--radius);
}

[dir="rtl"] .update-icon {
  inset-inline-start: auto;
  inset-inline-end: 14px;
}

.update-icon.high {
  color: var(--red);
  background: rgba(229, 72, 77, 0.12);
}

.detail-header {
  display: grid;
  gap: 8px;
  padding: 12px 16px;
}

.report-detail-screen {
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.detail-row {
  align-items: baseline;
}

.detail-row dt {
  flex: 0 0 96px;
  color: var(--secondary);
  font-size: 0.92rem;
  font-weight: 800;
}

.detail-row dd {
  margin: 0;
  flex: 1;
}

.conversation {
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 430px;
}

.report-detail-screen .conversation {
  min-height: 0;
}

.conversation-title {
  padding: 12px 16px 0;
  font-weight: 800;
}

.chat-list {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 12px 16px;
}

.report-detail-screen .chat-list {
  overflow: auto;
}

.bubble {
  max-width: 270px;
  padding: 9px 12px;
  border-radius: var(--radius);
  background: var(--card);
  justify-self: start;
}

.bubble.resident {
  color: white;
  background: var(--blue);
  justify-self: end;
}

[dir="rtl"] .bubble {
  justify-self: end;
}

[dir="rtl"] .bubble.resident {
  justify-self: start;
}

.bubble p {
  margin: 0;
}

.bubble time {
  display: block;
  margin-top: 4px;
  color: var(--secondary);
  font-size: 0.72rem;
}

.bubble.resident time {
  color: rgba(255, 255, 255, 0.78);
}

.message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.mini-action {
  min-height: 32px;
  padding: 0 10px;
  color: var(--blue);
  background: rgba(26, 99, 212, 0.1);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
}

.composer {
  display: grid;
  gap: 8px;
  padding: 8px 16px calc(12px + var(--safe-bottom));
  background: var(--grouped);
  border-top: 1px solid var(--border);
}

.composer-actions {
  justify-content: flex-start;
}

.composer-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 44px;
  color: var(--blue);
  background: var(--surface);
  border-radius: var(--radius);
}

.composer-send {
  margin-inline-start: auto;
  width: auto;
  min-width: 86px;
  min-height: 44px;
}

[dir="rtl"] .composer-send {
  margin-inline-start: 0;
  margin-inline-end: auto;
}

.image-preview {
  position: relative;
  overflow: hidden;
  min-height: 120px;
  border-radius: var(--radius);
}

.image-preview img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  display: block;
}

.image-preview .icon-button {
  position: absolute;
  inset-block-start: 8px;
  inset-inline-end: 8px;
  color: white;
  background: rgba(0, 0, 0, 0.34);
}

.sheet-backdrop,
.alert-backdrop,
.busy-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  align-items: end;
  justify-items: center;
  background: rgba(0, 0, 0, 0.24);
}

.sheet {
  width: min(100%, 430px);
  max-height: min(92dvh, 820px);
  overflow: auto;
  background: var(--card);
  border-radius: 28px 28px 0 0;
  box-shadow: var(--shadow);
}

.sheet.full {
  height: min(92dvh, 820px);
}

.sheet-top {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  direction: ltr;
  min-height: 56px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.sheet-title {
  margin: 0;
  text-align: center;
  font-weight: 800;
}

.sheet-body {
  padding: 16px;
}

.profile-view {
  display: flex;
  flex-direction: column;
  min-height: calc(min(92dvh, 820px) - 56px);
  padding: 20px 20px 30px;
  background: white;
}

.profile-identity {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0 22px;
  border-bottom: 1px solid rgba(60, 60, 67, 0.12);
}

.profile-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  color: white;
  background: var(--blue);
  border-radius: 999px;
}

.profile-avatar svg {
  width: 34px;
  height: 34px;
}

.profile-person {
  display: grid;
  min-width: 0;
  gap: 2px;
  text-align: start;
}

.profile-person strong {
  font-size: 1.08rem;
  line-height: 1.2;
}

.profile-person span {
  color: var(--secondary);
}

.profile-info-list {
  display: grid;
  gap: 18px;
  padding: 18px 0;
  text-align: start;
}

.profile-info-row {
  display: grid;
  gap: 4px;
}

.profile-info-label {
  color: var(--placeholder);
  font-size: 0.78rem;
}

.profile-info-row strong {
  font-size: 1rem;
  font-weight: 700;
}

.profile-form {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
}

.profile-form .field-label {
  margin-top: 6px;
  text-align: start;
}

.profile-location-card {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding: 14px;
  background: var(--surface);
  border-radius: var(--radius);
  text-align: start;
}

.profile-location-card > strong {
  font-size: 1rem;
}

.profile-change-location {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  min-height: 36px;
  color: var(--blue);
  background: transparent;
  font-weight: 800;
}

.profile-change-location svg {
  width: 18px;
  height: 18px;
}

.profile-location-chooser {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.profile-form > .primary-button {
  margin-top: 8px;
}

.profile-logout {
  margin-top: 10px;
}

.menu-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 14px;
}

.menu-row.active {
  background: var(--surface);
}

.menu-row svg {
  flex: 0 0 28px;
  color: var(--blue);
}

.menu-row.danger {
  color: var(--red);
}

.divider {
  height: 1px;
  margin: 8px 0;
  background: var(--border);
}

.update-hero {
  overflow: hidden;
  height: 190px;
  border-radius: var(--radius);
  background: var(--surface);
}

.markdown {
  color: var(--ink);
}

.markdown p {
  margin: 0 0 10px;
}

.markdown ul {
  margin: 0;
  padding-inline-start: 20px;
}

.reactions {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0;
  direction: ltr;
}

.reaction {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 1.35rem;
}

.reaction.selected {
  background: rgba(26, 99, 212, 0.18);
  border: 2px solid var(--blue);
}

.browser-sheet {
  display: grid;
  grid-template-rows: auto 1fr;
  height: calc(min(92dvh, 820px) - 56px);
}

.address-row {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.address {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--secondary);
  font-size: 0.82rem;
  direction: ltr;
  text-align: left;
}

.browser-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: white;
}

.alert-backdrop,
.busy-backdrop {
  z-index: 120;
  align-items: center;
  padding: 24px;
}

.alert,
.busy-card {
  width: min(100%, 330px);
  padding: 18px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.alert h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.alert p {
  margin: 0 0 16px;
  color: var(--secondary);
}

.spinner {
  width: 32px;
  height: 32px;
  margin: 0 auto 10px;
  border: 3px solid rgba(26, 99, 212, 0.18);
  border-top-color: var(--blue);
  border-radius: 999px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hidden-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.scanner-video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #111827;
  border-radius: var(--radius);
}

.noscript {
  padding: 24px;
}

@media (min-width: 900px) {
  .app-root {
    display: grid;
    grid-template-columns: minmax(390px, 40vw) minmax(0, 1fr);
    grid-template-areas: "app image";
    height: 100dvh;
    overflow: hidden;
    background: #111827;
  }

  [dir="rtl"] .app-root {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 40vw);
    grid-template-areas: "image app";
  }

  .app-shell {
    grid-area: app;
    height: 100dvh;
    min-height: 100dvh;
    max-height: none;
  }

  .desktop-image {
    grid-area: image;
    position: relative;
    display: block;
    min-width: 0;
    height: 100dvh;
    overflow: hidden;
    background: #dceaf5;
  }

  .desktop-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.02));
    pointer-events: none;
  }

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

@media (max-width: 360px) {
  .row-button {
    grid-template-columns: 44px 1fr auto;
    gap: 10px;
  }

  .row-button .badge {
    grid-column: 3;
  }

  .otp-cell {
    width: 48px;
  }
}

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