@charset "utf-8";
/* CSS Document */
  body {
    font-family: Arial, Helvetica, sans-serif;
    color: #eee;
    background-color: #333;
  }

  footer{
    text-align:center;
    height:20px;
    margin-top:12px;
    background-color:#405060;
    padding: 6px;
    clear:both;
  }

  .banner{
    height:100px;
    background-color:#000;
  }

  .logo{
    width:400px;
    height:100px;
    position:absolute;
    left:12px;
    top:8px;
  }

  .image{
    width:70%;
    position:relative;
    top:12px;
    left:12px
  }

  .content{
    padding-top: 12px;
    text-align: center;
  }

  p{
    font-size: 20px;
    margin-top: 0px;
  }

/* navigation bar */
  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #666;
    background-color: #4caf50;
  }

  li {
    float: left;
  }

  li a {
    display: block;
    color: white;
    text-align: center;
    padding: 8px 16px;
    text-decoration: none;
  }

  li a:hover:not(.active) {
    background-color: #111;
  }

  .active {
    background-color: #4CAF50;
    background-color: #666;
  }

/* links */
  a.back:link {
     color: #eee;
     text-decoration: none;
  }
  a.back:visited {
     color: #eee;
     text-decoration: none;
  }
  a.back:active {
     color: #eee;
     text-decoration: none;
  }
  a.back:hover {
  	color: #eee;
  	text-decoration: underline;
  }

/*canvas*/
  canvas{
    width: 100%;
  }

  .canvasContainer {
    float:left;
    width:60%;
  }

/*form*/

/* Style inputs, select elements and textareas */
  input[type="text"], input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
  }

  select{
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
  }

/* Style the label to display next to the inputs */
  label {
    padding: 12px 12px 12px 0;
    display: inline-block;
  }

/* Style the move button */
  button[type="button"] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 6px 12px 6px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 62px;
    text-align: center;
  }

/* Style the left-right button */
  #Left, #Right {
     width: 30px;
  }

/* Style the calculation button */
  #calcBtn {
    width: 120px;
  }

/* Style the container */
  .formContainer {
    float:left;
    width:35%;
    border-radius: 5px;
    background-color: #333;
    padding-bottom: 20px;
    /*padding: 20px 0px 20px 0px;*/
  }

/* Floating column for labels: 25% width */
  .col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
  }

/* Floating column for inputs: 75% width */
  .col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
  }

/* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }

/* Responsive layout - when the screen is less than 1024px wide, canvas and 'form' stack on top of each other instead of next to each other */
@media screen and (max-width: 1024px) {
  .canvasContainer, .formContainer, .selections {
    width: 100%;
    margin-top: 0;
  }
}