@charset "UTF-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0; }

body {
  margin: 20px;
  background: #e1e5cd;
  text-align: center;
  background-image: url(https://images.unsplash.com/photo-1463947628408-f8581a2f4aca?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80);
  background-size: cover;
  background-repeat: no-repeat; }

h1 {
  font-family: 'Bungee Shade', cursive;
  font-size: 3em;
  text-transform: uppercase;
  position: absolute;
  top: 20px;
  left: 20px; }

div.pool {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden; }

div#usercode {
  width: 350px;
  position: absolute;
  right: 20px;
  background-color: rgba(155, 155, 155, 0.59);
  padding: 20px; }
  div#usercode div.form-group {
    display: flex;
    flex-direction: row; }
    div#usercode div.form-group label {
      width: 200px;
      text-align: left; }

div#stats {
  width: 350px;
  top: 200px;
  position: absolute;
  right: 20px;
  background-color: rgba(155, 155, 155, 0.59);
  padding: 20px;
  text-align: left; }
  div#stats span.label {
    width: 200px;
    display: inline-block; }
  div#stats span.value {
    font-weight: bold; }

div#tabs_info {
  width: 350px;
  top: 320px;
  right: 20px;
  position: absolute;
  text-align: left; }
  div#tabs_info a.tabs_item {
    padding: 5px 10px;
    background-color: rgba(155, 155, 155, 0.59);
    font-size: 12px;
    text-transform: uppercase; }
    div#tabs_info a.tabs_item:link, div#tabs_info a.tabs_item:visited {
      color: #CCC;
      text-decoration: none; }
  div#tabs_info .tab_selected {
    color: #000 !important; }

div#instructions {
  width: 350px;
  top: 345px;
  position: absolute;
  right: 20px;
  background-color: rgba(155, 155, 155, 0.59);
  padding: 20px;
  text-align: left; }
  div#instructions h3 {
    font-size: 0.9em;
    border-bottom: solid 1px #000; }
  div#instructions ol li {
    margin-left: 20px; }
  div#instructions a:link, div#instructions a:visited {
    color: #FFF;
    text-decoration: none; }
  div#instructions a:focus, div#instructions a:hover {
    border-bottom: dotted 1px #FFF; }

div#winners {
  display: none;
  width: 350px;
  top: 345px;
  position: absolute;
  right: 20px;
  background-color: rgba(155, 155, 155, 0.59);
  padding: 20px;
  text-align: left; }
  div#winners h3 {
    font-weight: normal;
    font-size: 1.0em;
    border-bottom: solid 1px #000; }
  div#winners ul li {
    list-style: none;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: dotted 1px #333; }
    div#winners ul li div.info span.name {
      font-size: 0.8em;
      font-weight: bold;
      margin-right: 15px; }
    div#winners ul li div.info span.date {
      font-size: 0.8em; }
    div#winners ul li div.prize span.prize_name {
      font-weight: bold;
      margin-right: 15px; }

#basicExampleModal {
  position: absolute;
  top: 20px;
  right: 40px; }

div.balloon {
  display: inline-block;
  width: 120px;
  height: 145px;
  background: #333333;
  border: solid 1px #333333;
  border-radius: 80%;
  position: absolute;
  box-shadow: inset -10px -10px 0 rgba(0, 0, 0, 0.07);
  margin: 20px 30px;
  transition: translate(20px, 10px), transform 0.5s ease;
  z-index: 10;
  transform-origin: bottom center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%; }
  div.balloon:hover {
    cursor: pointer;
    z-index: 20; }
  div.balloon:before {
    content: "▲";
    font-size: 20px;
    color: #73a659;
    display: block;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: -12px;
    z-index: -100; }
  div.balloon:after {
    display: inline-block;
    top: 153px;
    position: absolute;
    height: 250px;
    width: 1px;
    margin: 0 auto;
    content: "";
    background: rgba(0, 0, 0, 0.2); }

div.b_sml {
  width: 64px;
  height: 96px; }
  div.b_sml:after {
    top: 100px; }

div.b_med {
  width: 120px;
  height: 174px; }
  div.b_med:after {
    top: 175px; }

div.b_lrg {
  width: 150px;
  height: 242px; }
  div.b_lrg:after {
    top: 245px; }

div.b_null {
  background: #777777 !important; }

@keyframes balloons {
  0%,100% {
    transform: translateY(0) rotate(-4deg); }
  50% {
    transform: translateY(-25px) rotate(4deg); } }
#responseImage {
  border: solid 1px #666; }
