@charset 'UTF-8';.fade-slide-enter {
  opacity: 0;
  transform: translateY(10px);
}
.fade-slide-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 300ms ease-out, transform 300ms ease-out;
}
.fade-slide-exit {
  opacity: 1;
  transform: translateY(0);
}
.fade-slide-exit-active {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 200ms ease-in, transform 200ms ease-in;
}

iframe {
  pointer-events: auto; /* allow video play/pause */
}

iframe::-webkit-media-controls {
  display: none !important;
}

/* Enhanced hover effect for copy buttons */
.copy-button {
  /* transition: all 0.2s ease-in-out !important; */
  border-radius: 50% !important;
  padding: 8px !important;
  margin-left: 8px !important;
}

.copy-button:hover {
  background-color: rgba(0, 0, 0, 0.08) !important;
}



/* Dark mode hover effect */
[data-theme='dark'] .copy-button:hover {
  background-color: #252928 !important;
}

[data-theme='dark'] .copy-button:hover .material-symbols-outlined {
  color: #90caf9 !important;
}

/* Shimmer Animation for Streaming Tables */
@keyframes tableShimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.table-shimmer-bar {
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: tableShimmer 1.5s infinite linear;
}

.dark-mode-table .table-shimmer-bar {
  background: linear-gradient(90deg, #2a2d2e 25%, #3b3f40 50%, #2a2d2e 75%);
  background-size: 200% 100%;
}

.header-shimmer {
  width: 60%;
  height: 14px;
}

.cell-shimmer {
  width: 80%;
}

/* Custom Table Container and Interactivity */
.rendered-table-wrapper {
  overflow-x: auto;
  width: 100%;
  margin: 16px 0;
  border-radius: 8px;
  border: 0.5px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.dark-mode-table.rendered-table-wrapper {
  border: 0.5px solid rgba(255, 255, 255, 0.06);
}

.rendered-markdown-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  font-size: 14.5px;
  text-align: left;
}

.rendered-markdown-table th,
.rendered-markdown-table td {
  border: none;
  border-bottom: 0.5px solid rgba(15, 23, 42, 0.06);
  border-right: 0.5px solid rgba(15, 23, 42, 0.06);
  padding: 12px 16px !important;
  white-space: pre-line;
}

.dark-mode-table .rendered-markdown-table th,
.dark-mode-table .rendered-markdown-table td {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
  border-right: 0.5px solid rgba(255, 255, 255, 0.06);
}

.rendered-markdown-table th:last-child,
.rendered-markdown-table td:last-child {
  border-right: none;
}

.rendered-markdown-table tr:last-child td {
  border-bottom: none;
}

/* Zebra Striping */
.light-mode-table .rendered-markdown-table tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.015);
}

.dark-mode-table .rendered-markdown-table tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.02);
}

/* Row Hover Effects */
.light-mode-table .rendered-markdown-table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.035) !important;
  transition: background-color 0.15s ease;
}

.dark-mode-table .rendered-markdown-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.045) !important;
  transition: background-color 0.15s ease;
}

/* Custom Scrollbars for Table Containers */
.rendered-table-wrapper::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}

.rendered-table-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.light-mode-table.rendered-table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

.light-mode-table.rendered-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.dark-mode-table.rendered-table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

.dark-mode-table.rendered-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Sticky Headers */
.rendered-markdown-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
}

/* Table Copy Button and Hover Effects */
.table-container-parent {
  position: relative;
  width: 100%;
  margin: 16px 0;
}

.table-container-parent .rendered-table-wrapper {
  margin: 0 !important;
}

.table-copy-btn {
  position: absolute !important;
  top: -14px;
  right: 12px;
  z-index: 10;
  padding: 6px !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(4px);
  
  /* Initial hidden state with hover transition animation */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, background-color 0.2s ease !important;
  transform: scale(0.9) translateY(4px);
}

.table-container-parent:hover .table-copy-btn {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.table-copy-btn.light-btn {
  background-color: rgba(255, 255, 255, 0.85) !important;
  border: 0.5px solid rgba(15, 23, 42, 0.08) !important;
  color: #4b5563 !important;
}

.table-copy-btn.light-btn:hover {
  background-color: #ffffff !important;
  color: #111827 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.table-copy-btn.dark-btn {
  background-color: rgba(33, 35, 36, 0.85) !important;
  border: 0.5px solid rgba(255, 255, 255, 0.08) !important;
  color: #9ca3af !important;
}

.table-copy-btn.dark-btn:hover {
  background-color: #2a2d2e !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
/* src/v0_9/catalog/basic/components/Text.module.css */
.a2uiText {
  display: inline-block;
  color: var(--_a2ui-text-color, var(--a2ui-text-color-text, var(--a2ui-color-on-background)));
  margin: var(--_a2ui-text-margin, 0);
  box-sizing: border-box;
}
.a2uiCaption {
  display: inline-block;
  color: var(--a2ui-text-caption-color, light-dark(#666, #aaa));
  text-align: left;
  margin: var(--_a2ui-text-margin, 0);
  box-sizing: border-box;
}
.a2uiText :global(p),
.a2uiText :global(h1),
.a2uiText :global(h2),
.a2uiText :global(h3),
.a2uiText :global(h4),
.a2uiText :global(h5),
.a2uiText :global(h6),
.a2uiText :global(ol),
.a2uiText :global(ul),
.a2uiText :global(li),
.a2uiText :global(blockquote),
.a2uiText :global(pre) {
  margin: var(--_a2ui-text-margin, 0);
}
.a2uiText :global(h1),
.a2uiText :global(h2),
.a2uiText :global(h3),
.a2uiText :global(h4),
.a2uiText :global(h5) {
  font-family: var(--a2ui-font-family-title, inherit);
  line-height: var(--a2ui-line-height-headings, 1.2);
}
.a2uiText :global(h1) {
  font-size: var(--a2ui-font-size-2xl);
}
.a2uiText :global(h2) {
  font-size: var(--a2ui-font-size-xl);
}
.a2uiText :global(h3) {
  font-size: var(--a2ui-font-size-l);
}
.a2uiText :global(p),
.a2uiText :global(h4) {
  font-size: var(--a2ui-font-size-m);
}
.a2uiText :global(h5) {
  font-size: var(--a2ui-font-size-s);
}
.a2uiText :global(p),
.a2uiText :global(ol),
.a2uiText :global(ul),
.a2uiText :global(li),
.a2uiText :global(blockquote) {
  line-height: var(--a2ui-line-height-body, 1.5);
}
.a2uiText :global(a) {
  color: var(--a2ui-text-a-color, inherit);
  font-weight: var(--a2ui-text-a-font-weight, inherit);
}

/* src/v0_9/catalog/basic/components/Button.module.css */
.button {
  --_a2ui-text-margin: 0;
  --_a2ui-text-color: var(--a2ui-color-on-secondary, #333);
  padding: var(--a2ui-button-padding, var(--a2ui-spacing-m, 0.5rem) var(--a2ui-spacing-l, 1rem));
  margin: var(--a2ui-button-margin, var(--a2ui-spacing-m));
  background: var(--a2ui-button-background, var(--a2ui-color-surface, #fff));
  box-shadow: var(--a2ui-button-box-shadow, none);
  font-weight: var(--a2ui-button-font-weight, normal);
  color: var(--a2ui-color-on-secondary, #333);
  border: var( --a2ui-button-border, var(--a2ui-border-width, 1px) solid var(--a2ui-color-border, #ccc) );
  border-radius: var(--a2ui-button-border-radius, var(--a2ui-border-radius, 8px));
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.button:hover {
  background-color: var(--a2ui-color-secondary-hover, #ddd);
}
.primary {
  --_a2ui-text-color: var(--a2ui-color-on-primary, #fff);
  background-color: var(--a2ui-color-primary, #17e);
  border: none;
  color: var(--_a2ui-text-color);
}
.primary:hover {
  background-color: var(--a2ui-color-primary-hover, #fbd);
}
.borderless {
  background: none;
  padding: 0;
  color: var(--a2ui-color-primary, #17e);
  border: none;
}
.button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* src/v0_9/catalog/basic/components/TextField.module.css */
.host {
  display: flex;
  flex-direction: column;
  gap: var(--a2ui-spacing-xs, 0.25rem);
  width: 100%;
}
.label {
  font-size: var( --a2ui-textfield-label-font-size, var(--a2ui-label-font-size, var(--a2ui-font-size-s)) );
  font-weight: var(--a2ui-textfield-label-font-weight, var(--a2ui-label-font-weight, bold));
}
.input {
  background-color: var(--a2ui-color-input, #fff);
  color: var(--a2ui-color-on-input, #333);
  border: var( --a2ui-textfield-border, var(--a2ui-border-width, 1px) solid var(--a2ui-color-border, #ccc) );
  border-radius: var(--a2ui-textfield-border-radius, var(--a2ui-spacing-m, 8px));
  padding: var(--a2ui-textfield-padding, var(--a2ui-spacing-m, 0.5rem));
  font-family: inherit;
  box-sizing: border-box;
  width: 100%;
  transition: border-color 0.2s;
}
.input:hover {
  border-color: var(--a2ui-textfield-color-border-hover, var(--a2ui-color-border-hover, #999));
}
.input:focus {
  outline: none;
  border-color: var(--a2ui-textfield-color-border-focus, var(--a2ui-color-primary, #17e));
}
.invalid {
  border-color: var(--a2ui-textfield-color-error, red) !important;
}
.error {
  color: var(--a2ui-textfield-color-error, red);
  font-size: var(--a2ui-font-size-xs, 0.75rem);
}

/* src/v0_9/catalog/basic/components/ChoicePicker.module.css */
.host {
  display: flex;
  flex-direction: column;
  gap: var(--a2ui-spacing-s, 0.5rem);
  width: 100%;
}
.label {
  font-size: var( --a2ui-choicepicker-label-font-size, var(--a2ui-label-font-size, var(--a2ui-font-size-s)) );
  font-weight: var(--a2ui-choicepicker-label-font-weight, var(--a2ui-label-font-weight, bold));
  color: var(--a2ui-choicepicker-label-color, inherit);
}
.filterInput {
  background-color: var(--a2ui-color-input, #fff);
  color: var(--a2ui-color-on-input, #333);
  border: var( --a2ui-textfield-border, var(--a2ui-border-width, 1px) solid var(--a2ui-color-border, #ccc) );
  border-radius: var(--a2ui-textfield-border-radius, var(--a2ui-spacing-m, 8px));
  padding: var( --a2ui-choicepicker-filter-padding, var(--a2ui-spacing-xs, 4px) var(--a2ui-spacing-s, 8px) );
  font-family: inherit;
  transition: border-color 0.2s;
}
.filterInput:hover {
  border-color: var(--a2ui-textfield-color-border-hover, var(--a2ui-color-border-hover, #999));
}
.filterInput:focus {
  outline: none;
  border-color: var(--a2ui-textfield-color-border-focus, var(--a2ui-color-primary, #17e));
}
.options {
  display: flex;
  flex-direction: column;
  gap: var(--a2ui-choicepicker-gap, var(--a2ui-spacing-xs, 0.25rem));
}
.chips {
  flex-direction: row;
  flex-wrap: wrap;
}
.chip {
  padding: var( --a2ui-choicepicker-chip-padding, var(--a2ui-spacing-s, 4px) var(--a2ui-spacing-m, 8px) );
  border-radius: var(--a2ui-choicepicker-chip-border-radius, 999px);
  border: 1px solid var(--a2ui-color-border, #ccc);
  background-color: var(--a2ui-color-surface, #fff);
  color: var(--a2ui-color-on-surface, inherit);
  cursor: pointer;
  font-size: var(--a2ui-font-size-xs, 0.75rem);
  font-family: inherit;
  transition: background-color 0.2s, border-color 0.2s;
}
.chip.selected {
  background-color: var(--a2ui-color-primary, #007bff);
  color: var(--a2ui-color-on-primary, #fff);
  border-color: var(--a2ui-color-primary, #007bff);
}
.optionLabel {
  display: flex;
  align-items: center;
  gap: var(--a2ui-choicepicker-gap, var(--a2ui-spacing-xs, 0.25rem));
  cursor: pointer;
}
.optionText {
  font-size: var(--a2ui-font-size-m, 1rem);
}
/*# sourceMappingURL=index.css.map */._containerNoPadding_15ybj_1 {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding-top: 20px;
  margin: 0;
}

/* slide spacing */
._slide_15ybj_19 {
  padding: 6px;
  box-sizing: border-box;
}

._slideInner_15ybj_29 {
  cursor: pointer;
  user-select: none;
  outline: none;
}

/* media styles (unchanged) */
._mediaWrap_15ybj_43 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

._image_15ybj_55 {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

._empty_15ybj_71 {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
  border-radius: 6px;
  color: #666;
}

._caption_15ybj_93 {
  font-size: 13px;
  color: #333;
  margin-top: 6px;
}

/* video */
._videoWrap_15ybj_107 {
  position: relative;
  padding-top: 56.25%;
  border-radius: 6px;
  overflow: hidden;
}

._videoIFrame_15ybj_121 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

._video_15ybj_107 {
  width: 100%;
  max-height: 360px;
}

/* text */
._textCard_15ybj_151 {
  padding: 12px;
  min-height: 140px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

._textTitle_15ybj_167 {
  margin: 0 0 6px 0;
  font-size: 16px;
}

._textContent_15ybj_177 {
  color: #444;
  font-size: 14px;
  line-height: 1.35;
}

/* heading card */
._headingCard_15ybj_191 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  background: linear-gradient(90deg, #f7f7f8, #ffffff);
  border-radius: 6px;
  padding: 12px;
}

._heading_15ybj_191 {
  margin: 0;
  font-size: 20px;
}

._subtitle_15ybj_221 {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
}

/* --- ARROWS --- */
/* place arrows flush to left and right edges and centered vertically */
._arrow_15ybj_237 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 120ms ease, transform 120ms ease, background-color 120ms ease;
  box-shadow: none;
  backdrop-filter: blur(4px);
  /* Base styling - ensure both left and right arrows have identical appearance */
  background: rgba(255, 255, 255, 0.9) !important;
  color: #0b1220;
  border: 0.5px solid #e0e0e0 !important; /* Red in light mode */
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* Disable ripple effect */
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  outline: none;
}

._arrow_15ybj_237::before,
._arrow_15ybj_237::after {
  display: none !important;
  content: none !important;
}

/* Disable Material-UI ripple if present */
._arrow_15ybj_237 ._MuiTouchRipple-root_15ybj_311,
._arrow_15ybj_237 ._MuiTouchRipple-ripple_15ybj_313,
._arrow_15ybj_237 ._MuiTouchRipple-rippleVisible_15ybj_315 {
  display: none !important;
  opacity: 0 !important;
}

/* icon inside button */
._icon_15ybj_327 {
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  margin: 0;
  padding: 0;
}

/* left / right positions (flush) - ensure both maintain same styling */
._left_15ybj_345 {
  left: -10px;
}

._right_15ybj_353 {
  right: -10px;
}

/* Ensure both left and right arrows maintain base styles */
._arrow_15ybj_237._left_15ybj_345,
._arrow_15ybj_237._right_15ybj_353 {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 0.5px solid #e0e0e0 !important; /*in light mode */
}

/* dark theme override so icons remain visible */
@media (prefers-color-scheme: dark) {
  ._arrow_15ybj_237 {
    background: rgba(10, 12, 16, 0.6) !important;
    color: #fff;
    border: 0.5px solid #404040 !important; /*  in dark mode */
  }

  /* Ensure both left and right arrows maintain same dark theme styles */
  ._arrow_15ybj_237._left_15ybj_345,
  ._arrow_15ybj_237._right_15ybj_353 {
    background: rgba(10, 12, 16, 0.6) !important;
    border: 0.5px solid #404040 !important; /* in dark mode */
  }

  ._textCard_15ybj_151 {
    background: #0b1220;
    box-shadow: none;
    color: #e6eef8;
  }
  ._empty_15ybj_71 {
    background: rgba(255, 255, 255, 0.03);
    color: #cbd5e1;
  }
  ._caption_15ybj_93 {
    color: #e6eef8;
  }
}

/* hover/active */
._arrow_15ybj_237:hover:not(._disabled_15ybj_435) {
  transform: translateY(-50%) scale(1.03);
  opacity: 0.98;
}

._arrow_15ybj_237:active:not(._disabled_15ybj_435) {
  transform: translateY(-50%) scale(0.95);
  background: rgba(255, 255, 255, 1) !important;
  opacity: 1;
}

/* Dark mode active state */
@media (prefers-color-scheme: dark) {
  ._arrow_15ybj_237:active:not(._disabled_15ybj_435) {
    background: rgba(10, 12, 16, 0.8) !important;
  }
}

/* disabled state - maintain visual consistency with reduced opacity on icon only */
._arrow_15ybj_237._disabled_15ybj_435 {
  cursor: default;
  pointer-events: none;
  transform: translateY(-50%) scale(1);
  /* Keep background fully visible, only reduce icon opacity */
  opacity: 1 !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 0.5px solid #e0e0e0 !important; /* in light mode */
}

._arrow_15ybj_237._disabled_15ybj_435 svg {
  opacity: 0.4;
  color: #9ca3af !important;
}

._arrow_15ybj_237._disabled_15ybj_435:hover {
  transform: translateY(-50%) scale(1);
}

/* Ensure disabled state maintains background in dark mode */
@media (prefers-color-scheme: dark) {
  ._arrow_15ybj_237._disabled_15ybj_435 {
    background: rgba(10, 12, 16, 0.6) !important;
    border: 0.5px solid #404040 !important; /* in dark mode */
  }
  ._arrow_15ybj_237._disabled_15ybj_435 svg {
    opacity: 0.4;
    color: #6b7280 !important;
  }
}

/* ensure arrows don't overlap content on very small screens */
@media (max-width: 420px) {
  ._arrow_15ybj_237 {
    width: 28px;
    height: 28px;
  }
  ._icon_15ybj_327 {
    font-size: 16px;
  }
}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
.slick-loading .slick-list
{
    background: #fff url('/assets/ajax-loader-BcnMEykj.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('data:application/vnd.ms-fontobject;base64,AAgAAGQHAAABAAIAAAAAAAIABQkAAAAAAAABAJABAAAAAExQAQAAgCAAAAAAAAAAAAAAAAEAAAAAAAAATxDE8AAAAAAAAAAAAAAAAAAAAAAAAAoAcwBsAGkAYwBrAAAADgBSAGUAZwB1AGwAYQByAAAAFgBWAGUAcgBzAGkAbwBuACAAMQAuADAAAAAKAHMAbABpAGMAawAAAAAAAAEAAAANAIAAAwBQRkZUTW3RyK8AAAdIAAAAHEdERUYANAAGAAAHKAAAACBPUy8yT/b9sgAAAVgAAABWY21hcCIPRb0AAAHIAAABYmdhc3D//wADAAAHIAAAAAhnbHlmP5u2YAAAAzwAAAIsaGVhZAABMfsAAADcAAAANmhoZWED5QIFAAABFAAAACRobXR4BkoASgAAAbAAAAAWbG9jYQD2AaIAAAMsAAAAEG1heHAASwBHAAABOAAAACBuYW1lBSeBwgAABWgAAAFucG9zdC+zMgMAAAbYAAAARQABAAAAAQAA8MQQT18PPPUACwIAAAAAAM9xeH8AAAAAz3F4fwAlACUB2wHbAAAACAACAAAAAAAAAAEAAAHbAAAALgIAAAAAAAHbAAEAAAAAAAAAAAAAAAAAAAAEAAEAAAAHAEQAAgAAAAAAAgAAAAEAAQAAAEAAAAAAAAAAAQIAAZAABQAIAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAIABQkAAAAAAACAAAABAAAAIAAAAAAAAAAAUGZFZABAAGEhkgHg/+AALgHb/9sAAAABAAAAAAAAAgAAAAAAAAACAAAAAgAAJQAlACUAJQAAAAAAAwAAAAMAAAAcAAEAAAAAAFwAAwABAAAAHAAEAEAAAAAMAAgAAgAEAAAAYSAiIZAhkv//AAAAAABhICIhkCGS//8AAP+l3+PedN5xAAEAAAAAAAAAAAAAAAAAAAEGAAABAAAAAAAAAAECAAAAAgAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGAIwAsAEWAAIAJQAlAdsB2wAYACwAAD8BNjQvASYjIg8BBhUUHwEHBhUUHwEWMzI2FAcGBwYiJyYnJjQ3Njc2MhcWF/GCBgaCBQcIBR0GBldXBgYdBQgH7x0eMjB8MDIeHR0eMjB8MDIecYIGDgaCBQUeBQcJBFhYBAkHBR4F0nwwMh4dHR4yMHwwMh4dHR4yAAAAAgAlACUB2wHbABgALAAAJTc2NTQvATc2NTQvASYjIg8BBhQfARYzMjYUBwYHBiInJicmNDc2NzYyFxYXASgdBgZXVwYGHQUIBwWCBgaCBQcIuB0eMjB8MDIeHR0eMjB8MDIecR4FBwkEWFgECQcFHgUFggYOBoIF0nwwMh4dHR4yMHwwMh4dHR4yAAABACUAJQHbAdsAEwAAABQHBgcGIicmJyY0NzY3NjIXFhcB2x0eMjB8MDIeHR0eMjB8MDIeAT58MDIeHR0eMjB8MDIeHR0eMgABACUAJQHbAdsAQwAAARUUBisBIicmPwEmIyIHBgcGBwYUFxYXFhcWMzI3Njc2MzIfARYVFAcGBwYjIicmJyYnJjQ3Njc2NzYzMhcWFzc2FxYB2woIgAsGBQkoKjodHBwSFAwLCwwUEhwcHSIeIBMGAQQDJwMCISspNC8mLBobFBERFBsaLCYvKicpHSUIDAsBt4AICgsLCScnCwwUEhwcOhwcEhQMCw8OHAMDJwMDAgQnFBQRFBsaLCZeJiwaGxQRDxEcJQgEBgAAAAAAAAwAlgABAAAAAAABAAUADAABAAAAAAACAAcAIgABAAAAAAADACEAbgABAAAAAAAEAAUAnAABAAAAAAAFAAsAugABAAAAAAAGAAUA0gADAAEECQABAAoAAAADAAEECQACAA4AEgADAAEECQADAEIAKgADAAEECQAEAAoAkAADAAEECQAFABYAogADAAEECQAGAAoAxgBzAGwAaQBjAGsAAHNsaWNrAABSAGUAZwB1AGwAYQByAABSZWd1bGFyAABGAG8AbgB0AEYAbwByAGcAZQAgADIALgAwACAAOgAgAHMAbABpAGMAawAgADoAIAAxADQALQA0AC0AMgAwADEANAAARm9udEZvcmdlIDIuMCA6IHNsaWNrIDogMTQtNC0yMDE0AABzAGwAaQBjAGsAAHNsaWNrAABWAGUAcgBzAGkAbwBuACAAMQAuADAAAFZlcnNpb24gMS4wAABzAGwAaQBjAGsAAHNsaWNrAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAEAAgECAQMAhwBECmFycm93cmlnaHQJYXJyb3dsZWZ0AAAAAAAAAf//AAIAAQAAAA4AAAAYAAAAAAACAAEAAwAGAAEABAAAAAIAAAAAAAEAAAAAzu7XsAAAAADPcXh/AAAAAM9xeH8=');
    src: url('data:application/vnd.ms-fontobject;base64,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') format('embedded-opentype'), url('data:font/woff;base64,d09GRk9UVE8AAAVkAAsAAAAAB1wAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAABCAAAAi4AAAKbH/pWDkZGVE0AAAM4AAAAGgAAABxt0civR0RFRgAAA1QAAAAcAAAAIAAyAARPUy8yAAADcAAAAFIAAABgUBj/rmNtYXAAAAPEAAAAUAAAAWIiC0SwaGVhZAAABBQAAAAuAAAANgABMftoaGVhAAAERAAAABwAAAAkA+UCA2htdHgAAARgAAAADgAAAA4ESgBKbWF4cAAABHAAAAAGAAAABgAFUABuYW1lAAAEeAAAANwAAAFuBSeBwnBvc3QAAAVUAAAAEAAAACAAAwABeJw9ks9vEkEUx2cpWyeUoFYgNkHi2Wt7N3rVm3cTs3UVLC4LxIWEQvi1P3i7O1tYLJDAmlgKGEhQrsajf0j7J3jYTXrQWUrMJG+++b55n5e8NwwKBhHDMLv5kxT3ATEBxKBn3qOAl9zxHgb1MAPhHQgHkyF08Gr/L8B/Eb6zWnmCJ7AJVLubQOheArXvJ1A4EXi6j4I+Zg9F0QFKvsnlBCmXeve+sFEnb/nCptdtQ4QYhVFRAT1HrF8UQK/RL/SbmUbclsvGVFXRZKDHUE38cc4qpkbAAsuwiImvro+ufcfaOIQ6szlrmjRJDaKZKnbjN3GWKIbiIzRFUfCffuxxKOL+3LDlDVvx2TdxN84qZEsnhNBa6pgm2dAsnzbLsETdsmRFxUeHV4e+I2/ptN8TyqV8T3Dt29t7EYOuajVIw2y1Wy3M86w0zg/Fz2IvawmQAUHOVrPVfLkoScVynsqsTG0MGUs4z55nh3mnOJa+li+rl9WpPIcFfDubDeaDC+fLBdYN3QADzLauGfj4B6sZmq6CCpqmtSvF0qlUl2qf5AJIUCSlTqlb7lUG+LRfGzZGzZEyBgccMu6MuqPecNDvD4Y9Kjtj4gD+DsvKVMTcMdtqtZtmkzQstQvYje7Syep0PDSAhSOeHYXYWThEF//A/0YvYV1fSQtpKU5STtrhbQ444OtpKSWJIg3pOg8cBs7maTY1EZf07aq+hjWs7IWzdCYTGhb2CtZ47x+Uhx28AAB4nGNgYGBkAIJz765vANHnCyvqYTQAWnkHswAAeJxjYGRgYOADYgkGEGBiYARCFjAG8RgABHYAN3icY2BmYmCcwMDKwMHow5jGwMDgDqW/MkgytDAwMDGwcjKAQQMDAyOQUmCAgoA01xQGB4ZExUmMD/4/YNBjvP3/NgNEDQPjbbBKBQZGADfLDgsAAHicY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQzMCQqKClOUJz0/z9YHRLv/+L7D+8V3cuHmgAHjGwM6ELUByxUMIOZCmbgAAA5LQ8XeJxjYGRgYABiO68w73h+m68M3EwMIHC+sKIeTqsyqDLeZrwN5HIwgKUB/aYJUgAAeJxjYGRgYLzNwMCgx8QAAkA2IwMqYAIAMGIB7QIAAAACAAAlACUAJQAlAAAAAFAAAAUAAHicbY49asNAEIU/2ZJDfkiRIvXapUFCEqpcptABUrg3ZhEiQoKVfY9UqVLlGDlADpAT5e16IUWysMz3hjfzBrjjjQT/EjKpCy+4YhN5yZoxcirPe+SMWz4jr6S+5UzSa3VuwpTnBfc8RF7yxDZyKs9r5IxHPiKv1P9iZqDnyAvMQ39UecbScVb/gJO03Xk4CFom3XYK1clhMdQUlKo7/d9NF13RkIdfy+MV7TSe2sl11tRFaXYmJKpWTd7kdVnJ8veevZKc+n3I93t9Jnvr5n4aTVWU/0z9AI2qMkV4nGNgZkAGjAxoAAAAjgAF') format('woff'), url('data:font/ttf;base64,AAEAAAANAIAAAwBQRkZUTW3RyK8AAAdIAAAAHEdERUYANAAGAAAHKAAAACBPUy8yT/b9sgAAAVgAAABWY21hcCIPRb0AAAHIAAABYmdhc3D//wADAAAHIAAAAAhnbHlmP5u2YAAAAzwAAAIsaGVhZAABMfsAAADcAAAANmhoZWED5QIFAAABFAAAACRobXR4BkoASgAAAbAAAAAWbG9jYQD2AaIAAAMsAAAAEG1heHAASwBHAAABOAAAACBuYW1lBSeBwgAABWgAAAFucG9zdC+zMgMAAAbYAAAARQABAAAAAQAA8MQQT18PPPUACwIAAAAAAM9xeH8AAAAAz3F4fwAlACUB2wHbAAAACAACAAAAAAAAAAEAAAHbAAAALgIAAAAAAAHbAAEAAAAAAAAAAAAAAAAAAAAEAAEAAAAHAEQAAgAAAAAAAgAAAAEAAQAAAEAAAAAAAAAAAQIAAZAABQAIAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAIABQkAAAAAAACAAAABAAAAIAAAAAAAAAAAUGZFZABAAGEhkgHg/+AALgHb/9sAAAABAAAAAAAAAgAAAAAAAAACAAAAAgAAJQAlACUAJQAAAAAAAwAAAAMAAAAcAAEAAAAAAFwAAwABAAAAHAAEAEAAAAAMAAgAAgAEAAAAYSAiIZAhkv//AAAAAABhICIhkCGS//8AAP+l3+PedN5xAAEAAAAAAAAAAAAAAAAAAAEGAAABAAAAAAAAAAECAAAAAgAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGAIwAsAEWAAIAJQAlAdsB2wAYACwAAD8BNjQvASYjIg8BBhUUHwEHBhUUHwEWMzI2FAcGBwYiJyYnJjQ3Njc2MhcWF/GCBgaCBQcIBR0GBldXBgYdBQgH7x0eMjB8MDIeHR0eMjB8MDIecYIGDgaCBQUeBQcJBFhYBAkHBR4F0nwwMh4dHR4yMHwwMh4dHR4yAAAAAgAlACUB2wHbABgALAAAJTc2NTQvATc2NTQvASYjIg8BBhQfARYzMjYUBwYHBiInJicmNDc2NzYyFxYXASgdBgZXVwYGHQUIBwWCBgaCBQcIuB0eMjB8MDIeHR0eMjB8MDIecR4FBwkEWFgECQcFHgUFggYOBoIF0nwwMh4dHR4yMHwwMh4dHR4yAAABACUAJQHbAdsAEwAAABQHBgcGIicmJyY0NzY3NjIXFhcB2x0eMjB8MDIeHR0eMjB8MDIeAT58MDIeHR0eMjB8MDIeHR0eMgABACUAJQHbAdsAQwAAARUUBisBIicmPwEmIyIHBgcGBwYUFxYXFhcWMzI3Njc2MzIfARYVFAcGBwYjIicmJyYnJjQ3Njc2NzYzMhcWFzc2FxYB2woIgAsGBQkoKjodHBwSFAwLCwwUEhwcHSIeIBMGAQQDJwMCISspNC8mLBobFBERFBsaLCYvKicpHSUIDAsBt4AICgsLCScnCwwUEhwcOhwcEhQMCw8OHAMDJwMDAgQnFBQRFBsaLCZeJiwaGxQRDxEcJQgEBgAAAAAAAAwAlgABAAAAAAABAAUADAABAAAAAAACAAcAIgABAAAAAAADACEAbgABAAAAAAAEAAUAnAABAAAAAAAFAAsAugABAAAAAAAGAAUA0gADAAEECQABAAoAAAADAAEECQACAA4AEgADAAEECQADAEIAKgADAAEECQAEAAoAkAADAAEECQAFABYAogADAAEECQAGAAoAxgBzAGwAaQBjAGsAAHNsaWNrAABSAGUAZwB1AGwAYQByAABSZWd1bGFyAABGAG8AbgB0AEYAbwByAGcAZQAgADIALgAwACAAOgAgAHMAbABpAGMAawAgADoAIAAxADQALQA0AC0AMgAwADEANAAARm9udEZvcmdlIDIuMCA6IHNsaWNrIDogMTQtNC0yMDE0AABzAGwAaQBjAGsAAHNsaWNrAABWAGUAcgBzAGkAbwBuACAAMQAuADAAAFZlcnNpb24gMS4wAABzAGwAaQBjAGsAAHNsaWNrAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAEAAgECAQMAhwBECmFycm93cmlnaHQJYXJyb3dsZWZ0AAAAAAAAAf//AAIAAQAAAA4AAAAYAAAAAAACAAEAAwAGAAEABAAAAAIAAAAAAAEAAAAAzu7XsAAAAADPcXh/AAAAAM9xeH8=') format('truetype'), url('/assets/slick-BlzDm7g2.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}
/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}


/* Container */
.finance-card {
    background-color: #111827; /* gray-900 */
    border-radius: 0.75rem; /* rounded-xl */
    padding: 1.5rem; /* p-6 */
    margin-bottom: 1.5rem; /* mb-6 */
    color: white;
  }

  .mt-6 {
    margin-top: 1.5rem;;
  }
  
  /* Header */
  .finance-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem; /* mb-6 */
  }
  
  .finance-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* gap-3 */
  }
  
  .finance-header-bar {
    width: 0.25rem;
    height: 1.5rem;
    background-color: #3b82f6; /* blue-500 */
    border-radius: 0.25rem;
  }
  
  .finance-header-text {
    font-size: 0.875rem;
    color: #9ca3af; /* gray-400 */
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .finance-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .finance-button {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    border: 1px solid #4b5563; /* gray-600 */
    background: transparent;
    color: #d1d5db; /* gray-300 */
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
  }
  
  .finance-button:hover {
    background: #374151; /* gray-700 */
    color: white;
  }
  
  .finance-button-primary {
    background: #2563eb; /* blue-600 */
    color: white;
    border: none;
  }
  
  .finance-button-primary:hover {
    background: #1d4ed8; /* blue-700 */
  }
  
  .finance-icon-button {
    padding: 0.375rem;
    color: #9ca3af; /* gray-400 */
    background: transparent;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  
  .finance-icon-button:hover {
    color: white;
  }
  
  /* Price Display */
  .price-display {
    margin-bottom: 1.5rem;
  }
  
  .price-display-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .price-logo {
    width: 2rem;
    height: 2rem;
    background: #dc2626; /* red-600 */
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
  }
  
  .price-title {
    font-size: 1.25rem;
    font-weight: 600;
  }
  
  .price-row {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .price-value {
    font-size: 2.25rem;
    font-weight: 300;
  }
  
  .price-currency {
    font-size: 0.875rem;
    color: #9ca3af; /* gray-400 */
  }
  
  .price-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  .price-change.up {
    color: #10b981; /* green-500 */
  }
  
  .price-change.down {
    color: #ef4444; /* red-500 */
  }
  
  .price-subtext {
    font-size: 0.875rem;
    color: #9ca3af; /* gray-400 */
  }
  
  /* Time Period Tabs */
  .time-period-tabs {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    background: #1f2937; /* gray-800 */
    border-radius: 0.5rem;
    padding: 0.25rem;
  }
  
  .time-period-button {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    transition: background 0.2s ease, color 0.2s ease;
    background: transparent;
    color: #9ca3af;
    border: none;
    cursor: pointer;
  }
  
  .time-period-button:hover {
    color: white;
  }
  
  .time-period-button.active {
    background: #374151; /* gray-700 */
    color: white;
  }
  
  .time-period-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  /* Stock Chart */
  .stock-chart {
    background: #1f2937; /* gray-800 */
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Tooltip */
  .chart-tooltip {
    background: #1f2937; /* gray-800 */
    border: 1px solid #4b5563; /* gray-600 */
    border-radius: 0.5rem;
    padding: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  
  .chart-tooltip-title {
    color: white;
    font-weight: 500;
  }
  
  .chart-tooltip-value {
    color: #60a5fa; /* blue-400 */
  }
  
  /* Key Statistics */
  .key-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  @media (min-width: 768px) {
    .key-stats {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .key-stat-card {
    background: #1f2937; /* gray-800 */
    border-radius: 0.5rem;
    padding: 1rem;
  }
  
  .key-stat-label {
    color: #9ca3af; /* gray-400 */
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
  
  .key-stat-value {
    color: white;
    font-weight: 600;
  }
  
  
  /* FinanceCard Component Styles */
  
  
  
  /* Ensure proper dark theme styling */
  .finance-card {
    background-color: #111827; /* gray-900 */
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
  }
  
  /* Chart container optimizations */
  .finance-chart-container {
    background-color: #1f2937; /* gray-800 */
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Button hover effects */
  .finance-btn {
    transition: all 0.2s ease-in-out;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  
  .finance-btn:hover {
    background-color: #374151; /* gray-700 */
  }
  
  .finance-btn-primary {
    background-color: #2563eb; /* blue-600 */
    color: white;
  }
  
  .finance-btn-primary:hover {
    background-color: #1d4ed8; /* blue-700 */
  }
  
  .finance-btn-secondary {
    border: 1px solid #4b5563; /* gray-600 */
    color: #9ca3af; /* gray-400 */
  }
  
  /* Time period tabs styling */
  .time-period-tabs {
    background-color: #1f2937; /* gray-800 */
    border-radius: 0.5rem;
    padding: 0.25rem;
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
  }
  
  .time-period-tab {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border: none;
    background: none;
  }
  
  .time-period-tab.active {
    background-color: #374151; /* gray-700 */
    color: white;
  }
  
  .time-period-tab:not(.active) {
    color: #9ca3af; /* gray-400 */
  }
  
  .time-period-tab:not(.active):hover {
    color: white;
  }
  
  /* Price display styling */
  .price-display {
    margin-bottom: 1.5rem;
  }
  
  .company-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .company-logo {
    width: 2rem;
    height: 2rem;
    background-color: #dc2626; /* red-600 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
  }
  
  .price-main {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .current-price {
    font-size: 2.25rem;
    font-weight: 300;
    color: white;
  }
  
  .currency-label {
    font-size: 0.875rem;
    color: #9ca3af; /* gray-400 */
  }
  
  .price-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  .price-change.positive {
    color: #10b981; /* green-500 */
  }
  
  .price-change.negative {
    color: #ef4444; /* red-500 */
  }
  
  .after-hours {
    font-size: 0.875rem;
    color: #9ca3af; /* gray-400 */
  }
  
  /* Key statistics grid */
  .key-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  @media (min-width: 768px) {
    .key-stats {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .stat-card {
    background-color: #1f2937; /* gray-800 */
    border-radius: 0.5rem;
    padding: 1rem;
  }
  
  .stat-label {
    color: #9ca3af; /* gray-400 */
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
  
  .stat-value {
    color: white;
    font-weight: 600;
  }
  
  /* Header section */
  .finance-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }
  
  .finance-category {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .category-indicator {
    width: 0.25rem;
    height: 1.5rem;
    background-color: #3b82f6; /* blue-500 */
    border-radius: 0.125rem;
  }
  
  .category-text {
    font-size: 0.875rem;
    color: #9ca3af; /* gray-400 */
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .stock-ticker {
    font-size: 0.875rem;
    color: #9ca3af; /* gray-400 */
    margin-left: 0.5rem;
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  /* Responsive design adjustments */
  @media (max-width: 640px) {
    .finance-card {
      padding: 1rem;
      margin-bottom: 1rem;
    }
    
    .finance-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    
    .time-period-tabs {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    
    .current-price {
      font-size: 1.875rem;
    }
    
    .key-stats {
      grid-template-columns: 1fr;
    }
  }
  
  /* Chart tooltip styling */
  .recharts-tooltip-wrapper .recharts-default-tooltip {
    background-color: #1f2937 !important;
    border: 1px solid #4b5563 !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
  }
  
  .recharts-tooltip-wrapper .recharts-default-tooltip .recharts-tooltip-label {
    color: white !important;
    font-weight: 500 !important;
  }
  
  .recharts-tooltip-wrapper .recharts-default-tooltip .recharts-tooltip-item-list .recharts-tooltip-item {
    color: #60a5fa !important; /* blue-400 */
  }
  
  /* Ensure chart responsiveness */
  .recharts-responsive-container {
    width: 100% !important;
    height: 16rem !important;
  }
  
  /* Animation for loading states */
  @keyframes pulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
  }
  
  .finance-loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }
  
  /* Dark theme overrides for better visibility */
  .finance-card * {
    border-color: #374151 !important;
  }
  
  .finance-card svg {
    color: inherit !important;
  }
  
  /* Accessibility improvements */
  .finance-btn:focus,
  .time-period-tab:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
  }
  
  /* Print styles */
  @media print {
    .finance-card {
      background-color: white !important;
      color: black !important;
      box-shadow: none !important;
    }
    
    .finance-btn,
    .header-actions {
      display: none !important;
    }
  }
  /* Theme-aware CSS custom properties for clicked questions */
/* NOTE: These values should match TEXT_COLORS.relatedSearch in config/colors.ts */
:root.light {
  --question-clicked-color: #6b7280; /* TEXT_COLORS.relatedSearch.clickedText.light */
  --question-clicked-bg: rgba(107, 114, 128, 0.05); /* TEXT_COLORS.relatedSearch.clickedBackground.light */
  --question-clicked-opacity: 0.6;
  --question-clicked-icon-opacity: 0.5;
  --question-hover-clicked-opacity: 0.8;
}

:root.dark {
  --question-clicked-color: #9aa6ad; /* TEXT_COLORS.relatedSearch.clickedText.dark */
  --question-clicked-bg: rgba(154, 166, 173, 0.08); /* TEXT_COLORS.relatedSearch.clickedBackground.dark */
  --question-clicked-opacity: 0.6;
  --question-clicked-icon-opacity: 0.5;
  --question-hover-clicked-opacity: 0.8;
}

.serp-accordian-container {
  margin-top: 20px;

  .Mui-expanded {
    margin-top: 0;
    margin: 0;
  }

  .accordion-title {
    /* color: #333333; */
    /* font-family: "ProductSansRegular"; */
    font-size: 15px;
    letter-spacing: 0.62px;
    display: flex;
    align-items: center;
    line-height: 18px;
    padding: 0;
    margin-bottom: 10px;
    margin-top: 10px;
    /* //min-height: 40px;  */
  }

  .question-container {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    padding: 6px 0px;
    /* margin: 0 -8px; */
  }

  /* Clicked question styling */
  .question-container.question-clicked {
    opacity: var(--question-clicked-opacity);
    background-color: var(--question-clicked-bg);
    padding: 6px 0px;
    margin: 0;
  }

  .question-container.question-clicked .question-text {
    color: var(--question-clicked-color);
  }

  .question-container.question-clicked .add-icon {
    opacity: var(--question-clicked-icon-opacity);
    /* transform: rotate(45deg); */
  }

  /* Hover states - maintain interactivity but show clicked state */
  .question-container:hover.question-clicked {
    opacity: var(--question-hover-clicked-opacity);
  }

  /* NOTE: These values should match TEXT_COLORS.relatedSearch.hoverBackground in config/colors.ts */
  .question-container:hover {
    background-color: rgba(0, 0, 0, 0.02); /* TEXT_COLORS.relatedSearch.hoverBackground.light */
  }

  .question-container:hover.question-clicked {
    background-color: var(--question-clicked-bg);
  }

  /* Accessibility: High contrast mode support */
  @media (prefers-contrast: high) {
    .question-container.question-clicked {
      opacity: 0.7;
      border: 1px solid var(--question-clicked-color);
    }

    .question-container.question-clicked .question-text {
      text-decoration: line-through;
      text-decoration-color: var(--question-clicked-color);
      text-decoration-thickness: 1px;
    }
  }

  /* Focus states for keyboard navigation */
  /* NOTE: This value should match TEXT_COLORS.relatedSearch.focusOutline in config/colors.ts */
  .question-container:focus-visible {
    outline: 2px solid #0080dd; /* TEXT_COLORS.relatedSearch.focusOutline */
    outline-offset: 2px;
  }

  .accordion-details {
    padding-left: 0;
    padding-right: 0;
    /* font-family: "ProductSansRegular"; */
    padding-top: 0;
    font-size: 14px;
    letter-spacing: 0.62px;
    line-height: 18px;
    width: 95%;
  }

  .MuiAccordion-root::before {
    /* background-color: #e4dcc9; */
    opacity: 1;
  }

  .-MuiAccordionSummary-content.Mui-expanded {
    margin: 0px;
  }

  .MuiPaper-root-MuiAccordion-root.Mui-expanded::before {
    opacity: 1 !important;
  }

  .MuiAccordionSummary-content {
    margin-bottom: 2px;
    margin-top: 2px;
    /* font-family: "ProductSansRegular"; */
  }

  .MuiAccordionDetails-root {
    padding: 0 0 16px;
    font-size: 14px;
    /* font-family: "ProductSansRegular"; */
  }
}

/* Dark mode hover - must be outside .serp-accordian-container for :root.dark to work */
:root.dark .serp-accordian-container .question-container:hover:not(.question-clicked),
[data-theme='dark'] .serp-accordian-container .question-container:hover:not(.question-clicked) {
  background-color: #212324 !important; /* Green highlight for dark mode hover */
}

@media (max-width: 1500px) {
  .serp-accordian-container .accordion-title {
    font-size: 14px;
  }
}

@media (max-width: 1680px) {
  .serp-accordian-container {
    margin-top: 0px;

    /* .question-container {
        height: 45px;
      } */

    .MuiAccordionDetails-root {
      padding: 0 0 10px;
      font-size: 14px;
      /* font-family: "ProductSansRegular"; */
    }

    .MuiAccordionSummary-content {
      font-size: 14px;
      margin-bottom: 0;
      margin-top: 0;
    }
  }
}
/* Theme-aware CSS custom properties for clicked questions */
/* NOTE: These values should match TEXT_COLORS.relatedSearch in config/colors.ts */
:root.light {
  --question-clicked-color: #6b7280; /* TEXT_COLORS.relatedSearch.clickedText.light */
  --question-clicked-bg: rgba(107, 114, 128, 0.05); /* TEXT_COLORS.relatedSearch.clickedBackground.light */
  --question-clicked-opacity: 0.6;
  --question-clicked-icon-opacity: 0.5;
  --question-hover-clicked-opacity: 0.8;
}
:root.dark {
  --question-clicked-color: #9aa6ad; /* TEXT_COLORS.relatedSearch.clickedText.dark */
  --question-clicked-bg: rgba(154, 166, 173, 0.08); /* TEXT_COLORS.relatedSearch.clickedBackground.dark */
  --question-clicked-opacity: 0.6;
  --question-clicked-icon-opacity: 0.5;
  --question-hover-clicked-opacity: 0.8;
}
.serp-accordian-container {
  margin-top: 20px;

  .Mui-expanded {
    margin-top: 0;
    margin: 0;
  }

  .accordion-title {
    /* color: #333333; */
    /* font-family: "ProductSansRegular"; */
    font-size: 15px;
    letter-spacing: 0.62px;
    display: flex;
    align-items: center;
    line-height: 18px;
    padding: 0;
    margin-bottom: 10px;
    margin-top: 10px;
    /* //min-height: 40px;  */
  }

  .question-container {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    padding: 6px 0px;
    /* margin: 0 -8px; */
  }

  /* Clicked question styling */
  .question-container.question-clicked {
    opacity: var(--question-clicked-opacity);
    background-color: var(--question-clicked-bg);
    padding: 6px 0px;
    margin: 0;
  }

  .question-container.question-clicked .question-text {
    color: var(--question-clicked-color);
  }

  .question-container.question-clicked .add-icon {
    opacity: var(--question-clicked-icon-opacity);
    /* transform: rotate(45deg); */
  }

  /* Hover states - maintain interactivity but show clicked state */
  .question-container:hover.question-clicked {
    opacity: var(--question-hover-clicked-opacity);
  }

  /* NOTE: These values should match TEXT_COLORS.relatedSearch.hoverBackground in config/colors.ts */
  .question-container:hover {
    background-color: rgba(0, 0, 0, 0.02); /* TEXT_COLORS.relatedSearch.hoverBackground.light */
  }

  .question-container:hover.question-clicked {
    background-color: var(--question-clicked-bg);
  }

  /* Accessibility: High contrast mode support */
  @media (prefers-contrast: high) {
    .question-container.question-clicked {
      opacity: 0.7;
      border: 1px solid var(--question-clicked-color);
    }

    .question-container.question-clicked .question-text {
      text-decoration: line-through;
      text-decoration-color: var(--question-clicked-color);
      text-decoration-thickness: 1px;
    }
  }

  /* Focus states for keyboard navigation */
  /* NOTE: This value should match TEXT_COLORS.relatedSearch.focusOutline in config/colors.ts */
  .question-container:focus-visible {
    outline: 2px solid #0080dd; /* TEXT_COLORS.relatedSearch.focusOutline */
    outline-offset: 2px;
  }

  .accordion-details {
    padding-left: 0;
    padding-right: 0;
    /* font-family: "ProductSansRegular"; */
    padding-top: 0;
    font-size: 14px;
    letter-spacing: 0.62px;
    line-height: 18px;
    width: 95%;
  }

  .MuiAccordion-root::before {
    /* background-color: #e4dcc9; */
    opacity: 1;
  }

  .-MuiAccordionSummary-content.Mui-expanded {
    margin: 0px;
  }

  .MuiPaper-root-MuiAccordion-root.Mui-expanded::before {
    opacity: 1 !important;
  }

  .MuiAccordionSummary-content {
    margin-bottom: 2px;
    margin-top: 2px;
    /* font-family: "ProductSansRegular"; */
  }

  .MuiAccordionDetails-root {
    padding: 0 0 16px;
    font-size: 14px;
    /* font-family: "ProductSansRegular"; */
  }
}
/* Dark mode hover - must be outside .serp-accordian-container for :root.dark to work */
:root.dark .serp-accordian-container .question-container:hover:not(.question-clicked),
[data-theme='dark'] .serp-accordian-container .question-container:hover:not(.question-clicked) {
  background-color: #212324 !important; /* Green highlight for dark mode hover */
}
@media (max-width: 1500px) {
  .serp-accordian-container .accordion-title {
    font-size: 14px;
  }
}
@media (max-width: 1680px) {
  .serp-accordian-container {
    margin-top: 0px;

    /* .question-container {
        height: 45px;
      } */

    .MuiAccordionDetails-root {
      padding: 0 0 10px;
      font-size: 14px;
      /* font-family: "ProductSansRegular"; */
    }

    .MuiAccordionSummary-content {
      font-size: 14px;
      margin-bottom: 0;
      margin-top: 0;
    }
  }
}
/* MainSidebar CSS */
.main-sidebar {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: visible;
  transition: width 225ms cubic-bezier(0.2, 0, 0.2, 1);
}

.main-sidebar--light {
  background-color: #f3f3ee;
  border-right: 0.5px solid #e0e0e0;
}

.main-sidebar--dark {
  background-color: #1f2121;
  border-right: 0.5px solid #404040;
}

.navigation-section {
  position: relative;
}

.navigation-section__button {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 8px 12px;
  transition: all 0.2s cubic-bezier(0.2, 0, 0.2, 1);
  border: none;
  background: transparent;
  cursor: pointer;
}

.navigation-section__button--collapsed {
  width: 40px;
  justify-content: center;
  gap: 0;
  padding: 0;
}

.navigation-section__button--active {
  border-left: 3px solid #1976d2;
}

.navigation-section__button--pinned {
  border-left: 3px solid #1976d2;
}

.navigation-section__button--light {
  color: rgb(55, 55, 55);
}

.navigation-section__button--dark {
  color: #e0e0e0;
}

.navigation-section__button--light:hover {
  background-color: #f0f0f0;
}

.navigation-section__button--dark:hover {
  background-color: #2a2a2a;
}

.navigation-section__button--light.navigation-section__button--active {
  background-color: #e0e0e0;
  color: #1976d2;
}

.navigation-section__button--dark.navigation-section__button--active {
  background-color: #333333;
  color: #1976d2;
}

.pin-button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.pin-button--light:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.pin-button--dark:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.expandable-content {
  position: fixed;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1200;
}

.expandable-content--light {
  background-color: #ffffff;
  border-right: 0.5px solid #e0e0e0;
  /* box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15); */
}

.expandable-content--dark {
  background-color: #2a2a2a;
  border-right: 0.5px solid #404040;
  /* box-shadow: 4px 0 12px rgba(0, 0, 0, 0.4); */
}

.expandable-content__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px 20px;
  min-height: 60px;
  border-bottom: 0.5px solid;
}

.expandable-content__header--light {
  background-color: #f8f9fa;
  border-bottom-color: #e0e0e0;
}

.expandable-content__header--dark {
  background-color: #333333;
  border-bottom-color: #404040;
}

.expandable-content__title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.expandable-content__pin-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
}

.expandable-content__pin-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #1976d2;
}

.expandable-content__scroll {
  flex: 1;
  overflow: auto;
  padding: 0;
}

.expandable-content__scroll::-webkit-scrollbar {
  width: 6px;
}

.expandable-content__scroll::-webkit-scrollbar-track {
  background: transparent;
}

.expandable-content__scroll--light::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.expandable-content__scroll--dark::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 3px;
}

.expandable-content__scroll--light::-webkit-scrollbar-thumb:hover {
  background: #bbb;
}

.expandable-content__scroll--dark::-webkit-scrollbar-thumb:hover {
  background: #666;
}
@tailwind base;
@tailwind components;
@tailwind utilities;

@font-face {
  font-family: 'Gilroy-Bold';
  src: url('/fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy-SemiBold';
  src: url('/fonts/Gilroy-SemiBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy-Medium';
  src: url('/fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  /* overflow-y: auto; */
}

/* Theme-aware custom scrollbars (global) */
:root.light {
  --scrollbar-thumb: #a3a3a3; /* neutral-400 */
  --scrollbar-thumb-hover: #737373; /* neutral-500 */
  --scrollbar-track: #e5e7eb; /* gray-200 */
}

:root.dark {
  --scrollbar-thumb: #475569; /* slate-600 */
  --scrollbar-thumb-hover: #64748b; /* slate-500 */
  --scrollbar-track: #0b1220; /* near slate-950 */
}

/* WebKit-based browsers (Chrome, Edge, Safari) */
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
  border-radius: 999px; /* rounded thumb */
  border: 2px solid var(--scrollbar-track); /* creates gap for nicer look */
}
*::-webkit-scrollbar-thumb:hover {
  background-color: var(--scrollbar-thumb-hover);
}

/* Firefox */
html.light,
.light * {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

html.dark,
.dark * {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}
.leaflet-routing-container, .leaflet-routing-error {
    width: 320px;
    background-color: white;
    padding-top: 4px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.leaflet-control-container .leaflet-routing-container-hide {
    width: 32px;
    height: 32px;
}

.leaflet-routing-container h2 {
    font-size: 14px;
}

.leaflet-routing-container h3 {
    font-size: 12px;
    font-weight: normal;
}

.leaflet-routing-collapsible .leaflet-routing-geocoders {
    margin-top: 20px;
}

.leaflet-routing-alt, .leaflet-routing-geocoders, .leaflet-routing-error {
    padding: 6px;
    margin-top: 2px;
    margin-bottom: 6px;
    border-bottom: 1px solid #ccc;
    max-height: 320px;
    overflow-y: auto;
    transition: all 0.2s ease;
}

.leaflet-control-container .leaflet-routing-container-hide .leaflet-routing-alt, 
.leaflet-control-container .leaflet-routing-container-hide .leaflet-routing-geocoders {
    display: none;
}

.leaflet-bar .leaflet-routing-alt:last-child {
    border-bottom: none;
}

.leaflet-routing-alt-minimized {
    color: #888;
    max-height: 64px;
    overflow: hidden;
    cursor: pointer;
}

.leaflet-routing-alt table {
    border-collapse: collapse;
}

.leaflet-routing-alt tr:hover {
    background-color: #eee;
    cursor: pointer;
}

.leaflet-routing-alt::-webkit-scrollbar {
    width: 8px;
}

.leaflet-routing-alt::-webkit-scrollbar-track {
    border-radius: 2px;
    background-color: #eee;
}

.leaflet-routing-alt::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: #888;
}

.leaflet-routing-icon {
    background-image: url('data:image/png;base64,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');
    -webkit-background-size: 240px 20px;
    background-size: 240px 20px;
    background-repeat: no-repeat;
    margin: 0;
    content: '';
    display: inline-block;
    vertical-align: top;
    width: 20px;
    height: 20px;
}

.leaflet-routing-icon-continue         { background-position: 0 0; }
.leaflet-routing-icon-sharp-right      { background-position: -20px 0; }
.leaflet-routing-icon-turn-right       { background-position: -40px 0; }
.leaflet-routing-icon-bear-right       { background-position: -60px 0; }
.leaflet-routing-icon-u-turn           { background-position: -80px 0; }
.leaflet-routing-icon-sharp-left       { background-position: -100px 0; }
.leaflet-routing-icon-turn-left        { background-position: -120px 0; }
.leaflet-routing-icon-bear-left        { background-position: -140px 0; }
.leaflet-routing-icon-depart           { background-position: -160px 0; }
.leaflet-routing-icon-enter-roundabout { background-position: -180px 0; }
.leaflet-routing-icon-arrive           { background-position: -200px 0; }
.leaflet-routing-icon-via              { background-position: -220px 0; }

.leaflet-routing-geocoders div {
    padding: 4px 0px 4px 0px;
}

.leaflet-routing-geocoders input {
    width: 303px;
    width: calc(100% - 4px);
    line-height: 1.67;
    border: 1px solid #ccc;
}

.leaflet-routing-geocoders button {
    font: bold 18px 'Lucida Console', Monaco, monospace;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    margin: 0;
    margin-right: 3px;
    float: right;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.leaflet-routing-add-waypoint:after {
    content: '+';
}

.leaflet-routing-reverse-waypoints:after {
    font-weight: normal;
    content: '\21c5';
}

.leaflet-routing-geocoders button:hover {
    background-color: #eee;
}

.leaflet-routing-geocoders input,.leaflet-routing-remove-waypoint,.leaflet-routing-geocoder {
    position: relative;
}

.leaflet-routing-geocoder-result {
    font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
    position: absolute;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    z-index: 1000; /* Arbitrary, but try to be above "most" things. */
}

.leaflet-routing-geocoder-result table {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 0 0 4px 4px;
    background-color: white;
    cursor: pointer;
}

.leaflet-routing-geocoder-result-open {
    max-height: 800px;
}

.leaflet-routing-geocoder-selected, .leaflet-routing-geocoder-result tr:hover {
    background-color: #eee;
}

.leaflet-routing-geocoder-no-results {
    font-style: italic;
    color: #888;
}

.leaflet-routing-remove-waypoint {
    background-color: transparent;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.leaflet-routing-remove-waypoint:after {
    position: absolute;
    display: block;
    width: 15px;
    height: 1px;
    z-index: 1;
    right: 1px;
    top: 4px;
    bottom: 0;
    margin: auto;
    padding: 2px;
    font-size: 18px;
    font-weight: bold;
    content: "\00d7";
    text-align: center;
    cursor: pointer;
    color: #ccc;
    background: white;
    padding-bottom: 16px;
    margin-top: -16px;
    padding-right: 4px;
    line-height: 1;
}

.leaflet-routing-remove-waypoint:hover {
    color: black;
}

.leaflet-routing-instruction-distance {
    width: 48px;
}

.leaflet-routing-collapse-btn {
    position: absolute;
    top: 0;
    right: 6px;
    font-size: 24px;
    color: #ccc;
    font-weight: bold;
}

.leaflet-routing-collapse-btn:after {
    content: '\00d7';
}

.leaflet-routing-container-hide .leaflet-routing-collapse-btn {
    position: relative;
    left: 4px;
    top: 4px;
    display: block;
    width: 26px;
    height: 23px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAXCAYAAAAV1F8QAAABjUlEQVR4Ab1VA4h0URR+v23btv/8wtgKa9v2bp6wDOuwjpPdZG/mxs2b3eS359Q99eymerhH3/HlBEGw/WQymVPRaPR3JBLJwv81PVnbIADQBACC/OF5/rRrQGCwDo2Gw+F1juNOIC0QCNwhMFeA0DAzeCTnVVVVnWe8JadAmLJ3aAy+D9X4WlHZSVseDek40ot8jNwZkE4dTHddPB5/BQXei8ViH9Ejq0DY7qBfCvxCMBiMiW0QwHW1VkVgs0Agy+vZECtjux6wrsoSDc9GQFNTUyeJDjW6gjoA8F1sg8M0EQFCv0wpEIGnjYBAplqNLgL/ioecnpCcblG2wOg5ju0q9LyTBpIJ/WTetDmI6JAioknHwz5ONPvfxHmh3WWxRqg7RGeqEXn0V61joH4Vel0no//XsPFEPEfUAAvkFSzJc67PUbE3g9hQvlhAgt4VAekZcwxENyfk+L6KEzPIa2hoOOMYSBxVKBR6KYpkiG5VknMMRHOh8iwg3zUgerxe7yWsB27mX79+UbpsPcfWV8aO/4mmHgAAAABJRU5ErkJggg==');
}

.leaflet-routing-container-hide .leaflet-routing-collapse-btn:after {
    content: none;
}

.leaflet-top .leaflet-routing-container.leaflet-routing-container-hide {
    margin-top: 10px !important;
}
.leaflet-right .leaflet-routing-container.leaflet-routing-container-hide {
    margin-right: 10px !important;
}
.leaflet-bottom .leaflet-routing-container.leaflet-routing-container-hide {
    margin-bottom: 10px !important;
}
.leaflet-left .leaflet-routing-container.leaflet-routing-container-hide {
    margin-left: 10px !important;
}

@media only screen and (max-width: 640px) {
    .leaflet-routing-container {
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
        height: 100%;
    }
}


  .sprite-icon {
    display: inline-block;
    width: 26px;
    height: 26px;
    background-repeat: no-repeat;
    background-size: contain;   /* <--- fix */
    background-position: center; /* <--- center the logo */
    filter: grayscale(100%);
    transition: filter 0.2s ease;
  }

  .sprite-icon-qikfox {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;   /* <--- fix */
    background-position: center; /* <--- center the logo */
    filter: grayscale(100%);
    transition: filter 0.2s ease;
  }

  .sprite-icon-coingecko {
    display: inline-block;
    width: 27px;
    height: 27px;
    background-repeat: no-repeat;
    background-size: contain;   /* <--- fix */
    background-position: center; /* <--- center the logo */
    filter: grayscale(100%);
    transition: filter 0.2s ease;
  }


  .sprite-icon-google {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;   /* <--- fix */
    background-position: center; /* <--- center the logo */
    filter: grayscale(100%);
    transition: filter 0.2s ease;
  }

   .sprite-icon-youtube {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;   /* <--- fix */
    background-position: center; /* <--- center the logo */
    filter: grayscale(100%);
    transition: filter 0.2s ease;
  }

  .disabled {
    /* opacity: 0.4;           
    pointer-events: none;   
    filter: grayscale(100%); */
    background-image: url('../assets/qikfoxgray.svg');
    filter: grayscale(100%);
    width: 25px;
    height: 25px;
  }
  
  /* Active (selected) icon removes grayscale */
  .active {
    filter: none;
    background-image: url('../assets/qikfox.png');
  }



  .disabledgoogle {
    /* opacity: 0.4;           
    pointer-events: none;   
    filter: grayscale(100%); */
    background-image: url('../assets//googlegray.svg');
    filter: grayscale(100%);

  }
  
  /* Active (selected) icon removes grayscale */
  .activegoogle {
    filter: none;
    background-image: url('../assets/google.svg');
  }


  
  .disabledyoutube{
    /* opacity: 0.4;           
    pointer-events: none;   
    filter: grayscale(100%); */
    background-image: url('../assets/youtubegray.svg');
    filter: grayscale(100%)
  }
  
  /* Active (selected) icon removes grayscale */
  .activeyoutube {
    filter: none;
    background-image: url('../assets/youtubetwo.png');
  }
  


  .disabledduckduckgo{
    /* opacity: 0.4;           
    pointer-events: none;   
    filter: grayscale(100%); */
    background-image: url('../assets/duckduckgogray.svg');
    filter: grayscale(100%)
  }
  
  /* Active (selected) icon removes grayscale */
  .activeduckduckgo {
    filter: none;
    background-image: url('../assets/coingecko.svg');
  }
  

  .disabledcoingecko{
    /* opacity: 0.4;           
    pointer-events: none;   
    filter: grayscale(100%); */
    background-image: url('../assets/coingeckogray.svg');
    filter: grayscale(100%)
  }
  
  /* Active (selected) icon removes grayscale */
  .activecoingecko {
    filter: none;
    background-image: url('../assets/duckduckgo.svg');
  }
  



  /* .disabledcoingecko{
    opacity: 0.4;           
    pointer-events: none;   
    filter: grayscale(100%);
    background-image: url('https://search.qikfox.com/images/search-type-icons/coingecko.svg');
    filter: grayscale(100%)
  }
  
  Active (selected) icon removes grayscale
  .activecoingecko {
    filter: none;
    background-image: url('https://search.qikfox.com/images/search-page-icons/coingecko.svg');
  } */
  
  
  .disabledetherscan{
    /* opacity: 0.4;           
    pointer-events: none;   
    filter: grayscale(100%); */
    background-image: url('../assets/etherscangray.svg');
    filter: grayscale(100%)
  }
  
  /* Active (selected) icon removes grayscale */
  .activeetherscan {
    filter: none;
    background-image: url('../assets/etherscan.svg');
  }



  .disabledcoinmarketcap{
    /* opacity: 0.4;           
    pointer-events: none;   
    filter: grayscale(100%); */
    background-image: url('../assets/coinmarketcapgray.svg');
    filter: grayscale(100%)
  }
  
  /* Active (selected) icon removes grayscale */
  .activecoinmarketcap{
    filter: none;
    background-image: url('../assets/coinmarketcap.svg');
  }


@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

.typing-dot {
  display: inline-block;
  font-weight: bold;
  animation: pulse 1.4s infinite ease-in-out;
  will-change: transform, opacity;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

/* The search-input-with-suggestions class is no longer used to modify border radius.
   The search bar will maintain its rounded corners at all times. */
/* CSS variables. */
:root {
	--PhoneInput-color--focus: #03b2cb;
	--PhoneInputInternationalIconPhone-opacity: 0.8;
	--PhoneInputInternationalIconGlobe-opacity: 0.65;
	--PhoneInputCountrySelect-marginRight: 0.35em;
	--PhoneInputCountrySelectArrow-width: 0.3em;
	--PhoneInputCountrySelectArrow-marginLeft: var(--PhoneInputCountrySelect-marginRight);
	--PhoneInputCountrySelectArrow-borderWidth: 1px;
	--PhoneInputCountrySelectArrow-opacity: 0.45;
	--PhoneInputCountrySelectArrow-color: currentColor;
	--PhoneInputCountrySelectArrow-color--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountrySelectArrow-transform: rotate(45deg);
	--PhoneInputCountryFlag-aspectRatio: 1.5;
	--PhoneInputCountryFlag-height: 1em;
	--PhoneInputCountryFlag-borderWidth: 1px;
	--PhoneInputCountryFlag-borderColor: rgba(0,0,0,0.5);
	--PhoneInputCountryFlag-borderColor--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountryFlag-backgroundColor--loading: rgba(0,0,0,0.1);
}

.PhoneInput {
	/* This is done to stretch the contents of this component. */
	display: flex;
	align-items: center;
}

.PhoneInputInput {
	/* The phone number input stretches to fill all empty space */
	flex: 1;
	/* The phone number input should shrink
	   to make room for the extension input */
	min-width: 0;
}

.PhoneInputCountryIcon {
	width: calc(var(--PhoneInputCountryFlag-height) * var(--PhoneInputCountryFlag-aspectRatio));
	height: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--square {
	width: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--border {
	/* Removed `background-color` because when an `<img/>` was still loading
	   it would show a dark gray rectangle. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom. */
	background-color: var(--PhoneInputCountryFlag-backgroundColor--loading);
	/* Border is added via `box-shadow` because `border` interferes with `width`/`height`. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom,
	   so an additional "inset" border is added. */
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
}

.PhoneInputCountryIconImg {
	/* Fixes weird vertical space above the flag icon. */
	/* https://gitlab.com/catamphetamine/react-phone-number-input/-/issues/7#note_348586559 */
	display: block;
	/* 3rd party <SVG/> flag icons won't stretch if they have `width` and `height`.
	   Also, if an <SVG/> icon's aspect ratio was different, it wouldn't fit too. */
	width: 100%;
	height: 100%;
}

.PhoneInputInternationalIconPhone {
	opacity: var(--PhoneInputInternationalIconPhone-opacity);
}

.PhoneInputInternationalIconGlobe {
	opacity: var(--PhoneInputInternationalIconGlobe-opacity);
}

/* Styling native country `<select/>`. */

.PhoneInputCountry {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
	margin-right: var(--PhoneInputCountrySelect-marginRight);
}

.PhoneInputCountrySelect {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	border: 0;
	opacity: 0;
	cursor: pointer;
}

.PhoneInputCountrySelect[disabled],
.PhoneInputCountrySelect[readonly] {
	cursor: default;
}

.PhoneInputCountrySelectArrow {
	display: block;
	content: '';
	width: var(--PhoneInputCountrySelectArrow-width);
	height: var(--PhoneInputCountrySelectArrow-width);
	margin-left: var(--PhoneInputCountrySelectArrow-marginLeft);
	border-style: solid;
	border-color: var(--PhoneInputCountrySelectArrow-color);
	border-top-width: 0;
	border-bottom-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	border-left-width: 0;
	border-right-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	transform: var(--PhoneInputCountrySelectArrow-transform);
	opacity: var(--PhoneInputCountrySelectArrow-opacity);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon + .PhoneInputCountrySelectArrow {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon--border {
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon .PhoneInputInternationalIconGlobe {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}

/* PhoneInput.css */

/* Phone wrapper styles */
.custom-phone-container {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 16px 12px 8px 12px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.custom-phone-input {
  font-size: 16px;
  border: none !important;
  outline: none !important;
  background: transparent;
  width: 100%;
  padding-top: 8px;
}

/* Floating Label */
.mui-phone-label {
  position: absolute;
  left: 14px;
  top: 8px;
  font-size: 12px;
  color: #666;
  background-color: white;
  padding: 0 4px;
  z-index: 1;
  pointer-events: none;
  /* font-family: "Roboto", sans-serif; */
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
}




