body {
  /* background-color: black; */
  font-family: sans-serif;
  color: white;
}

ul,
#myUL,
#lbl_UL {
  list-style-type: none;
}

#myUL,
#lbl_UL {
  margin: 0;
  padding: 0;
}

.Parameter_li {
  cursor: pointer;
  -webkit-user-select: none; /* Safari 3.1+ */
  -moz-user-select: none; /* Firefox 2+ */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}

li {
  cursor: pointer;
}

.Parameter_li::before {
  content: "\281B";
  color: white;
  display: inline-block;
  margin-right: 6px;
}

.caret {
  cursor: pointer;
  -webkit-user-select: none; /* Safari 3.1+ */
  -moz-user-select: none; /* Firefox 2+ */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}

.caret::before {
  content: "\25B6";
  color: white;
  display: inline-block;
  margin-right: 6px;
}

.caret-down::before {
  -ms-transform: rotate(90deg); /* IE 9 */
  -webkit-transform: rotate(90deg); /* Safari */
  transform: rotate(90deg);
}

.nested {
  display: none;
}

.active {
  display: block;
}

#play_control {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  border-radius: 25px;
  margin: 10px;
  background-color: rgb(48, 73, 110);
}

#slider {
  position: relative;
  margin-top: 17px;
  z-index: 10;
}

.click_pointer {
  cursor: pointer;
  margin: auto;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: #143caa;
  outline: none;
  opacity: 1;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #000000f3;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04aa6d;
  cursor: pointer;
}

#canvas {
  background-color: rgba(23, 199, 111, 0);
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0);
  margin: 10px;
  padding: 0px;
}

#marker_list {
  position: -webkit-sticky;
  position: initial;
  top: 100px;
  width: 95%;
  border-radius: 10px;
  margin: 10px;
  max-height: 250px;
  overflow-y: auto;
}

#marker_lbl_panel {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  width: 95%;
  margin: 10px;
  max-height: 100px;
  overflow-y: auto;
}
#marker_lbl_panel {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  width: 95%;
  margin: 10px;
  max-height: 100px;
  overflow-y: auto;
}

#canvas {
  position: absolute;
  top: 0px;
  left: 0px;
}

#status_bar_3d {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  border-radius: 10px;
  width: 100%;
  margin: 10px;
  background-color: rgb(0, 0, 0);
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

#slider-range .ui-slider-range {
  background-color: rgba(0, 0, 0, 0.384);
}

#slider-range .ui-state-default {
  background: none;
}

.disable_item {
  pointer-events: none;
  cursor: none;
  opacity: 0.4;
}

.panel-form {
  background-color: hsl(220deg 45% 19%);
  padding: 10px;
  border-radius: 10px;
}

.loader {
  border: 8px solid hsl(0, 0%, 100%);
  border-radius: 50%;
  border-top: 8px solid #ff9a03;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animate-flicker {
  -webkit-animation: flickerAnimation 1s infinite;
  -moz-animation: flickerAnimation 1s infinite;
  -o-animation: flickerAnimation 1s infinite;
  animation: flickerAnimation 1s infinite;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #ccc;
  background-color: #4d4d4e;
  width: 100%;
  align-items: center;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  width: 100%;
}

.wrapper {
  margin: 50px auto;
  width: 280px;
  height: 370px;
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 90;
}

.ribbon-wrapper-green {
  width: 240px;
  height: 240px;
  overflow: hidden;
  position: absolute;
  top: -3px;
  right: -3px;
}

.ribbon-green {
  font: bold 15px Sans-Serif;
  color: #333;
  text-align: center;
  text-shadow: rgba(255, 255, 255, 0.5) 0px 1px 0px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  position: relative;
  padding: 20px 0;
  left: -50px;
  top: 70px;
  width: 370px;
  background-color: #06f998;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#06f998),
    to(#78c4a6)
  );
  background-image: -webkit-linear-gradient(top, #06f998, #78c4a6);
  background-image: -moz-linear-gradient(top, #06f998, #78c4a6);
  background-image: -ms-linear-gradient(top, #06f998, #78c4a6);
  background-image: -o-linear-gradient(top, #06f998, #78c4a6);
  color: #212b2f;
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.ribbon-green:before,
.ribbon-green:after {
  content: "";
  border-top: 3px solid #6e8900;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  position: absolute;
  bottom: -3px;
}

.ribbon-green:before {
  left: 0;
}
.ribbon-green:after {
  right: 0;
}
​ ._toggle_switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

._toggle_switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.toggle_slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.toggle_input:checked + .toggle_slider {
  background-color: #2196f3;
}

.toggle_input:focus + .toggle_slider {
  box-shadow: 0 0 1px #2196f3;
}

.toggle_input:checked + .toggle_slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.toggle_slider.round {
  border-radius: 34px;
}

.toggle_slider.round:before {
  border-radius: 50%;
}

/* Absolute Center Spinner */
.loading {
  position: relative;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: visible;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: "";
  display: inline-block;
  font-size: 8px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0,
    rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0,
    rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0,
    rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0,
    rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(186, 185, 185, 0.75) 1.5em 0 0 0,
    rgba(186, 185, 185, 0.75) 1.1em 1.1em 0 0,
    rgba(186, 185, 185, 0.75) 0 1.5em 0 0,
    rgba(186, 185, 185, 0.75) -1.1em 1.1em 0 0,
    rgba(186, 185, 185, 0.75) -1.5em 0 0 0,
    rgba(186, 185, 185, 0.75) -1.1em -1.1em 0 0,
    rgba(186, 185, 185, 0.75) 0 -1.5em 0 0,
    rgba(186, 185, 185, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.Profile-box {
  max-width: 50%;
  margin: 3rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 32px 28px 24px 28px;
}

.Profile-header {
  text-align: center;
  margin-bottom: 28px;
}

.Profile-title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}

.form-group {
  margin-bottom: 20px;
}

.control-label {
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  color: #333;
}

.form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  color: #333;
  background: #fafbfc;
  transition: border 0.2s;
}

.form-control:focus {
  border-color: #007bff;
  outline: none;
  background: #fff;
}

.updateProfilebtn {
  background-color: #007bff;
  color: #fff;
  font-size: 1.1rem;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.updateProfilebtn:hover {
  background-color: #0056b3;
}

s .Profile-footer {
  margin-top: 18px;
  text-align: center;
  color: #aaa;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .Profile-box {
    padding: 18px 8px 14px 8px;
  }

  .Profile-title {
    font-size: 1.2rem;
  }
}
