
#form { background: rgba(0, 0, 0, 0.15); padding: 0.25rem; position: fixed; bottom: 0; left: 0; right: 0; display: flex; height: 3rem; box-sizing: border-box; backdrop-filter: blur(10px); }
#input { border: none; padding: 0 1rem; flex-grow: 1; border-radius: 2rem; margin: 0.25rem; }
#input:focus { outline: none; }
#form > button { background: #333; border: none; padding: 0 1rem; margin: 0.25rem; border-radius: 3px; outline: none; color: #fff; }

#messages { list-style-type: none; margin: 0; padding: 0; }
#messages > li { padding: 0.5rem 1rem; }
#messages > li:nth-child(odd) { background: #efefef; }
html, body {
    height: 100%;
    margin: 0px;
    background: #000;
}
.container {
    height: 100%;
}
body{
    font-family: 'Courier New', Courier, monospace;
    color:gold;
    padding:0px;
}
#tableau{
    top:0px;
    left:0px;
    height:100%;
    width: 100%;
    position:absolute;
    background: url(i2/field.jpg);
    background-size: 60% 100%;
    background-position: center;
    background-repeat: no-repeat;

}
#display{
    color:gold;
    font-weight: bold;
}
#offerdasboard td{
    width:50%;
    color:gold;
}
input.noText {
    color: transparent;
}
.colR, .colL {
    background: gold;
    color:black;
    font-weight: bold;
    font-size: 30px;
    width:20%
}
#panel, .display {
    text-align: center;
}
#spacer {
    position:relative;
    top:-1px;
    height:calc(100% - 150px);
    text-align: justify;
    padding-left:25px;
    padding-right:25px;
  }
#offerpast{
    overflow:hidden;
    max-height:70px;
}
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #000;
    margin: 15% auto; /* 15% from the top and centered */
    margin-top:100px;
    padding: 20px;
    border: 1px solid #888;
    width: 600px; /* Could be more or less, depending on screen size */
  }
  .modal-content .input100 {
    width:100%;
  } 
  .modal-content .input50 {
    width:50%;
  } 
  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: red;
    text-decoration: none;
    cursor: pointer;
  }
  .blink_me {
    animation: blinker 1s linear infinite;
  }
  
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }


  .button {
    transition-duration: 0.4s;
    background-color: gold;
    color:black;
    font-weight: bold;
  }
  
  .button:hover {
    background-color: black; /* Green */
    color: gold;
  }
  .svg {
    animation: hide 1s linear 5s 1 forwards;
  }

@keyframes hide {
    to {
        opacity: 0;
    }
}
