/*
Project: 15-16_27
Activity: Unit 4 - Literacy Starter - Syllable Balance
Author: Richy Thomas
*/

.scales {
  margin: 100px auto;
  padding-top: 50px;
  width: 700px;
}

.arrow-up {
  border-bottom: 75px solid rgba(0, 0, 0, 1);
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  height: 0;
  margin: 0 auto;
  width: 0;
}

.horizontal-rod {
  background: rgba(0, 0, 0, 1);
  height: 10px;
  margin: 0 auto;
  transition: all 0.5s ease;
  width: 700px;
}

.balls {
  clear: both;
  height: 120px;
  width: 100%;
}

.ball {
  background: rgba(92,107,192, 1);
  border-radius: 50%;
  border: none;
  color: rgba(255,255,255,1);
  font-size: 20px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  transition: all 0.5s ease;
  width: 120px;
}

.ball-left {
  float: left;
}

.ball-right {
  float: right;
}

.ball-equal {
  background: rgba(46,125,50,1);
}

.ball-unequal {
  background: rgba(183,28,28,1);
}

.ball-light {
  margin-top: -80px;
  transition: all 0.5s ease;
}

.ball-heavy {
  margin-top: 74px;
  transition: all 0.5s ease;
}

.weight-right {
  transform: rotate(15deg);
  transition: all 0.5s ease;
  -ms-transform: rotate(15deg);
  -webkit-transform: rotate(15deg);
}

.weight-left {
  transform: rotate(-15deg);
  transition: all 0.5s ease;
  -ms-transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
}

#activity-results {
  display: none;
}

#activity-results h3 {
  margin-bottom: 20px;
}


/* Tablet */
@media(min-width: 768px){

  .scales {
    width: 600px;
  }

  .horizontal-rod {
    width: 600px;
  }

  .ball-light {
    margin-top: -66px;
  }

  .ball-heavy {
    margin-top: 62px;
  }

}

/* Desktop */
@media(min-width:992px){

  .scales {
    width: 700px;
  }

  .horizontal-rod {
    width: 700px;
  }

  .ball-light {
    margin-top: -80px;
  }

  .ball-heavy {
    margin-top: 74px;
  }

}

/* Large Desktop */
@media(min-width:1200px){


}

/* Print */
@media print {

  #logo-biology {
    display: none;
  }

  #activity-intro {
    display: none;
  }

  #activity-results h3 {
    display: none;
  }

  #activity-results .well {
    border: none;
  }

   #penToolBtn {
    display: none;
  }

  #particles-js {
    height: 100px;
  }

  #copyright {
    text-align: left;
  }

  .content-top {
    display: none;
  }

  footer {
    display: none;
  }


}