@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:500,300");




body {
    font-family: "Roboto", Helvetica, sans-serif;
    font-weight: 350;
	  color: white;
    background: black;
}


button {
  border:solid 2px #590F20;
  border-radius:5px;
  background-color: #e7e7e7; /* Green */
  letter-spacing: 1px;
  border: none;
  padding: 9px 18px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

button:first-child {
    margin-left: 0;
}

button:last-child {
    margin-right: 0;
}

button:hover {
  color: rgb(255, 127, 14);
}

table {
    border-collapse: collapse;
    background-color: white;
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 5px;
}

li a {
    text-decoration: none;
    color: aqua;
}
li a:hover {
    text-decoration:underline;
}

text {
    pointer-events:none;
}

.stopwatch {
  font-size: 2vw;
  padding-left: 110px;
}

.results {
  border-color: lime;
  margin: 0;
  padding: 0;
  bottom: 0;
  left: 50%;
}

#start {
  background: #48633B;
  color: #DAD6D6;
}

#start:hover {
    color:white
}

#start:focus {
    background: black;
    color:white
}

#stop {
  background: #721329;
  color: #DAD6D6;
}

#stop:hover {
    color:white
}

#stop:focus {
    background: black;
    color:white
}

#restart {
  background:rgb(31, 119, 180);
  color: #DAD6D6;
}

#restart:hover {
    color:white
}

#restart:active {
    background: black;
    color:white
}

#wheel {
    position:absolute;
}

#incident{
	background: azure	
    border-width:5px;
    word-wrap: break-word;
    position:relative;
    width: 500px;
    height: 600px;
    left: 620px;
}

#incident p {
	background: crimson;
    color: white;
    font-weight: bold;
    position: absolute;
    padding-left: 10px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    top:50%;
    -webkit-transform:translate(0,-50%);
            transform:translate(0,-50%);
}

.timing {
    padding-left: 100px;
}

header.major {
    text-align: center;
}

header p {
    color: chocolate;
}

header li {
  color: #0a0a0a;
}

em a {
    color: aqua;
    text-decoration: none;
}

em a:hover {
    text-decoration: underline;
}

#footer {
    background: darkgrey;
    padding: 1em 0 1em 0;
    color: #bbb;
    font-size: 0.9em;
    text-align: center;
}

#footer a {
    color: #c30704;
    text-decoration: none;
}

#footer a:hover {
    color: #0a0a0a;
    text-decoration: underline;
}
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 40px; /* Location of the box */
  padding-bottom: 50px; /* Location of the box */
  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.4); /* Black w/ opacity */
  text-align: left;
  color: black;
}

.modal a {
    color: #721329;
}

.modal a:hover {
    color: rgb(255, 127, 14);
}
/* Modal Content */
.modal-content {
  position: relative;
  background-color: #f8f8f8;
  color: grey;
  margin: auto;
  padding: 30px;
  width: 60%;
  border: 1px solid #888;
  border-radius:15px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px none black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
