
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}

html {
    font-size:18px;   /* we will dynamically change this based on screen size, and everything else is relative to this as em units */
    color:white;
}

body {
    -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;                  /* prevent copy paste, to allow, change 'none' to 'text' */
    background-color:#689197;
    
    background-attachment:fixed;
    font-family:'HelveticaNeue-Light', 'HelveticaNeue', Helvetica, Arial, sans-serif;
    /*font-family: '6809-Chargen';*/
    height:100%;
    margin:0px;
    padding:0px;
    /*text-transform:uppercase;*/
    width:100%;
}


h1,h2 {
    font-size:3em;
    font-weight:normal;
    margin:0px;
    overflow:visible;
    padding:0px;
    text-align:center;
}

h2 {
  text-align:left;
  font-size:2.2em;
}

.fullScreen {
  position: absolute;
  left:0px; 
  top:0px;
  width:100%;
  height:100%;
  text-align:center;
}

/* Positions */
.topLeft, .topRight, .bottomLeft, .bottomRight, .rightSide, .leftSide, .center, .bottom {
  position: absolute; }

.topLeft {
  left: 0;
  top: 0;
  }

.topRight {
  right: 0;
  top: 0;
  }

.bottomLeft {
  left: 8px;
  bottom: 8px;
  }

.bottomRight {
  right: 30px;
  bottom: 30px;
  }

.rightSide {
  right: 0;
  height: 100%;
   }

.leftSide {
  left: 0;
  height: 100%;
  }

.center {
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  width: 80%;
  margin: auto;
  top: 25%;
  left: 50%;
  text-align: center; }


.topCentre {
  position: absolute;
  width: 100%; 
  height: 40px;
  margin:0px auto ;
  text-align: center;
  }

.bottomCentre {
  position: absolute;
  width: 100%;
  margin:0px auto ;
  text-align: center;
  bottom: 30px;
  }

.dragTarget {
  font-size: 3em;
  background-color: #33647a;
  padding: 1em;
}

.questionsLeft {
  font-size: 1.5em;
  background-color: #689197;
  padding: 0.75em;
}

/* Buttons */

.btn {
  border-radius: 0.333em;
  padding: 0.25em 0.208em;
  font-size: 1.5em;
  text-decoration: none;
  margin: 0.25em;
  color: #fff;
  position: relative;
  display: inline-block;
  min-width: 11em;
  text-align: center;
}

.btn:active {
  transform: translate(0em, 0.25em);
  -webkit-transform: translate(0em, 0.25em);
  box-shadow: 0em 0.0833em 0em 0em;
}

.blue {
  background-color: #55acee;
  box-shadow: 0em 0.25em 0em 0em #3C93D5;
}

.blue:hover {
  background-color: #6FC6FF;
}

.green {
  background-color: #2ecc71;
  box-shadow: 0em 0.25em 0em 0em #15B358;
}

.green:hover {
  background-color: #48E68B;
}

.red {
  background-color: #e74c3c;
  box-shadow: 0em 0.25em 0em 0em #CE3323;
}

.red:hover {
  background-color: #FF6656;
}

.purple {
  background-color: #9b59b6;
  box-shadow: 0em 0.25em 0em 0em #82409D;
}

.purple:hover {
  background-color: #B573D0;
}

.orange {
  background-color: #e67e22;
  box-shadow: 0em 0.25em 0em 0em #CD6509;
}

.orange:hover {
  background-color: #FF983C;
}

.yellow {
  background-color: #f1c40f;
  box-shadow: 0em 0.25em 0em 0em #D8AB00;
}

.yellow:hover {
  background-color: #FFDE29;
}

.disabled {
  background-color: #bbbbbb;
  box-shadow: 0em 0.25em 0em 0em #888888;
}

/* Tables */

table {
    border-collapse: collapse;
    width: 90%;
    margin: auto;
    border: 1px solid black;
}

td, th {
    border: 1px solid #ddd;
    padding: 0.15em;
    font-size: 1.75em;
}

tr:nth-child(even){background-color: rgba(100,100,100,0.5);}
tr:nth-child(odd){background-color: rgba(0,0,0,0);}

th {
    padding-top: 0.5833em;
    padding-bottom: 0.5833em;
    text-align: center;
    background-color: #4CAF50;
    color: white;
}

.invis {
  border: 0px;
  background-color: rgba(0,0,0,0);
}

input, textarea {
    /*font-family: '6809-Chargen'; */
    font-size:1em;
    color: white;
    background-color:  rgba(0,0,0,0);
    text-align:left;
}

.ellipsis {
    position: relative;
}
.ellipsis:before {
    content: '&nbsp;';
    visibility: hidden;
}
.ellipsis span {
    position: absolute;
    left: 0;
    right: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.imgAlign {
  vertical-align:middle;
}

a { color:white; }

p { 
    font-size:1.25em; 
    text-align:justify;
    padding-left:2em;
    padding-right:2em;
}

.alertMsg {
    font-size:2em; 
    text-align:center;
    padding-left:2em;
    padding-right:2em;
}

/* Radio buttons */
/* The container */
.container {
    display: inline;
    position: relative;
    padding-left: 35px;
    padding-right: 50px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.75em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

