/*
Date            By       Version Reason
2021-03-01      PA2EVR   2.3     Translation from Opticoil 2.2 desktop app to web based version
*/

html { /*Font family for all HTML in website unless overridden by later style*/
  font-family: Arial;
}

div { /* for debugging */
  //border: 1px solid black;
}

h2, h4 { 
  margin: 0px;
}

body {
  overflow: hidden;
  margin-right: 5px;
}

.scaleable-wrapper {
  max-width: 1110px;
}

header, footer, .maindiv {
  display: flex;
  flex-flow: row;
  background-color: #f0e5e5;
  margin-top: 10px;
  padding: 6px;
  width: 1088px;
}

header, footer {
  align-items: center;
  justify-content: space-between;
}

.maindiv {
  align-items: flex-start;
}

  .maindiv.landscape {
    flex-flow: row nowrap;
  }

  .maindiv.portrait {
    flex-flow: column nowrap;
  }

.box_inputs {
  display: flex;
  flex-direction: row;
}

.grid_container {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-auto-rows: 30px;
  column-gap: 5px;
  row-gap: 2px;
  margin: 5px;
  border: 1px solid black;
  min-width: 180px;
}

.grid_item_header {
  grid-column: 2;
  justify-self: center;
  align-self: center;
}

.grid_item1 {
  grid-column: 1;
  justify-self: right;
  align-self: center;
}

.grid_item2 {
  grid-column: 2;
  justify-self: center;
  align-self: center;
}

.grid_item3 {
  grid-column: 3;
  justify-self: left;
  align-self: center;
}

.filterpic {
  grid-column: 1 / span 3;
  grid-row: 2 / span 4;
  justify-self: center;
  align-self: center;
}

.imgholder {
  //border: 2px solid black;
}

.graph {
  display: flex;
  border: 2px solid black;
  margin: 5px;
  position: relative;
  min-height:504px;
  min-width:504px;
}

footer .disclaimer{
  font-size: small;
  text-wrap:normal;
}

.row, .row_small {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  height: 30px;
}

.text_right {
  text-align: right;
}

.text_large {
  font-size: larger;
}
table{
  border-collapse:collapse;
}

input, .selbox {
  text-align: center;
  height: 22px;
  width: 60px;
  background-color: yellow;
  padding: 0;
  margin-right: 3px;
}

  input[readonly] {
    background-color: aqua;
  }

  input.interact {
    background-color: lightyellow;
  }

  input[error=error] {
    border: 1px solid red;
  }

svg, #refImp {
	-webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

[clickable=true]{
  fill: yellow;
}

[clickable=false] {
  fill: aqua;
}

.selbox {
  height: 28px;
  width: 62px;
  -webkit-appearance: menulist-button;
}

#refImp {
  position: absolute;
  right: 1px;
  bottom: 1px;
}

#refLabel {
  position: absolute;
  right: 75px;
  bottom: 5px;
}