:root {
  --gmc-w: 480px;
}
.gmc-root {
  position: fixed;
  right: 20px;
  bottom: calc(20px + var(--gmc-onder, 0px));
  z-index: 2147483000;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.55;
  color: #1c2b23;
}
.gmc-root *,
.gmc-root *::before,
.gmc-root *::after {
  box-sizing: border-box;
}
.gmc-launcher {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(360px, calc(100vw - 28px));
  height: 52px;
  padding: 0 14px;
  margin-left: auto;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(
      160deg,
      #0d9159,
      #075c37);
  color: #fff;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 4px 20px rgba(10, 125, 75, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  animation: gmc-pil-glow 3.4s ease-in-out infinite;
}
.gmc-launcher:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(10, 125, 75, 0.45);
}
@keyframes gmc-pil-glow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(10, 125, 75, 0.35), 0 0 0 0 rgba(13, 145, 89, 0.45);
  }
  50% {
    box-shadow: 0 4px 20px rgba(10, 125, 75, 0.35), 0 0 0 6px rgba(13, 145, 89, 0);
  }
}
.gmc-launcher-txt {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.2;
}
.gmc-launcher-txt::after {
  content: "|";
  margin-left: 1px;
  animation: gmc-caret 1s steps(1) infinite;
}
@keyframes gmc-caret {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
.gmc-ico-spark {
  flex: none;
  overflow: visible;
}
.gmc-sp {
  transform-box: fill-box;
  transform-origin: center;
  animation: gmc-twink 3.6s ease-in-out infinite;
}
.gmc-sp2 {
  animation-delay: 0.8s;
}
.gmc-sp3 {
  animation-delay: 1.6s;
}
@keyframes gmc-twink {
  0% {
    opacity: 0.7;
    transform: scale(0.88) rotate(0deg);
    filter: none;
  }
  20% {
    opacity: 1;
    transform: scale(1.3) rotate(24deg);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.85));
  }
  48% {
    opacity: 0.78;
    transform: scale(0.97) rotate(52deg);
    filter: none;
  }
  100% {
    opacity: 0.7;
    transform: scale(0.88) rotate(90deg);
    filter: none;
  }
}
@media (max-width: 480px) {
  .gmc-launcher-txt::after {
    content: "";
    animation: none;
  }
}
.gmc-eye {
  transform-box: fill-box;
  transform-origin: center;
  animation: gmc-blink-eye 4.4s infinite;
}
@keyframes gmc-blink-eye {
  0%, 92%, 100% {
    transform: scaleY(1);
  }
  95% {
    transform: scaleY(0.12);
  }
}
.gmc-root.gmc-klein .gmc-launcher {
  width: 52px;
  padding: 0;
  gap: 0;
  justify-content: center;
}
.gmc-root.gmc-klein .gmc-launcher-txt,
.gmc-root.gmc-klein .gmc-ico-chat {
  display: none;
}
.gmc-root.gmc-klein .gmc-ico-spark {
  width: 28px;
  height: 28px;
}
.gmc-root.gmc-open .gmc-launcher {
  display: none;
}
.gmc-root.gmc-bedekt .gmc-launcher {
  display: none;
}
.gmc-launcher:focus-visible,
.gmc-full:focus-visible,
.gmc-hist-btn:focus-visible,
.gmc-hist-item:focus-visible,
.gmc-hist-nieuw:focus-visible,
.gmc-hist-terug:focus-visible,
.gmc-close:focus-visible,
.gmc-send:focus-visible,
.gmc-chip:focus-visible,
.gmc-empty-anders:focus-visible,
.gmc-compare-btn:focus-visible,
.gmc-compare-cta:focus-visible,
.gmc-fav-btn:focus-visible,
.gmc-fav-cta:focus-visible,
.gmc-overzicht-cta:focus-visible {
  outline: 2px solid #075c37;
  outline-offset: 2px;
}
.gmc-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: var(--gmc-w);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-radius: 0;
  box-shadow: -8px 0 40px rgba(10, 30, 20, 0.14), -2px 0 12px rgba(10, 30, 20, 0.06);
  overflow: hidden;
  opacity: 0;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.26s;
}
.gmc-root.gmc-open .gmc-panel {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.22s ease,
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s;
}
.gmc-root.gmc-full .gmc-panel {
  left: 0;
  width: auto;
}
@media screen and (min-width: 601px) {
  body.admin-bar .gmc-panel {
    top: 32px;
  }
}
@media screen and (min-width: 601px) and (max-width: 782px) {
  body.admin-bar .gmc-panel {
    top: 46px;
  }
}
.gmc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px 11px 16px;
  background:
    linear-gradient(
      160deg,
      #0d9159,
      #075c37);
  color: #fff;
  flex: none;
}
.gmc-head-spark {
  flex: none;
  color: #fff;
}
.gmc-ai {
  display: inline-block;
  flex: none;
  margin-left: 7px;
  padding: 1px 6px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.08em;
  vertical-align: 1.5px;
}
.gmc-head-txt {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.gmc-head-txt strong {
  display: flex;
  align-items: center;
  min-width: 0;
  font-size: 0.92em;
  color: #fff;
}
.gmc-head-naam {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.gmc-head-txt > span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.76em;
  color: rgba(255, 255, 255, 0.78);
}
.gmc-close,
.gmc-full,
.gmc-hist-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  font-size: 1em;
  transition: background 0.15s, color 0.15s;
  flex: 0 0 auto;
}
.gmc-close:hover,
.gmc-full:hover,
.gmc-hist-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.gmc-hist-btn {
  width: auto;
  gap: 6px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 0.78em;
  font-weight: 600;
  white-space: nowrap;
}
.gmc-root.gmc-hist-aan .gmc-hist-btn {
  background: rgba(255, 255, 255, 0.26);
  color: #fff;
}
.gmc-hist-menu {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #fff;
}
.gmc-hist-menu[hidden] {
  display: none;
}
.gmc-root.gmc-hist-aan .gmc-log,
.gmc-root.gmc-hist-aan .gmc-form,
.gmc-root.gmc-hist-aan .gmc-intake {
  display: none;
}
.gmc-hist-terug {
  align-self: flex-start;
  margin: -4px 0 8px -10px;
  padding: 9px 10px;
  border: 0;
  border-radius: 8px;
  background: none;
  color: #075c37;
  font-family: inherit;
  font-size: 0.86em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.gmc-hist-terug:hover {
  background: #e8f4ed;
}
.gmc-hist-nieuw {
  margin-bottom: 18px;
  padding: 12px 16px;
  border: 0;
  border-radius: 12px;
  background:
    linear-gradient(
      160deg,
      #0d9159,
      #075c37);
  color: #fff;
  font-family: inherit;
  font-size: 0.95em;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.15s;
}
.gmc-hist-nieuw:hover {
  filter: brightness(1.08);
}
.gmc-hist-kop {
  padding: 0 2px 6px;
  font-size: 0.78em;
  font-weight: 600;
  color: #6d7d74;
}
.gmc-hist-leeg {
  margin: 0 2px;
  color: #6d7d74;
  font-size: 0.86em;
  max-width: 36ch;
}
.gmc-hist-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
  width: 100%;
  padding: 9px 8px;
  border: 0;
  border-radius: 9px;
  background: none;
  color: #1c2b23;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}
.gmc-hist-item:hover {
  background: #e8f4ed;
}
.gmc-hist-titel {
  max-width: 100%;
  overflow: hidden;
  font-size: 0.92em;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.gmc-hist-wanneer {
  font-size: 0.76em;
  color: #6d7d74;
}
.gmc-log {
  flex: 1;
  overflow-y: auto;
  padding: 10px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overscroll-behavior: contain;
}
.gmc-hello {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  min-height: 100%;
  padding: 10px 2px 8px;
  animation: gmc-in 0.3s ease both;
}
.gmc-hello-top {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.gmc-hello-face {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background:
    linear-gradient(
      160deg,
      #0d9159,
      #075c37);
  color: #fff;
  box-shadow: 0 10px 30px rgba(10, 125, 75, 0.3);
}
.gmc-hello-titel {
  min-width: 0;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  color: #1c2b23;
}
.gmc-hello-sub {
  margin: 12px 0 0;
  color: #5d6d64;
  font-size: 15px;
  line-height: 1.4;
}
.gmc-empty-kop {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.gmc-empty-kop-t {
  font-size: 15px;
  font-weight: 700;
  color: #1c2b23;
}
.gmc-empty-anders {
  margin-top: 4px;
  background: transparent;
  border: 1px solid #d7e4dc;
  padding: 9px 13px;
  color: #075c37;
}
.gmc-empty-anders:hover {
  background: #e8f4ed;
  border-color: #0a7d4b;
}
.gmc-empty-anders .gmc-chip-txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gmc-empty-anders-t {
  font-size: 0.9em;
}
.gmc-empty-anders-s {
  font-size: 0.82em;
  color: #5d6d64;
  font-weight: 400;
}
.gmc-empty-anders[hidden] {
  display: none;
}
.gmc-empty-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: #6b7f74;
}
.gmc-intake {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  padding: 9px 18px 7px;
  font-size: 11.5px;
  line-height: 1.4;
  color: #6b7f74;
}
.gmc-intake-item {
  padding: 2px 8px;
  border: 1px solid #dbe5e0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}
.gmc-intake-ok {
  border-color: #0a7d4b;
  background: #e8f4ed;
  color: #075c37;
  font-weight: 600;
}
.gmc-msg {
  white-space: pre-wrap;
  word-wrap: break-word;
  animation: gmc-in 0.22s ease both;
}
@keyframes gmc-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.gmc-user {
  align-self: flex-end;
  max-width: 86%;
  padding: 0.55rem 0.85rem;
  background: #0a7d4b;
  color: #fff;
  border-radius: 16px 16px 4px 16px;
}
.gmc-turn {
  align-self: stretch;
  animation: gmc-in 0.22s ease both;
}
.gmc-tmeta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.gmc-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    linear-gradient(
      160deg,
      #0d9159,
      #075c37);
  color: #fff;
  flex: 0 0 auto;
}
.gmc-tmeta strong {
  font-size: 0.78em;
  font-weight: 600;
  color: #1c2b23;
}
.gmc-time {
  font-size: 0.72em;
  color: #6d7d74;
}
.gmc-bot {
  color: #1c2b23;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.55;
}
.gmc-bot a {
  color: #0a7d4b;
  font-weight: 600;
  text-decoration: underline;
}
.gmc-error {
  color: #b3261e !important;
}
.gmc-sources {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #e7ede9;
  font-size: 0.85em;
  color: #555;
}
.gmc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.gmc-chip {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #bcd9c9;
  color: #075c37;
  border-radius: 16px;
  padding: 7px 13px;
  font-size: 0.9em;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gmc-chip:hover {
  background: #e8f4ed;
  border-color: #0a7d4b;
}
.gmc-chips-start {
  margin-top: 10px;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 6px;
}
.gmc-chip-start {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 14px;
  border: 0;
  border-radius: 12px;
  background: #f1f5f2;
  color: #1c2b23;
  font-family: inherit;
  font-size: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
  max-width: none;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}
.gmc-chip-start:hover {
  background: #e4ebe6;
}
.gmc-chip-emoji {
  flex: none;
  font-size: 18px;
  line-height: 1;
  width: 20px;
  text-align: center;
}
.gmc-chip-emoji .fa-solid {
  font-size: 15px;
  color: #0a7d4b;
}
.gmc-chip-txt {
  min-width: 0;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.35;
}
.gmc-typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  min-height: 1em;
  padding-top: 2px;
}
.gmc-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0a7d4b;
  animation: gmc-blink 1.2s infinite both;
}
.gmc-typing span:nth-child(2) {
  animation-delay: 0.2s;
}
.gmc-typing span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes gmc-blink {
  0%, 80%, 100% {
    opacity: 0.25;
  }
  40% {
    opacity: 1;
  }
}
.gmc-denk {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gmc-denk-kop {
  font-size: 0.94em;
  font-weight: 600;
  color: #4a6155;
}
.gmc-denk-kop i {
  font-style: normal;
  animation: gmc-denk-punt 1.4s ease-in-out infinite;
}
.gmc-denk-kop i:nth-child(2) {
  animation-delay: 0.2s;
}
.gmc-denk-kop i:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes gmc-denk-punt {
  0%, 65%, 100% {
    opacity: 0.25;
  }
  30% {
    opacity: 1;
  }
}
.gmc-denk-regel {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.86em;
  color: #6d7d74;
}
.gmc-denk-regel::before {
  content: "";
  flex: none;
  width: 12px;
  height: 12px;
  border: 2px solid #cfe0d6;
  border-top-color: #0a7d4b;
  border-radius: 50%;
  animation: gmc-draai 0.7s linear infinite;
}
@keyframes gmc-draai {
  to {
    transform: rotate(360deg);
  }
}
.gmc-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.gmc-na-kaarten {
  margin-top: 10px;
}
.gmc-bot a.gmc-card {
  text-decoration: none;
  color: inherit;
}
.gmc-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e7ede9;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition:
    box-shadow 0.15s,
    border-color 0.15s,
    transform 0.15s;
  animation: gmc-in 0.28s ease both;
}
.gmc-card:hover {
  box-shadow: 0 4px 16px rgba(10, 30, 20, 0.12);
  border-color: #0a7d4b;
  transform: translateY(-1px);
}
.gmc-card-thumb {
  height: 160px;
  flex: none;
  background: #eef2ef url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a7d4b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.35'%3E%3Cpath d='M3 11.5 12 4l9 7.5'/%3E%3Cpath d='M5 10.5V20h14v-9.5'/%3E%3C/svg%3E") center / 30px no-repeat;
}
.gmc-card-geen-foto {
  height: 74px;
}
.gmc-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gmc-card-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}
.gmc-card-slider::-webkit-scrollbar {
  display: none;
}
.gmc-card-slider img {
  flex: 0 0 100%;
  scroll-snap-align: start;
}
.gmc-card-body {
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gmc-card-title {
  font-weight: 600;
  color: #0a7d4b;
}
.gmc-card-meta {
  font-size: 0.85em;
  color: #444;
}
.gmc-card-free {
  font-size: 0.8em;
  color: #666;
}
.gmc-card-foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.gmc-card-btn {
  font-size: 0.8em;
  font-weight: 600;
  color: #0a7d4b;
}
.gmc-compare-btn {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #bcd9c9;
  color: #075c37;
  border-radius: 12px;
  padding: 4px 10px;
  font-size: 0.78em;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
}
.gmc-compare-btn:hover {
  background: #e8f4ed;
  border-color: #0a7d4b;
}
.gmc-compare-btn.gmc-on {
  background: #0a7d4b;
  border-color: #0a7d4b;
  color: #fff;
}
.gmc-compare-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}
.gmc-bot a.gmc-compare-cta {
  padding: 7px 13px;
  border: 1px solid #0a7d4b;
  border-radius: 16px;
  background: #fff;
  color: #075c37;
  font-size: 0.9em;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.gmc-bot a.gmc-compare-cta:hover {
  background: #0a7d4b;
  color: #fff;
}
.gmc-fav-btn {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #bcd9c9;
  color: #0a7d4b;
  border-radius: 12px;
  padding: 3px 9px;
  font-size: 0.95em;
  line-height: 1.2;
  cursor: pointer;
  font-family: inherit;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
}
.gmc-fav-btn:hover {
  background: #e8f4ed;
  border-color: #0a7d4b;
}
.gmc-fav-btn.gmc-on {
  background: #0a7d4b;
  border-color: #0a7d4b;
  color: #fff;
}
.gmc-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.gmc-bot a.gmc-fav-cta,
.gmc-bot a.gmc-overzicht-cta {
  padding: 7px 13px;
  border: 1px solid #0a7d4b;
  border-radius: 16px;
  background: #fff;
  color: #075c37;
  font-size: 0.9em;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.gmc-bot a.gmc-fav-cta:hover,
.gmc-bot a.gmc-overzicht-cta:hover {
  background: #0a7d4b;
  color: #fff;
}
.gmc-compare-clear {
  background: none;
  border: 0;
  padding: 4px 2px;
  color: #5c6b63;
  font-family: inherit;
  font-size: 0.82em;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.gmc-compare-clear:hover {
  color: #075c37;
}
.gmc-card-uit {
  opacity: 0.55;
}
.gmc-card-uit .gmc-card-thumb {
  filter: grayscale(1);
}
.gmc-card-uit .gmc-card-free {
  color: #a33;
  font-weight: 600;
}
.gmc-chips-blok {
  margin-top: 10px;
}
.gmc-chips-blok > .gmc-chips {
  margin-top: 0;
}
.gmc-chips-blok .gmc-chip {
  flex: 0 0 auto;
}
.gmc-chip-vink {
  flex: none;
  margin-left: auto;
  width: 24px;
  height: 24px;
  border: 2px solid #b6c8bd;
  border-radius: 6px;
  background: #fff;
  box-sizing: border-box;
}
.gmc-chip-vink::after {
  content: "\2713";
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  opacity: 0;
}
.gmc-chip-aan {
  background: #e2f0e8;
  box-shadow: inset 0 0 0 1px #0a7d4b;
}
.gmc-chip-aan:hover {
  background: #d5e9de;
}
.gmc-chip-aan .gmc-chip-vink {
  background: #0a7d4b;
  border-color: #0a7d4b;
}
.gmc-chip-aan .gmc-chip-vink::after {
  opacity: 1;
}
.gmc-chip-verstuur {
  position: sticky;
  bottom: 0;
  flex: none;
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  background: #0a7d4b;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.gmc-chip-verstuur[hidden] {
  display: none;
}
.gmc-chip-start:disabled {
  opacity: 0.45;
  cursor: default;
}
.gmc-chip-verstuur:disabled {
  background: #e3eae6;
  color: #6b7a72;
  cursor: default;
}
.gmc-chip-verstuur:hover:not(:disabled) {
  background: #086b41;
}
.gmc-datums {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 8px;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7e3dc;
  background: #fff;
}
.gmc-datums .gmc-chip-verstuur {
  grid-column: 1 / -1;
  position: static;
  margin-top: 2px;
}
.gmc-datum-veld {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.gmc-datum-kop {
  font-size: 12px;
  font-weight: 600;
  color: #5b6f65;
}
.gmc-datum-vak {
  position: relative;
  display: block;
}
.gmc-datum-inp {
  width: 100%;
  box-sizing: border-box;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid #cbd8d0;
  border-radius: 10px;
  background: #f6f9f7;
  color: #1c2b23;
  font-family: inherit;
  font-size: 16px;
  text-align: left;
  -webkit-appearance: none;
  appearance: none;
}
.gmc-datum-eigen .gmc-datum-inp {
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.gmc-datum-eigen .gmc-datum-inp::-webkit-datetime-edit {
  visibility: hidden;
}
.gmc-datum-tekst {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  right: 34px;
  display: flex;
  align-items: center;
  pointer-events: none;
  font-size: 16px;
  font-weight: 600;
  color: #1c2b23;
  white-space: nowrap;
  overflow: hidden;
}
.gmc-datum-leeg .gmc-datum-tekst {
  font-weight: 400;
  color: #62746a;
}
.gmc-datum-hint {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  font-size: 12px;
  line-height: 1.3;
  color: #3f5148;
}
.gmc-datum-inp:focus-visible {
  outline: 2px solid #0a7d4b;
  outline-offset: 1px;
}
.gmc-eigen-hint {
  margin: 6px 0 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  color: #5d6d64;
}
.gmc-eigen-hint + .gmc-empty-note {
  margin-top: 8px;
}
.gmc-form {
  flex: none;
  padding: 10px 14px 14px;
}
.gmc-inputbox {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 9px 10px 8px 12px;
  border: 2px solid #1c2b23;
  border-radius: 14px;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.gmc-inputbox:focus-within {
  border-color: #0a7d4b;
  box-shadow: 0 0 0 3px rgba(10, 125, 75, 0.14);
}
.gmc-input {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1c2b23;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.45;
  resize: none;
  overflow-y: auto;
  min-height: calc(16px * 1.45 * 2);
  max-height: calc(16px * 1.45 * 4);
}
.gmc-input:focus {
  outline: none;
}
.gmc-input::placeholder {
  color: #9aa8a0;
  white-space: pre-wrap;
  opacity: 1;
}
.gmc-inputrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.gmc-send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #e7ede9;
  color: #8a998f;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s,
    transform 0.15s;
  flex: 0 0 auto;
}
.gmc-send:hover {
  background: #dbe5e0;
  transform: scale(1.05);
}
.gmc-inputbox.gmc-heeft-tekst .gmc-send {
  background: #0a7d4b;
  color: #fff;
}
.gmc-inputbox.gmc-heeft-tekst .gmc-send:hover {
  background: #075c37;
}
.gmc-root.gmc-busy .gmc-send {
  background: #0a7d4b;
  color: #fff;
}
.gmc-send:disabled {
  background: #bcd9c9;
  color: #fff;
  cursor: not-allowed;
  transform: none;
}
.gmc-send .gmc-ico-stop {
  display: none;
}
.gmc-root.gmc-busy .gmc-send .gmc-ico-send {
  display: none;
}
.gmc-root.gmc-busy .gmc-send .gmc-ico-stop {
  display: block;
}
:root.gmc-push body {
  margin-right: var(--gmc-w);
}
:root.gmc-schuif body {
  transition: margin-right 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}
:root.gmc-push .fixed-top {
  right: var(--gmc-w);
}
:root.gmc-push .width-100 {
  width: calc(var(--gmc-vw) - var(--gmc-w));
  margin-left: calc((var(--gmc-vw) - var(--gmc-w)) / -2);
}
:root.gmc-push #groepenCompareBar {
  right: var(--gmc-w);
}
@media (max-width: 767px) {
  :root {
    --gmc-w: 100vw;
  }
  .gmc-root {
    right: 14px;
    bottom: calc(14px + var(--gmc-onder, 0px));
  }
  .gmc-panel {
    left: 0;
    width: 100%;
  }
  .gmc-full {
    display: none;
  }
  .gmc-inputbox {
    flex-direction: row;
    align-items: flex-end;
    gap: 8px;
    padding: 8px 8px 8px 12px;
  }
  .gmc-input {
    flex: 1 1 auto;
    width: auto;
    min-height: calc(16px * 1.45);
    padding-bottom: 7px;
  }
  .gmc-inputrow {
    flex: 0 0 auto;
  }
  .gmc-head-spark {
    display: none;
  }
  .gmc-head {
    gap: 8px;
    padding-left: 12px;
    padding-right: 10px;
  }
  .gmc-hist-btn {
    padding: 0 9px;
  }
}
.gmc-root.gmc-full .gmc-log,
.gmc-root.gmc-full .gmc-form {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (min-width: 768px) {
  .gmc-root.gmc-full .gmc-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .gmc-root.gmc-full .gmc-actions {
    grid-column: 1 / -1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gmc-panel,
  .gmc-launcher,
  .gmc-msg,
  .gmc-turn,
  .gmc-hello,
  .gmc-card,
  .gmc-send,
  .gmc-chip-start,
  .gmc-inputbox,
  .gmc-input {
    transition: none;
    animation: none;
  }
  .gmc-typing span,
  .gmc-eye,
  .gmc-launcher-txt::after,
  .gmc-denk-kop i,
  .gmc-denk-regel::before,
  .gmc-sp {
    animation: none;
  }
  .gmc-denk-kop i {
    opacity: 0.6;
  }
  .gmc-launcher-txt::after {
    content: "";
  }
  .gmc-typing span {
    opacity: 0.6;
  }
  :root.gmc-schuif body {
    transition: none;
  }
}
.gmc-onderhoud {
  margin: 0 14px 8px;
  padding: 9px 12px;
  border: 1px solid #f0d28a;
  border-radius: 10px;
  background: #fdf6e3;
  color: #6b4f12;
  font-size: 13px;
  line-height: 1.45;
}
.gmc-root.gmc-hist-aan .gmc-onderhoud {
  display: none;
}
.gmc-input:disabled {
  background: transparent;
  cursor: not-allowed;
  opacity: 0.55;
}
.gmc-send:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
