/* styles */
/* called by your view template */

* {
  box-sizing: border-box;
}

body {
  font-family: helvetica, arial, sans-serif;
  font-size: 14px;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently
                                  not supported by any browser */

}

h1 {
  font-style: italic;
  color: #373fff;
}

.bold {
  font-weight: bold;
}

p {
  max-width: 600px;
}

form {
  margin-bottom: 25px;
  padding: 15px;
  background-color: cyan;
  display: inline-block;
  width: 100%;
  max-width: 340px;
  border-radius: 3px;
}

input {
  background-color: #001d57; 
  color:#ebcb63;
  display: block;
  /*margin-bottom: 10px;*/
  padding: 5px;
  width: 100%;
  border: 1px solid;
  border-radius: 3px;
  font-size: 12px;
  /*font-weight: bold;*/
  font-family: lcdnova;
}

button {
  padding: 5px;
  font-size: 14px;
  border-radius: 3px;
  background-color: #909aad;
  border: 1px solid grey;
/*  box-shadow: 2px 2px teal;*/
  cursor: pointer;
  margin: 2px;
}

button#btnCalc {
  padding: 5px;
  font-size: 14px;
  border-radius: 3px;
  background-color: #909aad;
  border: 1px solid grey;
  /*box-shadow: 2px 2px teal;*/
  cursor: pointer;
  margin: 2px;
  width: 35px;
}

a {
  color:#ebcb63;  
}

a:visited {
    color:#ebcb63;
}

button:hover {
  background-color: #606e87;
}

button#btnCalc:active {
  background-color: #606e87;
  box-shadow: none;
}

li {
  margin-bottom: 5px;
}

footer {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid lightgrey;
}

table {
  background-color: #374057;

}

.tblOnBC {
  background-color: #001d57;

}

.frleft, .frright {
  color: #1be014; 
  position: absolute; 
  border-bottom: solid 5px;
  border-top: solid 5px; 
  width: 10px; 
  height: 35px;
  touch-action: none;
}

.frleft {
  left: 100px; 
  border-left: solid 5px; 
}

.frright {
  left: 200px; 
  border-right: solid 5px; 
}

.frleft:hover, .frright:hover{
  cursor:pointer;
}