/* --------------------------------------------------
   Table of Contents
-----------------------------------------------------
:: Shared Styles
:: Home Page
:: Game Page
:: Media Queries
*/


/* -----------------------------------------
   Shared Styles
----------------------------------------- */
html, body {
  height: 100%;
}
.callout {
  padding: 70px 0 80px 0;
}
header {
  background-color: rgb(137,204,224);
  background-image: linear-gradient(left bottom, rgb(137,204,224) 50%, rgb(43,166,203) 86%);
  background-image: -o-linear-gradient(left bottom, rgb(137,204,224) 50%, rgb(43,166,203) 86%);
  background-image: -moz-linear-gradient(left bottom, rgb(137,204,224) 50%, rgb(43,166,203) 86%);
  background-image: -webkit-linear-gradient(left bottom, rgb(137,204,224) 50%, rgb(43,166,203) 86%);
  background-image: -ms-linear-gradient(left bottom, rgb(137,204,224) 50%, rgb(43,166,203) 86%);
  background-image: -webkit-gradient(  linear,  left bottom,  right top,  color-stop(0.5, rgb(137,204,224)),  color-stop(0.86, rgb(43,166,203)) );
}
header h1 {
  font-size: 120px;
  margin: 0 0 20px 0;
  text-shadow: 0 -1px #2ba6cb;
  filter: dropshadow(color=#e6e6e6, offx=0, offy=0);
  color: #fff;
}
header h2 {
  max-width: 1100px;
  margin: 0.2em auto 0.5em;
  color: #fff;
  font-size: 40px;
  font-weight: 200;
}
.social-container {
  background-color: #f5f5f5;
  margin-bottom: -0.1px;
  padding: 15px 0 15px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #ddd;
}
.row .row {
  margin-right: 0 !important;
}
.nav {
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.side-nav.sticky{
  left: auto;
  top: 50px;
  margin-top: 45px;
}
.side-nav {
  z-index: 97;
}
.side-nav li a {
  margin: 0 0 -1px;
  padding: 8px 14px;
  border-left: 4px solid #E5E5E5;
}
.side-nav > li > a.active {
  border-left: 4px solid #A8A8A8;
}
header .twelve {
  margin: 35px 0 35px;
}
.wrapper {
  background: #111;
  min-height: 45px;
  width: 100%;
}
.top-bar-section ul li span > a {
  display: block;
  width: 100%;
  padding: 12px 0 12px 15px;
  color: #fff;
  font-size: 0.8125em;
  font-weight: bold;
  background: #333;
}
footer {
  max-width: 100%;
  margin-top: 70px !important;
  padding: 70px 0;
  background: #E7E7E7;
}
.gbanner img {
  z-index: 97;
}
::selection {
  background: rgb(61, 190, 231);
  color: #fff;
}
::-moz-selection {
  background: rgb(61, 190, 231);
  color: #fff;
}

/* -----------------------------------------
   Home Page
----------------------------------------- */
.content section {
  padding-top: 35px;
}
.section_head h1 {
  font-size: 36px;
  line-height: 40px;
}
.section_head {
  padding-bottom: 9px;
  margin: 20px 0 30px;
  border-bottom: 1px solid #eee;
}
.intro {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 200;
  line-height: 30px;
}

/* -----------------------------------------
   Game Page
----------------------------------------- */
.nav-bar-fixed {
  left: auto;
  position: fixed;
  top: 75px;
}
.content_load {
  margin-top: 70px;
}
.game .large-7 {
  width: 600px;
  height: 600px;
}
.game h3 {
  margin-bottom: 0;
}
.social {
  margin-bottom: 0.5em;
}
.submit-button {
  margin-top: 15px;
}
select{
  margin-bottom: 15px;
}
/* -----------------------------------------
   Team Page
----------------------------------------- */
.person h3 h6 {
  margin-bottom: 0;
}
/* -----------------------------------------
   Thanks Page
----------------------------------------- */
.thanks h3 {
    color: #2ba6cb;
}
.time {
    color: #CB2B2B;
}
.thanks .panel {
    padding: 35px;
    margin: 30px 0 30px;
}
.social-list {
    line-height: 1;
}
.social-list li {
    margin: 0 6px;
}
.twitter-share-button {
    min-width: 70px !important; 
}

/* -----------------------------------------
   Media Queries
----------------------------------------- */
@media only screen and (max-width: 768px) {
  .gbanner {
    display: none;
  }
  .side-nav {
    display: none;
  }
  #title {
    font-size: 50px;
  }
  header h2 {
    font-size: 32px;
  }
  .content {
    width: 100% !important;
  }
}
@media only screen and (min-height: 900px) {
  footer.sticky-bottom {
    margin-top: 174px !important;
  }
}