@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300);


body {
  background: #151919;
  color: #fff;
  font-family: 'Open Sans';
  margin:0 auto;
  padding:0;
}

.lnsmall, A.lnsmall {
	text-decoration : none;
	color : #FFFFFF;
	font-size : 12pt;
}

.footer {
  color : #FFFFFF;
  background: #4C5052;
  position: relative;
  text-align: center;
  font-size : 12pt;
  padding: 10px;
}

th, td {
  padding: 0px 10px 0px 10px;
}

.gameTD {
  padding: 2px;
}

#page-container {
  position: relative;
  min-height: 100vh;
}

.pageCotent {
  text-align: center;
  width:35em;
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%, 0);
}

@media screen and (max-width: 40em) {
  .pageCotent {
    width: 95%;
  }
}


#content-wrap {
  padding-bottom: 3rem;    /* Footer height */
}

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;            /* Footer height */
}


div.progress { 
    text-align: center;
}

.defualt {
    margin: auto;
    position: relative;
    font-size: 20px;
    /*letter-spacing: 1.5px;*/
    margin-bottom: 6px;
    margin-top: 6px;
  }

.button {
    margin: auto;
    position: relative;
    cursor: pointer;
    padding: 5px;
    background: #151919;
    border: 2px solid #64FE63;
    border-radius: 2px;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    /*-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;*/
  }
  
.buttonSquare {
  width:40px;
  height:40px;
  }
  
.smallButton {
    background: #151919;
    border: 2px solid #64FE63;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
}

.smallHiddenButton {
    background: #151919;
    border: 2px solid #64FE63;
    border-radius: 2px;
    color: #fff;
    visibility: hidden;
    cursor: pointer;
}
  

  .textInput {
    margin: auto;
    position: relative;
    padding: 5px;
    background: #151919;
    border: 2px solid #64FE63;
    border-radius: 2px;
    margin-top: 6px;
    color: #fff;
    font-size: 20px;
  }


div.child {
    display: table-cell;
    padding: 00px;
    vertical-align: middle;
    height: 75px;
}
    
.heading {
    font-size: 1em 
}

div.rcorners2 {
    display: table-cell;
    border-radius: 25px;
    background: #64FE63;
    padding: 0px 10px 0px 10px;
    opacity: 0.9;
}

.startcountdown {
font-size: 2em 
}

div.parent  { 
    display: table;
    width: 100%;
    position: relative;
    background-image: url("../../assets/images/hero2.jpg");
    background-size:cover;
    background-position: center; 
    background-repeat: no-repeat;
    color: #000000;
}

div.content  { 
    display: table;
}

div.verticalMidle {
    display: table-cell;
    vertical-align: middle;
}



.inputContainer2 {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: top; 
}

/* The inputContainer */
.inputContainer {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-top: 6px;
    margin-bottom: 6px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: top; 
  }
  
  /* Hide the browser's default checkbox */
  .inputContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .inputContainer.labelUnder {
    display: inline-block;
    width: 70px;
    font-size: 14px;
    margin-left: none;
    margin-top: none;
    margin-right: none;
    padding-top: 30px;
  
    display: inline-block;
    position: relative;
    padding-left: 0px;
    margin-bottom: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: none; 

  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #64FE63;
    height: 25px;
    width: 25px;
    background-color: #151919;
  }
  
  /* On mouse-over, add a grey background color */
  .inputContainer:hover input ~ .checkmark {
    background-color: #151919;
  }
  
  /* When the checkbox is checked, add a blue background */
  .inputContainer input:checked ~ .checkmark {
    background-color: #151919;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .inputContainer input:checked ~ .checkmark:after {
    display: inline-block;
  }
  
  /* Style the checkmark/indicator */
  .inputContainer .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  /* Create a custom radio button */
  .radioMark {
    position: absolute;
    top: 0;
    left: 22px;
    height: 25px;
    width: 25px;
    border: 2px solid #64FE63;
    background-color: #151919;
    border-radius: 50%;
  }
  
  /* On mouse-over, add a grey background color */
  .inputContainer:hover input ~ .radioMark {
    background-color: #151919;
  }
  
  /* When the radio button is checked, add a blue background */
  .inputContainer input:checked ~ .radioMark {
    background-color: #151919;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .radioMark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .inputContainer input:checked ~ .radioMark:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .inputContainer .radioMark:after {
       top: 9px;
      left: 9px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: white;
  }


  a {
    color: #64FE63;
  }

  [type=radio] { 
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* IMAGE STYLES */
  [type=radio] + img {
    cursor: pointer;
  }
  
  /* CHECKED STYLES */
  [type=radio]:checked + img {
    outline: 2px solid #f00;
  }

  