/* partials/modal/modal.css */
.slitan-modal-background {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
}
.slitan-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1100;
  width: 90%;
  max-width: 700px;
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.slitan-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #333;
  color: white;
}
.slitan-modal-title {
  margin: 0;
  font-size: 1.5rem;
}
.slitan-modal-close {
  border: none;
  background-color: transparent;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}
.slitan-modal-close:hover {
  color: #ccc;
}
.slitan-modal-body {
  overflow-y: auto !important;
  max-height: 80vh;
  padding: 20px;
}
.slitan-modal-background.show {
  pointer-events: auto;
  opacity: 1;
}
.slitan-modal-background.show .slitan-modal {
  display: block;
}
.slitan-modal-body {
  background-color: var(--fg-primary-color);
}
.slitan-modal-header {
  background-color: #333;
  color: white;
}

/* partials/login_modal/login_modal.css */
.login-modal-body {
  max-width: 500px;
  margin: 0 auto;
}
.login-modal-body h2 {
  margin-bottom: 1rem;
}
.login-modal-body .login-form {
  margin-bottom: 1rem;
}
.login-modal-body .form-group {
  margin-bottom: 1rem;
}
.login-modal-body .form-group label {
  display: block;
}
.login-modal-body .form-control {
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.text-invalid {
  color: red;
}
input.invalid {
  outline: 2px solid red !important;
  border-radius: 5px;
}
.login-modal-body .form-control:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.login-modal-body .btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}
.login-modal-body .btn-primary:hover {
  background-color: #0069d9;
  border-color: #0062cc;
}
.login-modal-body .btn-primary:focus,
.login-modal-body .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}
.login-modal-body .btn-danger:focus,
.login-modal-body .btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.login-modal-body footer {
  flex-direction: column;
  align-items: center;
}
.login-modal-body footer small {
  margin-bottom: 10px;
  border-bottom: 1px solid red;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* styles.css */
:root {
  --fd-secondary-color: #0D161A;
  --bg-primary-color: #000000;
  --bg-secondary-color: #080E10;
  --bg-incomplete-color: #550000;
  --bg-in-progress-color: #334433;
  --bg-complete-color: #116600;
  --bg-ok-color: #2AB7AB;
  --bg-danger-color: #FC5348;
  --fg-primary-color: #18242B;
  --font-primary-color: #FFFFFFE5;
  --font-secondary-color: #6FBDCCCC;
  --font-terciary-color: #ccc36f;
  --font-danger-color: #FC5348;
  --font-muted: #ffffff85;
  --font-active: #FFFFFFE5;
  --font-inactive: #FFFFFF44;
  --icon-white: #FFFFFF;
  --neutral-field: #775522;
  --danger-field: #772222;
  --pending-field: #334433;
  --locked-field: #116611;
}
@font-face {
  font-family: Jura;
  src: url(fonts/Jura-VariableFont_wght.ttf);
}
body {
  font-family: Jura;
  background-color: var(--bg-secondary-color);
  color: var(--font-primary-color);
  margin: 0;
  overflow-x: hidden;
  overflow-y: hidden;
}
h1 {
  color: var(--font-primary-color);
  font-size: xx-large;
  text-align: center;
}
h2 {
  color: var(--font-primary-color);
  font-size: x-large;
  text-align: center;
}
button {
  border: 1px solid var(--font-muted);
  border-radius: 10px;
  margin: 10px;
  color: white;
  background-color: var(--fg-primary-color);
}
.btn-primary {
  background-color: var(--bg-secondary-color) !important;
  border-color: var(--font-muted) !important;
  color: var(--font-primary-color) !important;
}
.btn-primary:hover {
  background-color: var(--bg-secondary-color) !important;
  border-color: var(--font-primary-color) !important;
  color: var(--font-primary-color) !important;
  outline: none !important;
}
.btn-primary:focus {
  background-color: var(--bg-secondary-color) !important;
  border-color: var(--font-primary-color) !important;
  color: var(--font-primary-color) !important;
  outline: none !important;
}
.btn:hover {
  border-color: var(--font-primary-color);
  border-width: 1px;
}
.btn:disabled {
  color: var(--font-muted);
  border-color: var(--font-muted) !important;
  pointer-events: none;
}
::-webkit-scrollbar {
  width: 25px;
  height: 25px;
}
::-webkit-scrollbar-thumb {
  border: 8px solid #00000000;
  background-clip: padding-box;
  border-radius: 9999px;
  background-color: #8F9293;
  min-height: 50px;
  min-width: 50px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #a6aaac;
}
::-webkit-scrollbar-track {
  background-color: #202627;
  border-radius: 9999px;
  margin-block: 25px;
  margin-inline: 25px;
  border: 8px solid #00000000;
  background-clip: padding-box;
}
::-webkit-scrollbar-corner {
  background-color: #00000000;
}
input {
  background-color: transparent;
  color: var(--font-primary-color);
  border-top: none;
  border-left: none;
  border-right: none;
  display: block;
}
input:-webkit-autofill::first-line {
  font-family: scifi !important;
}
input[type=datetime-local]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
input:-webkit-autofill,
input:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
  font-family: scifi;
}
.form-group {
  margin-top: 20px;
  margin-bottom: 15px;
}
.form-input {
  width: 100%;
  padding: 0.375rem 0.75rem;
}
input.invalid {
  outline: 2px solid red !important;
  border-radius: 5px;
}
.switch {
  --scale-factor: 1;
  position: relative;
  display: inline-block;
  width: calc(50px * var(--scale-factor));
  height: calc(26px * var(--scale-factor));
  margin: 2px;
}
.switch input {
  display: none;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  background-color: var(--fd-secondary-color);
  border-radius: calc(4px * var(--scale-factor));
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: calc(18px * var(--scale-factor));
  width: calc(18px * var(--scale-factor));
  left: calc(4px * var(--scale-factor));
  bottom: calc(4px * var(--scale-factor));
  background-color: #444;
  border-radius: calc(4px * var(--scale-factor));
  transition: 0.4s;
}
.switch input:checked + .slider {
  background-color: var(--bg-ok-color);
}
.switch input:checked + .slider:before {
  transform: translateX(calc(24px * var(--scale-factor)));
}
.switch.smaller {
  --scale-factor: 0.8;
}

/* partials/nav_bar/nav_bar.css */
.nav-bar {
  height: 6vh;
  border-bottom: 1px solid var(--font-muted);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--fg-secondary-color);
}
.nav-bar[data-connected=false] {
}
div.disconnect-identifier {
  background: var(--bg-incomplete-color);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  animation: disconnect-pulse 1s infinite;
}
.nav-bar[data-connected=true] div.disconnect-identifier {
  display: none;
}
@keyframes disconnect-pulse {
  0%, 100% {
    box-shadow: 0 0 10px var(--bg-incomplete-color);
    color: var(--font-muted);
  }
  50% {
    box-shadow: 0 0 20px var(--bg-incomplete-color);
    color: var(--font-danger-color);
  }
}
.nav-bar-link {
  margin-left: 15px;
  color: var(--font-muted);
  text-decoration: none;
}
.nav-bar-link:hover {
  cursor: pointer;
  color: var(--font-primary-color);
}
.nav-bar-link.active {
  color: var(--font-secondary-color);
  border-bottom: 1px solid var(--font-secondary-color);
}
.nav-bar-logout {
  color: #0d6efd;
}
.nav-bar-logout:hover {
  cursor: pointer;
}
@media (width <= 400px) {
  .nav-bar-link {
    font-size: large;
  }
}
.nav-bar-version {
  font-size: x-small;
  color: var(--font-muted);
  text-decoration: none;
  text-align: center;
}

/* partials/dropdown/dropdown.css */
:root {
  --dropdown-menu-width: 15vw;
}
#dropdown-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.dropdown-menu {
  display: hidden;
  position: absolute;
  flex-direction: column;
  max-height: 50vh;
  overflow-y: scroll;
  left: 0;
  gap: 10px;
  padding: 10px;
  width: var(--dropdown-menu-width);
  border: 2px solid var(--font-muted);
  border-top: none;
  border-radius: 1rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: var(--bg-secondary-color);
}
.dropdown {
  margin: 10px;
}
.dropdown button {
  font-size: large;
  width: var(--dropdown-menu-width);
  margin: 0;
}
.dropdown button.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.dropdown-menu.active {
  display: flex !important;
}
.dropdown-link {
  font-size: large;
  font-weight: bold;
  color: var(--font-muted);
  text-decoration: none;
}
.dropdown-link:hover {
  cursor: pointer;
  color: var(--font-primary-color);
}
.dropdown-link.active {
  color: var(--font-secondary-color);
}
@media (width <= 550px) {
  .dropdown {
    width: 30vw;
  }
}

/* pages/map_view/map_features/obstruction-markers.css */
.obstruction-popup .mapboxgl-popup-close-button:focus {
  outline: none;
}
.obstruction-popup .mapboxgl-popup-content {
  background-color: var(--fg-primary-color);
  border-radius: 5px;
  padding-top: 40px;
  min-width: 40px;
  border: 2px solid var(--font-muted);
}
.obstruction-popup button.button {
  border: 2px solid var(--font-muted);
  border-radius: 10px;
  margin: 10px;
  color: white;
  font-size: large;
  flex: 1;
  background: var(--danger-field);
  padding: 10px;
}
.obstruction-popup button.button:hover {
  border-color: white;
}

/* pages/map_view/map_features/bot-marker.css */
.marker {
  background-size: 100%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
}
.bot-marker-popup .mapboxgl-popup-content {
  background: var(--fg-primary-color) !important;
  text-align: center;
  font-family: "Open Sans", sans-serif;
}
.bot-marker-popup button {
  display: none;
}

/* pages/map_view/map_controls/main_menu_panel/main_menu_panel.css */
.path-edit-panel {
  border: 2px solid var(--font-muted);
  border-radius: 10px;
  color: white;
  margin: 15px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  font-family: "Jura", sans-serif;
  font-size: 15px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
#delete-path-button {
  background: var(--danger-field);
}
.path-edit-panel .title {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  width: 100%;
  font-weight: bold;
  padding: 10px 0;
  font-size: 18px;
}
.path-management-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
}
.tester-navigation-section {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px;
}
.path-edit-panel button {
  border: 2px solid var(--font-muted);
  border-radius: 8px;
  margin: 6px;
  color: white;
  font-size: 14px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.03);
}
.path-edit-panel button:hover:enabled {
  border-color: white;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}
.path-edit-panel button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.path-edit-panel hr {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 12px 0;
}
.path-edit-panel h6 {
  margin: 8px 0;
  font-weight: bold;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.path-selection,
.path-properties {
  margin: 8px 0;
}
.path-selection span:not(.slider),
.path-properties div {
  margin: 4px 0;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  font-size: 13px;
}
.path-actions,
.tester-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.path-actions button,
.tester-navigation button {
  flex: 1;
  min-width: 120px;
  max-width: 200px;
}
#correction-status,
#qa-lock-status {
  color: #30b455;
}
#correction-status:not(:contains("Completed")),
#qa-lock-status:contains("Unlocked") {
  color: var(--font-terciary-color);
}
.fadeout {
  animation: fadeout 3s ease-in-out;
  text-align: center;
  color: #30b455;
  margin-top: 10px;
  font-size: 14px;
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* pages/map_view/map_controls/route_tester_panel/route_tester_panel.css */
.route-tester-panel {
  border: 2px solid var(--font-muted);
  border-radius: 10px;
  color: white;
  margin: 10px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  clear: both;
  pointer-events: auto;
  transform: translate(0);
  display: flex;
  flex-direction: column;
  font-family: "Jura";
  font-size: 15px;
  max-height: 80vh !important;
  overflow-y: auto !important;
}
.route-tester-panel .title {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  width: 100%;
  font-weight: bold;
  padding: 8px 0;
}
.route-tester-panel button {
  border: 2px solid var(--font-muted);
  border-radius: 10px;
  margin: 10px;
  color: white;
  font-size: large;
  padding: 8px;
  cursor: pointer;
}
.route-tester-panel button:hover:enabled {
  border: 2px solid white;
  background: rgba(255, 255, 255, 0.1);
}
.route-tester-panel button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.route-tester-panel hr {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin: 10px 0;
}

/* pages/map_view/map_controls/wander_tester_panel/wander_tester_panel.css */
.route-tester-panel {
  border: 2px solid var(--font-muted);
  border-radius: 10px;
  color: white;
  margin: 10px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  clear: both;
  pointer-events: auto;
  transform: translate(0);
  display: flex;
  flex-direction: column;
  font-family: "Jura";
  font-size: 15px;
  max-height: 80vh !important;
  overflow-y: auto !important;
}
.route-tester-panel .title {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  width: 100%;
  font-weight: bold;
  padding: 8px 0;
}
.route-tester-panel button {
  border: 2px solid var(--font-muted);
  border-radius: 10px;
  margin: 10px;
  color: white;
  font-size: large;
  padding: 8px;
  cursor: pointer;
}
.route-tester-panel button:hover:enabled {
  border: 2px solid white;
  background: rgba(255, 255, 255, 0.1);
}
.route-tester-panel button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.route-tester-panel hr {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin: 10px 0;
}

/* pages/map_view/map_view_context_popup.css */
.map-view-context button {
  display: block;
  border: 2px solid var(--font-muted);
  border-radius: 10px;
  margin: 10px;
  color: white;
  flex: 1;
  background: var(--danger-field);
  padding: 10px;
}
.mapboxgl-popup-content {
  background: var(--fg-primary-color) !important;
  text-align: center;
}

/* pages/path_view/map_features/comment-markers.css */
.comment-popup .mapboxgl-popup-close-button:focus {
  outline: none;
}
.comment-popup .mapboxgl-popup-content {
  background-color: var(--fg-primary-color);
  border-radius: 5px;
  padding-top: 40px;
  min-width: 40px;
  border: 2px solid var(--font-muted);
}

/* pages/path_view/map_controls/point_edit_panel/point_edit_panel.css */
.point-edit-panel {
  border: 2px solid var(--font-muted);
  border-radius: 10px;
  color: white;
  margin: 10px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  font-family: "Jura";
  font-size: 15px;
  max-height: 80vh;
  overflow-y: auto;
}
.point-edit-panel .title {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  width: 100%;
  font-weight: bold;
}
.point-edit-panel hr {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.point-edit-panel h6 {
  margin-top: 10px;
  font-weight: bold;
}
.point-edit-panel button {
  border: 2px solid var(--font-muted);
  border-radius: 10px;
  margin: 10px;
  color: white;
  font-size: large;
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  cursor: pointer;
}
.point-edit-panel button:hover {
  border: 2px solid white;
  background: rgba(255, 255, 255, 0.2);
}
.point-edit-panel input[type=range] {
  width: 100%;
  margin: 10px 0;
  -webkit-appearance: none;
  background: transparent;
}
.point-edit-panel input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 4px;
  background: #0d161a73 !important;
}
.point-edit-panel input[type=range]::-moz-range-track {
  height: 4px;
  border-radius: 4px;
  background: #0d161a73 !important;
}
.point-edit-panel input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 22px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.61);
  margin-top: -7px;
  border: 2px solid var(--font-muted);
  cursor: pointer;
}
.point-edit-panel input[type=range]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--font-muted);
  cursor: pointer;
}
.point-edit-panel input[type=range]:disabled::-webkit-slider-runnable-track,
.point-edit-panel input[type=range]:disabled::-moz-range-track {
  background: rgba(255, 255, 255, 0.2) !important;
}
.point-edit-panel input[type=range]:disabled::-webkit-slider-thumb,
.point-edit-panel input[type=range]:disabled::-moz-range-thumb {
  background: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
}
.tolerance-container {
  display: flex;
  flex-direction: column;
}
.tolerance-inputs {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.tolerance-input {
  flex: 1;
  margin: 0 5px;
}
.tolerance-input.left label {
  color: #ff6666;
  font-weight: bold;
  width: 100%;
  text-align: center;
}
.tolerance-input.right label {
  color: #66ff66;
  font-weight: bold;
  width: 100%;
  text-align: center;
}
.button-action-zone[disabled] {
  opacity: 0.5;
  pointer-events: none;
  color: var(--font-muted);
  border-color: var(--font-muted);
}
#comments-input {
  background: #18242b7c;
  color: white;
  border-radius: 2px;
  border: 1px solid var(--font-muted);
}
#comments-input[disabled] {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
}

/* pages/path_view/map_controls/gps_edit_panel/gps_edit_panel.css */
.gps-edit-panel {
  border: 2px solid var(--font-muted);
  border-radius: 10px;
  color: white;
  margin: 10px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  clear: both;
  pointer-events: auto;
  transform: translate(0);
  display: flex;
  flex-direction: column;
  font-family: "Jura";
  font-size: 15px;
  max-height: 80vh !important;
  overflow-y: auto !important;
}
.gps-edit-panel .title {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  width: 100%;
  font-weight: bold;
}
.gps-edit-panel button {
  border: 2px solid var(--font-muted);
  border-radius: 10px;
  margin: 10px;
  color: white;
  font-size: large;
  flex: 1;
}
.gps-edit-panel button:hover {
  border: 2px solid white;
}
.gps-edit-panel hr {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.gps-edit-panel h6 {
  margin-top: 10px;
  font-weight: bold;
}
.gps-edit-panel .d-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.toggle-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fit-btn[data-inprog=true] {
  background-color: var(--bg-in-progress-color);
}

/* pages/path_view/map_controls/path_edit_panel/path_edit_panel.css */
.path-edit-panel {
  border: 2px solid var(--font-muted);
  border-radius: 10px;
  color: white;
  margin: 10px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  clear: both;
  pointer-events: auto;
  transform: translate(0);
  display: flex;
  flex-direction: column;
  font-family: "Jura";
  font-size: 15px;
  max-height: 80vh !important;
  overflow-y: auto !important;
  min-width: 18vw;
}
.path-edit-panel .title {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  width: 100%;
  font-weight: bold;
}
.path-edit-panel button {
  border: 2px solid var(--font-muted);
  border-radius: 10px;
  margin: 10px;
  color: white;
  font-size: large;
  flex: 1;
}
.path-edit-panel button:hover {
  border: 2px solid white;
}
.path-edit-panel hr {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.path-edit-panel h6 {
  margin-top: 10px;
  font-weight: bold;
}
.toggle-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fadeout {
  animation: fadeout 3s ease-in-out;
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* pages/path_view/path_view.css */
.boxdraw {
  background: rgba(56, 135, 190, 0.1);
  border: 2px solid #3887be;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
/*# sourceMappingURL=bundle.css.map */
