/**
 * Tokens importer (variables & mixins only — NO CSS rules emitted)
 *
 * This file is auto-prepended to every .less file by webpack's less-loader
 * (see `additionalData` in config/webpack.js). It MUST contain only
 * @-variables and parametric mixins so that nothing gets emitted into
 * page-level CSS bundles. CSS-emitting partials (e.g. definitions/buttons.less
 * with its `.button` ruleset) must be imported directly from
 * assets/<zone>/styles/layout.importer.less so they're emitted exactly once
 * in the layout bundle.
 */
/**
 * Color Variables
 */
/* Variants */
/* Light variant */
/* Badge variants */
/**
 * Button mixins (parametric — emit NO CSS on their own).
 * Safe to load into every .less file via tokens.importer.less.
 */
#blog-post .post {
  margin-top: 4rem;
}
#blog-post .post h2 {
  margin-top: 2rem;
}
#blog-post .post h3 {
  margin-top: 2rem;
}
#blog-post .image-tool {
  display: inline-block;
  width: 100%;
  margin-top: 1rem;
}
#blog-post .image-tool img {
  max-width: 100%;
  height: auto;
  box-shadow: 0px 0px 10px 0px #c6c6c6a3;
  border: 2px solid #466e705e;
  border-radius: 0.5rem;
}
#blog-post em {
  display: inline-block;
  margin: 1rem 0 1.5rem 1rem;
}
#blog-post .image-tool--imgStretched {
  width: 100%;
}
#blog-post .image-tool--wrapStretched {
  width: 100%;
}
#blog-post .image-tool--background {
  background-color: #e8ecec;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#blog-post .image-tool--withBackground {
  max-width: 70%;
  margin: auto;
}
#blog-post .image-tool--bordered {
  padding: 1rem;
  border: solid 1px #917e61;
}
#blog-post .post-footer {
  color: #878787;
  text-align: left;
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 1rem;
}
#blog-post .short-description {
  font-style: italic;
  color: #838383;
}
#blog-post .post-content {
  margin-top: 4rem;
}
#blog-post .post-contentimg {
  border-radius: 0.3rem;
}
#blog-post .thumb-wrap {
  max-width: 600px;
}
#blog-post .thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  /* Výška bude 2/3 šířky */
  max-height: 66.666%;
  /* fallback pro starší prohlížeče */
  background-size: cover;
  background-position: center center;
  border-radius: 0.4rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
#blog-post .brt-wrapper.brt-public {
  margin: 2.5rem 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
#blog-post .brt-table-wrap {
  border-radius: 0.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07), 0 1.5px 6px rgba(0, 0, 0, 0.04);
  background: #fff;
  overflow: auto;
}
#blog-post .brt-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
}
#blog-post .brt-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  /* background: linear-gradient(180deg, #f7f8fc 0%, #eef1f7 100%); */
  background-color: #cb8e4c;
  padding: 0.5rem;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #ffffff;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  border-bottom: 2px solid #dce1ea;
  transition: background 0.2s, color 0.2s;
}
#blog-post .brt-table thead th:hover {
  background-color: #c1823e;
  /*color: #374151;*/
}
#blog-post .brt-table thead th:first-child {
  border-top-left-radius: 0.5rem;
}
#blog-post .brt-table thead th:last-child {
  border-top-right-radius: 0.5rem;
}
#blog-post .brt-table thead th .brt-sort-icon {
  font-size: 10px;
  margin-left: 3px;
  opacity: 0.6;
  vertical-align: middle;
}
#blog-post .brt-table .brt-th-inner {
  display: flex;
  align-items: center;
  gap: 4px;
}
#blog-post .brt-table .brt-th-sort {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
#blog-post .brt-table .brt-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid #d0d5dd;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.2s;
  flex-shrink: 0;
  padding: 0;
}
#blog-post .brt-table .brt-filter-btn:hover {
  opacity: 1;
  border-color: #4f8cff;
  background: #eef3ff;
}
#blog-post .brt-table .brt-filter-btn.brt-filter-active {
  opacity: 1;
  border-color: #4f8cff;
  background: #dbeafe;
}
#blog-post .brt-table .brt-filter-btn svg {
  pointer-events: none;
}
#blog-post .brt-table .brt-filter-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  min-width: 170px;
  background: #fff;
  border: 1px solid #e2e6ed;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  margin-top: 4px;
}
#blog-post .brt-table .brt-filter-dropdown label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  transition: background 0.1s;
}
#blog-post .brt-table .brt-filter-dropdown label:hover {
  background: #f5f7ff;
}
#blog-post .brt-table .brt-filter-dropdown input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: #4f8cff;
  cursor: pointer;
  margin: 0;
}
#blog-post .brt-table .brt-filter-dropdown .brt-filter-divider {
  height: 1px;
  background: #eef0f4;
  margin: 4px 0;
}
#blog-post .brt-table .brt-row-hidden {
  display: none !important;
}
#blog-post .brt-table tbody td {
  padding: 0.5rem;
  font-size: 13.5px;
  color: #374151;
  border-bottom: 1px solid #f0f2f5;
  vertical-align: top;
  transition: background 0.2s;
  line-height: 1.5;
}
#blog-post .brt-table tbody tr:last-child td {
  border-bottom: none;
}
#blog-post .brt-table tbody tr.brt-row-main td {
  border-bottom: none;
}
#blog-post .brt-table tbody tr.brt-row-desc td {
  padding: 0 16px 14px 16px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  border-bottom: 1px solid #eceef3;
  word-break: break-word;
  text-wrap: auto;
}
#blog-post .brt-table tbody tr.brt-row-desc:last-child td {
  border-bottom: none;
}
#blog-post .brt-table .brt-desc-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9ca3af;
  margin-right: 6px;
}
#blog-post .brt-table tbody tr.brt-row-main:nth-of-type(4n+3) td,
#blog-post .brt-table tbody tr.brt-row-desc:nth-of-type(4n+4) td {
  background: #fafbfd;
}
#blog-post .brt-table tbody tr.brt-row-main:hover td {
  background: #f5f7ff;
}
#blog-post .brt-table tbody tr.brt-row-main:hover + tr.brt-row-desc td {
  background: #f5f7ff;
}
#blog-post .brt-table td:nth-child(5) td:nth-child(6) {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  color: #6b7280;
  font-size: 12.5px;
  letter-spacing: 0.2px;
}
#blog-post .brt-table td:first-child {
  font-weight: 600;
  color: #1f2937;
}
#blog-post .brt-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  letter-spacing: 0.15px;
}
#blog-post .brt-badge--red {
  background: #fde8e8;
  color: #b91c1c;
  box-shadow: inset 0 0 0 1px rgba(185, 28, 28, 0.12);
}
#blog-post .brt-badge--green {
  background: #dcfce7;
  color: #15803d;
  box-shadow: inset 0 0 0 1px rgba(21, 128, 61, 0.12);
}
#blog-post .brt-badge--blue {
  background: #dbeafe;
  color: #1d4ed8;
  box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.1);
}
#blog-post .brt-badge--orange {
  background: #fef3c7;
  color: #b45309;
  box-shadow: inset 0 0 0 1px rgba(180, 83, 9, 0.12);
}
#blog-post .brt-badge--default {
  background: #f3f4f6;
  color: #6b7280;
}
#blog-post .brt-priority--high {
  background: #fee2e2;
  color: #991b1b;
  box-shadow: inset 0 0 0 1px rgba(153, 27, 27, 0.12);
}
#blog-post .brt-priority--medium {
  background: #fef3c7;
  color: #92400e;
  box-shadow: inset 0 0 0 1px rgba(146, 64, 14, 0.1);
}
#blog-post .brt-priority--low {
  background: #dcfce7;
  color: #166534;
  box-shadow: inset 0 0 0 1px rgba(22, 101, 52, 0.1);
}
#blog-post .brt-status--reported {
  background: #fef3c7;
  color: #b45309;
  box-shadow: inset 0 0 0 1px rgba(180, 83, 9, 0.1);
}
#blog-post .brt-status--resolved {
  background: #dcfce7;
  color: #15803d;
  box-shadow: inset 0 0 0 1px rgba(21, 128, 61, 0.1);
}
#blog-post .brt-status--implemented {
  background: #dbeafe;
  color: #1d4ed8;
  box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.1);
}
@media (max-width: 992px) {
  #blog-post .brt-table thead th {
    padding: 10px 10px;
    font-size: 10px;
  }
  #blog-post .brt-table tbody td {
    padding: 10px 10px;
    font-size: 12.5px;
  }
}
@media (max-width: 576px) {
  #blog-post .brt-table-wrap {
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }
  #blog-post .brt-table thead th {
    padding: 8px 6px;
    font-size: 9px;
    letter-spacing: 0.3px;
  }
  #blog-post .brt-table tbody td {
    padding: 8px 6px;
    font-size: 11.5px;
  }
  #blog-post .brt-badge {
    padding: 3px 8px;
    font-size: 10px;
  }
  #blog-post .brt-table tr.brt-row-desc td {
    padding: 0 6px 10px 6px;
  }
}

/**
 * Tokens importer (variables & mixins only — NO CSS rules emitted)
 *
 * This file is auto-prepended to every .less file by webpack's less-loader
 * (see `additionalData` in config/webpack.js). It MUST contain only
 * @-variables and parametric mixins so that nothing gets emitted into
 * page-level CSS bundles. CSS-emitting partials (e.g. definitions/buttons.less
 * with its `.button` ruleset) must be imported directly from
 * assets/<zone>/styles/layout.importer.less so they're emitted exactly once
 * in the layout bundle.
 */
/**
 * Color Variables
 */
/* Variants */
/* Light variant */
/* Badge variants */
/**
 * Button mixins (parametric — emit NO CSS on their own).
 * Safe to load into every .less file via tokens.importer.less.
 */
#my-modules-menu {
  /* Close button */
}
#my-modules-menu .cmm-backdrop {
  z-index: 970;
  display: block;
  width: 100%;
  position: fixed;
  top: 0rem;
  left: 0;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #my-modules-menu .cmm-tab {
    padding: 3rem 5px 10px 5px !important;
  }
}
#my-modules-menu .cmm-wrapper {
  position: relative;
  width: 100%;
  display: none;
}
#my-modules-menu .cmm-tab {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  padding: 5rem 5px 10px 5px;
  border-radius: 0 0 2px 2px;
  background-color: #fffffec4;
  backdrop-filter: blur(7px);
}
#my-modules-menu .topright {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.3rem;
}
#my-modules-menu .topright-icon {
  width: 0.9rem;
  height: 0.9rem;
  margin-left: auto;
  cursor: pointer;
  opacity: 0.8;
}
#my-modules-menu .topright-icon:hover {
  opacity: 1;
}

/**
 * Tokens importer (variables & mixins only — NO CSS rules emitted)
 *
 * This file is auto-prepended to every .less file by webpack's less-loader
 * (see `additionalData` in config/webpack.js). It MUST contain only
 * @-variables and parametric mixins so that nothing gets emitted into
 * page-level CSS bundles. CSS-emitting partials (e.g. definitions/buttons.less
 * with its `.button` ruleset) must be imported directly from
 * assets/<zone>/styles/layout.importer.less so they're emitted exactly once
 * in the layout bundle.
 */
/**
 * Color Variables
 */
/* Variants */
/* Light variant */
/* Badge variants */
/**
 * Button mixins (parametric — emit NO CSS on their own).
 * Safe to load into every .less file via tokens.importer.less.
 */
/**
 * <notifications-button> styles
 * -----------------------------------------------------------------------------
 * Header bell button + dropdown panel listing recent in-app notifications.
 */
.notifications-button-wrap {
  position: relative;
  display: inline-block;
}
/* ── Preview body ────────────────────────────────────────────────────── */
.preview-body {
  font-size: 1rem;
  color: #555;
  line-height: 1.35;
  margin-bottom: 4px;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}
/* ── Bell button ─────────────────────────────────────────────────────── */
.notifications-bell-btn {
  position: relative;
  cursor: pointer;
}
@keyframes notif-bell-shake {
  0%,
  100% {
    transform: rotate(0);
  }
  15% {
    transform: rotate(-14deg);
  }
  30% {
    transform: rotate(12deg);
  }
  45% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(8deg);
  }
  75% {
    transform: rotate(-4deg);
  }
  90% {
    transform: rotate(2deg);
  }
}
.notifications-bell-btn img {
  transform-origin: 50% 10%;
}
/* Triggered by adding the class directly to the <img> from JS so we can
   reliably restart the animation regardless of Vue's render batching. */
.notifications-bell-btn img.is-shaking {
  animation: notif-bell-shake 1s ease-in-out 1;
}
/* ── Dropdown panel ──────────────────────────────────────────────────── */
.notifications-dropdown {
  /* Positioned via JS (fixed, viewport-clamped, centered under the bell). */
  position: fixed;
  top: 0;
  left: 0;
  width: min(380px, calc(100vw - 16px));
  /* Stays within viewport; body scrolls if too tall. */
  max-height: calc(100vh - 90px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  z-index: 900;
  /* `overflow: visible` so the caret can stick out above the panel; the
     scrollable list inside has its own `overflow: auto`. */
  overflow: visible;
  /* ── Caret arrow pointing at the bell button ──────────────────────────
     Horizontal position is set from JS via the --caret-left custom
     property so it tracks the bell even when the panel is clamped to
     the viewport edge. Two stacked triangles fake a 1px border. */
  --caret-left: 50%;
}
.notifications-dropdown::before,
.notifications-dropdown::after {
  content: "";
  position: absolute;
  left: var(--caret-left);
  width: 0;
  height: 0;
  transform: translateX(-50%);
  pointer-events: none;
}
.notifications-dropdown::before {
  /* Border-colored triangle (1px larger, sits behind the fill). */
  top: -9px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #e0e0e0;
}
.notifications-dropdown::after {
  /* White fill triangle on top. */
  top: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
}
.notifications-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  border-radius: 8px 8px 0 0;
  background: #ffffff;
}
.notifications-dropdown-header .title {
  font-weight: 600;
  color: #2c3e50;
}
.notifications-dropdown-header .mark-all-link {
  font-size: 12px;
  color: #466e70;
  text-decoration: underline;
}
.notifications-dropdown-header .mark-all-link:hover {
  color: #2c3e50;
}
.notifications-dropdown-body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.notifications-empty {
  padding: 24px 14px;
  text-align: center;
  color: #888;
  font-size: 13px;
}
.notifications-error {
  padding: 8px 14px;
  background: #fdecec;
  color: #b3261e;
  font-size: 12px;
  border-top: 1px solid #f5c6c6;
}
/* ── List of notifications ───────────────────────────────────────────── */
.notifications-list {
  list-style: none;
  margin: 0;
  padding: 1px;
  background-color: #ffffff;
}
/* ── per-row leave animation (matches the cloud-todo-tab pattern) ──────
   The `.removing` class is added by the component while it waits for
   the CSS transition to finish; afterwards the row is hidden via `v-if`.
   Generous starting `max-height` is required because browsers cannot
   animate from `max-height: none` to a numeric value. */
.notif-item {
  /* Steady-state values that the `removing` class transitions away from. */
  max-height: 400px;
  opacity: 1;
  transform: translateX(0);
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, max-height 0.35s ease, padding 0.3s ease, margin 0.3s ease, border-color 0.3s ease;
}
.notif-item.removing {
  opacity: 0;
  transform: translateX(60%);
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  border-bottom-color: transparent;
}
.notif-item {
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 10px 14px;
  margin: 3px;
  border-radius: 0.3rem;
  background: #fff;
  transition: background-color 0.15s ease;
}
.notif-item:last-child {
  border-bottom: none;
}
.notif-item.is-clickable {
  cursor: pointer;
}
.notif-item.is-clickable:hover {
  background: #e8ecec;
}
.notif-item.is-unread {
  background: #f3f4f4;
}
.notif-item.is-unread .notif-title {
  font-weight: 600;
}
.notif-content {
  flex: 1 1 auto;
  min-width: 0;
  /* enable text-overflow for long titles */
}
.notif-title {
  font-size: 13px;
  color: #2c3e50;
  margin-bottom: 2px;
  overflow-wrap: anywhere;
}
.notif-body {
  font-size: 13px;
  color: #555;
  line-height: 1.35;
  margin-bottom: 4px;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}
.notif-date {
  font-size: 12px;
  color: #999;
}
/* ── Per-row action icons (right side) ───────────────────────────────── */
.notif-actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.notif-action {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 4px 6px;
  cursor: pointer;
  color: #9f9f9f;
  font-size: 12px;
  line-height: 1;
  transition: background-color 0.12s ease, color 0.12s ease;
}
.notif-action:hover {
  background: #eef3f0;
  color: #2c3e50;
}
.notif-toggle-read {
  color: #466E70;
  font-size: 8px;
}
.notif-toggle-read:hover {
  color: #466E70 !important;
  background: #bdd0d1;
}
.notif-toggle-read.is-read {
  color: #bababa;
}
.notif-delete:hover {
  color: #b3261e;
  background: #fdecec;
}
/* ── Footer ──────────────────────────────────────────────────────────── */
.notifications-dropdown-footer {
  border-top: 1px solid #eee;
  border-radius: 0 0 8px 8px;
  padding: 8px 14px;
  background: #ffffff;
  text-align: center;
}
.notifications-dropdown-footer a {
  font-size: 12px;
  color: #466e70;
  text-decoration: underline;
}
.notifications-dropdown-footer a:hover {
  text-decoration: underline;
}

/**
 * Tokens importer (variables & mixins only — NO CSS rules emitted)
 *
 * This file is auto-prepended to every .less file by webpack's less-loader
 * (see `additionalData` in config/webpack.js). It MUST contain only
 * @-variables and parametric mixins so that nothing gets emitted into
 * page-level CSS bundles. CSS-emitting partials (e.g. definitions/buttons.less
 * with its `.button` ruleset) must be imported directly from
 * assets/<zone>/styles/layout.importer.less so they're emitted exactly once
 * in the layout bundle.
 */
/**
 * Color Variables
 */
/* Variants */
/* Light variant */
/* Badge variants */
/**
 * Button mixins (parametric — emit NO CSS on their own).
 * Safe to load into every .less file via tokens.importer.less.
 */
@media screen and (max-width: 767.99px) {
  .nfcmenu__button {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .nfcmenu__button svg {
    height: 2.3rem !important;
  }
}
#nfc {
  display: block;
  position: relative;
}
#nfc .nfcmenu-button {
  margin-left: 0.5rem;
}
#nfc .icon {
  height: 1.5rem;
  width: 1.5rem;
  display: inline-block;
  fill: #696969;
}
#nfc a {
  color: #616161;
  text-decoration: none;
}
#nfc a:hover {
  color: #466e70;
  text-decoration: none;
}
@keyframes moveAndClick {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  50% {
    opacity: 1;
    transform: translateX(0) rotate(-30deg);
  }
  70% {
    transform: translateX(0) rotate(-30deg) scale(1);
  }
  90% {
    transform: translateX(0) rotate(-30deg) scale(0.8);
  }
  100% {
    transform: translateX(0) rotate(-30deg) scale(1);
  }
}
#nfc .hand {
  position: absolute;
  left: 50%;
  top: 3rem;
  height: 2.2rem;
  animation: moveAndClick 2s infinite;
}
@-webkit-keyframes dyinglight {
  15% {
    transform: scale(1.6);
  }
  50% {
    transform: rotate(-89deg);
  }
  100% {
    transform: rotate(-90deg);
  }
}
@keyframes dyinglight {
  15% {
    transform: scale(1.6);
  }
  50% {
    transform: rotate(-89deg);
  }
  100% {
    transform: rotate(-90deg);
  }
}
#nfc .dl {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
}
#nfc .dl__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#nfc .dl__list li {
  margin: 0;
  padding: 0;
  display: block;
  text-align: center;
}
#nfc .dl__icon {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  fill: #818181;
}
#nfc .dl__square {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #d6d6d6;
  border-color: #9c9c9c;
  border-radius: 50%;
}
#nfc .dl__square-ok {
  background-color: #d3e1cb !important;
  border-color: #a7bf99 !important;
}
#nfc .dl__square-error {
  background-color: #fdc5b1 !important;
  border-color: #c59784 !important;
}
#nfc .dl__square-alert {
  background-color: #ebdeb4 !important;
  border-color: #cdbf90 !important;
}
#nfc .dl__container {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  transform-origin: 50% 50% 0;
  -webkit-animation: dyinglight 1s ease infinite;
  animation: dyinglight 1s ease infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#nfc .dl__corner--top:before,
#nfc .dl__corner--top:after,
#nfc .dl__corner--bottom:before,
#nfc .dl__corner--bottom:after {
  position: absolute;
  width: 17px;
  height: 17px;
  color: #6b6b6b;
  content: "";
}
#nfc .dl__corner--top:before {
  border-left: 1px solid;
  border-top: 1px solid;
  top: -6px;
  left: -6px;
}
#nfc .dl__corner--top:after {
  border-right: 1px solid;
  border-top: 1px solid;
  top: -6px;
  right: -6px;
}
#nfc .dl__corner--bottom:before {
  border-left: 1px solid;
  border-bottom: 1px solid;
  bottom: -6px;
  left: -6px;
}
#nfc .dl__corner--bottom:after {
  border-right: 1px solid;
  border-bottom: 1px solid;
  bottom: -6px;
  right: -6px;
}
#nfc .modal {
  text-align: center;
  padding: 0!important;
}
#nfc .modal .icon-mobile {
  display: inline-block;
  width: 3rem;
  animation: moveAndRotate 2s infinite;
}
#nfc .modal .icon-chip {
  display: inline-block;
  width: 1rem;
}
@keyframes moveAndRotate {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(0.7rem) rotate(20deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
#nfc .modal-row {
  margin-bottom: 2rem;
  margin-top: 1rem;
  text-align: center;
  color: #616161;
}
#nfc .modal-row .dot {
  position: relative;
  display: block;
  width: 100%;
  height: 5rem;
}
#nfc .modal-row-link {
  cursor: pointer;
}
#nfc .modal-row a {
  font-size: 0.9rem;
  text-decoration: underline;
  color: #383838;
}
#nfc .modal-row a:hover {
  color: #000000;
}
#nfc .modal-row.disable {
  cursor: default;
  color: #adadad;
}
#nfc .modal-row.disable .icon {
  fill: #adadad;
}
#nfc .modal-row.disable:hover {
  color: #adadad;
}
#nfc .modal-row.disable:hover .icon {
  fill: #adadad;
}
#nfc .modal-row-link:hover,
#nfc .modal-row-link:hover .icon {
  color: #000000;
  fill: #466e70;
}
#nfc .modal-small {
  color: #383838;
  font-size: 0.8rem;
}
#nfc .modal-footer {
  font-size: 0.9rem;
  padding-top: 1rem;
}
#nfc .modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  min-width: 15rem;
  width: 15rem;
}
#nfc .modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}
#nfc .nfcmenu__button.enabled svg {
  fill: #466e70;
  background-color: #f7f7f7;
  border-radius: 0.2rem;
}

/**
 * Tokens importer (variables & mixins only — NO CSS rules emitted)
 *
 * This file is auto-prepended to every .less file by webpack's less-loader
 * (see `additionalData` in config/webpack.js). It MUST contain only
 * @-variables and parametric mixins so that nothing gets emitted into
 * page-level CSS bundles. CSS-emitting partials (e.g. definitions/buttons.less
 * with its `.button` ruleset) must be imported directly from
 * assets/<zone>/styles/layout.importer.less so they're emitted exactly once
 * in the layout bundle.
 */
/**
 * Color Variables
 */
/* Variants */
/* Light variant */
/* Badge variants */
/**
 * Button mixins (parametric — emit NO CSS on their own).
 * Safe to load into every .less file via tokens.importer.less.
 */
#hamburger-menu .tour-burgermenu-cloudmenu li:not(:first-child):not(:last-child) {
  background-color: #568846;
}
#hamburger-menu .b-sidebar > .b-sidebar-header .close {
  float: none;
  font-size: 2rem;
}
#hamburger-menu .hcmm-account {
  margin-top: 0.5rem;
  display: flex;
  padding: 0;
  margin-bottom: 1.2rem;
  flex-direction: column;
  align-items: center;
}
#hamburger-menu .hcmm-account li {
  list-style-type: none;
  margin: 0rem 0 0.5rem 0rem;
  font-style: italic;
}
#hamburger-menu .hcmm-account li:last-of-type {
  margin-bottom: 0;
}
#hamburger-menu .hcmm-account li a {
  border: none;
  display: block;
  text-align: center;
}
#hamburger-menu .hcmm-account li .icon {
  width: 2.2rem;
  height: 2.2rem;
  display: inline;
}
#hamburger-menu .hcmm-account li:first-of-type {
  font-weight: 500;
  font-size: 1.2rem;
}
#hamburger-menu .hamburger-menu-list {
  padding: 0;
  width: -webkit-fill-available;
  text-align: center;
}
#hamburger-menu .hamburger-menu-list li {
  display: inline-block;
  list-style-type: none;
}
#hamburger-menu .menu-main-item a {
  display: inline-block;
  font-size: 1rem;
  margin: 0.3rem 0;
  color: #212529;
  text-decoration: none;
  border: 0px;
  border-radius: 1rem;
  font-weight: 400;
  padding: 0.3rem 0.8rem;
  transition: all 0.2s ease-in-out;
}
#hamburger-menu .menu-main-item a:hover {
  text-decoration: none;
  color: #253839;
  background-color: #cbd8d8;
  text-shadow: 0px 0px 1px #9f9f9f;
}
#hamburger-menu .menu-main-item .nav-item-selected {
  text-decoration: none;
  color: #253839;
  background-color: #d5dcdc;
}
#hamburger-menu .menu-spacer {
  height: 1px;
  margin: 0.6rem 0 1.2rem 0;
  border-bottom: 1px solid #c6c6c6;
}
#hamburger-menu .menu-footer {
  display: inline-block;
  padding: 0.9rem 0 1rem 0;
  border-bottom: 1px solid #c6c6c6;
}
#hamburger-menu .menu-footer a {
  font-size: 1em;
  color: #568846;
  padding: 0 0.3rem;
  text-decoration: none;
  border: unset;
}
#hamburger-menu .menu-logout a {
  font-size: 1em;
  padding: 0 0.3rem;
  color: #7A724E;
  text-decoration: none;
  border: unset;
}
#hamburger-menu .menu-logout {
  margin-top: 0.6rem;
}

/**
 * Tokens importer (variables & mixins only — NO CSS rules emitted)
 *
 * This file is auto-prepended to every .less file by webpack's less-loader
 * (see `additionalData` in config/webpack.js). It MUST contain only
 * @-variables and parametric mixins so that nothing gets emitted into
 * page-level CSS bundles. CSS-emitting partials (e.g. definitions/buttons.less
 * with its `.button` ruleset) must be imported directly from
 * assets/<zone>/styles/layout.importer.less so they're emitted exactly once
 * in the layout bundle.
 */
/**
 * Color Variables
 */
/* Variants */
/* Light variant */
/* Badge variants */
/**
 * Button mixins (parametric — emit NO CSS on their own).
 * Safe to load into every .less file via tokens.importer.less.
 */
#blog-menu {
  display: block;
  width: 100%;
  right: 0;
}
#blog-menu .navbar {
  padding: 20px 0 8px 0;
  justify-content: flex-start;
}
#blog-menu .nav {
  font-size: 1rem;
}
#blog-menu .nav-item {
  padding-left: 0.3rem;
  transition: all 0.1s ease-in;
}
#blog-menu .nav-item:first-child {
  padding-left: 0;
}
#blog-menu .nav-item a {
  margin: 0 0;
  color: #696969;
  font-size: 0.9rem;
  border: 0;
  font-weight: 400;
  border-radius: 0;
  cursor: pointer;
  vertical-align: bottom;
  line-height: 1.5rem;
  transition: all 0.1s ease-in;
  padding: 0.2rem 0.4rem;
  border-radius: 0.3rem;
}
#blog-menu .nav-item a:hover {
  outline: none;
  color: #ffffff !important;
  background-color: #898169;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#blog-menu .selected-button {
  outline: none;
  color: #ffffff !important;
  background-color: #9d9681;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#blog-menu .bottom-line {
  border-bottom: 1px dashed #8cb3b5;
}
#blog-menu .breadcrumbs {
  width: 100%;
  font-size: 0.8em;
  padding-top: 5px;
  padding-bottom: 10px;
  color: #696969 !important;
  border: none;
}
#blog-menu .breadcrumbs ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#blog-menu .breadcrumbs ul li {
  display: inline-block;
}
#blog-menu .breadcrumbs a {
  border: none;
  color: #696969 !important;
}
#blog-menu .breadcrumbs a:hover {
  text-decoration: none;
  color: #696969 !important;
}
#blog-menu .crumb:before {
  margin-left: 4px;
  margin-right: 4px;
  content: "/";
}

