/* :root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

#app {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.logo {
  height: 6em;
  padding: 1.5em;
  will-change: filter;
  transition: filter 300ms;
}
.logo:hover {
  filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.vanilla:hover {
  filter: drop-shadow(0 0 2em #f7df1eaa);
}

.card {
  padding: 2em;
}

.read-the-docs {
  color: #888;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
  a:hover {
    color: #747bff;
  }
  button {
    background-color: #f9f9f9;
  }
} */


* {
  box-sizing: border-box;
}

:root {
  --bg: #fff;
  --red: #dd7373;
  --medBlue: #90a095;
  --ltBlue: #669199;
  --dBlue: #595959;
  --yellow: #FCF8B3;
  --medGrey: #d1d1d1;
  --ltGrey: #eaeaea;
  --accentFont: 'Montserrat', sans-serif;
  --noteFont: 'Montserrat:300i', sans-serif;
  --bodyFont: 'Open Sans', sans-serif;
}

/* latin */
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v17/mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.fullwidth {
  width: 100%;
  position: relative;
}

.topBarClass {
font-family: 'Open Sans';
  background-color: bisque;
  height: 30px;
  font-size: small;
}

/* wider content area, header not fixed to make more room on screen */
.mainContent {
  margin-top: 30px;
  width: 90%;
  margin-left: 5%;
  padding: 20px;
  background-color: var(--bg);
}

.center {
display: block;  
margin-left: auto; 
margin-right: auto;
}

.unselectable {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}


body {
background-color:#d1d1d1;
background-color:var(--medGrey);
font-family: 'Open Sans', sans-serif;
font-family: var(--bodyFont);
color: #595959;
color: var(--dBlue);

padding:0;
margin:0;
font-size:14px;
min-height:100%;
position:relative;
padding-bottom:70px;
}

.bigTitle {
font-family: 'Open Sans';
font-family: var(--accentFont);
color: #595959;
color: var(--dBlue);
font-size:35px;
text-align:center;
}

.separator {
 width:100%; 
 background-color:var(--red);
 height: 5px;
}


.twoCol_3366 {
display: -ms-grid; 
display:grid;
grid-template-columns: 32% 65%;
 grid-gap:2%;
}

.controlLegend {
padding-inline-start: 2px;
padding-inline-end: 2px;
}


.matrix {
  position: relative;
  width: 90px;
}
.matrix:before {
  content: "";
  position: absolute;
  left: -6px; 
  top: 0;
  border: 1px solid #000;
  border-right: 1px;
  width: 6px;
  height: 100%;
}
.matrix:after {
  content: "";
  position: absolute;
  right: -6px;
  top: 0;
  border: 1px solid #000;
  border-left: 0px;
  width: 6px;
  height: 100%;
}
.matrix td {
  padding: 5px;    
  text-align: center;
  width: 30px;
}


.appButton {
background-color: white;
border:1px solid var(--medGrey);
border-radius: 5px;
height:30px;
line-height:30px;
padding: 0px 10px;
z-index:995;
}
.appButton:hover {
background-color: var(--ltGrey);
}
.appButton:active {
background-color: var(--ltBlue);
}


.appInput {
  -moz-appearance: textfield;
}
/* This will hide number input spinners */
/*.appInput::-webkit-outer-spin-button,
.appInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}*/


#transformlist {
font-size: 13px;
}