@charset "UTF-8";

body td {
	vertical-align: middle;
}

#display_00 {
	position: relative;
	vertical-align: top;
}
#display {
	position: relative;
}

.clock {
	border: 1px solid #CCCCCC;
	width: 60px;
	height: 18px;
	padding-top: -3px;
	padding-left: 5px;
	padding-right: 5px;
	margin-bottom: 0px;
}

.clock p {
	padding: 0;
	margin: 0;
	width: 40px;
	text-align: right;
}
.param-input {
	border: 1px solid #CCCCCC;	
	background-color: #ffffff;	
	padding: 3;
	margin: 0;
	width: 60px;
	text-align: right;
}
.param-input.good {
	background-color: #99ff99;
}
.param-input.bad {
	background-color: red;
}
.paramText.good {
	background-color: #99ff99;
}
.paramText.bad {
	background-color: red;
}

#clock1 {
	background-color: #ffffff
}
#clock1.good {
	background-color: #99ff99;
}
#clock1.bad {
	background-color: red;
}
.controlbut {
	padding-right: 12px;
}
.paramSlider {
	width: 100px;
}
.empty-fieldset {
	border: none;
}
.speedslider {
	margin-top: 3px;
}
.paramText {
	vertical-align: top;
	border: 1px solid #CCCCCC;
	font-size: 8pt;
	width: 50px;
	height: 12px;
	padding-left: 5px;
	padding-right: 5px;
	margin-top: 2px;
	text-align: right;	
}

.view-container {
	position: relative;
	z-index: 4;
}
.cnvs {
	z-index: 2;	
}
.turtlescape {
	border: 1px solid #CCCCCC;
 	position: absolute;  
    left: 0; 
  	top: 0;
    z-index: 3;
}

legend.spyfield {
  background-color: #aaaaaa;
  padding-left: 5px;
  padding-right: 5px;
  color: white;
	
}
fieldset.spyfield {
	width: 60px;
	height: 40px;
	display: grid;
  	background-color: #aaffaa;
  	margin-left: 15px;
}

.spyfield input[type=text] {
  margin-top: -3px;
  margin-left: -3px;
  margin-bottom: -10px;
  width: 63px;
  border: none;
  outline: none;
  text-align: right;
  background-color: #aaffaa;	
}

.textdisplay-label {
	padding-left: 20px;
	margin-bottom: -0px;
	margin-top: -3px;	
}

.textdisplay {
	margin-left: 5px;
	margin-right: 5px;
	border: 1px solid #CCCCCC;
	border-right-color: #999999;
	border-bottom-color: #999999;
	overflow-y: scroll;
	padding-left: 5px;
	padding-right: 5px;
}
.axis-label {
  fill: #000;
  font-size: 10px;
  text-anchor: middle;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center; 
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  left: 50%;
  margin-top: 40px;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.sdinfo {
	min-width: 100px;
	row-gap: 3px;
	font-size: 10pt;
}
.raminfo {
	vertical-align: top;
 	padding-right: 3px;
 	padding-top: 2px;
 	text-align: left;
	font-size: 10pt;
}

.vertical-line-left {
  border-left: 3px solid #aaaaaa;
  padding-left: 5px;
  margin-left: 2px;
}

.resizable-div {
  resize: both;
}

#inputz .CodeMirror.cm-resizable {
    resize: vertical;
    overflow: auto;
    min-height: 120px;
    max-height: 72vh;
}

/* Dual range slider */
/* make the two tracks overlap */
.dual-range {
    position: relative;
    width: 100px;
    /* whatever width you like */
    height: 0.4em;
    /* thinner container */
    border-radius: 5px;
    /* rounded corners */
    /* base gradient will be updated via JS using CSS variables */
    background: linear-gradient(to right,
            #ddd 0%,
            #ddd var(--min-pct, 0%),
            #0066ff var(--min-pct, 0%),
            #0066ff var(--max-pct, 100%),
            #ddd var(--max-pct, 100%),
            #ddd 100%);
    margin-top: 7px;
    margin-bottom: 10px;
}

.dual-range input[type=range] {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    /* keep the default browser appearance */
    background: transparent;
    /* remove any native visuals so only the thumbs and container
         gradient are visible */
    -webkit-appearance: none;
    appearance: none;
    border: none;
    /* inputs sit behind the overlay but can still receive keyboard events */
    pointer-events: none;
    z-index: 0;
}

.dual-range input[type=range]:focus {
    outline: none;
}

/* Internet Explorer / Edge have extra pseudo-elements, hide them too */
.dual-range input[type=range]::-ms-fill-lower {
    background: transparent;
    border: none;
    height: 0;
}

.dual-range input[type=range]::-ms-fill-upper {
    background: transparent;
    border: none;
    height: 0;
}

.dual-range input[type=range].active {
    z-index: 2;
}

/* overlay sits above everything and captures mouse/touch events */
.dual-range-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
}

/* separate tracks by only a few pixels so they look like a single
       bar but clicks hit only one element at a time */
/* use attribute selectors so IDs like min-1, min-2, etc. still match */
.dual-range input[type=range][id$="l"] {
    top: calc(50% - 1px);
    transform: translateY(-50%);
}

.dual-range input[type=range][id$="h"] {
    top: calc(50% - 1px);
    transform: translateY(-50%);
}

/* move the thumbs to the same vertical position */
.dual-range input[type=range][id$="l"]::-webkit-slider-thumb {
    transform: none;
}

.dual-range input[type=range][id$="l"]::-moz-range-thumb {
    transform: none;
}

.dual-range input[type=range][id$="h"]::-webkit-slider-thumb {
    transform: none;
}

.dual-range input[type=range][id$="h"]::-moz-range-thumb {
    transform: none;
}

/* shift left thumb entirely outside the container when at minimum value.
       earlier versions moved it by half the thumb width which was still
       visibly inset if the browser rendered a larger knob.  by translating
       -100% we guarantee the leftmost edge of the thumb lines up with the
       container's left boundary regardless of its actual size. */
.dual-range input[type=range].at-min::-webkit-slider-thumb {
    transform: translateX(-3px);
}

.dual-range input[type=range].at-min::-moz-range-thumb {
    transform: translateX(-3px);
}

/* brighten thumb when its input has focus */
.dual-range input[type=range]:focus::-webkit-slider-thumb {
    filter: brightness(1.7);
}

.dual-range input[type=range]:focus::-moz-range-thumb {
    filter: brightness(1.7);
}

.paramTextDual {
	width: 42px;
    margin-right: 5px;
}
