:root {
  --icon-size: 12px;
  --col1-width: 20px;

  --col2-width: 75px;
  --col2-max-wd: 75px;
  --col2-min-wd: 45px;

  --col3-width: 50%;
  --col3-max-wd: 55%;
  --col3-min-wd: 45%;

  --col4-width: 42%;
  --col4-max-wd: 45%;
  --col4-min-wd: 40%;

  --font-size-1: 1.1vw;
  --font-size-2: 1.2vw;
  --font-size-3: 1.3vw;

  --font-size-1-2: 1.1vw;
  --font-size-2-2: 1.4vw;
  --font-size-3-2: 1.5vw;
}
.circle-down {
  background-repeat: no-repeat;
  background-image: url(https://bootstrap.netcentrx.net/icons/img/arrow-down-circle-fill-white.svg);
  width: var(--icon-size);
  height: var(--icon-size);
  background-size: var(--icon-size);
  display: inline-block;
  background-position: center bottom;
  /* text-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.8); */
  -webkit-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
}

.circle-up {
  background-repeat: no-repeat;
  background-image: url(https://bootstrap.netcentrx.net/icons/img/arrow-up-circle-fill-white.svg);
  width: var(--icon-size);
  height: var(--icon-size);
  background-size: var(--icon-size);
  display: inline-block;
  background-position: center bottom;
  /* text-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.8); */
  -webkit-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
}

body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
}
main {
  display: flex;
  width: 100vw;
  font-family: sans-serif;
  flex-wrap: wrap;
}
.row {
  display: flex;
  flex-direction: row;
  flex-basis: 100%;
}
.row:nth-child(even) {
}
.row:nth-child(odd) {
  background: #eee;
}
.header {
  background: #066;
  color: #fff;
  text-align: center;
}
.header > .columns > .col {
  border: 1px solid #000;
}
.content > .columns > .col {
  border: 1px solid #ddd;
}

.columns {
  display: flex;
}
.left {
  flex-basis: 10%;
}
.right {
  flex-basis: 90%;
}
.console {
  width: 100%;
  background: #000;
}
.col1 {
  flex-basis: 40%;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.col2 {
  flex-basis: 60%;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.col3 {
  flex-basis: 50%;
  justify-content: left;
  align-items: center;
}
.content > .columns > .col4 {
  padding-left: 0.25rem;
}

.col4 {
  flex-basis: 50%;
  justify-content: left;
  align-items: center;
}
.title {
  font-size: 2rem;
  text-align: center;
  justify-content: center;
  align-items: center;
  background: rgb(150 250 50 / 0.8);
}

@media only screen and (max-width: 800px) {
  body {
    background-color: lightblue;
  }
  .columns {
    flex-direction: column;
  }
}

:root {
  --scrollbar-bg: rgba(50, 50, 50, 0.25);
  --thumb-bg: rgba(50, 50, 50, 0.5);
  --scrollbar-width: 0.35rem;
  --scrollbar-width_hover: 0.5rem;
  --scrollbar-thumb-radius: 0.5rem;
  --scrollbar-thumb-border: 0.2rem;
}
::-webkit-scrollbar {
  width: var(--scrollbar-width);
  height: var(--scrollbar-width);
}
::-webkit-scrollbar:hover {
  width: var(--scrollbar-width_hover);
}
::-webkit-scrollbar-track {
  background-color: var(--scrollbar-bg);
}
::-webkit-scrollbar-thumb {
  background-color: var(--thumb-bg);
  border-radius: var(--scrollbar-thumb-radius);
  border: var(--scrollbar-thumb-border) solid var(--scrollbar-bg);
}
* {
  scrollbar-width: var(--scrollbar-width);
  scrollbar-color: var(--thumb-bg) var(--scrollbar-bg);
}
html {
  scroll-behavior: smooth;
} /* smooth-scroll CSS */
#link {
  font-family: sans-serif;
  width: 800px;
  margin: 0 auto;
  text-align: center;
}
.link {
  background: #eee;
  padding: 0.25rem;
  border-radius: 0.5rem;
  border: 1px solid #aaa;
}
/*====================================================================================*/
[data-title]:hover:after {
  opacity: 1;
  transition: 0.15s 0.75s;
  visibility: visible;
}
[data-title]:after {
  content: attr(data-title);
  position: absolute;
  top: -1.75em;
  left: 5%;
  z-index: 99999;
  visibility: hidden;
  font-family: sans-serif;
  white-space: nowrap;
  background-color: #0a6f75;
  color: #fff;
  font-size: 1vw;
  padding: 0.25rem;
  box-shadow: 1px 1px 3px #222;
  opacity: 0;
  border: 1px solid #111;
  border-radius: 0.5rem;
  cursor: help;
}
[data-title] {
  position: relative;
  cursor: help;
  cursor: alias;
}
@import url("https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&family=Pragati+Narrow&display=swap");

:root {
  --icon-size: 12px;
  --col1-width: 20px;

  --col2-width: 75px;
  --col2-max-wd: 75px;
  --col2-min-wd: 45px;

  --col3-width: 50%;
  --col3-max-wd: 55%;
  --col3-min-wd: 45%;

  --col4-width: 42%;
  --col4-max-wd: 45%;
  --col4-min-wd: 40%;

  --font-size-1: 1.1vw;
  --font-size-2: 1.2vw;
  --font-size-3: 1.3vw;

  --font-size-1-2: 1.1vw;
  --font-size-2-2: 1.4vw;
  --font-size-3-2: 1.5vw;
}
body {
  margin: 0;
  padding: 0;
}

table.div-table {
  width: 100%;
  border-collapse: collapse;
}

.terminal {
  color: limegreen;
}

header {
  font-family: sans-serif;
  color: #fff;
  background-color: rgba(0, 139, 139, 0.25);
  text-shadow: 2px 2px 2px black;
  height: 80px;
  padding: 0.25rem;
  margin: 0 auto;
  text-align: center;
}

h2 {
  font-family: sans-serif;
  color: #fff;
  padding: 0;
  margin: 10px auto;
  letter-spacing: 0.5rem;
  /*   border: 1px outset #ccc; */
}

th,
td {
  font-family: sans-serif;
  padding: 0.1rem;
}

table.div-table th {
  text-align: center;
  background-color: rgba(0, 139, 139, 0.25);
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 2px black;
}

tr.div-table-row th {
  background-color: #008b8b;
  padding: 0.025rem;
}

table.div-table th,
table.div-table td {
  font-family: "Pragati Narrow", "Arial Narrow", sans-serif;
}

table.div-table tr td:nth-child(1) {
  font-size: var(--font-size-3);
  text-align: center;
  font-weight: normal;
  width: var(--col1-width);
}

table.div-table tr td:nth-child(2) {
  text-align: center;
  font-weight: normal;
  letter-spacing: 0px;
  letter-spacing: -1px;
  font-size: var(--font-size-3);
  width: var(--col2-width);
  max-width: var(--col2-max-wd);
  min-width: var(--col2-min-wd);
}

.col2 {
  font-size: var(--font-size-3);
  width: var(--col2-width);
  max-width: var(--col2-max-wd);
  min-width: var(--col2-min-wd);
}

table.div-table tr td:nth-child(3) {
  text-align: center;
  width: var(--col3-width);
  max-width: var(--col3-max-wd);
  min-width: var(--col3-min-wd);
}
.col3 input {
  width: 98%;
  background: #000;
  color: #fff;
  margin: 0;
  padding: 0.1rem;
  line-height: 1.5;
  /* font-size: calc(0.8rem + 1vmin);; */
  font-size: 1vw;
  font-family: "Inconsolata", monospace;
}

.col3 input:focus {
  background: #000;
  color: #27d03b;
  margin: 0;
}

table.div-table tr td:nth-child(4) {
  font-size: 1.25vw;
  width: var(--col4-width);
  max-width: var(--col4-max-wd);
  min-width: var(--col4-min-wd);
}

.cols:nth-child(4) {
  /* letter-spacing: -0.025rem; */
  font-family: "Pragati Narrow", "Arial Narrow", sans-serif;
  padding-left: 0.25rem;
}

/* .col1, */
.col2,
.col3,
.col4 {
  cursor: pointer;
}

/* table.div-table tr:nth-child(even) {
  background: #eee;
}

table.div-table tr:nth-child(odd) {
  background: #d3d3d3;
}
 */
.bold {
  font-weight: bold;
}

::selection {
  background: rgba(0, 0, 0, 0.5);
  /* WebKit/Blink Browsers */
}

::-moz-selection {
  background: rgba(0, 0, 0, 0.5);
  /* Gecko Browsers */
}

.header > .columns > .cols {
  position: sticky;
  top: 0;
  /* Don't forget this, required for the stickiness */
  z-index: 1;
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.8);
  text-shadow: 2px 2px -1px rgba(0, 0, 0, 0.8);
  text-align: center;
  border: 0.1rem solid #eee;
  background: #044;
}

.tooltip {
  /* this is just to add meaning for position:absolute of .toolTipText */
  position: relative;
  font-family: sans-serif;
  color: navy;
}

.tooltip .toolTipText {
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  left: 20%;
  bottom: 25px;

  /* style the tooltip */
  min-width: 50px;
  font-family: sans-serif;
  /* font-size: calc(0.6rem + 1vmin); */
  font-size: 1vw;
  color: transparent;
  padding: 10px;
  white-space: nowrap;
  border-radius: 5px;

  visibility: hidden;
}

.tooltip:hover .toolTipText {
  background-color: rgba(0, 0, 128, 0.75);
  color: white;
  transition: 3s;
  visibility: visible;
}

.non-white {
  color: #999;
}

.circle-down {
  background-repeat: no-repeat;
  background-image: url(https://bootstrap.netcentrx.net/icons/img/arrow-down-circle-fill-white.svg);
  width: var(--icon-size);
  height: var(--icon-size);
  background-size: var(--icon-size);
  display: inline-block;
  background-position: center bottom;
  /* text-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.8); */
  -webkit-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
}

.circle-up {
  background-repeat: no-repeat;
  background-image: url(https://bootstrap.netcentrx.net/icons/img/arrow-up-circle-fill-white.svg);
  width: var(--icon-size);
  height: var(--icon-size);
  background-size: var(--icon-size);
  display: inline-block;
  background-position: center bottom;
  /* text-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.8); */
  -webkit-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
}

.hidden {
  display: none;
}

/* START scrollbar CSS */

html {
  --scrollbarBG: rgba(0, 139, 139, 0.25);
  --thumbBG: #008b8b;
}

body::-webkit-scrollbar {
  width: 10px;
}

body {
  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

body::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG);
  border-radius: 6px;
  border: 3px solid var(--scrollbarBG);
}

html {
  background: lightgrey;
  overflow: hidden;
}

body {
  height: 100vh;
  background: whitesmoke;
  overflow-y: auto;
  margin: 0 auto;
}

/* p {
      margin: 0 0 1.5em;
    } */

* {
  box-sizing: border-box;
}

/* END scrollbar CSS */

/* MODAL WINDOW CSS */
button.trigger-popup {
  display: inline-block;
  margin: 2px auto;
  background: crimson;
  color: white;
  border: 0;
  padding: 6px 10px;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
}

.popup-wrapper {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.popup {
  font-family: arial;
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin: 0.5rem auto;
  padding: 0.5rem;
  background: white;
  position: relative;
  border-radius: 5px;
  border: 1px outset #ccc;
  -webkit-box-shadow: inset 1px 2px 2px #aaa, inset -1px -2px 2px #777,
    1px 2px 1px black;
  -moz-box-shadow: inset 1px 3px 2px #bbb, inset -1px -1px 3px #888,
    1px 2px 1px black;
  box-shadow: inset 1px 2px 2px #ccc, inset -1px -1px 3px #999,
    1px 2px 1px black;
  text-shadow: 1px 1px 1px #777;
  /* position: sticky; */
  top: 15%;
  z-index: 2 !important;
}

.popup a {
  background: crimson;
  color: white;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 5px;
}

.popup-content {
  text-align: left;
}

.popup-close {
  position: absolute;
  right: 15px;
  top: 5px;
  width: 20px;
  height: 20px;
  opacity: 0.5;
  color: #f00;
  cursor: pointer;
}

.popup-close:hover {
  opacity: 1;
  color: #800;
  cursor: pointer;
}

.popup-close:before,
.popup-close:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 20px;
  width: 2px;
  background-color: #333;
}

.popup-close:before {
  transform: rotate(45deg);
}

.popup-close:after {
  transform: rotate(-45deg);
}

/* END MODAL WINDOW CSS */