@import url(https://fonts.googleapis.com/css2?family=Inter:wght@200;400;600;700;900&family=Raleway:wght@500;700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Inter);
/* BASICS */

.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
  direction: ltr;
}

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker { color: black; }
.CodeMirror-guttermarker-subtle { color: #999; }

/* CURSOR */

.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
.cm-fat-cursor .CodeMirror-line::selection,
.cm-fat-cursor .CodeMirror-line > span::selection, 
.cm-fat-cursor .CodeMirror-line > span > span::selection { background: transparent; }
.cm-fat-cursor .CodeMirror-line::-moz-selection,
.cm-fat-cursor .CodeMirror-line > span::-moz-selection,
.cm-fat-cursor .CodeMirror-line > span > span::-moz-selection { background: transparent; }
.cm-fat-cursor { caret-color: transparent; }
@-moz-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@-webkit-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}

/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror-overwrite .CodeMirror-cursor {}

.cm-tab { display: inline-block; text-decoration: inherit; }

.CodeMirror-rulers {
  position: absolute;
  left: 0; right: 0; top: -50px; bottom: 0;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0; bottom: 0;
  position: absolute;
}

/* DEFAULT THEME */

.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}
.cm-strikethrough {text-decoration: line-through;}

.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}

.cm-s-default .cm-error {color: #f00;}
.cm-invalidchar {color: #f00;}

.CodeMirror-composing { border-bottom: 2px solid; }

/* Default styles for common addons */

div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
.CodeMirror-activeline-background {background: #e8f2ff;}

/* STOP */

/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */

.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}

.CodeMirror-scroll {
  overflow: scroll !important; /* Things will break if this is overridden */
  /* 50px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -50px; margin-right: -50px;
  padding-bottom: 50px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
  z-index: 0;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 50px solid transparent;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
  outline: none;
}
.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0; bottom: 0;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -50px;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }

.CodeMirror-lines {
  cursor: text;
  min-height: 1px; /* prevents collapsing before first draw */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}
.CodeMirror-wrap pre.CodeMirror-line,
.CodeMirror-wrap pre.CodeMirror-line-like {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  padding: 0.1px; /* Force widget margins to stay inside of the container */
}

.CodeMirror-widget {}

.CodeMirror-rtl pre { direction: rtl; }

.CodeMirror-code {
  outline: none;
}

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre { position: static; }

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
.CodeMirror-crosshair { cursor: crosshair; }
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }

.cm-searching {
  background-color: #ffa;
  background-color: rgba(255, 255, 0, .4);
}

/* Used to force a border model for a node */
.cm-force-border { padding-right: .1px; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}

/* See issue #2901 */
.cm-tab-wrap-hack:after { content: ''; }

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext { background: none; }

.CodeMirror-foldmarker {
  color: blue;
  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;
  font-family: arial;
  line-height: .3;
  cursor: pointer;
}
.CodeMirror-foldgutter {
  width: .7em;
}
.CodeMirror-foldgutter-open,
.CodeMirror-foldgutter-folded {
  cursor: pointer;
}
.CodeMirror-foldgutter-open:after {
  content: "\25BE";
}
.CodeMirror-foldgutter-folded:after {
  content: "\25B8";
}

.CodeMirror-hints {
  position: absolute;
  z-index: 10;
  overflow: hidden;
  list-style: none;

  margin: 0;
  padding: 2px;

  -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  border-radius: 3px;
  border: 1px solid silver;

  background: white;
  font-size: 90%;
  font-family: monospace;

  max-height: 20em;
  overflow-y: auto;
  box-sizing: border-box;
}

.CodeMirror-hint {
  margin: 0;
  padding: 0 4px;
  border-radius: 2px;
  white-space: pre;
  color: black;
  cursor: pointer;
}

li.CodeMirror-hint-active {
  background: #08f;
  color: white;
}

.IafSpinner-module_modelSpinner__z-QcU {
  position: absolute;
  bottom: 50px;
  right: 30px;
  z-index: 15;
}

.IafSpinner-module_lds-status__QQveI {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  position: absolute;
  right: 160px;
  bottom: 20px;
  box-sizing: border-box;
  display: block;
  width: 200px;
  height: 44px;
  margin: 8px;
}

.IafSpinner-module_lds-ring__b8GFo {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.IafSpinner-module_lds-ring__b8GFo div {
  position: absolute;
  right: 140px;
  bottom: 20px;
  box-sizing: border-box;
  display: block;
  width: 44px;
  height: 44px;
  margin: 8px;
  border: 8px solid rgb(94, 90, 90);
  border-radius: 50%;
  animation: IafSpinner-module_lds-ring__b8GFo 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: rgb(94, 90, 90) transparent transparent transparent;
}

.IafSpinner-module_lds-ring__b8GFo div:nth-child(1) {
  animation-delay: -0.45s;
}

.IafSpinner-module_lds-ring__b8GFo div:nth-child(2) {
  animation-delay: -0.3s;
}

.IafSpinner-module_lds-ring__b8GFo div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes IafSpinner-module_lds-ring__b8GFo {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@charset "UTF-8";
.react-contextmenu {
  background-color: #fff !important;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  color: #373a3c;
  font-size: 16px;
  margin: 2px 0 0;
  width: 150px !important;
  height: 180px !important;
  outline: none;
  opacity: 0;
  padding: 5px 0;
  pointer-events: none;
  text-align: left;
  transition: opacity 250ms ease !important;
}

.react-contextmenu.react-contextmenu--visible {
  opacity: 1;
  pointer-events: auto;
  z-index: 9999;
}

.react-contextmenu-item {
  background: 0 0;
  border: 0;
  color: #373a3c;
  cursor: pointer;
  font-weight: 400;
  line-height: 1.5;
  padding: 3px 20px;
  text-align: inherit;
  white-space: nowrap;
}

.react-contextmenu-item.react-contextmenu-item--active,
.react-contextmenu-item.react-contextmenu-item--selected {
  color: #fff;
  background-color: #20a0ff;
  border-color: #20a0ff;
  text-decoration: none;
}

.react-contextmenu-item.react-contextmenu-item--disabled,
.react-contextmenu-item.react-contextmenu-item--disabled:hover {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.15);
  color: #878a8c;
}

.react-contextmenu-item--divider {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  cursor: inherit;
  margin-bottom: 3px;
  padding: 2px 0;
}

.react-contextmenu-item--divider:hover {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.15);
}

.react-contextmenu-item.react-contextmenu-submenu {
  padding: 0;
}

.react-contextmenu-item.react-contextmenu-submenu > .react-contextmenu-item:after {
  content: "▶";
  display: inline-block;
  position: absolute;
  right: 7px;
}

.example-multiple-targets::after {
  content: attr(data-count);
  display: block;
}
/**
 * ****************************************************************************
 *
 * INVICARA INC CONFIDENTIAL __________________
 *
 * Copyright (C) [2012] - [2018] INVICARA INC, INVICARA Pte Ltd, INVICARA INDIA
 * PVT LTD All Rights Reserved.
 *
 * NOTICE: All information contained herein is, and remains the property of
 * Invicara Inc and its suppliers, if any. The intellectual and technical
 * concepts contained herein are proprietary to Invicara Inc and its suppliers
 * and may be covered by U.S. and Foreign Patents, patents in process, and are
 * protected by trade secret or copyright law. Dissemination of this information
 * or reproduction of this material is strictly forbidden unless prior written
 * permission is obtained from Invicara Inc.
 */
.NewToolbar-module_none__0vnGh {
  position: relative;
  height: 100%;
  right: 1px;
  width: 0px;
  background-color: var(--toolbar-color) !important;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  padding-bottom: 35px;
  overflow-x: hidden !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 4;
  top: 0px;
  padding-bottom: 35px;
}
.NewToolbar-module_none__0vnGh::-webkit-scrollbar {
  display: none;
}

.NewToolbar-module_small__4ioKK {
  position: relative;
  height: 100%;
  right: 1px;
  width: 48px;
  background-color: var(--toolbar-color) !important;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  padding-bottom: 35px;
  overflow-x: hidden !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 4;
  top: 0px;
  padding-bottom: 35px;
}
.NewToolbar-module_small__4ioKK::-webkit-scrollbar {
  display: none;
}

.NewToolbar-module_medium__jKjHP {
  position: relative;
  height: 100%;
  right: 1px;
  width: 64px;
  background-color: var(--toolbar-color) !important;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  overflow-x: hidden !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 4;
  top: 0px;
  padding-bottom: 35px;
}
.NewToolbar-module_medium__jKjHP .NewToolbar-module_viewer-toolbar-btn__TwQ6o {
  width: 64px;
}
.NewToolbar-module_medium__jKjHP::-webkit-scrollbar {
  display: none;
}

.NewToolbar-module_large__0saYk {
  position: relative;
  height: 100%;
  right: 1px;
  width: 94px;
  background-color: var(--toolbar-color) !important;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  overflow-x: hidden !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 4;
  top: 0px;
  padding-bottom: 35px;
}
.NewToolbar-module_large__0saYk .NewToolbar-module_viewer-toolbar-btn__TwQ6o {
  width: 94px;
}
.NewToolbar-module_large__0saYk::-webkit-scrollbar {
  display: none;
}

.NewToolbar-module_arrow-btn-hidden__hmWhK {
  height: 56px;
}

.NewToolbar-module_viewer-toolbar-btn__TwQ6o {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 48px;
  height: 56px;
  min-width: 48px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.08)) drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.16));
  flex: none;
  order: 8;
  flex-grow: 0;
  cursor: pointer;
}
.NewToolbar-module_viewer-toolbar-btn__TwQ6o .NewToolbar-module_toolbar-icon__-8YBk {
  width: 24px;
  height: 28px;
  min-width: 24px;
  min-height: 24px;
  position: relative;
}
.NewToolbar-module_viewer-toolbar-btn__TwQ6o .NewToolbar-module_toolbar-icon__-8YBk.NewToolbar-module_grouped-icon__AdT5C {
  background-image: linear-gradient(315deg, transparent 4px, transparent 0), linear-gradient(315deg, #fff 4px, transparent 0);
}

.NewToolbar-module_viewer-toolbar-btn__TwQ6o:hover:before {
  content: "";
  position: absolute;
  width: 80%; /* Adjust width as needed */
  height: 90%; /* Adjust height as needed */
  background-color: #3E3E3E !important; /* Background color on hover */
  z-index: -1;
  transition: inherit;
}

.NewToolbar-module_toolbar-txt__Y7Yt2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 19px;
  color: #DCDCDC;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.NewToolbar-module_apply-box-shadow__A5fJd::before {
  content: "";
  position: absolute;
  width: 80%; /* Adjust width as needed */
  height: 90%; /* Adjust height as needed */
  background-color: var(--app-accent-color) !important; /* Background color on hover */
  z-index: -1;
  border-radius: 3px;
}

.NewToolbar-module_filter-gray__wMLqh {
  filter: invert(34%) sepia(0%) saturate(43%) hue-rotate(134deg) brightness(109%) contrast(78%); /* #666666 */
}

.NewToolbar-module_image-pink__dEdME {
  filter: invert(40%) sepia(86%) saturate(6224%) hue-rotate(311deg) brightness(83%) contrast(101%);
}

.NewToolbar-module_filter-pink__UEbG3 {
  filter: invert(20%) sepia(95%) saturate(2664%) hue-rotate(306deg) brightness(82%) contrast(101%); /* var(--app-accent-color) */
}

.NewToolbar-module_filter-grey-forDisableIcon__Z5nQC {
  filter: invert(100%) sepia(0%) saturate(588%) hue-rotate(187deg) brightness(113%) contrast(87%);
}

.NewToolbar-module_filter-grey-forDisableIcon__Z5nQC {
  cursor: default;
  filter: invert(100%) sepia(0%) saturate(3893%) hue-rotate(117deg) brightness(134%) contrast(73%);
}

/* The switch - the box around the slider */
.NewToolbar-module_switch__2UjvW {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.NewToolbar-module_switch__2UjvW input {
  display: none;
}

.NewToolbar-module_slider__OBQzd {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.NewToolbar-module_slider__OBQzd:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--app-accent-color) !important;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .NewToolbar-module_slider__OBQzd {
  background-color: #2196F3;
}

input:focus + .NewToolbar-module_slider__OBQzd {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .NewToolbar-module_slider__OBQzd:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.NewToolbar-module_slidecontainer__5Nag4 {
  margin-top: 10px;
  width: 100%; /* Width of the outside container */
}

/* The slider itself */
.NewToolbar-module_slider2__wp4tM {
  -webkit-appearance: none; /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 25px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: 0.2s; /* 0.2 seconds transition on hover */
  transition: opacity 0.2s;
}

/* Mouse-over effects */
.NewToolbar-module_slider2__wp4tM:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.NewToolbar-module_slider2__wp4tM::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.NewToolbar-module_slider2__wp4tM::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type=range] {
    overflow: hidden;
    width: 80%;
    -webkit-appearance: none;
    background-color: #ece7e9;
  }
  input[type=range]::-webkit-slider-runnable-track {
    height: 10px;
    -webkit-appearance: none;
    color: var(--app-accent-color);
    margin-top: -1px;
  }
  input[type=range]::-webkit-slider-thumb {
    width: 10px;
    -webkit-appearance: none;
    height: 10px;
    cursor: pointer;
    background: var(--app-accent-color);
    box-shadow: -80px 0 0 80px var(--app-accent-color);
  }
}
.NewToolbar-module_cutting-plane-div__4QU3P {
  position: absolute;
  border-radius: 10px;
  z-index: 9;
  min-width: 250px;
  min-height: 100px;
  padding: 0% 0% 1% 0%;
  background-color: #f1f1f1;
  border: 1px solid #d3d3d3;
  text-align: center;
}

.NewToolbar-module_cutting-plane-div-body__9ane8 {
  position: relative;
  width: 200px !important;
  margin: auto;
}
.NewToolbar-module_cutting-plane-div-body__9ane8 td {
  padding: 5px;
}

.NewToolbar-module_cutting-plane-div-header__Gx1Zc {
  position: relative;
  padding: 10px;
  width: 200px !important;
  border-radius: 10px;
  min-height: 30px;
  margin: 0 auto;
  cursor: move;
  z-index: 10;
  background-color: var(--app-accent-color);
  color: #fff;
}

.NewToolbar-module_switch__2UjvW {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 15px;
  vertical-align: middle;
  margin-top: 5px;
}

.NewToolbar-module_switch__2UjvW input {
  opacity: 0;
  width: 0;
  height: 0;
}

.NewToolbar-module_slider__OBQzd {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.NewToolbar-module_slider__OBQzd:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: -5px;
  bottom: -2.5px;
  background-color: var(--app-accent-color) !important;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .NewToolbar-module_slider__OBQzd {
  background-color: var(--app-accent-color) !important;
}

input:focus + .NewToolbar-module_slider__OBQzd {
  box-shadow: 0 0 1px var(--app-accent-color);
}

input:checked + .NewToolbar-module_slider__OBQzd:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.NewToolbar-module_slider__OBQzd.NewToolbar-module_round__oQjLa {
  border-radius: 15px;
}

.NewToolbar-module_slider__OBQzd.NewToolbar-module_round__oQjLa:before {
  border-radius: 50%;
}

.NewToolbar-module_cuttingPlane-header__Ln1jg {
  color: white;
  width: auto;
  text-align: left !important;
  display: flex;
  /* background-color: white !important; */
  background-color: var(--app-accent-color) !important;
  overflow: hidden !important;
  border-radius: 10px 10px 0px 0px !important;
  cursor: pointer;
  /* margin: 10px !important; */
  border: solid #6d6e70 1px !important;
}

.NewToolbar-module_cutting-plane-select-btn__Op0dt {
  width: 20px;
  height: 20px;
  cursor: pointer;
  align-items: center;
  z-index: 10;
  border-radius: 0.262em;
}
.NewToolbar-module_cutting-plane-select-btn__Op0dt .NewToolbar-module_cuttingPlane-icon__P9eJj {
  width: 25px;
  height: 25px;
  position: absolute;
}

.NewToolbar-module_cutting-plane-select-btn__Op0dt .NewToolbar-module_tooltip-txt__9W0J2 {
  visibility: hidden;
  width: 90px;
  background-color: var(--app-accent-color);
  color: #fff;
  text-align: center;
  font-size: 0.832em;
  padding: 0.262em;
  border-radius: 0.262em;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  top: 150%;
  left: -40px !important;
  z-index: 7;
}

.NewToolbar-module_cuttingPlane_button__ZJG1U {
  width: 40px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  z-index: 10;
  margin-left: 70px;
  background: var(--app-accent-color) !important;
}
.NewToolbar-module_cuttingPlane_button__ZJG1U .NewToolbar-module_cuttingPlane-icon__P9eJj {
  width: 20px;
  height: 18px;
  margin: 11px 10px 11px 10px;
  position: absolute;
}

.NewToolbar-module_cuttingPlane_button__ZJG1U .NewToolbar-module_tooltip-txt__9W0J2 {
  visibility: hidden;
  width: 90px;
  background-color: var(--app-accent-color);
  color: #fff;
  text-align: center;
  font-size: 0.832em;
  padding: 0.262em;
  border-radius: 0.262em;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  top: 150%;
  left: -40px !important;
  z-index: 7;
}

.NewToolbar-module_cuttingPlane-header-text__72bUJ {
  margin: 10px;
  text-align: left;
  color: white;
}

.NewToolbar-module_filter-white__aCxjr {
  filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(1962%) hue-rotate(173deg) brightness(120%) contrast(100%);
}

.NewToolbar-module_cuttingPlane-icon__P9eJj:hover .NewToolbar-module_tooltip-txt__9W0J2 {
  visibility: visible;
}

.NewToolbar-module_walk1__y15Iw {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 71px 309px;
  width: 700px;
  font-family: "Inter";
}

.NewToolbar-module_commandDropDown__YBct9 {
  margin-left: 8px;
  margin-top: 19px;
  margin-bottom: 8px;
  margin-right: 8px;
  text-align: center;
  font-size: 12.8px;
  height: 24px;
  float: left;
  width: 150px;
  border-color: white;
  color: var(--app-accent-color) !important;
  font-weight: bold;
}

.NewToolbar-module_disabled__DGDbz {
  opacity: 0.2; /* Adjust the opacity value as desired */
  cursor: not-allowed;
}

@media (max-width: 1023px) {
  .NewToolbar-module_customiseViewerBtn__cXNxp {
    display: none;
  }
}
@media (max-height: 719px) {
  .NewToolbar-module_customiseViewerBtn__cXNxp {
    display: none;
  }
}
.NewToolbar-module_markup-container__yAXDX {
  display: flex;
  background: #454545;
  flex-direction: column;
}

.NewToolbar-module_markup-custom-item__qrGfx {
  display: flex;
  align-items: center;
  padding: 12px 24px;
}

.NewToolbar-module_markup-custom-item__qrGfx:hover {
  background-color: #3E3E3E;
}

.NewToolbar-module_markup-menu-item__POQ97 {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.NewToolbar-module_markup_icon_img__vGfKb {
  width: 24px;
  height: 24px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.NewToolbar-module_markup_icon_wrapper__g3Jlq {
  width: 20% !important;
}

.NewToolbar-module_markup_text__FPBl1 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  padding-left: 10px;
  color: #FFFFFF;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.NewToolbar-module_disabled-component__-k6qc {
  /* Make the div appear disabled */
  opacity: 0.6; /* Reduce opacity to make it appear faded */
  pointer-events: none; /* Disable mouse interactions */
  cursor: not-allowed; /* Change cursor to indicate it's not clickable */
}
/* -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 28-06-23    HSK        PLAT-2728   Coloring Mechanism - Derive from var(--app-accent-color)
// -------------------------------------------------------------------------------------
*/


.modal1{
    /* border: 1px solid rgb(0 0 0 / 32%);
    border-radius: 24px;
    box-shadow: 0px 0px 19px rgb(0 0 0 / 32%);
    padding-left: 35px;
    padding-top: 14px; */
    border: 1px solid rgb(0 0 0 / 32%);
    max-width: 114%;
    height: 100%;
    border-radius: 24px;
    box-shadow: 0px 0px 19px rgb(0 0 0 / 32%);
    padding-left: 4%;
    margin-top: -11%;
    margin-left: 2%;
    background-color: white;
    overflow-y: scroll;
    max-height: 85vh;
}

.modal__first{
    display: flex;
    justify-content: space-between;
    margin-top: 4%;

}
.modal__firstRight{
    cursor: pointer;
}
.modal__second{
    display: flex;
    /* border: 1px solid black; */
    width: 46%;
    margin: 1%;
    border-radius: 8px;
    background-color: #EBEBEB;
    cursor: pointer;

}
.modal__secondLeft{
    padding: 5px;
    background-color: var(--app-accent-color);
    color: white;
    border-radius: 8px 0px 0px 8px;
    width: 50%;
    text-align: center;
}
.modal__secondRight{
    padding: 5px;
    width: 50%;
    text-align: center;
}

.modal__last{
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 3%;
    margin-top: 3%;
}
.modal__lastLeft{
    margin-right:10px;
    padding-right: 1%;
}
.modal__lastLeft input{
    width: 20px;
    height: 20px;
    margin: 5px;
}

.modal__lastRight{
    margin-right: 10px;
    background-color: var(--app-accent-color);
    border: none;
    border-radius: 12px;
    width: 82px;
    text-align: center;
}

@media only screen and (max-device-width: 480px) {
    .modal1 {
        margin-left: -223%;
        width: 69%;
      }

}
@media only screen and (max-device-width: 850px) {
    .modal1 {
        margin-left: -103%;
        width: 88%;
      }

}
@media only screen and (device-width:912px) {
    .modal1 {
        margin-left: -89%;
        width: 88%;
      }

}
@media only screen and (device-width:768px) {
    .modal1 {
    margin-left: -110%;
    width: 78%;
}

}
@media only screen and (device-width:540px) {
    .modal1 {
        margin-left: -144%;
        width: 45%;
        overflow-x: hidden;
      }
      .modal__last {
        width: 111%;
        margin-left: -28px;
      }

}
.Item-module_item1__KKuGB {
  /* border: 1px solid black; */
  /* width: 292px;
  height: 200px; */
  width: 46%;
  margin: 20px 10px;
}

.Item-module_item__first__Wnq8h {
  font-size: 10px;
  padding: 5px;
  letter-spacing: 4px;
}

.Item-module_item__second__1l4x9 {
  margin: 2%;
}

.Item-module_item__second__1l4x9 img {
  width: 110px;
  height: 99px;
}

.Item-module_item__third__L-5HP {
  /* padding: 5px; */
  /* margin-left: 7px;
  margin-top: 31px; */
  margin-left: 1%;
  margin-top: 6%;
}
.Mouse-module_mouse__6jFGz {
  display: flex;
  flex-wrap: wrap;
}
.Keyboard-module_keyboard__ffxk6 {
  display: flex;
  flex-wrap: wrap;
}

.Keyboard-module_keyboard__ffxk6 #Keyboard-module_key1__cVrIa {
  width: 252px;
}
.IafTooltip-module_toolbar-icon__4-eR8 {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  position: relative;
}

.IafTooltip-module_icon-color-filter__O5QPZ {
  filter: var(--navbar-icon-filter);
}

.IafTooltip-module_icon-selection-color__q53lc {
  filter: var(--navbar-icon-filter);
}

.IafTooltip-module_list-item-close__5x0VJ {
  width: 24px;
  height: 24px;
  flex: none;
  order: 1;
  flex-grow: 0;
  cursor: pointer;
  color: #ffffff;
}
/*
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 16-05-23    HSK        PLAT-2813   Revamed IafViewer Components                                     
// 28-06-23    HSK        PLAT-2728   Coloring Mechanism - Derive from var(--app-accent-color)
// 21-03-24    HSK        PLAT-4420   Iaf-viewer styles taking precedence over application's MUI components
// -------------------------------------------------------------------------------------
*/
.IafSwitch-module_switch-disabled__rHHBs {
  opacity: 0.6;
  /* cursor: not-allowed; */
}

.IafSwitch-module_switch-component__UulIC {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 10px;
  width: 207px;
  height: 18px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.IafSwitch-module_switch-title-container__9rb0O {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.IafSwitch-module_switch-title__uapi5 {
  width: 170px;
  height: 18px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 18px;
  color: #dcdcdc;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.IafSwitch-module_switch-subtitle__0PVR2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 8px;
  line-height: 12px;
  color: #888888;
  margin-top: -2px;
}

.IafSwitch-module_switch-component__UulIC span.MuiSwitch-thumb {
  margin-left: -14.5px;
  width: 12px;
  height: 12px;
  background: #dcdcdc;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.IafSwitch-module_switch-component__UulIC span.MuiSwitch-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2px;
  gap: 10px;
  width: 27px;
  height: 16px;
  background: #3e3e3e;
  border-radius: 18px;
  flex: none;
  order: 1;
  flex-grow: 0;
  opacity: 1;
}

.IafSwitch-module_switch-component__UulIC span.MuiSwitch-colorSecondary.Mui-checked + .MuiSwitch-track {
  background-color: var(--app-accent-color) !important;
  opacity: 1;
}

.IafSwitch-module_switch-component__UulIC input.PrivateSwitchBase-input-11.MuiSwitch-input {
  left: -100%;
  width: 300%;
}

.IafSwitch-module_switch-component__UulIC span.MuiSwitch-root {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 2px;
  gap: 10px;
  width: 27px;
  height: 16px;
  border-radius: 18px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.IafSwitch-module_switch-component__UulIC span.MuiSwitch-root > :first-child {
  top: auto !important;
  left: auto !important;
}

.IafSwitch-module_switch-component__UulIC span.MuiSwitch-root > .Mui-checked:first-child {
  transform: translateX(8px) !important;
}

.IafSwitch-module_disabled-component__ogpOO {
  /* Make the div appear disabled */
  opacity: 0.6; /* Reduce opacity to make it appear faded */
  pointer-events: none; /* Disable mouse interactions */
  cursor: not-allowed; /* Change cursor to indicate it's not clickable */
}
.viewerSubMenu-module_viewer-toolbar-submenu__e-LNl {
  display: flex;
  flex-direction: column;
  background: transparent;
  z-index: 5;
  position: absolute;
  max-height: fit-content;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.viewerSubMenu-module_viewer-toolbar-submenu__e-LNl .viewerSubMenu-module_viewer-submenu-icon__4vIik {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 8px 8px;
  background: #454545;
  /* Shadow 1 */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16), 0px 0px 1px rgba(0, 0, 0, 0.32);
}
.viewerSubMenu-module_viewer-toolbar-submenu__e-LNl .viewerSubMenu-module_viewer-submenu-icon__4vIik .viewerSubMenu-module_submenu-img__Z54pD {
  width: 24px;
  height: 24px;
  flex: none;
  order: 0;
  flex-grow: 0;
}
.viewerSubMenu-module_viewer-toolbar-submenu__e-LNl .viewerSubMenu-module_viewer-submenu-icon__4vIik .viewerSubMenu-module_check-icon__rqmBr {
  margin: 3px !important;
  padding: 1px !important;
}
.viewerSubMenu-module_viewer-toolbar-submenu__e-LNl .viewerSubMenu-module_viewer-submenu-icon__4vIik .viewerSubMenu-module_check-icon-wrapper__0aWqQ {
  width: 20% !important;
}
.viewerSubMenu-module_viewer-toolbar-submenu__e-LNl .viewerSubMenu-module_viewer-submenu-icon__4vIik .viewerSubMenu-module_tooltip-txt__--bgy {
  width: 134px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  padding-left: 10px;
  color: #FFFFFF;
  flex: none;
  order: 1;
  flex-grow: 0;
}
.viewerSubMenu-module_viewer-toolbar-submenu__e-LNl .viewerSubMenu-module_viewer-submenu-icon__4vIik:hover {
  background: #3E3E3E;
}
/*
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 16-05-23    HSK        PLAT-2730   Revamped IafViewer Panels                 
// 24-05-23    HSK        PLAT-2730   Revamed IafViewer Panels - Cutting Planes
// 24-05-23    ATK        PLAT-2730   Change panel opacity to 0.8 in order to see navcube                  
// 10-05-23    ATK        PLAT-2510   GIS Research. z-index
// 04-Nov-23   ATK        PLAT-3583   Model Composition 3D - Linked Files, Layers
//                                    z-index - debugIaf modeltree should not overlap Side panels
// -------------------------------------------------------------------------------------
*/
.SidePanel-module_sidePanel__fnDDF {
  position: absolute;
  bottom: 0;
  width: 265px;
  background-color: #000000;
  transition: right 0.5s ease-out;
  height: 100%;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 2;
}
.SidePanel-module_sidePanel__fnDDF::-webkit-scrollbar {
  display: none;
}
.SidePanel-module_sidePanel__fnDDF.SidePanel-module_large__rW-Dv {
  right: 94px;
}
.SidePanel-module_sidePanel__fnDDF.SidePanel-module_medium__FlR4L {
  right: 64px;
}
.SidePanel-module_sidePanel__fnDDF.SidePanel-module_small__yC596 {
  right: 48px;
}
.SidePanel-module_sidePanel__fnDDF.SidePanel-module_none__UHzu9 {
  right: 0px;
}
.SidePanel-module_sidePanel__fnDDF.SidePanel-module_closed__N-2vM {
  right: -300px;
}

.SidePanel-module_sidePanelContent__jE1Ss {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 5px;
  gap: 4px;
  position: absolute;
  padding-bottom: 25px;
}

ul.SidePanel-module_nested__4dTnF {
  display: none;
}

ul.SidePanel-module_nested__4dTnF.SidePanel-module_active__hPbGE {
  display: block;
}
/*
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 16-05-23    HSK        PLAT-2730   Revamped IafViewer Panels                                   
// -------------------------------------------------------------------------------------
*/
.SettingPanel-module_list-item-details__--JLD {
  display: none;
}

.SettingPanel-module_list-item-details-show__hrDki {
  display: block;
}

.SettingPanel-module_text__LNT-e {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 18px;
  /* identical to box height, or 175% */
  /* neutral/ 300 */
  color: #dcdcdc;
}

.SettingPanel-module_wrapper__3rBGg {
  /* display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 120px;
  width: 516px; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  width: 207px;
  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.SettingPanel-module_block__i4pcc {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 10px;
  width: 270px;
  height: 18px;
  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}
/*
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 16-05-23    HSK        PLAT-2813   Revamed IafViewer Components                                     
// 13-06-23    HSK        PLAT-2728   Revamped IafViewer Coloring Mechanism
// -------------------------------------------------------------------------------------
*/
.IafHeading-module_list-item__HbhKZ {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  width: 255px;
  background-color: var(--bg-color);
  border-radius: 4px;
}

.IafHeading-module_list-item-header-box__Xq2oD {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 24px;
  gap: 53px;
  width: 255px;
  height: 55px;
  border-bottom: 1px solid #3e3e3e;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.IafHeading-module_list-item-title__dapVL {
  width: 137px;
  height: 18px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  line-height: 18px;
  color: #ffffff;
  flex: none;
  order: 0;
  flex-grow: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize; /* Helps balance case difference */
}

.IafHeading-module_list-item-close__oeOml {
  width: 24px;
  height: 24px;
  flex: none;
  order: 1;
  flex-grow: 0;
  cursor: pointer;
  color: #ffffff;
}
/*
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 16-05-23    HSK        PLAT-2813   Revamed IafViewer Components                                     
// -------------------------------------------------------------------------------------
*/
.IafDropdown-module_select__mBxpN {
  box-sizing: border-box;
  /* Auto layout */
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: 207px;
  height: 29px;
  /* neutral/800 */
  border: 1px solid #3e3e3e;
  border-radius: 4px;
  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 18px;
  color: white;
}

.IafDropdown-module_select-component__gMhFo {
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  /* //color: white; */
  color: #dcdcdc;
  /* width: 24px; */
  height: 18px;
  background: #3e3e3e;
  /* Inside auto layout */
  margin-top: -3px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.IafDropdown-module_select-title__hkN78 {
  width: 150px;
  height: 18px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 18px;
  color: #dcdcdc;
  margin-bottom: 10px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.IafDropdown-module_disabled-component__SXSsC {
  /* Make the div appear disabled */
  opacity: 0.6; /* Reduce opacity to make it appear faded */
  pointer-events: none; /* Disable mouse interactions */
  cursor: not-allowed; /* Change cursor to indicate it's not clickable */
}

.IafDropdown-module_custom-select__ylZDU {
  margin-left: 4px;
  text-align: center;
  font-size: 12.8px;
  height: 20px !important;
  width: 100px;
  border: 1px solid #3e3e3e;
  border-radius: 4px;
  line-height: 18px;
  font-weight: 500;
  appearance: auto !important;
}
.IafDropdown-module_custom-select__ylZDU:focus {
  border-color: #3e3e3e;
  outline: 0;
  box-shadow: none;
}

.IafDropdown-module_dropdown-component__3FHql {
  display: block !important;
  height: 25px !important;
  width: 150px;
  padding: 0px;
  color: #dcdcdc;
  background: #3e3e3e;
  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
}
/*
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 16-05-23    HSK        PLAT-2813   Revamed IafViewer Components                                     
// 24-05-23    HSK        PLAT-2730   Revamed IafViewer Panels - Cutting Planes
// -------------------------------------------------------------------------------------
*/
.IafSubHeader-module_list-item-sub-header-box__sd6e9 {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* padding: 24px 0px 0px; */
  gap: 5px;
  width: 255px;
  height: 42px;
  border-top: 1px solid #3e3e3e;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.IafSubHeader-module_list-item-sub-title-box__h-4uB {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px 0px 0px 24px;
  gap: 10px;
  width: 83px;
  height: 18px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.IafSubHeader-module_list-item-sub-title__hkKrk {
  /* width: 59px; */
  height: 18px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  line-height: 18px;
  color: #ffffff;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.IafSubHeader-module_list-item-content__PgyAB {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px 24px 24px;
  width: 255px;
  border-radius: 4px;
  flex: none;
  order: 2;
  flex-grow: 0;
}

.IafSubHeader-module_list-item-content-box__MUzMl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 12px;
  width: 207px;
  /* height: 84px; */
  flex: none;
  order: 0;
  flex-grow: 0;
}
/*
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 16-05-23    HSK        PLAT-2813   Revamed IafViewer Components                                     
// -------------------------------------------------------------------------------------
*/
.IafButton-module_button-component__Y7DHz {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px 20px;
  gap: 10px;
  width: 100px;
  height: 27px;
  background: #3e3e3e;
  border: 1px solid #5d5d5d;
  border-radius: 4px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.IafButton-module_button-text__0-0Aw {
  height: 19px;
  margin: auto;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 19px;
  text-align: center;
  color: #ffffff;
  flex: none;
  order: 0;
  flex-grow: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Primary variant */
.IafButton-module_button-component__Y7DHz.IafButton-module_primary__zBHgK {
  padding: 8px 20px;
  height: 40px;
  background: var(--app-accent-color);
  border-color: var(--app-accent-color);
  cursor: pointer;
  transition: all 0.2s ease;
}
.IafButton-module_button-component__Y7DHz.IafButton-module_primary__zBHgK:hover {
  background: var(--fancytree-one-color);
  border-color: var(--fancytree-one-color);
}
.IafButton-module_button-component__Y7DHz.IafButton-module_primary__zBHgK:active {
  transform: translateY(1px);
}
.IafButton-module_button-component__Y7DHz.IafButton-module_primary__zBHgK .IafButton-module_button-text__0-0Aw {
  font-size: 14px;
  color: #ffffff;
}

/* Secondary variant */
.IafButton-module_button-component__Y7DHz.IafButton-module_secondary__Lh-i- {
  padding: 8px 20px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #b8b8b8;
  cursor: pointer;
  transition: all 0.2s ease;
}
.IafButton-module_button-component__Y7DHz.IafButton-module_secondary__Lh-i-:hover {
  background: var(--nav-hover-color);
  border-color: var(--head-menu-hover-color);
}
.IafButton-module_button-component__Y7DHz.IafButton-module_secondary__Lh-i-:active {
  transform: translateY(1px);
}
.IafButton-module_button-component__Y7DHz.IafButton-module_secondary__Lh-i- .IafButton-module_button-text__0-0Aw {
  font-size: 14px;
  color: var(--head-bkg-color);
}
/*
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 16-05-23    HSK        PLAT-2813   Revamed IafViewer Components                                     
// 24-05-23    HSK        PLAT-2730   Revamed IafViewer Panels - Cutting Planes
// 28-06-23    HSK        PLAT-2728   Coloring Mechanism - Derive from var(--app-accent-color)
// 21-03-24    HSK        PLAT-4420   Iaf-viewer styles taking precedence over application's MUI components
// -------------------------------------------------------------------------------------
*/
.IafSlider-module_slider-disabled__rdWsM {
  opacity: 0.6;
  /* cursor: not-allowed; */
}

.IafSlider-module_slider-component__d5Mxq {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px;
  gap: 5px;
  width: 207px;
  height: 36px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.IafSlider-module_slider-component-box__3zbW- {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 2px;
  width: 207px;
  height: 36px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.IafSlider-module_slider-title-box__rjW5G {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-bottom: 10px;
  gap: 75px;
  width: 207px;
  height: 18px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.IafSlider-module_slider-title__m0cSS {
  width: 150px;
  height: 18px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 18px;
  color: #dcdcdc;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.IafSlider-module_range-value-box__60Ke8 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  margin-top: 2px;
  margin-left: -200px;
  width: 200px;
  height: 16px;
  cursor: pointer;
}

.IafSlider-module_range-value__tY7ul {
  height: 18px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 18px;
  text-align: right;
  color: #dcdcdc;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.IafSlider-module_slider-bar-box__3Umxs {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  width: 207px;
  height: 16px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.IafSlider-module_slider-bar-box__3Umxs span.MuiSlider-root {
  display: flex;
}

.IafSlider-module_slider-bar-box__3Umxs span.MuiSlider-root .MuiSlider-rail {
  background: #3e3e3e;
  flex: none;
  order: 2;
  flex-grow: 0;
}

.IafSlider-module_slider-bar-box__3Umxs span.MuiSlider-root .MuiSlider-thumb {
  background: var(--app-accent-color);
  width: 10px;
  height: 10px;
}

.IafSlider-module_slider-bar-box__3Umxs span.MuiSlider-root .MuiSlider-thumb::after {
  width: 16px;
  content: "";
  position: absolute;
  height: 16px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.IafSlider-module_slider-bar-box__3Umxs span.MuiSlider-root .MuiSlider-track {
  background-color: var(--app-accent-color);
}

.IafSlider-module_disabled-component__yiGWl {
  /* Make the div appear disabled */
  opacity: 0.6; /* Reduce opacity to make it appear faded */
  pointer-events: none; /* Disable mouse interactions */
  cursor: not-allowed; /* Change cursor to indicate it's not clickable */
}
.ColorPicker-module_colorPicker__TRow- {
  display: flex;
  width: 100%;
  position: relative;
}

.ColorPicker-module_text__5-w-9 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 18px;
  /* identical to box height, or 175% */
  /* neutral/ 300 */
  color: #dcdcdc;
}

.ColorPicker-module_blockColorPicker__z5Rc9 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 18px;
  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.ColorPicker-module_innerBlock__98bbf {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  /* Inside auto layout */
  flex: 1;
}

.ColorPicker-module_innerText__EkdiS.ColorPicker-module_text__5-w-9 {
  text-align: right;
}

.ColorPicker-module_colorBox__sQuYy {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 0px;
  gap: 10px;
  width: 92px;
  height: 16px;
  /* neutral / 0 (white) */
  background: #ffffff;
  border-radius: 2px;
  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
}

.ColorPicker-module_compactContainer__9ObSw {
  position: absolute;
  z-index: 1;
  display: inline-block;
  left: -20px;
}
/*
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 24-05-23    HSK        PLAT-2730   Revamed IafViewer Panels - Cutting Planes
// 28-06-23    HSK        PLAT-2728   Coloring Mechanism - Derive from var(--app-accent-color)
// -------------------------------------------------------------------------------------
*/
.CuttingPlanes-module_pickFromPointButton__IfDDk {
  width: 10px !important;
  position: absolute;
  height: 15px !important;
  cursor: pointer;
  align-items: center;
  left: 130px;
  border-radius: 0.262em;
}
.CuttingPlanes-module_pickFromPointButton__IfDDk .CuttingPlanes-module_pickFromPointIcon__Qr-Yv {
  width: 20px;
  height: 20px;
  position: absolute;
}

.CuttingPlanes-module_tooltipTxt__NijzW {
  visibility: hidden;
  width: 90px;
  background-color: var(--app-accent-color);
  color: #fff;
  text-align: center;
  font-size: 0.832em;
  padding: 0.262em;
  border-radius: 0.262em;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  top: 150%;
  left: -40px !important;
  z-index: 7;
}

.CuttingPlanes-module_pickFromPointIcon__Qr-Yv:hover .CuttingPlanes-module_tooltipTxt__NijzW {
  visibility: visible;
}

.CuttingPlanes-module_filterPickFromPointIcon__ZLd9k {
  width: 17px;
  height: 17px;
  filter: brightness(0) invert(1);
}
/*
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 31-05-23    HSK        PLAT-2890   Revamped UX/UI Learning Centre
// -------------------------------------------------------------------------------------
*/
.LearningCenter-module_learning-center-title__AYg70 {
  width: 150px;
  height: 18px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 18px;
  color: #dcdcdc;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.LearningCenter-module_arrow-right__n0HSk {
  width: 24px;
  height: 24px;
  flex: none;
  order: 1;
  flex-grow: 0;
  cursor: pointer;
  color: #ffffff;
  position: relative;
  bottom: 18px;
  left: 180px;
}
/*
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 31-05-23    HSK        PLAT-2890   Created
//
// -------------------------------------------------------------------------------------
*/
.IafControlPanel-module_control-panel__3Mrnf {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  position: absolute;
  width: 552px;
  left: 350px;
}

.IafControlPanel-module_control-panel-content__BGnMu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 5px;
  position: absolute;
}
/*
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 31-05-23    HSK        PLAT-2890   Revamped UX/UI Walk Mode UI
// 28-06-23    HSK        PLAT-2728   Coloring Mechanism - Derive from var(--app-accent-color)
// -------------------------------------------------------------------------------------
*/
.KeyControls-module_key__IkQmN {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  width: 540px;
  height: 56px;
  background: #f9f9f9;
  border: 1px solid #ebebeb;
  border-radius: 4px 8px 0px 0px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.KeyControls-module_keyfont__rKi-r {
  width: 384px;
  height: 24px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  padding-left: 32px;
  color: #1d1d1d;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.KeyControls-module_inner-panel__6aNNl {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 32px;
  gap: 16px;
  width: 540px;
  height: 400px;
  background: #ffffff;
  border-width: 0px 1px 1px 1px;
  border-style: solid;
  border-color: #ebebeb;
  border-radius: 0px 0px 8px 8px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.KeyControls-module_inner-text__YGsUI {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 328px;
  width: 443px;
  height: 40px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.KeyControls-module_sub-heading__5-vUM {
  height: 20px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  color: #5d5d5d;
  flex: none;
  order: 0;
}

.KeyControls-module_description__zN0PB {
  width: 443px;
  height: 20px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #5d5d5d;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.KeyControls-module_graphic__Eulr5 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 488px;
  height: 216px;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.KeyControls-module_walk__5dhng {
  position: absolute;
  width: 160px;
  height: 104px;
  margin: 56px 288px 56px 0px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.KeyControls-module_keyContainer__Ogpd2 {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 56px;
  background: #f9f9f9;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08), 0px 0px 1px rgba(0, 0, 0, 0.16);
  border-radius: 4px;
}

.KeyControls-module_keyContainerD__ZxHaj {
  left: 112px;
  top: 56px;
}

.KeyControls-module_keyContainerS__QiHl- {
  left: 56px;
  top: 56px;
}

.KeyControls-module_keyContainerW__GcmU2 {
  left: 56px;
  top: 0px;
}

.KeyControls-module_a__ByVr6 {
  position: absolute;
  width: 15px;
  height: 24px;
  left: 15px;
  top: 70px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #5d5d5d;
}

.KeyControls-module_d__-SSSH {
  left: 126px;
  top: 70px;
}

.KeyControls-module_s__WpVFV {
  left: 70px;
  top: 70px;
}

.KeyControls-module_w__bug3w {
  left: 70px;
  top: 10px;
}

.KeyControls-module_or__T2t5d {
  position: absolute;
  left: 250px;
  bottom: 200px;
  width: 29px;
  height: 28px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #5d5d5d;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.KeyControls-module_arrow_left__KQdcE {
  position: absolute;
  left: 30%;
  right: 50%;
  top: 40%;
  bottom: 60%;
  border-left: 10px solid transparent;
  transform: rotate(90deg);
  border-right: 10px solid transparent;
  border-bottom: 10px solid black;
}

.KeyControls-module_arrow_up__mYTZ8 {
  transform: rotate(180deg);
}

.KeyControls-module_arrow_down__BLOyq {
  transform: rotate(0deg);
}

.KeyControls-module_arrow_right__55QB5 {
  transform: rotate(270deg);
}

.KeyControls-module_boundingBox__Bg8b2 {
  position: absolute;
  left: 100%;
  right: -100%;
  top: 0%;
  bottom: 0%;
  transform: rotate(90deg);
}

.KeyControls-module_dropdown__fjxg4 {
  position: absolute;
  width: 48px;
  height: 48px;
  bottom: 48px;
  transform: rotate(90deg);
}

.KeyControls-module_bottomPanel__uAGrd {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 0px 0px;
  gap: 16px;
  width: 488px;
  height: 48px;
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
}

.KeyControls-module_ellipseContainer__3bQqd {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  width: 265px;
  height: 8px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.KeyControls-module_e__YFbjM {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: var(--app-accent-color);
  flex: none;
  order: 0;
  flex-grow: 0;
}

.KeyControls-module_e1__onLNi {
  background: #d9d9d9;
  order: 1;
}

.KeyControls-module_e2__zfHNK {
  background: #d9d9d9;
  order: 2;
}

.KeyControls-module_e3__mvWGj {
  background: #d9d9d9;
  order: 3;
}

.KeyControls-module_walk2__AKNW8 {
  margin-left: 250px;
  order: 2;
  position: absolute;
  width: 160px;
  height: 104px;
  flex: none;
  flex-grow: 0;
}

.KeyControls-module_run__px33W {
  position: absolute;
  width: 410px;
  height: 48px;
  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.KeyControls-module_shiftContainer__U0ll9 {
  top: 0;
  width: 144px;
  height: 48px;
}

.KeyControls-module_shift__NgMJM {
  position: absolute;
  top: 12px;
}

.KeyControls-module_plus__G5epF {
  color: #b8b8b8;
  left: 168px;
  top: 12px;
}

.KeyControls-module_directionKey__kM3GM {
  position: absolute;
  width: 157px;
  height: 28px;
  left: 206px;
  top: 12px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #5d5d5d;
}

.KeyControls-module_frameQE__KcCiC {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  width: 103px;
  height: 48px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.KeyControls-module_keyContainerQ__1oJKB {
  top: 0px;
}

.KeyControls-module_keyContainerE__Fhxk- {
  top: 0px;
  left: 56px;
}

.KeyControls-module_q__LlMJj {
  left: 15px;
  top: 15px;
}
/*
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 31-05-23    HSK        PLAT-2890   Revamped UX/UI Walk Mode
// 28-06-23    HSK        PLAT-2728   Coloring Mechanism - Derive from var(--app-accent-color)
// -------------------------------------------------------------------------------------
*/
.MouseControls-module_mouse__O9zdn {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  width: 540px;
  height: 56px;
  background: #f9f9f9;
  border: 1px solid #ebebeb;
  border-radius: 4px 8px 0px 0px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.MouseControls-module_mousefont__MKRNp {
  width: 384px;
  height: 24px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  padding-left: 32px;
  color: #1d1d1d;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.MouseControls-module_inner-panel__ZIlwh {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 32px;
  gap: 16px;
  width: 540px;
  height: 400px;
  background: #ffffff;
  border-width: 0px 1px 1px 1px;
  border-style: solid;
  border-color: #ebebeb;
  border-radius: 0px 0px 8px 8px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.MouseControls-module_inner-text__0QZ73 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 328px;
  width: 443px;
  height: 40px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.MouseControls-module_sub-heading__XkL8- {
  height: 20px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  color: #5d5d5d;
  flex: none;
  order: 0;
}

.MouseControls-module_description__iJA4E {
  width: 443px;
  height: 20px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #5d5d5d;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.MouseControls-module_graphic__stp97 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 488px;
  height: 216px;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.MouseControls-module_mouse-box__MttOV {
  position: absolute;
  width: 80px;
  height: 80px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.MouseControls-module_mouse-circle1__evyeE {
  position: absolute;
  width: 40px;
  height: 40px;
  left: 20px;
  top: 20px;
  border-radius: 20px;
  background: #ebebeb;
}

.MouseControls-module_mouse-circle2__uGTPG {
  position: absolute;
  width: 80px;
  height: 80px;
  left: 0px;
  top: 0px;
  background: #ebebeb;
  opacity: 0.5;
  border-radius: 40px;
}

.MouseControls-module_bottomPanel__shx89 {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 0px 0px;
  gap: 16px;
  width: 488px;
  height: 48px;
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
}

.MouseControls-module_ellipseContainer__GfPlr {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  width: 265px;
  height: 8px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.MouseControls-module_e__qZqlE {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: var(--app-accent-color);
  flex: none;
  order: 0;
  flex-grow: 0;
}

.MouseControls-module_e1__N-rr7 {
  background: #d9d9d9;
  order: 1;
}

.MouseControls-module_e2__XGw4n {
  background: #d9d9d9;
  order: 2;
}

.MouseControls-module_e3__et-iP {
  background: #d9d9d9;
  order: 3;
}

.MouseControls-module_look__hkrJ6 {
  position: absolute;
  width: 96px;
  height: 104px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.MouseControls-module_line-look__-Miox {
  position: absolute;
  width: 96px;
  height: 16.5px;
  left: 96px;
  top: 16px;
  border: 4px solid #999999;
  transform: rotate(180deg);
}

.MouseControls-module_look-rectangle3__tySAG {
  position: absolute;
  width: 53px;
  height: 80px;
  background: #1d1d1d;
  border: 2px solid #1d1d1d;
  border-radius: 26.5px;
  width: 53px;
  height: 80px;
  opacity: 1;
}

.MouseControls-module_look-rectangle1__X6NIo {
  position: absolute;
  width: 26px;
  height: 27px;
  background: #ffffff;
  z-index: 1;
}

.MouseControls-module_look-rectangle2__YN70P {
  position: absolute;
  width: 53px;
  height: 80px;
  background: rgba(0, 0, 0, 0);
  border-radius: 26.5px;
  border: 2px solid #000;
  opacity: 0.5;
  z-index: 1;
}

.MouseControls-module_look-Intersect__pk8zj {
  position: absolute;
  width: 26px;
  height: 27px;
  background: #ffffff;
}

.MouseControls-module_left-click__BMH0J {
  left: 27px;
}

.MouseControls-module_tilt-rectangle1__NkOrI {
  position: absolute;
  background: #ffffff;
  z-index: 1;
  width: 8px;
  height: 24px;
  left: 22px;
  top: 10px;
  border-radius: 50px;
}
.EditControls-module_container__Pdiiz {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 0px;
  position: absolute;
  width: 548px;
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  left: calc(50% - 300px);
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.EditControls-module_headerBox__jrOWw {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  width: 548px;
  height: 56px;
  background: #f9f9f9;
  border-bottom: 1px solid #ebebeb;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.EditControls-module_header__uh8VH {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  width: 100%;
  height: 48px;
  border-radius: 8px 0px 0px 0px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.EditControls-module_headerText__xGLKk {
  height: 24px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #1d1d1d;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin-right: auto;
}

.EditControls-module_headerCloseButton__cbp25 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
  margin-left: auto;
  transition: opacity 0.2s;
}
.EditControls-module_headerCloseButton__cbp25:hover {
  opacity: 0.7;
  background-color: var(--nav-hover-color);
  border-radius: 4px;
}

.EditControls-module_closeButton__IW69i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s;
  margin-left: auto;
}
.EditControls-module_closeButton__IW69i:hover {
  background-color: #e0e0e0;
}

.EditControls-module_closeIcon__vDftS {
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
}

.EditControls-module_descriptionBox__5uIlo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0px;
  width: 484px;
  height: 38px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.EditControls-module_descriptionBoxText__A725X {
  width: 484px;
  height: 38px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #5d5d5d;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.EditControls-module_contentBox__lY-K1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px 32px;
  gap: 16px;
  width: 100%;
  flex: none;
  order: 3;
  flex-grow: 0;
}

.EditControls-module_footerBox__8lJyA {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  gap: 16px;
  width: 100%;
  height: 72px;
  flex: none;
  order: 4;
  align-self: stretch;
  flex-grow: 0;
}

.EditControls-module_toolListBox__vNOLb {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0px;
  gap: 8px;
  width: 48%;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.EditControls-module_currentToolbarBox__mA-2o {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0px;
  gap: 8px;
  width: 48%;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.EditControls-module_contentColumnHeader__DNP80 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0px;
  gap: 8px;
  height: 20px;
  flex: none;
  order: 0;
  flex-grow: 0;
  width: 100%;
}

.EditControls-module_contentColumnHeaderText__67qES {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: var(--head-bkg-color);
  flex: none;
  order: 0;
  flex-grow: 0;
}

.EditControls-module_listBox__HWn-m {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px;
  gap: 4px;
  width: 218px;
  background: #f3f3f3;
  border-radius: 4px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.EditControls-module_tableFrame__HgKao {
  box-sizing: border-box;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 8px;
  gap: 8px;
  width: 100%;
  height: 460px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.EditControls-module_tableFrame__HgKao::-webkit-scrollbar {
  display: none;
}

.EditControls-module_colContainer__QzNMl {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 8px;
  gap: 4px;
  width: 100%;
  background: #f3f3f3;
  border-radius: 4px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.EditControls-module_defaultLabelContainer__dP-IK {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px 0px 4px;
  width: 100%;
  height: 23px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.EditControls-module_defaultLabel__-lUIb {
  height: 18px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  text-align: left;
  color: #5d5d5d;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.EditControls-module_toolFrame__UkA8n {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4px 8px;
  gap: 8px;
  width: 100%;
  height: 26px;
  background: #dcdcdc;
  border-radius: 4px;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  transition: background-color 0.2s;
  box-sizing: border-box;
}
.EditControls-module_toolFrame__UkA8n:hover {
  background: #e8e8e8;
}

.EditControls-module_toolLabel__gPgKv {
  height: 18px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  text-align: left;
  color: #3e3e3e;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.EditControls-module_buttonBox__cSfjp {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 0px;
  gap: 16px;
  width: auto;
  height: 40px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.EditControls-module_resetSettings__MXl1A {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: var(--app-accent-color);
  cursor: pointer;
  margin-left: 0;
}
.EditControls-module_resetSettings__MXl1A:hover {
  color: var(--fancytree-one-color);
}

.EditControls-module_closeButton__IW69i {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  gap: 10px;
  width: 128px;
  height: 40px;
  border: 1px solid #b8b8b8;
  border-radius: 4px;
  flex: none;
  order: 0;
  flex-grow: 0;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  color: #c71784;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s;
}
.EditControls-module_closeButton__IW69i:hover {
  background-color: #f5f5f5;
}

.EditControls-module_saveButton__PrtPI {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  gap: 10px;
  width: 128px;
  height: 40px;
  background: #c71784;
  border-radius: 4px;
  border: 1px;
  flex: none;
  order: 1;
  flex-grow: 0;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  color: #ffffff;
}

.EditControls-module_icon__fdbQd {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.EditControls-module_selectionBox__iTVk6 {
  display: flex;
  /* position: absolute; */
  flex-direction: row;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
  order: 1;
  padding: 20px 32px;
  width: 100%;
}

.EditControls-module_selectionColumn__ylTyY {
  display: flex;
  flex-direction: column;
  width: 48%;
  gap: 8px;
}

.EditControls-module_resetButtonContainer__-19Ae {
  display: flex;
  align-items: flex-end;
  padding-bottom: 8px;
}

.EditControls-module_dropdownComponent__RrLDM {
  display: block !important;
  height: 32px !important;
  width: 150px;
  padding: 0px;
  color: #dcdcdc;
  background: #3e3e3e;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
}

.EditControls-module_saveCloseBtn__PHKtS {
  width: auto !important;
}

@media (max-width: 1023px) {
  .EditControls-module_container__Pdiiz {
    display: none;
  }
}
@media (max-height: 719px) {
  .EditControls-module_container__Pdiiz {
    display: none;
  }
}
@media (min-width: 1024px) {
  .EditControls-module_container__Pdiiz {
    padding: 0px !important;
    width: 548px;
    gap: 12px;
  }
  .EditControls-module_contentBox__lY-K1 {
    gap: 3px;
  }
  .EditControls-module_tableFrame__HgKao {
    height: 240px;
  }
}
@media (min-width: 1200px) {
  .EditControls-module_tableFrame__HgKao {
    height: 350px;
  }
}
@media (min-width: 1920px) {
  .EditControls-module_tableFrame__HgKao {
    height: 548px;
  }
}
/*
// -------------------------------------------------------------------------------------
// Date             Author     Referene    Comments
// 20-Aug-2025      RRP        PLAT-1069   Custom styles for react-select dropdown component
// -------------------------------------------------------------------------------------
*/
.iafDropdown-select-module_iaf-dropdown-title__tWRXe {
  width: 100%;
  height: 18px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--head-bkg-color);
  margin-bottom: 8px;
  flex: none;
  order: 0;
  flex-grow: 0;
  text-align: left;
}

.iafDropdown-select-module_iaf-dropdown-disabled__XEiMf {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

/* iaf-select custom styles (must be global) */
.iaf-select__control {
  min-height: 32px !important;
  border: 1px solid #dcdcdc !important;
  border-radius: 4px !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}

.iaf-select__option--is-selected {
  background-color: var(--app-accent-color) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
}

.iaf-select__option--is-focused {
  background-color: var(--app-accent-color) !important;
}

.iaf-select__option:hover {
  color: #ffffff !important;
  background-color: var(--app-accent-color) !important;
}
/*
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 10-07-23    ATK        PLAT-3427   Created
// -------------------------------------------------------------------------------------
*/
/* Define a keyframe animation called 'blink' */
@keyframes loadconfig-module_blink__wyVel {
  0% {
    opacity: 1;
  } /* Start with full opacity */
  50% {
    opacity: 0.75;
  } /* Fade to invisible */
  100% {
    opacity: 1;
  } /* Back to full opacity */
}
.loadconfig-module_long-title__0yMUF {
  font-size: x-small;
  width: 200px; /* Adjust width as needed */
  color: white;
  word-wrap: break-word;
}

.loadconfig-module_long-title-blink__dOU4C {
  font-size: x-small;
  width: 200px; /* Adjust width as needed */
  color: white;
  word-wrap: break-word;
  animation: loadconfig-module_blink__wyVel 1s infinite; /* Apply the blink animation infinitely */
}

.loadconfig-module_long-title-li__-0YNM {
  font-size: x-small;
  width: 200px; /* Adjust width as needed */
  color: var(--app-accent-color);
  word-wrap: break-word;
}
.CustomPagination-module_pagination__yCVFE {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  border-top: 1px solid #333;
  background-color: #181818;
}

.CustomPagination-module_paginationInfo__2GDWu {
  color: #999;
  font-size: 12px;
}

.CustomPagination-module_paginationControls__Z6zH4 {
  display: flex;
  gap: 4px;
}

.CustomPagination-module_paginationButton__4ZwKG {
  color: #999 !important;
  padding: 4px !important;
}
.CustomPagination-module_paginationButton__4ZwKG:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #e0e0e0 !important;
}
.CustomPagination-module_paginationButton__4ZwKG:disabled {
  opacity: 0.5;
}
/*
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 08-12-23    HSK        PLAT-3793   IafViewer DevTools - Camera Callback Panel under IafUtils.debugIaf
// -------------------------------------------------------------------------------------
*/
.DevToolsPanel-module_devtoolsStats__NQuNc {
  color: white;
  order: 0;
}

.DevToolsPanel-module_mainUl__1aX76 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.DevToolsPanel-module_sectionLi__dVicO {
  margin-bottom: 7px;
}

.DevToolsPanel-module_statsUl__3NTHU {
  margin-left: 5px;
  font-size: 0.7em;
}

.DevToolsPanel-module_devtoolsStats__NQuNc li strong {
  color: #61dafb;
  margin-right: 5px;
  font-size: 0.7em;
}

.DevToolsPanel-module_devtoolsStats__NQuNc li span {
  font-size: 0.7em;
}
/* 
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 29-01-24    HSK        PLAT-4097   Add generic(low level) components IafInputNumber and IafInputPoint3D                         
// ------------------------------------------------------------------------------------- 
*/
.IafPoint3d-module_section-li__-YK-h {
  margin-bottom: 7px;
}

.IafPoint3d-module_stats-ul__l499t {
  margin-left: 5px;
  font-size: 0.9em;
}
/* 
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 29-01-24    HSK        PLAT-4097   Add generic(low level) components IafInputNumber and IafInputPoint3D                         
// ------------------------------------------------------------------------------------- 
*/
.IafInputNumber-module_section-li__IReqy {
  margin-bottom: 7px;
}
/* 
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 29-01-24    HSK        PLAT-4097   Add generic(low level) components IafInputNumber and IafInputPoint3D                         
// ------------------------------------------------------------------------------------- 
*/
.IafInputPoint3d-module_camera-inputs__3jSdm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 5px;
  /* width: 207px; */
  /* height: 18px; */
}

.IafInputPoint3d-module_position-box__ejAGQ {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: #dcdcdc;
}

.IafInputPoint3d-module_position-box__ejAGQ p {
  margin: 0px;
}
/* 
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 29-01-24    HSK        PLAT-4097   Add generic(low level) components IafInputNumber and IafInputPoint3D                         
// ------------------------------------------------------------------------------------- 
*/
.IafInputNum-module_section-li__lw92W {
  margin-bottom: 7px;
}
/*
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 10-07-23    ATK        PLAT-3065   Created
// -------------------------------------------------------------------------------------
*/
#mapbox-container {
  position: absolute;
  float: left;
  width: 100%;
  height: 100%;
  /* padding: 5px 5px 5px 5px; */
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2509803922);
}

.pick-from-point-button {
  width: 10px !important;
  position: absolute;
  height: 15px !important;
  cursor: pointer;
  align-items: center;
  left: 130px;
  border-radius: 0.262em;
}
.pick-from-point-button .pick-from-point-icon {
  width: 20px;
  height: 20px;
  position: absolute;
}

.pick-from-point-button .tooltip-txt {
  visibility: hidden;
  width: 90px;
  background-color: var(--app-accent-color);
  color: #fff;
  text-align: center;
  font-size: 0.832em;
  padding: 0.262em;
  border-radius: 0.262em;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  top: 150%;
  left: -40px !important;
  z-index: 7;
}

.pick-from-point-icon:hover .tooltip-txt {
  visibility: visible;
}

.filter-pick-from-point-icon {
  width: 17px;
  height: 17px;
  filter: brightness(0) invert(1);
}
/*
// -------------------------------------------------------------------------------------
// Date        Author     Referene    Comments
// 22-Oct-23   ATK        PLAT-2414   Performance - CSDL - On Demand
// -------------------------------------------------------------------------------------
*/

#model-tree-main {
  position: absolute;
  width: 512px;
  height: 283px;
  top: 24px;
  left: 824px;
  border-radius: 10px;
  z-index: 11;  
}
#model-tree-main-2d {
  position: absolute;
  width: 512px;
  height: 283px;
  top: 24px;
  left: 1224px;
  border-radius: 10px;
  z-index: 11;
}
#model-tree-main-dis {
  position: absolute;
  width: 512px;
  height: 283px;
  top: 524px;
  left: 824px;
  border-radius: 10px;
  z-index: 11;
}
#model-tree-main .viewer2D-Controls {
  position: absolute;
  background: white;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  width: 512px;
  height: 44px;
  z-index: 6;
  border: 1px solid rgba(46, 45, 45, 0.0509803922);
}
#model-tree-main .DropDownList {
  margin-left: 4px;
  margin-top: 8px;
  margin-right: 2px;
  text-align: center;
  font-size: 12.8px;
  height: 24px;
  float: left;
  width: 100px;
  border-color: white;
  color: #C71784;
  font-weight: bold;
}
#model-tree-main button:hover {
  background-color: #ddd;
  color: black;
}
#model-tree-main .previous {
  background-color: #f1f1f1;
  color: black;
}
#model-tree-main .next {
  background-color: #f1f1f1;
  color: black;
}
#model-tree-main .round {
  border-radius: 50%;
}
#model-tree-main .Viewer_button {
  float: left;
  width: 40px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  z-index: 10;
  background: white;
  margin-top: 0;
}
#model-tree-main .Viewer_button .Viewer2d-toolbar-icon {
  width: 20px;
  height: 18px;
  margin: 11px 10px 11px 10px;
  position: absolute;
}
.react-checkbox-tree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  font-size: 16px;
}
.react-checkbox-tree > ol {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.react-checkbox-tree ol {
  margin: 0;
  padding-left: 0;
  list-style-type: none;
}
.react-checkbox-tree ol ol {
  padding-left: 24px;
}
.react-checkbox-tree button {
  line-height: normal;
  color: inherit;
}
.react-checkbox-tree button:disabled {
  cursor: not-allowed;
}
.react-checkbox-tree .rct-bare-label {
  cursor: default;
}
.react-checkbox-tree label {
  margin-bottom: 0;
  cursor: pointer;
}
.react-checkbox-tree label:hover {
  background: rgba(51, 51, 204, 0.1);
}
.react-checkbox-tree label:active, .react-checkbox-tree label:focus {
  background: rgba(51, 51, 204, 0.15);
}
.react-checkbox-tree:not(.rct-native-display) input {
  display: none;
}
.react-checkbox-tree.rct-native-display input {
  margin: 0 5px;
}
.react-checkbox-tree .rct-icon {
  display: inline-block;
  text-align: center;
  text-rendering: auto;
  font-family: "Font Awesome 5 Free", "FontAwesome", sans-serif;
  font-weight: normal;
  font-variant: normal;
  font-style: normal;
}

.rct-disabled > .rct-text > label {
  opacity: 0.75;
  cursor: not-allowed;
}
.rct-disabled > .rct-text > label:hover {
  background: transparent;
}
.rct-disabled > .rct-text > label:active {
  background: transparent;
}

.rct-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rct-options {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: 0.5rem;
  text-align: right;
}

.rct-option {
  opacity: 0.75;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0 4px;
  font-size: 18px;
}
.rct-option:hover {
  opacity: 1;
}
.rct-option + .rct-option {
  margin-left: 2px;
}

.rct-collapse,
.rct-checkbox,
.rct-node-icon {
  padding: 0 5px;
}
.rct-collapse *,
.rct-checkbox *,
.rct-node-icon * {
  display: inline-block;
  margin: 0;
  width: 14px;
}

.rct-collapse {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border: 0;
  background: none;
  line-height: normal;
  color: inherit;
  font-size: 12px;
}
.rct-collapse.rct-collapse-btn {
  cursor: pointer;
}
.rct-collapse > .rct-icon-expand-close {
  opacity: 0.5;
}
.rct-collapse > .rct-icon-expand-close:hover {
  opacity: 1;
}

.rct-native-display .rct-checkbox {
  display: none;
}

.rct-node-clickable {
  cursor: pointer;
}
.rct-node-clickable:hover {
  background: rgba(51, 51, 204, 0.1);
}
.rct-node-clickable:focus {
  outline: 0;
  background: rgba(51, 51, 204, 0.2);
}

.rct-node-icon {
  color: #33c;
}

.rct-title {
  padding: 0 5px;
}

.rct-icons-fa4 .rct-icon-expand-close::before {
  content: "\f054";
}
.rct-icons-fa4 .rct-icon-expand-open::before {
  content: "\f078";
}
.rct-icons-fa4 .rct-icon-uncheck::before {
  content: "\f096";
}
.rct-icons-fa4 .rct-icon-check::before {
  content: "\f046";
}
.rct-icons-fa4 .rct-icon-half-check::before {
  opacity: 0.5;
  content: "\f046";
}
.rct-icons-fa4 .rct-icon-leaf::before {
  content: "\f016";
}
.rct-icons-fa4 .rct-icon-parent-open::before {
  content: "\f115";
}
.rct-icons-fa4 .rct-icon-parent-close::before {
  content: "\f114";
}
.rct-icons-fa4 .rct-icon-expand-all::before {
  content: "\f0fe";
}
.rct-icons-fa4 .rct-icon-collapse-all::before {
  content: "\f146";
}

.rct-icons-fa5 .rct-icon-expand-close::before {
  font-weight: 900;
  content: "\f054";
}
.rct-icons-fa5 .rct-icon-expand-open::before {
  font-weight: 900;
  content: "\f078";
}
.rct-icons-fa5 .rct-icon-uncheck::before {
  content: "\f0c8";
}
.rct-icons-fa5 .rct-icon-check::before {
  content: "\f14a";
}
.rct-icons-fa5 .rct-icon-half-check::before {
  opacity: 0.5;
  content: "\f14a";
}
.rct-icons-fa5 .rct-icon-leaf::before {
  content: "\f15b";
}
.rct-icons-fa5 .rct-icon-parent-open::before {
  content: "\f07c";
}
.rct-icons-fa5 .rct-icon-parent-close::before {
  content: "\f07b";
}
.rct-icons-fa5 .rct-icon-expand-all::before {
  content: "\f0fe";
}
.rct-icons-fa5 .rct-icon-collapse-all::before {
  content: "\f146";
}

.rct-direction-rtl {
  direction: rtl;
}
.rct-direction-rtl ol ol {
  padding-right: 24px;
  padding-left: 0;
}
.rct-direction-rtl.rct-icons-fa4 .rct-icon-expand-close::before {
  content: "\f105";
}
.rct-direction-rtl.rct-icons-fa5 .rct-icon-expand-close::before {
  content: "\f053";
}
.IafToolbar-module_toolbar__jhF9Z {
  background-color: #333;
  color: white;
  padding: 10px;
  border-radius: 10px 10px 0px 0px;
  cursor: move;
  position: absolute;
  z-index: 300;
}

.IafToolbar-module_toolbar-controls__VzmG7 {
  background-color: #333;
  color: #fff;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 312px;
}

.IafToolbar-module_toolbar-buttons__X6F74 {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  cursor: pointer;
}

.IafToolbar-module_toolbar-button__LpZ-n .IafToolbar-module_tooltip-txt__pDu-8 {
  visibility: hidden;
  width: 80px;
  background-color: orange;
  color: #fff;
  text-align: center;
  font-size: 0.822em;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  top: 150%;
  left: 50%;
  margin-left: -45px;
  z-index: 7;
}

.IafToolbar-module_toolbar-icon__J0jiH img {
  pointer-events: none;
}

.IafToolbar-module_filter-pink__EKwUB {
  filter: invert(47%) sepia(41%) saturate(1900%) hue-rotate(357deg) brightness(89%) contrast(100%) !important;
}
.IafDraggable-module_widget-container__bKdYJ {
  position: absolute;
  border-radius: 10px 10px 0 0;
  background-color: #b4b4b4;
  left: 0px;
  top: 0px;
  overflow: hidden;
}
.IafDraggable-module_widget-container__bKdYJ.IafDraggable-module_fixed__qhB-W, .IafDraggable-module_widget-container__bKdYJ.IafDraggable-module_fullscreen__tFiY5 {
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  position: absolute;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 0;
  left: 0;
  top: 0;
}
.IafDraggable-module_widget-container__bKdYJ.IafDraggable-module_split__kKZb3 {
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
}

.IafDraggable-module_canvas-container__2EZAf {
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0 0;
}

.IafDraggable-module_canvas-container__2EZAf canvas {
  /* display: block;
  width: 100%;
  height: 100%; */
}

#IafDraggable-module_toolbar__FotSB {
  background-color: #333;
  color: white;
  padding: 10px;
  border-radius: 10px 10px 0px 0px;
  cursor: move;
  position: absolute;
  z-index: 300;
}

.IafDraggable-module_toolbar-button__BmYTk:hover .IafDraggable-module_tooltip-txt__KmMVv {
  visibility: visible;
}

.IafDraggable-module_filter-pink__sxd1K {
  filter: invert(47%) sepia(41%) saturate(1900%) hue-rotate(357deg) brightness(89%) contrast(100%) !important;
}

.IafDraggable-module_custom-select__SYiMV {
  margin-left: 4px;
  text-align: center;
  font-size: 12.8px;
  height: 20px !important;
  width: 100px;
  border: 1px solid #3e3e3e;
  border-radius: 4px;
  line-height: 18px;
  font-weight: 500;
  appearance: auto !important;
}

.IafDraggable-module_custom-select__SYiMV:focus {
  border-color: #3e3e3e;
  outline: 0;
  box-shadow: none;
}
.iafMapViewer-module_mapbox-distance-container__6XZfx {
  position: absolute;
  bottom: 35px;
  left: 110px;
  z-index: 1;
}
.iafMapViewer-module_mapbox-distance-container__6XZfx > * {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  display: block;
  margin: 0;
  padding: 5px 10px;
  border-radius: 3px;
}
.iafWidgetRenderer-module_custom-container__RicIl {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  height: 100%;
}

.iafWidgetRenderer-module_widget_hidden__O3NLP {
  position: relative;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.iafWidgetRenderer-module_widget_visible__GBzNL {
  visibility: visible;
}
/* @import url("https://js.arcgis.com/4.31/@arcgis/core/assets/esri/themes/dark/main.css"); */

.mmv, .arcgis-viewer {
    height: 100%;
}

.graphic-html {
    position: absolute;
    z-index: 2;
    text-wrap: nowrap;
}



.canvasElement-module_webviewer-container__75prK {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 0px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2509803922);
}

.canvasElement-module_left-content__Iy3JE {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.canvasElement-module_right-toolbar__OHRN2 {
  display: flex;
  height: 100%;
  z-index: 4;
}

.canvasElement-module_sidebar-modelviewer__V6GCX {
  background-color: rgba(35, 55, 75, 0.3);
  color: #76157b;
  padding: 6px 12px;
  font-family: monospace;
  z-index: 9;
  position: absolute;
  top: 0;
  left: 0;
  margin: 12px;
  border-radius: 4px;
  width: 86%;
}

.canvasElement-module_sidebar-gisviewer__8WRro {
  background-color: rgba(35, 55, 75, 0.3);
  color: #76157b;
  padding: 6px 12px;
  font-family: monospace;
  z-index: 9;
  position: absolute;
  bottom: 30px;
  left: 0;
  margin: 12px;
  border-radius: 4px;
  width: 86%;
}

.canvasElement-module_sidebar-tuner__BNbqj {
  background-color: rgba(35, 55, 75, 0.3);
  color: #76157b;
  padding: 6px 12px;
  font-family: monospace;
  z-index: 9;
  position: absolute;
  top: 70px;
  left: 0;
  margin: 12px;
  border-radius: 4px;
  width: 86%;
  /* display: none; */
}
.IafViewer-module_iaf-container__ANsDk {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
/*
// -------------------------------------------------------------------------------------
// Date        Author     Reference    Comments
// 01-01-25    ATK                    Created styles for confirmation dialog component
// -------------------------------------------------------------------------------------
*/
.IafConfirmDialog-module_confirm-dialog__8fX-W .IafConfirmDialog-module_confirm-dialog-paper__Ywisv {
  min-width: 400px;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
}
.IafConfirmDialog-module_confirm-dialog__8fX-W .IafConfirmDialog-module_confirm-dialog-title__O6x5q {
  padding: 20px 24px 16px 24px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--head-bkg-color, #1d1d1d);
  border-bottom: 1px solid #e0e0e0;
}
.IafConfirmDialog-module_confirm-dialog__8fX-W .IafConfirmDialog-module_confirm-dialog-content__AUHeC {
  padding: 20px 24px;
}
.IafConfirmDialog-module_confirm-dialog__8fX-W .IafConfirmDialog-module_confirm-dialog-message__ecTXW {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--head-bkg-color, #1d1d1d);
  white-space: pre-line;
  margin: 0;
}
.IafConfirmDialog-module_confirm-dialog__8fX-W .IafConfirmDialog-module_confirm-dialog-select__9Old- {
  margin-top: 16px;
}
.IafConfirmDialog-module_confirm-dialog__8fX-W .IafConfirmDialog-module_confirm-dialog-select-menu__jeTcy {
  max-height: 320px;
}
.IafConfirmDialog-module_confirm-dialog__8fX-W .IafConfirmDialog-module_confirm-dialog-actions__0-Hmw {
  padding: 16px 24px 20px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid #e0e0e0;
}
