/**
 * Main importer for app zone
 * This file imports all LESS files from the layout/ directory
 */
/**
 * Color Variables
 */
/* Variants */
/* Light variant */
/* Badge variants */
#privacy {
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}

/**
 * Main importer for app zone
 * This file imports all LESS files from the layout/ directory
 */
/**
 * Color Variables
 */
/* Variants */
/* Light variant */
/* Badge variants */
#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;
}

/**
 * Main importer for app zone
 * This file imports all LESS files from the layout/ directory
 */
/**
 * Color Variables
 */
/* Variants */
/* Light variant */
/* Badge variants */
/**
 * <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;
}

/**
 * Main importer for app zone
 * This file imports all LESS files from the layout/ directory
 */
/**
 * Color Variables
 */
/* Variants */
/* Light variant */
/* Badge variants */
@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 .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;
}

/**
 * Main importer for app zone
 * This file imports all LESS files from the layout/ directory
 */
/**
 * Color Variables
 */
/* Variants */
/* Light variant */
/* Badge variants */
#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 .icon-burger {
  transition: all 0.2s ease;
  display: block;
  cursor: pointer;
  padding: 0.15rem 0.3rem;
  background-color: unset;
  border: 0px;
  /* margin-left: 1rem; */
  /* border-radius: .3rem; */
  margin-bottom: 0;
}
#hamburger-menu .icon-burger:focus {
  outline: 0;
}
#hamburger-menu .icon-burger svg {
  width: 1.4rem;
  height: 1.4rem;
  display: inline-block;
  fill: #466e70;
}
#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;
}

