html,
html[data-theme="dark"],
html.premium-dark {
  color-scheme: dark;
  --ui-bg: #070b14;
  --ui-bg-soft: #0a1020;
  --ui-panel: rgba(15, 23, 42, .88);
  --ui-panel-strong: #101827;
  --ui-panel-soft: rgba(20, 30, 50, .74);
  --ui-border: rgba(148, 163, 184, .14);
  --ui-border-strong: rgba(129, 140, 248, .34);
  --ui-text: #f8fafc;
  --ui-muted: #94a3b8;
  --ui-muted-2: #64748b;
  --ui-accent: #7c83ff;
  --ui-accent-2: #9b6dff;
  --ui-accent-soft: rgba(124, 131, 255, .14);
  --ui-success: #34d399;
  --ui-warning: #fbbf24;
  --ui-danger: #fb7185;
  --ui-shadow: 0 22px 55px rgba(0, 0, 0, .28);
  --ui-shadow-soft: 0 12px 32px rgba(0, 0, 0, .2);
  background: var(--ui-bg);
  color: var(--ui-text);
}

html,
body {
  min-height: 100%;
  background:
    radial-gradient(circle at 88% 8%, rgba(124, 131, 255, .13), transparent 30rem),
    radial-gradient(circle at 16% 94%, rgba(155, 109, 255, .09), transparent 34rem),
    linear-gradient(145deg, #070b14 0%, #09101d 48%, #070b14 100%);
  color: var(--ui-text);
}

body {
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

::selection {
  background: rgba(124, 131, 255, .38);
  color: #fff;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #334155 #09101d;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: #09101d;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(#334155, #475569);
  border: 2px solid #09101d;
  border-radius: 999px;
}

.shell {
  grid-template-columns: 254px minmax(0, 1fr);
  background: transparent;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 18px 14px;
  color: var(--ui-text);
  background:
    linear-gradient(180deg, rgba(16, 24, 39, .97), rgba(7, 11, 20, .98)),
    #080d18;
  border-right: 1px solid rgba(148, 163, 184, .1);
  box-shadow: 18px 0 45px rgba(0, 0, 0, .18);
  backdrop-filter: blur(20px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  margin: 0 4px 12px;
  padding: 10px 8px 18px;
  border-bottom: 1px solid rgba(148, 163, 184, .12);
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, var(--ui-accent), var(--ui-accent-2));
  box-shadow:
    0 12px 26px rgba(124, 131, 255, .3),
    inset 0 1px 0 rgba(255,255,255,.28);
  animation: premiumLogoFloat 5s ease-in-out infinite;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(124,131,255,.28), transparent 65%);
  filter: blur(5px);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.brand-copy {
  min-width: 0;
}

.brand strong {
  margin: 0;
  color: #fff;
  font-size: 18px;
  letter-spacing: -.02em;
}

.brand span:not(.brand-mark) {
  display: block;
  margin-top: 3px;
  color: #7f8da3;
  font-size: 11px;
  white-space: nowrap;
}

.nav {
  gap: 6px;
  margin-top: 6px;
}

.nav button {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 14px;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  overflow: hidden;
  color: #aebbd0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 760;
  transition:
    color .18s ease,
    background .18s ease,
    border-color .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
}

.nav button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(100deg, rgba(124,131,255,.22), rgba(155,109,255,.1));
  transition: opacity .18s ease;
}

.nav button:hover {
  color: #fff;
  background: rgba(148, 163, 184, .07);
  border-color: rgba(148, 163, 184, .1);
  transform: translateX(3px);
}

.nav button.active,
.nav button[aria-current="page"] {
  color: #fff;
  background: linear-gradient(100deg, rgba(124,131,255,.24), rgba(155,109,255,.13));
  border-color: rgba(129, 140, 248, .28);
  box-shadow:
    0 10px 26px rgba(76, 81, 191, .16),
    inset 3px 0 0 #8b8fff;
}

.nav button.active::before,
.nav button[aria-current="page"]::before {
  opacity: 1;
}

.nav-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: currentColor;
  opacity: .95;
}

.nav-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.nav-label {
  min-width: 0;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-chevron {
  color: #69768c;
  font-size: 19px;
  line-height: 1;
  transform: translateX(-3px);
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
}

.nav button:hover .nav-chevron,
.nav button.active .nav-chevron {
  opacity: 1;
  transform: translateX(0);
}

.userbox {
  margin-top: 18px;
  padding: 14px;
  color: #9eacc2;
  background:
    linear-gradient(145deg, rgba(124,131,255,.1), rgba(255,255,255,.025)),
    rgba(15, 23, 42, .7);
  border: 1px solid rgba(148, 163, 184, .12);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,.17);
}

.userbox strong {
  color: #fff;
}

.userbox > span {
  color: #718097;
}

.logout,
.theme-toggle {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 10px;
  color: #cbd5e1;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 11px;
  transition: .18s ease;
}

.logout:hover {
  color: #fff;
  background: rgba(251,113,133,.12);
  border-color: rgba(251,113,133,.28);
}

.theme-toggle {
  display: none !important;
}

.main {
  position: relative;
  min-width: 0;
  padding: 28px clamp(18px, 2.2vw, 34px) 42px;
  background: transparent;
}

.topbar {
  position: relative;
  align-items: center;
  margin-bottom: 24px;
  padding: 3px 2px;
}

.topbar > div:first-child {
  position: relative;
  padding-left: 15px;
}

.topbar > div:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 5px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(var(--ui-accent), var(--ui-accent-2));
  box-shadow: 0 0 18px rgba(124,131,255,.55);
}

h1 {
  margin-bottom: 5px;
  color: #f8fafc;
  font-size: clamp(25px, 3vw, 35px);
  font-weight: 860;
  letter-spacing: -.04em;
}

h2,
h3 {
  color: #f8fafc;
  letter-spacing: -.02em;
}

.muted,
.stat-label,
.stat-help,
.product-row small,
.loading {
  color: var(--ui-muted);
}

.premium-topbar-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.premium-date-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  color: #cbd5e1;
  background: rgba(15,23,42,.62);
  border: 1px solid var(--ui-border);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.13);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 750;
}

.premium-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ui-success);
  box-shadow: 0 0 0 4px rgba(52,211,153,.1), 0 0 15px rgba(52,211,153,.52);
  animation: premiumPulse 2.2s ease-in-out infinite;
}

.card,
.login-card,
.modal-card,
.premium-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--ui-text);
  background:
    linear-gradient(145deg, rgba(255,255,255,.025), transparent 42%),
    var(--ui-panel);
  border: 1px solid var(--ui-border);
  border-radius: 18px;
  box-shadow: var(--ui-shadow-soft);
  backdrop-filter: blur(16px);
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    background .22s ease;
}

.card::before,
.premium-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(129,140,248,.72), transparent);
  opacity: .65;
}

.card::after,
.premium-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -85px;
  top: -95px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(124,131,255,.09);
  filter: blur(7px);
  pointer-events: none;
}

.card:hover,
.premium-card:hover {
  border-color: rgba(129,140,248,.24);
  box-shadow: 0 18px 44px rgba(0,0,0,.24), 0 0 0 1px rgba(129,140,248,.04);
  transform: translateY(-2px);
}

.card h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
}

.heading-accent {
  display: inline-block;
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--ui-accent), var(--ui-accent-2));
  box-shadow: 0 0 12px rgba(124,131,255,.55);
}

.stats .card {
  min-height: 128px;
  background:
    linear-gradient(145deg, rgba(124,131,255,.075), transparent 55%),
    var(--ui-panel);
}

.stats .card:hover {
  transform: translateY(-4px);
}

.stat-value {
  color: #fff;
  font-weight: 880;
  text-shadow: 0 4px 20px rgba(124,131,255,.12);
}

.form {
  gap: 14px;
}

label {
  color: #b8c4d6;
  font-weight: 720;
}

input,
select,
textarea {
  color: #f8fafc;
  background: rgba(7, 12, 23, .72);
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease,
    transform .18s ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(148,163,184,.3);
  background: rgba(9, 16, 30, .9);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(124,131,255,.82);
  background: #0b1324;
  box-shadow: 0 0 0 4px rgba(124,131,255,.12), 0 8px 24px rgba(0,0,0,.12);
}

input::placeholder,
textarea::placeholder {
  color: #516078;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  color-scheme: dark;
}

select option {
  color: #f8fafc;
  background: #0f172a;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: #f8fafc;
  box-shadow: 0 0 0 1000px #0b1324 inset;
  transition: background-color 9999s ease-in-out 0s;
}

.btn,
.premium-button,
.mobile-menu {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #696fff, #8d5df3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(86, 78, 220, .2), inset 0 1px 0 rgba(255,255,255,.2);
  transition:
    transform .16s ease,
    filter .16s ease,
    box-shadow .16s ease,
    background .16s ease;
}

.btn::before,
.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.16), transparent 55%);
  transition: opacity .16s ease;
}

.btn:hover,
.mobile-menu:hover {
  filter: brightness(1.08);
  box-shadow: 0 14px 30px rgba(86,78,220,.28), inset 0 1px 0 rgba(255,255,255,.24);
  transform: translateY(-1px);
}

.btn:hover::before,
.mobile-menu:hover::before {
  opacity: 1;
}

.btn:active,
.mobile-menu:active {
  transform: translateY(1px) scale(.99);
}

.btn.secondary {
  color: #dbe5f3;
  background: rgba(40, 51, 72, .74);
  border-color: rgba(148,163,184,.16);
  box-shadow: 0 8px 18px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.04);
}

.btn.secondary:hover {
  color: #fff;
  background: rgba(54, 67, 91, .9);
}

.btn.danger {
  color: #fff;
  background: linear-gradient(135deg, #be3144, #8f2031);
  box-shadow: 0 10px 24px rgba(190,49,68,.2);
}

button:disabled,
.btn:disabled {
  filter: saturate(.45);
  opacity: .5;
  box-shadow: none;
  transform: none !important;
}

.premium-ripple {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(255,255,255,.26);
  transform: scale(0);
  animation: premiumRipple .5s ease-out forwards;
}

.table-wrap,
.premium-table {
  border-color: var(--ui-border);
  background: rgba(6, 11, 21, .38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}

table {
  color: #dbe5f3;
}

th,
td {
  border-color: rgba(148,163,184,.1);
}

th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: #aebbd0;
  background: rgba(18, 28, 46, .96);
  backdrop-filter: blur(10px);
}

tbody tr {
  transition: background .16s ease;
}

tbody tr:hover td {
  background: rgba(124,131,255,.045);
}

.money {
  color: #f8fafc;
}

.badge {
  color: #dbeafe;
  background: rgba(71,85,105,.46);
  border: 1px solid rgba(148,163,184,.1);
}

.badge.ok,
.notice.ok {
  color: #86efac;
  background: rgba(6,118,71,.18);
  border-color: rgba(52,211,153,.2);
}

.badge.warn,
.notice.warn {
  color: #fcd34d;
  background: rgba(180,83,9,.17);
  border-color: rgba(251,191,36,.2);
}

.badge.bad,
.notice.error {
  color: #fda4af;
  background: rgba(190,24,93,.16);
  border-color: rgba(251,113,133,.22);
}

.notice {
  border: 1px solid transparent;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
  animation: premiumNoticeIn .28s ease both;
}

.empty {
  color: #718097;
  background:
    linear-gradient(145deg, rgba(124,131,255,.035), transparent),
    rgba(5, 10, 20, .52);
  border: 1px dashed rgba(148,163,184,.13);
}

.product-row {
  color: #dbe5f3;
  background: rgba(8, 14, 26, .44);
  border-color: rgba(148,163,184,.11);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.product-row:hover {
  background: rgba(124,131,255,.05);
  border-color: rgba(129,140,248,.24);
  transform: translateX(2px);
}

.cart-line {
  border-color: rgba(148,163,184,.1);
}

.toolbar {
  gap: 12px;
}

.login-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(124,131,255,.2), transparent 24rem),
    radial-gradient(circle at 24% 84%, rgba(155,109,255,.13), transparent 26rem),
    linear-gradient(145deg, #050811, #0a1222);
}

.login-page::before,
.login-page::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .7;
}

.login-page::before {
  width: 310px;
  height: 310px;
  right: -100px;
  top: -80px;
  background: radial-gradient(circle, rgba(124,131,255,.18), transparent 68%);
  animation: premiumOrb 8s ease-in-out infinite;
}

.login-page::after {
  width: 270px;
  height: 270px;
  left: -80px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(155,109,255,.12), transparent 68%);
  animation: premiumOrb 10s ease-in-out infinite reverse;
}

.login-card {
  z-index: 1;
  width: min(430px, 100%);
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent),
    rgba(13, 21, 36, .9);
  border-color: rgba(148,163,184,.16);
  box-shadow: 0 30px 80px rgba(0,0,0,.42);
  animation: premiumLoginIn .42s cubic-bezier(.2,.8,.2,1) both;
}

.login-card h1 {
  color: #fff;
}

.modal-backdrop {
  background: rgba(2,6,23,.78);
  backdrop-filter: blur(8px);
  animation: premiumBackdropIn .18s ease both;
}

.modal-card {
  animation: premiumModalIn .24s cubic-bezier(.2,.8,.2,1) both;
}

.month-calendar-card {
  --cal-card: rgba(12, 20, 35, .86);
  --cal-header: rgba(18, 29, 48, .94);
  --cal-cell: rgba(12, 21, 37, .86);
  --cal-cell-muted: rgba(8, 14, 25, .7);
  --cal-border: rgba(148, 163, 184, .11);
  --cal-text: #e8eef8;
  --cal-muted: #7f8da3;
  --cal-accent: #8187ff;
  --cal-selected: rgba(124, 131, 255, .15);
  --cal-today: #8c78ff;
}

.month-calendar-scroll,
.month-weekdays,
.month-calendar-grid,
.month-day,
.month-day-empty {
  border-color: var(--cal-border) !important;
}

.month-calendar-scroll {
  background: rgba(5, 10, 19, .5) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}

.month-weekdays {
  background: var(--cal-header) !important;
}

.month-weekdays div {
  color: #aebbd0 !important;
}

.month-day {
  color: var(--cal-text) !important;
  background: var(--cal-cell) !important;
  transition: background .16s ease, transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.month-day:hover {
  z-index: 2;
  background: rgba(23, 35, 57, .95) !important;
  box-shadow: inset 0 0 0 1px rgba(129,140,248,.2), 0 12px 28px rgba(0,0,0,.18) !important;
  transform: translateY(-1px);
}

.month-day-empty,
.month-day.other-month {
  color: #40506a !important;
  background: var(--cal-cell-muted) !important;
}

.month-day.selected {
  background: var(--cal-selected) !important;
  box-shadow: inset 0 0 0 2px var(--cal-accent), 0 0 24px rgba(124,131,255,.12) !important;
}

.month-day.has-bookings:not(.selected) {
  background: linear-gradient(145deg, rgba(124,131,255,.065), var(--cal-cell)) !important;
  box-shadow: inset 0 0 0 1px rgba(129,140,248,.14) !important;
}

.month-day.is-today .month-day-head > strong {
  background: linear-gradient(135deg, #6f75ff, #935fe9) !important;
  box-shadow: 0 7px 16px rgba(112,94,255,.3);
}

.month-count {
  background: rgba(124,131,255,.18) !important;
  color: #dfe3ff !important;
  border: 1px solid rgba(129,140,248,.22);
}

.month-event {
  color: #dbe5f3;
  background: rgba(51,65,85,.38);
  border: 1px solid rgba(148,163,184,.08);
  border-left-width: 3px;
  transition: transform .16s ease, filter .16s ease;
}

.month-event:hover {
  filter: brightness(1.12);
  transform: translateX(2px);
}

.month-event span,
.month-event small,
.month-more,
.month-calendar-legend {
  color: #91a0b7 !important;
}

.month-event-confirmed {
  border-left-color: #34d399 !important;
  background: rgba(6,118,71,.16) !important;
}

.month-event-completed {
  border-left-color: #94a3b8 !important;
  background: rgba(71,85,105,.25) !important;
}

.month-event-new {
  border-left-color: #fbbf24 !important;
  background: rgba(180,83,9,.14) !important;
}

.month-event-cancelled {
  border-left-color: #fb7185 !important;
  background: rgba(190,24,93,.13) !important;
}

.premium-page-enter .topbar {
  animation: premiumFadeDown .24s ease both;
}

.premium-page-enter .premium-card,
.premium-page-enter .card {
  animation: premiumCardIn .34s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: var(--stagger, 0ms);
}

@keyframes premiumCardIn {
  from { opacity: 0; transform: translateY(11px) scale(.995); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes premiumFadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes premiumNoticeIn {
  from { opacity: 0; transform: translateY(-8px) scale(.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes premiumModalIn {
  from { opacity: 0; transform: translateY(14px) scale(.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes premiumBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes premiumLoginIn {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes premiumRipple {
  to { transform: scale(1); opacity: 0; }
}

@keyframes premiumPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.82); opacity: .68; }
}

@keyframes premiumLogoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-2px) rotate(1deg); }
}

@keyframes premiumOrb {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(16px,-12px,0) scale(1.06); }
}

@media (max-width: 1050px) {
  .shell {
    grid-template-columns: 228px minmax(0, 1fr);
  }

  .sidebar {
    padding-inline: 11px;
  }
}

@media (max-width: 760px) {
  .shell {
    display: block;
  }

  .sidebar {
    width: min(280px, 88vw);
    box-shadow: 24px 0 60px rgba(0,0,0,.42);
  }

  .main {
    padding: 18px 13px 34px;
  }

  .topbar {
    align-items: flex-start;
  }

  .premium-topbar-tools {
    margin-left: auto;
  }

  .premium-date-pill {
    display: none;
  }

  .mobile-menu {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
  }

  .card,
  .premium-card {
    border-radius: 16px;
  }
}

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