/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : Aug 31, 2016, 2:40:48 PM
    Author     : ksmith
*/

html, body, .container {
  height: 100%;
}

.active{
    border-color: transparent !important;
    background-color: transparent !important;
}

.container {
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
}

.buttoncontainer {
  margin-top: auto;
  margin-bottom: auto;
}

#fullcontainer{
  --min-dim: min(100vw, 100vh);
  height: var(--min-dim);
  width: var(--min-dim);
  position: absolute;
  min-height: 800px;
  min-width: 800px;
  padding: 0;
}

#successtext {
    width: 95%;
    text-align: center;
    font-size: 24pt;
    margin: auto;
}

#instructtext {
    width: 95%;
    text-align: center;
    font-size: 16pt;
    margin: auto;
}

#gametable {
    --hrat: 600 / 800;
    width: 100%;
    height: calc(100% * var(--hrat));
    margin: auto;
    background-color: white;
}

#gamescreen {
    width: 75%;
    height: 100%;
    float: left;
    margin-left: 3%
}

#buttons {
    width: 18%;
    height: 100%;
    float: left;
    margin-left: 2%;
    background-color: white;
    border: 1px solid;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
}

#resetbutton {
    width: 40px;
    height: 40px;
    display:block;
    margin: auto;
    margin-top: 30px;
    border: 2px solid;
}

#submitdiv {
    width: 300px;
    margin: auto;
    margin-left: 20px;
}

.SelectButton {
    --min-dim: min(100vw, 100vh);
    --wratio: calc(90 / 800 * var(--min-dim) + 4px);
    --hratio: calc(90 / 800 * var(--min-dim) + 4px);
    width: var(--wratio);
    height: var(--hratio);
    min-width: 94px;
    min-height: 94px;
    display: block;
    background-color: grey;
    margin: auto;
    margin-top: 10px;
    border: 2px solid;
}

.spacer {
    height: 20px;
}

.notif {
    margin: auto;
    width: 110px;
    margin-top: 20px;
}

.notetext {
    text-align: center;
    display: block;
    font-size: 16pt;
}

#retbutton {
    margin: auto;
}

a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;

    text-decoration: none;
    color: initial;
}

#mpos {
    text-align: left;
    font-size: 16pt;
}

.textbox {
    border: solid 2px black;
    text-align: center;
    display: table;
}

.textbox p {
    font-size: 24pt;
    display: table-cell;
    vertical-align: middle;
}

.qErr {
  text-align: riqght;
  display: block;
  font-size: 10pt;
  color: red;
  font-style: italic;
}
