@font-face {
  font-family: BrandonMedium;
  src: url("/dist/assets/fonts/Brandon-Medium.otf") format("opentype");
}

@font-face {
  font-family: BrandonRegular;
  src: url("/dist/assets/fonts/Brandon-Regular.otf") format("opentype");
}

@font-face {
  font-family: BrandonBold;
  src: url("/dist/assets/fonts/Brandon-Bold.otf") format("opentype");
}

@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  src: url("/dist/assets/fonts/material-symbols-outlined.woff2") format("woff2");
}

.material-symbols,
.material-symbols-fill {
  font-family: "Material Symbols Outlined", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";

  /* Default Material Symbols settings */
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.material-symbols-fill {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

input[type="time"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* As hex codes */
.color-primary-0 {
  color: #19282c;
} /* Main Primary color */
.color-primary-1 {
  color: #7a8184;
}

.color-primary-2 {
  color: #39474b;
}

.color-primary-3 {
  color: #2d6d82;
}

.color-primary-4 {
  color: #108fb9;
}

/* As RGBa codes */
.rgba-primary-0 {
  color: rgba(25, 40, 44, 1);
} /* Main Primary color */
.rgba-primary-1 {
  color: rgba(122, 129, 132, 1);
}

.rgba-primary-2 {
  color: rgba(57, 71, 75, 1);
}

.rgba-primary-3 {
  color: rgba(45, 109, 130, 1);
}

.rgba-primary-4 {
  color: rgba(16, 143, 185, 1);
}

/* Optional: Makes the sample page fill the window. */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  overscroll-behavior-x: none;
}

html {
  height: -webkit-fill-available;
}

body {
  width: 100vw;
  min-height: 100vh;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
}

#map-wrapper-body {
  padding-left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#map-wrapper-body.toggled {
  padding-left: 199px;
}

#map-sidebar-wrapper {
  z-index: 1000;
  position: fixed;
  left: 171px;
  width: 0;
  height: 100%;
  margin-left: -171px;
  overflow-y: auto;
  background: white;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#map-wrapper-body.toggled #map-sidebar-wrapper {
  width: 199px;
}

#page-content-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
}

#map-wrapper-body.toggled #page-content-wrapper {
  position: absolute;
  margin-right: -171px;
}

/* Sidebar Styles */

.map-sidebar-nav {
  position: absolute;
  top: 0;
  width: 171px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.map-sidebar-nav li {
  text-indent: 20px;
  line-height: 40px;
}

.map-sidebar-nav li a {
  display: block;
  text-decoration: none;
  color: #999999;
}

.map-sidebar-nav li a:hover {
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.map-sidebar-nav li a:active,
.map-sidebar-nav li a:focus {
  text-decoration: none;
}

/* -- potree annotations -- */

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.my-annotation {
  position: absolute;
  will-change: left, top;
  background-color: white;
  border-radius: 2px 25px 25px 25px;
  max-width: 220px;
  color: #062752;
}

.my-annotation-title {
  font-family: BrandonMedium, sans-serif;
  font-size: 13px;

  font-weight: bold;
  max-width: 220px;
  display: table;
  padding: 10px;
  padding-left: 15px;
  padding-right: 15px;
}

.my-annotation-description {
  width: 100%;

  font-family: BrandonRegular, sans-serif;
  font-weight: normal;
  padding: 15px;
  padding-top: 10px;
  padding-bottom: 20px;
  font-size: 13px;
  border-top: 1px solid #dadde0;
}

.my-annotation-icon {
  width: 20px;
  height: 20px;
  filter: invert(100%);
  margin: 2px 2px;
}

.annotation-video-icon {
  display: flex;
  justify-content: center;
  opacity: 1;
}

.annotation-video-icon > img {
  border: 1px solid white;
  border-radius: 13px;
  width: 25px;
  height: 25px;
}

.annotation-video-content {
  display: none;
}

/* -- */

.select-picker {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  margin-right: 10px;
}

.toggle-item,
.toggle-item > .toggle-control-container {
  width: 100%;
}

.toggle-item.blurred {
  -webkit-filter: grayscale(80%); /* Safari 6.0 - 9.0 */
  filter: grayscale(80%);
}

.pano-dialog {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
}

div.pano-dialog-container {
  display: flex !important;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background-color: #19282c !important;
}

.pano-dialog label {
  color: white;
  margin-right: 15px;
  width: 60px;
}

.pano-dialog .coordenate-input {
  width: 70px;
}

.pcv-menu img {
  height: 30px;
  width: 30px;
  margin-left: 10px;
  margin-right: 10px;
}

.pcv-menu > div {
  display: flex;
  justify-content: center;
  margin: 10px;
}

.workflow-layer-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  font-size: 18px;
  background-color: #0e3750;
  color: white;
}

.workflow-layer-select {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  background-color: #0e3750;
  color: white;
}

.workflow-layer-select > select {
  display: flex;
  height: 20px;
  background-color: #0e3750;
  min-width: 100px;
  color: white;
}

.workflow-leak-statuses {
  display: flex;
  justify-content: space-between;
  background-color: #0e3750;
  color: white;
}

.workflow-leak-statuses > label > input {
  margin-right: 7px;
  font-weight: 500;
}

.workflow-row {
  display: flex;
  margin-bottom: 10px;
}

.workflow-item {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.workflow-message {
  display: flex;
  background-color: #0f3f59;
  flex-direction: column;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 15px;
  font-family: "Roboto", sans-serif;
}

.workflow-message-top {
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
}

.workflow-message-user {
  color: white;
  font-size: 14px;
  display: flex;
}

.workflow-message-time {
  color: lightgray;
  font-size: 13px;
  display: flex;
  margin-left: 10px;
}

.workflow-message-comment {
  color: white;
  font-size: 15px;
  display: flex;
}

input#addComments {
  min-height: 30px;
  margin-top: 15px;
  border-radius: 2px;
}

#right-menu-top-navbar {
  padding: 3px;
  background: #0e3750;
}

button.right-menu-top-navbar-item {
  border: none;
  background-color: #0094dc;
  color: white;
  min-width: 50px;
  height: 25px;
}

.right-menu-top-navbar-item {
  margin-left: 3px;
}

#photosphere-x {
  position: absolute;
  text-align: right;
  z-index: 100;
  background-color: white;
  clear: both;
  width: 30px;
  height: 30px;
  margin: "30 auto";
}

#photosphere_viewer_container {
  position: fixed;
  z-index: 1;
  width: 100vw;
  height: 100%;
  overflow: hidden;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 45px;
}

.photosphere {
  position: absolute;
  padding: 10px;
  opacity: 0.5;
  transform: translate(-50%, -30px);
  will-change: left, top;
}

.photosphere-titlebar {
  color: white;
  background-color: blue;
  border-radius: 1.5em;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 1em;
  opacity: 1;
  margin: auto;
  display: table;
  padding: 1px 8px;
  cursor: pointer;
}

.photosphere-expand {
  color: white;
  font-size: 0.6em;
  opacity: 1;
}

.photosphere-action-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.5em;
  text-align: center;
  font-family: Arial;
  font-weight: bold;
  cursor: pointer;
}

.photosphere-action-icon:hover {
  filter: drop-shadow(0px 0px 1px white);
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.photosphere-item {
  color: white;
  background-color: black;
  opacity: 0.5;
  border-radius: 1.5em;
  font-size: 1em;
  line-height: 1.5em;
  padding: 1px 8px 0px 8px;
  font-weight: bold;
  display: flex;
  cursor: default;
}

.photosphere-item:hover {
  opacity: 1;
  box-shadow: 0 0 5px #ffffff;
}

.photosphere-main {
  display: flex;
  flex-grow: 1;
}

.photosphere-label {
  display: inline-block;
  height: 100%;
  flex-grow: 1;
  user-select: none;
  -moz-user-select: none;
  z-index: 100;
  vertical-align: middle;
  line-height: 1.5em;
  font-family: Arial;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
}

.photosphere-description {
  position: relative;
  color: white;
  background-color: black;
  padding: 10px;
  margin: 5px 0px 0px 0px;
  border-radius: 4px;
  display: none;
  max-width: 500px;
  width: 500px;
}

.photosphere-description-close {
  filter: invert(100%);
  float: right;
  opacity: 0.5;
  margin: 0px 0px 8px 8px;
}

.photosphere-description-content {
  color: white;
}

.photosphere-icon {
  width: 20px;
  height: 20px;
  filter: invert(100%);
  margin: 2px 2px;
  opacity: 0.5;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.hidden {
  display: none;
}

#note-info {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  line-height: 1.5;
  -webkit-box-shadow: 0 0 5px black;
  -moz-box-shadow: 0 0 5px black;
  box-shadow: 0 0 5px black;
  font-family: BrandonMedium, sans-serif;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ebeef2;
  color: #062752;
}

/* #note > #close {
  color: white;
  margin-left: 10px;
} */

#note-error {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  line-height: 1.5;
  -webkit-box-shadow: 0 0 5px black;
  -moz-box-shadow: 0 0 5px black;
  box-shadow: 0 0 5px black;
  font-family: BrandonMedium, sans-serif;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: #e05042;
}

#note-success {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  line-height: 1.5;
  -webkit-box-shadow: 0 0 5px black;
  -moz-box-shadow: 0 0 5px black;
  box-shadow: 0 0 5px black;
  font-family: BrandonMedium, sans-serif;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: #062752;
}

@-webkit-keyframes slideDown {
  0%,
  100% {
    -webkit-transform: translateY(-50px);
  }

  10%,
  90% {
    -webkit-transform: translateY(0px);
  }
}

@-moz-keyframes slideDown {
  0%,
  100% {
    -moz-transform: translateY(-50px);
  }

  10%,
  90% {
    -moz-transform: translateY(0px);
  }
}

.cssanimations.csstransforms #note {
  -webkit-transform: translateY(-50px);
  -webkit-animation: slideDown 2.5s 1s 1 ease forwards;
  -moz-transform: translateY(-50px);
  -moz-animation: slideDown 2.5s 1s 1 ease forwards;
}

/*search box things*/
.autocomplete {
  display: flex;
  justify-content: center;
}

.autocomplete input {
  width: 180px;
  height: 25px;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;

  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 5px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
  font-size: 10px;
}

.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}

.autocomplete-items {
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
}

.autocomplete-items div {
  padding: 5px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
  font-size: 10px;
}

.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}

/* --- info popup for markers on the map --- */

.infoWindow .infoHeader {
  display: block;
  margin: 5px 0;
  font-size: 13px;
  font-family: BrandonBold, sans-serif;
  max-width: 150px;
  /* white-space: nowrap; */
  overflow: hidden;
  /* text-overflow: ellipsis; */
}

.infoWindow .infoDescription {
  margin-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  font-family: BrandonRegular, sans-serif;
  max-width: 130px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.infoWindow table {
  width: 100%;
}

.infoWindow table .infoLine:nth-of-type(odd) {
  background-color: WhiteSmoke;
}

.infoWindow table .infoLine .infoKey {
  font-weight: bold;
}

.infoWindow table .infoLine .infoValue {
  padding-left: 20px;
  text-align: right;
}

/* --------------------------------------------------- */
/* tool bar at the bottom of the map and point cloud   */
/* --------------------------------------------------- */

#photosphere-viewer-canvas img {
  width: 100%;
  height: 100%;
}

#controls-div {
  position: absolute;
  pointer-events: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.tool {
  pointer-events: auto;
}

// we needed to add the reactflow styles by hand
// import 'reactflow/dist/style.css'; was not working
/* this gets exported as style.css and can be used for the default theming */
/* these are the necessary styles for React Flow, they get used by base.css and style.css */
.react-flow {
  direction: ltr;
  display: flex;
  min-height: 320px;
  min-width: 320px;
}
.react-flow__container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.react-flow__pane {
  z-index: 1;
  cursor: -webkit-grab;
  cursor: grab;
}
.react-flow__pane.selection {
  cursor: pointer;
}
.react-flow__pane.dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.react-flow__viewport {
  transform-origin: 0 0;
  z-index: 2;
  pointer-events: none;
}
.react-flow__renderer {
  z-index: 4;
}
.react-flow__selection {
  z-index: 6;
}
.react-flow__nodesselection-rect:focus,
.react-flow__nodesselection-rect:focus-visible {
  outline: none;
}
.react-flow .react-flow__edges {
  pointer-events: none;
  overflow: visible;
}
.react-flow__edge-path,
.react-flow__connection-path {
  stroke: #b1b1b7;
  stroke-width: 1;
  fill: none;
}
.react-flow__edge {
  pointer-events: visibleStroke;
  cursor: pointer;
}
.react-flow__edge.animated path {
  stroke-dasharray: 5;
  -webkit-animation: dashdraw 0.5s linear infinite;
  animation: dashdraw 0.5s linear infinite;
}
.react-flow__edge.animated path.react-flow__edge-interaction {
  stroke-dasharray: none;
  -webkit-animation: none;
  animation: none;
}
.react-flow__edge.inactive {
  pointer-events: none;
}
.react-flow__edge.selected,
.react-flow__edge:focus,
.react-flow__edge:focus-visible {
  outline: none;
}
.react-flow__edge.selected .react-flow__edge-path,
.react-flow__edge:focus .react-flow__edge-path,
.react-flow__edge:focus-visible .react-flow__edge-path {
  stroke: #555;
}
.react-flow__edge-textwrapper {
  pointer-events: all;
}
.react-flow__edge-textbg {
  fill: white;
}
.react-flow__edge .react-flow__edge-text {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.react-flow__connection {
  pointer-events: none;
}
.react-flow__connection .animated {
  stroke-dasharray: 5;
  -webkit-animation: dashdraw 0.5s linear infinite;
  animation: dashdraw 0.5s linear infinite;
}
.react-flow__connectionline {
  z-index: 1001;
}
.react-flow__nodes {
  pointer-events: none;
  transform-origin: 0 0;
}
.react-flow__node {
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: all;
  transform-origin: 0 0;
  box-sizing: border-box;
  cursor: -webkit-grab;
  cursor: grab;
}
.react-flow__node.dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.react-flow__nodesselection {
  z-index: 3;
  transform-origin: left top;
  pointer-events: none;
}
.react-flow__nodesselection-rect {
  position: absolute;
  pointer-events: all;
  cursor: -webkit-grab;
  cursor: grab;
}
.react-flow__handle {
  position: absolute;
  pointer-events: none;
  min-width: 5px;
  min-height: 5px;
  width: 6px;
  height: 6px;
  background: #1a192b;
  border: 1px solid white;
  border-radius: 100%;
}
.react-flow__handle.connectionindicator {
  pointer-events: all;
  cursor: crosshair;
}
.react-flow__handle-bottom {
  top: auto;
  left: 50%;
  bottom: -4px;
  transform: translate(-50%, 0);
}
.react-flow__handle-top {
  left: 50%;
  top: -4px;
  transform: translate(-50%, 0);
}
.react-flow__handle-left {
  top: 50%;
  left: -4px;
  transform: translate(0, -50%);
}
.react-flow__handle-right {
  right: -4px;
  top: 50%;
  transform: translate(0, -50%);
}
.react-flow__edgeupdater {
  cursor: move;
  pointer-events: all;
}
.react-flow__panel {
  position: absolute;
  z-index: 5;
  margin: 15px;
}
.react-flow__panel.top {
  top: 0;
}
.react-flow__panel.bottom {
  bottom: 0;
}
.react-flow__panel.left {
  left: 0;
}
.react-flow__panel.right {
  right: 0;
}
.react-flow__panel.center {
  left: 50%;
  transform: translateX(-50%);
}
.react-flow__attribution {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.5);
  padding: 2px 3px;
  margin: 0;
}
.react-flow__attribution a {
  text-decoration: none;
  color: #999;
}
@-webkit-keyframes dashdraw {
  from {
    stroke-dashoffset: 10;
  }
}
@keyframes dashdraw {
  from {
    stroke-dashoffset: 10;
  }
}
.react-flow__edgelabel-renderer {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.react-flow__edge.updating .react-flow__edge-path {
  stroke: #777;
}
.react-flow__edge-text {
  font-size: 10px;
}
.react-flow__node.selectable:focus,
.react-flow__node.selectable:focus-visible {
  outline: none;
}
.react-flow__node-default,
.react-flow__node-input,
.react-flow__node-output,
.react-flow__node-group {
  padding: 10px;
  border-radius: 3px;
  width: 150px;
  font-size: 12px;
  color: #222;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  border-color: #1a192b;
  background-color: white;
}
.react-flow__node-default.selectable:hover,
.react-flow__node-input.selectable:hover,
.react-flow__node-output.selectable:hover,
.react-flow__node-group.selectable:hover {
  box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.08);
}
.react-flow__node-default.selectable.selected,
.react-flow__node-default.selectable:focus,
.react-flow__node-default.selectable:focus-visible,
.react-flow__node-input.selectable.selected,
.react-flow__node-input.selectable:focus,
.react-flow__node-input.selectable:focus-visible,
.react-flow__node-output.selectable.selected,
.react-flow__node-output.selectable:focus,
.react-flow__node-output.selectable:focus-visible,
.react-flow__node-group.selectable.selected,
.react-flow__node-group.selectable:focus,
.react-flow__node-group.selectable:focus-visible {
  box-shadow: 0 0 0 0.5px #1a192b;
}
.react-flow__node-group {
  background-color: rgba(240, 240, 240, 0.25);
}
.react-flow__nodesselection-rect,
.react-flow__selection {
  background: rgba(0, 89, 220, 0.08);
  border: 1px dotted rgba(0, 89, 220, 0.8);
}
.react-flow__nodesselection-rect:focus,
.react-flow__nodesselection-rect:focus-visible,
.react-flow__selection:focus,
.react-flow__selection:focus-visible {
  outline: none;
}
.react-flow__controls {
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.08);
}
.react-flow__controls-button {
  border: none;
  background: #fefefe;
  border-bottom: 1px solid #eee;
  box-sizing: content-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding: 5px;
}
.react-flow__controls-button:hover {
  background: #f4f4f4;
}
.react-flow__controls-button svg {
  width: 100%;
  max-width: 12px;
  max-height: 12px;
}
.react-flow__controls-button:disabled {
  pointer-events: none;
}
.react-flow__controls-button:disabled svg {
  fill-opacity: 0.4;
}
.react-flow__minimap {
  background-color: #fff;
}
.react-flow__minimap svg {
  display: block;
}
.react-flow__resize-control {
  position: absolute;
}
.react-flow__resize-control.left,
.react-flow__resize-control.right {
  cursor: ew-resize;
}
.react-flow__resize-control.top,
.react-flow__resize-control.bottom {
  cursor: ns-resize;
}
.react-flow__resize-control.top.left,
.react-flow__resize-control.bottom.right {
  cursor: nwse-resize;
}
.react-flow__resize-control.bottom.left,
.react-flow__resize-control.top.right {
  cursor: nesw-resize;
}
/* handle styles */
.react-flow__resize-control.handle {
  width: 4px;
  height: 4px;
  border: 1px solid #fff;
  border-radius: 1px;
  background-color: #3367d9;
  transform: translate(-50%, -50%);
}
.react-flow__resize-control.handle.left {
  left: 0;
  top: 50%;
}
.react-flow__resize-control.handle.right {
  left: 100%;
  top: 50%;
}
.react-flow__resize-control.handle.top {
  left: 50%;
  top: 0;
}
.react-flow__resize-control.handle.bottom {
  left: 50%;
  top: 100%;
}
.react-flow__resize-control.handle.top.left {
  left: 0;
}
.react-flow__resize-control.handle.bottom.left {
  left: 0;
}
.react-flow__resize-control.handle.top.right {
  left: 100%;
}
.react-flow__resize-control.handle.bottom.right {
  left: 100%;
}
/* line styles */
.react-flow__resize-control.line {
  border-color: #3367d9;
  border-width: 0;
  border-style: solid;
}
.react-flow__resize-control.line.left,
.react-flow__resize-control.line.right {
  width: 1px;
  transform: translate(-50%, 0);
  top: 0;
  height: 100%;
}
.react-flow__resize-control.line.left {
  left: 0;
  border-left-width: 1px;
}
.react-flow__resize-control.line.right {
  left: 100%;
  border-right-width: 1px;
}
.react-flow__resize-control.line.top,
.react-flow__resize-control.line.bottom {
  height: 1px;
  transform: translate(0, -50%);
  left: 0;
  width: 100%;
}
.react-flow__resize-control.line.top {
  top: 0;
  border-top-width: 1px;
}
.react-flow__resize-control.line.bottom {
  border-bottom-width: 1px;
  top: 100%;
}
