@font-face {
  font-family: "MedusaWBFont";
  src: url("medusa-wb-font.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --nc-page-max: 1400px;
  --nc-page-gutter: clamp(18px, 5vw, 80px);
  --nc-space-1: 4px;
  --nc-space-2: 8px;
  --nc-space-3: 12px;
  --nc-space-4: clamp(16px, 2vw, 24px);
  --nc-space-5: clamp(22px, 3vw, 36px);
  --nc-radius: 8px;
  --nc-control-size: 40px;
  --nc-toolbar-columns: 4;
  --nc-dashboard-left-ratio: 1fr;
  --nc-dashboard-right-ratio: 1fr;
  --nc-gallery-admin-tile: 150px;
  --nc-gallery-admin-gap: 18px;
  --nc-gallery-admin-six-column-min: calc((100% - var(--nc-gallery-admin-gap) - var(--nc-gallery-admin-gap) - var(--nc-gallery-admin-gap) - var(--nc-gallery-admin-gap) - var(--nc-gallery-admin-gap)) / 6);
  --nc-yellow: #fee60a;
  --nc-yellow-soft: #fff48a;
  --nc-ink: #111318;
  --nc-text: #20242b;
  --nc-surface: #ffffff;
  --nc-border: #dfe4e8;
  --nc-border-strong: #c4cbd2;
  --nc-primary: #111318;
  --nc-primary-hover: #292d33;
  --nc-focus: #e5bd00;
  --nc-danger: #b42318;
  --nc-editor-color-1: #2f343a;
  --nc-editor-color-2: #9a6b00;
  --nc-editor-color-3: #0f6f68;
  --nc-editor-color-4: #b42318;
  --nc-font: "MedusaWBFont", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --nc-top-line: 10px;
  --nc-logo-width: 250px;
  --nc-logo-border: 2px;
  --nc-logo-padding: 20px;
  --nc-logo-top-offset: -2px;
  --nc-logo-bottom-extra: var(--nc-top-line);
  --nc-logo-image-width: 75%;
  --nc-header-clearance: 160px;
  --nc-top-action-top: calc(var(--nc-top-line) + var(--nc-logo-padding) + 16px);
  --nc-top-action-width: 160px;
  --nc-top-action-height: 52px;
  --nc-footer-panel-offset: calc(var(--nc-top-line) + var(--nc-logo-top-offset));
  --nc-footer-help-height: 44px;
  --nc-editor-gap: 30px;
  --nc-text-animation-duration: 0.9s;
  --nc-button-transition-duration: var(--nc-text-animation-duration);
  --nc-details-transition-duration: 0.9s;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #e8e8e8;
  background-image:
    radial-gradient(1180px 720px at 12% 14%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 62%),
    radial-gradient(980px 620px at 88% 16%, rgba(150, 150, 150, 0.22), rgba(150, 150, 150, 0) 58%),
    radial-gradient(860px 620px at 50% 108%, rgba(254, 230, 10, 0.13), rgba(254, 230, 10, 0) 60%),
    linear-gradient(180deg, #eeeeee 0%, #e3e3e3 48%, #dcdcdc 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--nc-text);
  font-family: var(--nc-font);
  line-height: 1.5;
}
a {
  color: var(--nc-ink);
  text-decoration: none;
}
a:hover { text-decoration: underline; }
button, input, select {
  border: 1px solid var(--nc-border-strong);
  border-radius: 6px;
  font: inherit;
  min-height: var(--nc-control-size);
  padding: 9px 12px;
}
button, .nc-primary {
  background-color: var(--nc-primary);
  color: #fff;
  cursor: pointer;
}
button:hover, .nc-primary:hover {
  background-color: var(--nc-primary-hover);
  text-decoration: none;
}
button:focus-visible,
a:focus-visible,
input:not(.input-field):focus-visible,
select:focus-visible {
  outline: 3px solid var(--nc-focus);
  outline-offset: 2px;
}
.nc-page-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.58), rgba(232, 232, 232, 0.82) 58%),
    rgba(232, 232, 232, 0.76);
  backdrop-filter: blur(7px);
  opacity: 1;
  visibility: visible;
  transition: opacity 360ms ease, visibility 360ms ease;
}
.nc-page-loader[hidden] {
  display: none;
}
.nc-page-loader-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.nc-loader {
  position: relative;
  width: 96px;
  height: 96px;
  transform: rotate(45deg);
}
.nc-loader-square {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  margin: 2px;
  background: var(--nc-yellow);
  border: 2px solid #030303;
  box-shadow: 0 10px 22px rgba(3, 3, 3, 0.16);
  animation: square-animation 10s ease-in-out infinite both;
}
.nc-loader-square:nth-of-type(1) { animation-delay: -1.4285714286s; }
.nc-loader-square:nth-of-type(2) { animation-delay: -2.8571428571s; }
.nc-loader-square:nth-of-type(3) { animation-delay: -4.2857142857s; }
.nc-loader-square:nth-of-type(4) { animation-delay: -5.7142857143s; }
.nc-loader-square:nth-of-type(5) { animation-delay: -7.1428571429s; }
.nc-loader-square:nth-of-type(6) { animation-delay: -8.5714285714s; }
.nc-loader-square:nth-of-type(7) { animation-delay: -10s; }
.nc-admin-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  min-height: var(--nc-top-line);
  height: var(--nc-top-line);
  padding: 0;
  background: var(--nc-yellow);
  position: relative;
  z-index: 1000;
}
.nc-top-side {
  position: relative;
  min-width: 0;
  height: var(--nc-top-line);
  background: var(--nc-yellow);
  border-bottom: var(--nc-logo-border) solid #030303;
}
.nc-brand {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1001;
  width: min(var(--nc-logo-width), 72vw);
  margin-top: calc(var(--nc-top-line) + var(--nc-logo-top-offset));
  padding: var(--nc-logo-padding) var(--nc-logo-padding) calc(var(--nc-logo-padding) + var(--nc-logo-bottom-extra));
  background: var(--nc-yellow);
  border-right: var(--nc-logo-border) solid #030303;
  border-bottom: var(--nc-logo-border) solid #030303;
  border-left: var(--nc-logo-border) solid #030303;
}
.nc-brand,
.nc-brand:hover {
  text-decoration: none;
}
.nc-brand img {
  display: block;
  width: var(--nc-logo-image-width);
  height: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--nc-button-transition-duration) ease;
  transform-origin: center;
}
.nc-brand:hover img,
.nc-brand:focus-visible img {
  transform: scale(1.1);
}
.nc-top-nav {
  position: absolute;
  z-index: 1002;
  top: var(--nc-top-action-top);
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--nc-page-max), calc(100% - var(--nc-page-gutter) - var(--nc-page-gutter)));
  transform: translateX(-50%);
  pointer-events: none;
}
.nc-top-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--nc-top-action-width);
  height: var(--nc-top-action-height);
  min-width: var(--nc-top-action-width);
  min-height: var(--nc-top-action-height);
  padding: 0 22px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}
.nc-top-action-form {
  margin: 0;
}
.nc-top-nav .nc-top-action,
.nc-top-nav .nc-top-action-form {
  pointer-events: auto;
}
.nc-primary,
.nc-row-title button {
  border: 1px solid var(--nc-ink);
  border-radius: 0;
  background-color: #030303;
  color: var(--nc-yellow);
  box-shadow: 4px 4px 8px #c5c5c5, -4px -4px 8px #ffffff;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    background-color var(--nc-button-transition-duration) ease,
    color var(--nc-button-transition-duration) ease,
    box-shadow var(--nc-button-transition-duration) ease,
    transform var(--nc-button-transition-duration) ease;
  overflow: hidden;
}
.nc-primary:hover,
.nc-row-title button:hover {
  background-color: var(--nc-yellow);
  color: var(--nc-ink);
  box-shadow: 5px 5px 10px #c5c5c5, -5px -5px 10px #ffffff;
  transform: translate(-1px, -1px);
}
.nc-primary:active,
.nc-row-title button:active {
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
  transform: translate(0, 0);
}
.nc-primary > span,
.nc-row-title button > span {
  position: relative;
  box-sizing: border-box;
  background: inherit;
  letter-spacing: inherit;
  transition: color var(--nc-button-transition-duration) ease;
}
.nc-primary > span::before,
.nc-row-title button > span::before {
  position: absolute;
  box-sizing: border-box;
  content: "";
  background: inherit;
}
.nc-primary:hover > span::before,
.nc-primary:focus-visible > span::before,
.nc-row-title button:hover > span::before,
.nc-row-title button:focus-visible > span::before {
  animation: chitchat linear both 1.2s;
  animation-duration: var(--nc-text-animation-duration);
}
.nc-primary.nc-button-exit > span::before,
.nc-row-title button.nc-button-exit > span::before {
  animation: chitchat-out linear both var(--nc-text-animation-duration);
}
.nc-admin {
  flex: 1 0 auto;
  width: min(var(--nc-page-max), calc(100% - var(--nc-page-gutter) - var(--nc-page-gutter)));
  margin: calc(var(--nc-space-5) + var(--nc-header-clearance)) auto var(--nc-space-5);
  padding: 0;
}
.nc-panel {
  container-type: inline-size;
  margin-bottom: var(--nc-space-4);
  padding: var(--nc-space-4);
  background: var(--nc-surface);
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
  box-shadow:
    10px 10px 22px rgba(180, 180, 180, 0.28),
    -7px -7px 18px rgba(255, 255, 255, 0.72),
    0 18px 36px rgba(17, 19, 24, 0.05);
}
.nc-panel > h1,
.nc-panel > h2 {
  margin-top: 0;
}
.nc-panel > h2 {
  margin-bottom: var(--nc-space-4);
}
.nc-editor-panel {
  padding: var(--nc-editor-gap);
}
.nc-editor-back {
  display: inline-block;
  margin-bottom: var(--nc-editor-gap);
  color: var(--nc-ink);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-decoration: none;
  text-transform: uppercase;
  transition: font-weight var(--nc-button-transition-duration) ease;
}
.nc-editor-back:hover,
.nc-editor-back:focus-visible {
  font-weight: 700;
  text-decoration: none;
}
.nc-doc-back-bottom {
  margin-top: var(--nc-editor-gap);
  margin-bottom: 0;
}
.nc-editor-heading {
  margin: 0;
  line-height: 1;
}
.nc-dashboard {
  display: grid;
  grid-template-columns: minmax(0, var(--nc-dashboard-left-ratio)) minmax(0, var(--nc-dashboard-right-ratio));
  gap: var(--nc-space-4);
  align-items: stretch;
}
.nc-dashboard-left {
  display: grid;
  gap: var(--nc-space-4);
  align-content: start;
}
.nc-dashboard .nc-panel {
  margin-bottom: 0;
}
.nc-dashboard-gallery {
  align-self: stretch;
}
.nc-doc-panel {
  width: 100%;
}
.nc-doc-content {
  display: grid;
  gap: var(--nc-space-3);
  width: 100%;
  max-width: none;
}
.nc-doc-content > * {
  margin: 0;
}
.nc-doc-content h3 {
  margin-top: var(--nc-space-3);
}
.nc-doc-content ul,
.nc-doc-content ol {
  padding-left: 1.35em;
}
.nc-doc-button-list {
  list-style: none;
  padding-left: 1.35em;
}
.nc-doc-button-list li + li {
  margin-top: var(--nc-space-3);
}
.nc-doc-content pre {
  overflow-x: auto;
  padding: var(--nc-space-3);
  background: #f7f8f8;
  border: 1px solid var(--nc-border);
  border-radius: 6px;
}
.nc-doc-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}
.nc-admin-footer {
  flex-shrink: 0;
  position: relative;
  margin-top: var(--nc-space-5);
}
.nc-footer-bar {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  height: var(--nc-top-line);
  background: var(--nc-yellow);
}
.nc-footer-bar-side {
  min-width: 0;
  height: var(--nc-top-line);
  background: var(--nc-yellow);
  border-top: var(--nc-logo-border) solid #030303;
}
.nc-footer-bar-center {
  width: min(var(--nc-logo-width), 72vw);
  height: var(--nc-top-line);
  background: var(--nc-yellow);
}
.nc-footer-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(var(--nc-logo-width), 72vw) minmax(0, 1fr);
  align-items: center;
  width: min(var(--nc-page-max), calc(100% - var(--nc-page-gutter) - var(--nc-page-gutter)));
  margin: 0 auto;
  padding-bottom: var(--nc-footer-panel-offset);
}
.nc-footer-side {
  display: flex;
  align-items: center;
  min-width: 0;
  color: var(--nc-ink);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}
.nc-footer-left {
  justify-content: flex-start;
  text-align: left;
}
.nc-footer-left p {
  margin: 0;
}
.nc-footer-left a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  transition: font-weight var(--nc-button-transition-duration) ease;
}
.nc-footer-left a:hover,
.nc-footer-left a:focus-visible {
  font-weight: 700;
  text-decoration: none;
}
.nc-footer-right {
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: right;
}
.nc-footer-right a {
  color: var(--nc-ink);
  font-weight: 400;
  text-decoration: none;
  transition: font-weight var(--nc-button-transition-duration) ease;
}
.nc-footer-right .nc-footer-doc-link {
  font-size: 10px;
}
.nc-footer-right a:hover,
.nc-footer-right a:focus-visible {
  font-weight: 700;
  text-decoration: none;
}
.nc-footer-help-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(var(--nc-logo-width), 72vw);
  min-height: calc(var(--nc-footer-help-height) + var(--nc-footer-panel-offset));
  padding: var(--nc-footer-panel-offset) var(--nc-logo-padding) 0;
  background: var(--nc-yellow);
  border-top: var(--nc-logo-border) solid #030303;
  border-right: var(--nc-logo-border) solid #030303;
  border-left: var(--nc-logo-border) solid #030303;
}
.nc-footer-help {
  position: relative;
  display: inline-block;
  color: var(--nc-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  overflow: hidden;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--nc-button-transition-duration) ease;
}
.nc-footer-help:hover,
.nc-footer-help:focus-visible {
  text-decoration: none;
}
.nc-footer-help::before {
  position: absolute;
  box-sizing: border-box;
  content: "";
  background: var(--nc-yellow);
}
.nc-footer-help:hover::before,
.nc-footer-help:focus-visible::before {
  animation: chitchat linear both 1.2s;
  animation-duration: var(--nc-text-animation-duration);
}
.nc-footer-help.nc-button-exit::before {
  animation: chitchat-out linear both var(--nc-text-animation-duration);
}
.nc-login-admin {
  min-height: calc(100vh - var(--nc-top-line));
  width: 100%;
  margin: 0;
}
.nc-login-screen {
  min-height: calc(100vh - var(--nc-top-line));
  position: relative;
  width: min(var(--nc-page-max), calc(100% - var(--nc-page-gutter) - var(--nc-page-gutter)));
  margin: 0 auto;
  padding: 0;
}
body.nc-login-page .nc-login-admin,
body.nc-login-page .nc-login-screen {
  min-height: 0;
}
.nc-login-stack {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(360px, calc(100vw - 44px));
  margin: 0;
  transform: translate(-50%, -50%);
}
.nc-login-form {
  display: grid;
  gap: 46px;
}
.input-container {
  position: relative;
  margin: 20px;
}
.input-field {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  background-color: transparent;
  box-shadow: none;
  color: #000000;
}
.input-field:focus,
.input-field:focus-visible {
  outline: none;
}
.input-label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  color: rgb(204, 204, 204);
  pointer-events: none;
  transition: all 0.2s ease;
}
.input-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #000000;
  transition: all 0.3s ease;
}
.input-field:focus + .input-label,
.input-field:not(:placeholder-shown) + .input-label {
  top: -20px;
  font-size: 12px;
  color: #030303;
}
.input-field:focus + .input-label + .input-highlight,
.input-field:not(:placeholder-shown) + .input-label + .input-highlight {
  width: 100%;
}
.nc-login-actions-row {
  display: grid;
  grid-template-columns: max-content;
  justify-content: center;
  align-items: end;
  gap: var(--nc-space-4);
  margin: 58px 20px 0;
}
.nc-login-submit,
.nc-reset-submit {
  min-width: 160px;
  min-height: 52px;
  padding: 0 22px;
  font-size: 12px;
}
.nc-login-reset {
  display: grid;
  justify-content: stretch;
  margin: 32px 0 0;
}
.nc-reset-details {
  width: 100%;
}
.nc-reset-details summary {
  display: block;
  width: 160px;
  margin-left: auto;
  margin-right: auto;
  min-height: 42px;
  padding: 13px 10px 0;
  background: #eeeeee;
  border: 1px solid transparent;
  color: rgb(204, 204, 204);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1.2;
  list-style: none;
  text-align: center;
  text-transform: uppercase;
}
.nc-reset-details summary::-webkit-details-marker {
  display: none;
}
.nc-reset-details summary:hover,
.nc-reset-details[open] summary {
  color: #030303;
}
.nc-reset-details[open] summary {
  border-color: #d6d6d6;
  border-bottom-color: #eeeeee;
  box-shadow: 8px 0 18px rgba(180, 180, 180, 0.2), -5px -5px 14px rgba(255, 255, 255, 0.52);
}
.nc-reset-details .nc-details-content {
  margin-top: -1px;
  background: #eeeeee;
  border: 1px solid #d6d6d6;
  box-shadow: 8px 8px 18px rgba(180, 180, 180, 0.45), -5px -5px 14px rgba(255, 255, 255, 0.72);
}
.nc-reset-form {
  display: grid;
  gap: 28px;
  margin-top: 0;
  padding: 20px 0 22px;
}
.nc-reset-submit {
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  white-space: normal;
}
.nc-list { display: grid; gap: var(--nc-space-2); }
.nc-empty-list {
  color: var(--nc-text);
  font-size: inherit;
  line-height: 1.5;
}
.nc-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--nc-space-3);
  padding: var(--nc-space-3);
  background: #f7f8f8;
  border: 1px solid var(--nc-border);
  border-radius: 6px;
}
.nc-list-row a {
  align-self: center;
  color: var(--nc-ink);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: font-weight var(--nc-button-transition-duration) ease;
}
.nc-list-row a:hover,
.nc-list-row a:focus-visible {
  font-weight: 700;
  text-decoration: none;
}
.nc-row-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--nc-space-3);
}
.nc-subarticle-posts {
  margin-top: var(--nc-editor-gap);
}
.nc-subarticle-posts .nc-row-title {
  margin-bottom: var(--nc-editor-gap);
}
.nc-subarticle-posts .nc-row-title h2 {
  margin: 0;
  line-height: 1;
}
.nc-subarticle-posts .nc-row-title form {
  margin: 0;
}
.nc-flash {
  width: min(560px, calc(100vw - 36px));
  padding: 18px 22px;
  border-radius: 0;
  background: #edf8ef;
  border: 1px solid #b6dfbd;
  box-shadow: 0 18px 60px rgba(17, 19, 24, 0.22);
  color: var(--nc-ink);
  text-align: center;
}
.nc-flash-error { background: #ffe5e5; border-color: #ffb3b3; }
.nc-flash-layer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: rgba(232, 232, 232, 0.55);
  cursor: pointer;
  padding: var(--nc-space-4);
}
.nc-flash-layer[hidden] {
  display: none;
}
.nc-toolbar {
  display: grid;
  grid-template-columns: repeat(var(--nc-toolbar-columns), minmax(0, 1fr));
  gap: 3px;
  margin: 0 0 var(--nc-editor-gap);
}
.nc-toolbar button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 40px;
  padding: 5px 4px;
  background: #f7f8f8;
  color: var(--nc-ink);
  border: 1px solid #d6dce1;
  border-radius: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  transition:
    background-color var(--nc-button-transition-duration) ease,
    border-color var(--nc-button-transition-duration) ease,
    box-shadow var(--nc-button-transition-duration) ease;
  white-space: nowrap;
}
.nc-toolbar button:hover {
  background: #eceeef;
  border-color: #aeb6bd;
  box-shadow: inset 0 0 0 1px rgba(17, 19, 24, 0.06);
}
.nc-toolbar button:active,
.nc-toolbar-clicked {
  background: #d3d8dc;
  border-color: #79848d;
  box-shadow:
    inset 2px 2px 5px rgba(17, 19, 24, 0.22),
    inset -2px -2px 5px rgba(255, 255, 255, 0.68);
}
.nc-toolbar-clicked {
  animation: nc-toolbar-click 360ms ease-out both;
}
.nc-toolbar .material-icons {
  display: block;
  width: 20px;
  height: 20px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
}
.nc-toolbar b,
.nc-toolbar i,
.nc-toolbar u {
  font-size: 16px;
  line-height: 1;
}
.nc-toolbar .nc-c1 { color: var(--nc-editor-color-1); }
.nc-toolbar .nc-c2 { color: var(--nc-editor-color-2); }
.nc-toolbar .nc-c3 { color: var(--nc-editor-color-3); }
.nc-toolbar .nc-c4 { color: var(--nc-editor-color-4); }
.nc-editor {
  min-height: clamp(280px, 42vh, 520px);
  padding: var(--nc-space-4);
  margin-bottom: var(--nc-editor-gap);
  background: #f8f9fa;
  border: 1px solid #d6dce1;
  border-radius: 0;
}
.nc-editor:focus {
  border-color: #aeb6bd;
  outline: 3px solid rgba(254, 230, 10, 0.45);
  outline-offset: 2px;
}
.nc-editor a {
  text-decoration: line-through;
}
.nc-editor a:hover,
.nc-editor a:focus {
  text-decoration: line-through;
}
.nc-editor > :first-child,
.nc-editor > p:first-of-type {
  margin-top: 0;
}
.nc-editor img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.nc-editor iframe,
.nc-editor .cms-media {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}
.nc-editor-source {
  display: none;
  width: 100%;
  min-height: clamp(280px, 42vh, 520px);
  padding: var(--nc-space-4);
  margin-bottom: var(--nc-editor-gap);
  border: 1px solid var(--nc-yellow);
  background: var(--nc-ink);
  color: var(--nc-yellow);
  caret-color: var(--nc-yellow);
  font-family: Menlo, Consolas, monospace;
}
.nc-editor-source:focus {
  border-color: var(--nc-yellow);
  outline: 3px solid rgba(254, 230, 10, 0.45);
  outline-offset: 2px;
}
.nc-editor-source-active { display: block; }
.nc-editor-form {
  margin-top: var(--nc-editor-gap);
}
.nc-editor-form.nc-editor-code-mode .nc-editor {
  display: none;
}
.nc-editor-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--nc-space-3);
  margin-top: 0;
}
.nc-editor-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--nc-top-action-width);
  height: var(--nc-top-action-height);
  min-width: var(--nc-top-action-width);
  min-height: var(--nc-top-action-height);
  padding: 0 22px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}
.cms-c1 { color: var(--nc-editor-color-1); }
.cms-c2 { color: var(--nc-editor-color-2); }
.cms-c3 { color: var(--nc-editor-color-3); }
.cms-c4 { color: var(--nc-editor-color-4); }
.cms-align-left { text-align: left; }
.cms-align-center { text-align: center; }
.cms-align-right { text-align: right; }
.cms-align-justify { text-align: justify; }
.cms-price-list {
  width: 100%;
  margin: var(--nc-space-4) 0;
  border-collapse: collapse;
}
.cms-price-list td,
.cms-price-list th {
  padding: 10px;
  border: 1px solid var(--nc-border-strong);
}
.cms-expand {
  margin: var(--nc-space-4) 0;
  padding: var(--nc-space-3);
  border: 1px solid var(--nc-border-strong);
}
.cms-expand summary {
  cursor: pointer;
  font-weight: 700;
}
.nc-details-content {
  overflow: hidden;
  transition:
    height var(--nc-details-transition-duration) ease,
    opacity var(--nc-details-transition-duration) ease;
}
.nc-details-content[hidden] {
  display: none;
}
.nc-gallery-admin {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, max(var(--nc-gallery-admin-tile), var(--nc-gallery-admin-six-column-min))), 1fr));
  justify-content: stretch;
  gap: var(--nc-gallery-admin-gap);
  margin-top: var(--nc-editor-gap);
  padding: 12px;
  background: #f8f9fa;
  border: 1px solid #d6dce1;
  min-height: 112px;
}
.nc-gallery-add-card {
  margin: 0;
  min-width: 0;
}
.nc-gallery-add {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  min-height: 0;
  padding: 0;
  border: 1px dashed #aeb6bd;
  border-radius: 0;
  background: #f7f8f8;
  color: #646b73;
  cursor: pointer;
  transition:
    background-color var(--nc-button-transition-duration) ease,
    border-color var(--nc-button-transition-duration) ease,
    box-shadow var(--nc-button-transition-duration) ease,
    color var(--nc-button-transition-duration) ease;
}
.nc-gallery-add span {
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
}
.nc-gallery-add:hover,
.nc-gallery-add:focus-visible {
  background: #eceeef;
  border-color: #79848d;
  color: var(--nc-ink);
  box-shadow: inset 0 0 0 1px rgba(17, 19, 24, 0.06);
}
.nc-gallery-add:active {
  background: #d3d8dc;
  border-color: #79848d;
  box-shadow:
    inset 2px 2px 5px rgba(17, 19, 24, 0.22),
    inset -2px -2px 5px rgba(255, 255, 255, 0.68);
}
.nc-gallery-card {
  position: relative;
  margin: 0;
  padding: 0;
  border: 1px solid var(--nc-border-strong);
  background: #fff;
  cursor: grab;
}
.nc-gallery-card.is-dragging {
  opacity: 0.45;
}
.nc-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.nc-gallery-delete {
  position: absolute;
  top: 0;
  right: 0;
}
.nc-gallery-delete button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
  color: #24262b;
}
.nc-gallery-delete .material-icons {
  font-size: 28px;
}
.nc-gallery-delete button:hover {
  color: var(--nc-danger);
}
.nc-crop-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.54);
  padding: 16px;
  overflow: auto;
}
.nc-crop-modal[hidden] {
  display: none;
}
.nc-crop-dialog {
  position: relative;
  display: grid;
  width: max-content;
  max-width: 100%;
  gap: var(--nc-space-3);
}
.nc-crop-stage {
  position: relative;
  width: min(88vw, 900px);
  aspect-ratio: 3 / 2;
  overflow: visible;
  background: transparent;
  isolation: isolate;
  touch-action: none;
  z-index: 1;
}
.nc-crop-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.58);
}
.nc-crop-stage.is-portrait {
  width: min(72vw, 540px);
  aspect-ratio: 2 / 3;
  justify-self: center;
}
.nc-crop-image {
  position: absolute;
  z-index: 1;
  max-width: none;
  width: auto;
  height: auto;
  cursor: move;
  user-select: none;
  -webkit-user-drag: none;
}
.nc-crop-actions {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: var(--nc-top-action-width) minmax(0, 1fr) var(--nc-top-action-width);
  gap: var(--nc-space-3);
  align-items: center;
  width: 100%;
}
.nc-crop-close,
.nc-crop-save {
  box-shadow: none;
}
.nc-crop-close:hover,
.nc-crop-save:hover {
  box-shadow: none;
}
.nc-crop-close:active,
.nc-crop-save:active {
  box-shadow: inset 4px 4px 12px rgba(0, 0, 0, 0.34), inset -4px -4px 12px rgba(255, 255, 255, 0.14);
}
.nc-crop-close {
  justify-self: start;
}
.nc-crop-save {
  justify-self: end;
}
.nc-crop-rotate-group {
  display: flex;
  justify-content: center;
  gap: var(--nc-space-2);
}
.nc-crop-rotate-button {
  display: inline-grid;
  place-items: center;
  width: var(--nc-top-action-height);
  height: var(--nc-top-action-height);
  min-height: 0;
  padding: 0;
  border: 1px solid var(--nc-ink);
  border-radius: 0;
  background: #030303;
  color: var(--nc-yellow);
  box-shadow: none;
  transition:
    background-color var(--nc-button-transition-duration) ease,
    color var(--nc-button-transition-duration) ease,
    box-shadow var(--nc-button-transition-duration) ease,
    transform var(--nc-button-transition-duration) ease;
}
.nc-crop-rotate-button:hover,
.nc-crop-rotate-button:focus-visible {
  background: var(--nc-yellow);
  color: var(--nc-ink);
  box-shadow: none;
  transform: translate(-1px, -1px);
}
.nc-crop-rotate-button:active {
  box-shadow: inset 4px 4px 12px rgba(0, 0, 0, 0.34), inset -4px -4px 12px rgba(255, 255, 255, 0.14);
  transform: translate(0, 0);
}
.nc-crop-rotate-button .material-icons {
  font-size: 24px;
}
@container (min-width: 620px) {
  .nc-toolbar { --nc-toolbar-columns: 8; }
}

@container (min-width: 980px) {
  .nc-toolbar { --nc-toolbar-columns: 12; }
}

@supports not (container-type: inline-size) {
  @media (min-width: 700px) {
    .nc-toolbar { --nc-toolbar-columns: 8; }
  }

  @media (min-width: 1100px) {
    .nc-toolbar { --nc-toolbar-columns: 12; }
  }
}

@keyframes square-animation {
  0%, 10.5%, 100% {
    left: 0;
    top: 0;
  }
  12.5%, 23% {
    left: 32px;
    top: 0;
  }
  25%, 35.5% {
    left: 64px;
    top: 0;
  }
  37.5%, 48% {
    left: 64px;
    top: 32px;
  }
  50%, 60.5% {
    left: 32px;
    top: 32px;
  }
  62.5%, 73% {
    left: 32px;
    top: 64px;
  }
  75%, 85.5% {
    left: 0;
    top: 64px;
  }
  87.5%, 98% {
    left: 0;
    top: 32px;
  }
}

@keyframes chitchat {
  0% { content: "#"; }
  5% { content: "."; }
  10% { content: "^{"; }
  15% { content: "-!"; }
  20% { content: "#$_"; }
  25% { content: "№:0"; }
  30% { content: "#{+."; }
  35% { content: "@}-?"; }
  40% { content: "?{4@%"; }
  45% { content: "=.,^!"; }
  50% { content: "?2@%"; }
  55% { content: "\\;1}]"; }
  60% {
    content: "?{%:%";
    right: 0;
  }
  65% {
    content: "|{f[4";
    right: 0;
  }
  70% {
    content: "{4%0%";
    right: 0;
  }
  75% {
    content: "'1_0<";
    right: 0;
  }
  80% {
    content: "{0%";
    right: 0;
  }
  85% {
    content: "]>'";
    right: 0;
  }
  90% {
    content: "4";
    right: 0;
  }
  95% {
    content: "2";
    right: 0;
  }
  100% {
    content: "";
    right: 0;
  }
}

@keyframes chitchat-out {
  0% {
    content: "2";
    right: 0;
  }
  5% {
    content: "4";
    right: 0;
  }
  10% {
    content: "]>'";
    right: 0;
  }
  15% {
    content: "{0%";
    right: 0;
  }
  20% {
    content: "'1_0<";
    right: 0;
  }
  25% {
    content: "{4%0%";
    right: 0;
  }
  30% {
    content: "|{f[4";
    right: 0;
  }
  35% {
    content: "?{%:%";
    right: 0;
  }
  40% { content: "\\;1}]"; }
  45% { content: "?2@%"; }
  50% { content: "=.,^!"; }
  55% { content: "?{4@%"; }
  60% { content: "@}-?"; }
  65% { content: "#{+."; }
  70% { content: "№:0"; }
  75% { content: "#$_"; }
  80% { content: "-!"; }
  85% { content: "^{"; }
  90% { content: "."; }
  95% { content: "#"; }
  100% { content: ""; }
}

@keyframes nc-toolbar-click {
  0% {
    background: #cfd5d9;
    border-color: #7f8a93;
    box-shadow:
      inset 3px 3px 6px rgba(17, 19, 24, 0.2),
      inset -2px -2px 5px rgba(255, 255, 255, 0.82);
  }
  100% {
    background: #eceeef;
    border-color: #aeb6bd;
    box-shadow: inset 0 0 0 1px rgba(17, 19, 24, 0.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nc-loader-square,
  .nc-primary:hover > span::before,
  .nc-primary:focus-visible > span::before,
  .nc-row-title button:hover > span::before,
  .nc-row-title button:focus-visible > span::before,
  .nc-footer-help:hover::before,
  .nc-footer-help:focus-visible::before,
  .nc-primary.nc-button-exit > span::before,
  .nc-row-title button.nc-button-exit > span::before,
  .nc-footer-help.nc-button-exit::before {
    animation: none;
  }
}

@supports (height: 1dvh) {
  body {
    min-height: 100dvh;
  }

  .nc-editor,
  .nc-editor-source {
    min-height: clamp(280px, 42dvh, 520px);
  }

  .nc-login-admin,
  .nc-login-screen {
    min-height: calc(100dvh - var(--nc-top-line));
  }
}

@media (max-width: 1120px) {
  body.nc-logged-in {
    --nc-header-clearance: 250px;
    --nc-top-action-top: 166px;
  }
}

@media (max-width: 900px) {
  .nc-dashboard {
    grid-template-columns: 1fr;
  }

  .nc-footer-side {
    font-size: 10px;
  }

  .nc-footer-right {
    align-content: center;
    align-items: flex-end;
    flex-direction: column;
    gap: 4px;
  }

  .nc-login-stack {
    width: min(360px, calc(100vw - 54px));
  }
}

@media (max-width: 520px) {
  body.nc-logged-in {
    --nc-header-clearance: 230px;
    --nc-top-action-top: 145px;
    --nc-top-action-width: 130px;
    --nc-top-action-height: 48px;
  }

  .nc-top-action,
  .nc-editor-action-button {
    padding: 0 14px;
    font-size: 11px;
  }

  .nc-footer-shell {
    grid-template-columns: minmax(0, 1fr) min(220px, 72vw) minmax(0, 1fr);
    width: calc(100% - 28px);
  }

  .nc-footer-bar-center,
  .nc-footer-help-panel {
    width: min(220px, 72vw);
  }

  .nc-footer-help-panel {
    min-height: calc(40px + var(--nc-footer-panel-offset));
    padding: var(--nc-footer-panel-offset) 10px 0;
  }

  .nc-footer-help {
    font-size: 11px;
  }

  .nc-footer-side {
    font-size: 9px;
    letter-spacing: 0.02em;
  }

  .nc-list-row,
  .nc-row-title,
  .nc-editor-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .nc-editor-actions {
    align-items: center;
  }
  .nc-editor-action-button {
    width: var(--nc-top-action-width);
  }

  .nc-crop-dialog {
    width: min(88vw, 360px);
  }

  .nc-crop-stage,
  .nc-crop-stage.is-portrait {
    width: 100%;
  }

  .nc-crop-actions {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nc-crop-close,
  .nc-crop-save {
    justify-self: center;
  }

  .nc-crop-close {
    order: 1;
  }

  .nc-crop-rotate-group {
    order: 2;
  }

  .nc-crop-save {
    order: 3;
  }

  .nc-login-screen {
    width: calc(100% - 36px);
    padding-top: var(--nc-header-clearance);
  }

  .nc-brand {
    width: min(220px, 72vw);
    padding: 10px 10px calc(10px + var(--nc-logo-bottom-extra));
  }

  .nc-login-stack {
    position: static;
    width: 100%;
    margin: 56px 0 46px;
    transform: none;
  }

  .nc-login-actions-row {
    grid-template-columns: 1fr;
  }

  .nc-login-submit {
    min-width: 0;
    width: 100%;
  }

  .nc-reset-details summary {
    width: auto;
    margin-left: 20px;
  }

  .nc-reset-submit {
    justify-self: stretch;
    min-width: 0;
    margin: 0 20px;
    width: auto;
  }
}
