/* Style the tab */
.tab {
  /* overflow: hidden;
     border: 2px solid powderblue;
     background-color: #f1f1f1;
     margin-left: 1%; */
} 

.WebContainer{
    width: 100%;
    border-top: 2px;
    height: auto;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  /* background-color: darkolivegreen; */
  float: left;
  border: 2px solid white;
  outline: none;
  cursor: pointer;
  padding: 14px 30px;
/*  border-top: 2px; */
  font-size: 25px;
  font-weight: bold;
  transition: 0.3s;
  /* color: white; */
/*  width: 50%; */
  border-radius: 5px;
  top: 01;
  margin: 5px 2px;
}

/* Change background color of buttons on hover */ 
.tab button:hover {
  background-color: red;
}

/* Create an active/current tablink class */ 
.tab button:focus {
  background-color: red; 
} 

.active {
    background-color: red; /* Green background */
    color: white; /* White text */
}

/* Style the tab content */
.tabcontent {
  display: none; 
  padding: 3px 200px;
  border: 3px solid black;
/*  margin: 10px; */
  color: white;
  background-color: darkolivegreen;
  font-family: "Courier New", Courier, monospace;
}

/* Style the textarea */
textarea  {
   font-family: monospace;
   font-size: 40px;
   color: blue;
   background-color: white;
   font-weight: bold;
   text-transform: uppercase;
   letter-spacing: 4px;
   resize: none;
   text-indent: 20px;
   overflow: hidden;
   margin-left: 2px;
   border-radius: 5px;
   padding: 6px 8px;
   border: 1px solid red;
}

#word {
font-family: monospace;
   font-size: 40px;
   color: blue;
   background-color: white;
   font-weight: bold;
   text-transform: uppercase;
   letter-spacing: 4px;
   resize: none;
   text-indent: 20px;
   overflow: hidden;
   margin-left: 2px;
   border-radius: 5px;
   padding: 6px 8px;
   border: 1px solid red;
}
#timer,#bonustimer {
font-family: monospace;
   margin-left: 177px;
   background-color: darkolivegreen;
   border: 2px solid white;
   color: white;
   position: absolute;
   text-align: center;
   font-size: 25px;
   padding-right: 0px;
   padding-left: 0px;
   padding-bottom: 13px;
   padding-top: 16px;
   margin-right: 35px;
}

/* Style the Submit! Button */
input[type=submit] {
    padding: 8px 32px;
    background: #ccc;
    background-color: darkolivegreen;
    border: 2px solid white;
    cursor: pointer;
    color: white;
    font-weight: bolder;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    height: auto;
    top: 01;
    position: absolute;
    margin-top: 1px;
    font-weight: bold;
    font-size: 25px;
    right: auto;
}

/* Change background color of Submit button on hover */
input[type="submit"]:hover{
    background-color:red;
}

/* Style the CLEAR! Button */
input[type=button] {
    padding: 14px 20px;
    background: #ccc;
    background-color: darkolivegreen;
    border: 2px solid white;
    cursor: pointer;
    color: white;
    font-weight: bolder;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    height: auto;
    top: 01;
    position: absolute;
    margin-top: 1px;
    right: auto;
    margin-left: 66px;
    font-weight: bold;
    font-size: 25px;
}

/* Change background color of Clear button on hover */
input[type="button"]:hover{
    background-color:red;
}

/* Change background color of Clear button on focus */
input[type="button"]:focus{
    background-color:blue;
}

/* Style the textarea for Ignore List*/
ignore  {
   font-family: monospace;
   font-size: 40px;
   color: yellow;
   background-color: white;
   font-weight: bold;
   text-transform: uppercase;
   letter-spacing: 2px;
   resize: none;
   text-indent: 20px;
   overflow: hidden;
}

input[type='checkbox'] {
  -webkit-appearance: none;
  position: absolute;
}

input[type="checkbox"]:after {
  border: 2px solid white;
  content: "4";
  display: inline-block;
  font-weight: bold;
  font-size: 25px;
  color: white;
  vertical-align: top;
  height: 16px;
  border: 2px solid white;
  border-radius: 5px;
  margin-top: -2px;
  padding-right: 16px;
  padding-left: 25px;
  padding-bottom: 27px;
  padding-top: 15px;
}

input[type='checkbox']:checked:after {
  content: '3';
  font-weight: bold;
  font-size: 25px;
  color: white;
  position: absolute; 
  border: 2px solid white;
  margin-left: .2%;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  margin-top: -2px;
  padding-right: 16px;
  padding-left: 25px;
  padding-bottom: 27px;
  padding-top: 15px;

}

/* Change background color of Checkbox on focus */
input[type='checkbox']:focus:checked:after{
    background-color:blue;
}


/* Change background color of Checkbox on focus */
input[type='checkbox']:focus{
    background-color:blue;
}

