h1, h2, h3, h4, h5, h6, p, a {
  font-family: 'Open Sans', sans-serif;
}

h5 {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.pspace {
  padding-bottom: 10px;
}

.a-left {
  text-align: left;
}

.a-right {
  text-align: right;
}

.left {
  float: left;
}

.right {
  float: right;
}

.half {
  width: 50%;
}

.two-thirds {
  width: calc(60% - 32px);
  padding: 0 16px;
}

.one-third {
  width: calc(40% - 32px);
  padding: 0 16px;
}

.content {
  height: calc(100vh - 80px);
}

header{
  border-bottom: 1px solid #000;
  overflow: auto;
  height: calc(60px - 1px);
  padding: 16px 0;
}

.inner {
  width: 100%;
  height: 564px;

}

footer {
  border-top: 1px solid #000;
  padding: 16px;
  height: calc(81px - 33px)
}

.button {
  background: #556271;
  /*box-shadow: 0px 1px 3px #9B9B9B;*/
  border-radius: 3px;
  width: calc(187px - 32px);
  padding: 10px; 
}

.button p {
  color: #fff;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
}

/*Start*/

#timer {
  display: inline;
  font-family: 'Open Sans', sans-serif;
  padding-left: 4px;
}

.start_copy {
  margin-top: 50px;
  text-align: center;
}


.start_copy p {
  padding-bottom: 15px;
}

.players {
  background: #F2F2F2;
  width: 100%;
  padding: 6px 0;
  overflow: auto;
}

.players_warning {
  background: #FFC970;
  width: 100%;
  padding: 6px 0;
  overflow: auto;
}

.expand {
  text-align: right;
  color: #00BDD4 !important;
}

/* Inner */

.main {
  width: 100%;
  text-align: center;
}


/* tip */
.tip {
  border-top: 5px solid #FFC970;
  background: #f2f2f2;
  width: 80%;
  margin: 20px auto;
  padding: 16px;
  text-align: left;
}

.safe {
  background: #f2f2f2;
  width: 80%;
  margin: 20px auto;
  padding: 16px;
  text-align: left;
}

.tip .pspace,
.safe .pspace{
  text-align: center;
}

.act {
  padding: 16px 0 20px 0;
}

.act a {
  color: #00BDD4;
  text-transform: uppercase;
}

/** LIGHTBOX MARKUP **/

.lightbox {
  /** Default lightbox to hidden */
  display: none;

  /** Position and style */
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 120%;
  text-align: center;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.6);
}

.lightbox img {
  /** Pad the lightbox image */
  max-width: 90%;
  max-height: 80%;
  margin-top: 150px;
}

.lightbox:target {
  /** Remove default browser outline */
  outline: none;

  /** Unhide lightbox **/
  display: block;
}



