@import url(//fonts.googleapis.com/css?family=Oswald:400,Lato:400,700);
* {
  margin: 0;
  padding: 0;
}

body {
  background: #f5f5f5;
  font-family: "Oswald", "Helvetica Newe", Helvetica, sans-serif;
}

.myclear:after {
  content: "";
  display: table;
  clear: both;
}

#container {
  margin: 30px auto;
  max-width: 960px;
  width: 95%;
}
#container #myheader {
  text-align: center;
}
#container #myheader h1 {
  margin-bottom: 10px;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: baseline;
}

.movie-list:first-child li {
  vertical-align: top;
}
.movie-list:last-child li {
  vertical-align: bottom;
}
.movie-list li {
  box-sizing: border-box;
  display: inline-block;
  margin: 0 15px 15px 0;
  text-align: center;
  width: 144px;
}
.movie-list li:last-child {
  margin-right: 0;
}
.movie-list li label {
  cursor: pointer;
  display: block;
  position: relative;
}
.movie-list li label img {
  border: 2px solid transparent;
  box-sizing: border-box;
  max-height: 100%;
  padding: 2px;
  position: relative;
  -webkit-transition: -webkit-transform .3s;
          transition: transform .3s;
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
}
.movie-list li label img:hover {
  -webkit-transform: scale(2, 2);
      -ms-transform: scale(2, 2);
          transform: scale(2, 2);
  z-index: 10;
}
.movie-list li label img.selected {
  border: 2px solid red;
}
.movie-list li input[type="radio"] {
  position: absolute;
  top: 50%;
  left: 50%;
  visibility: hidden;
  z-index: -1;
}

#poll_vote #movie-list-container {
  margin-bottom: 30px;
}
#poll_vote label.error {
  color: #FF4040;
}
#poll_vote input[type="text"],
#poll_vote input[type="email"],
#poll_vote input[type="submit"] {
  box-sizing: border-box;
  font-size: 16px;
}
#poll_vote input[type="text"],
#poll_vote input[type="email"] {
  height: 35px;
  padding: 3px 10px;
  width: 65%;
}
#poll_vote td {
  height: 35px;
  padding: 5px;
  vertical-align: middle;
}
#poll_vote input[type="submit"] {
  color: #FFFFFF;
  cursor: pointer;
  border: none;
  background-color: #062538;
  padding: 10px 15px;
  text-align: center;
  width: 200px;
}
#poll_vote input[type="submit"]:hover {
  background-color: #0c76b7;
}

#pieChart,
#movie-percentages {
  box-sizing: border-box;
  float: left;
  width: 50%;
}

#movie-percentages {
  padding: 50px;
}
#movie-percentages p {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
}
#movie-percentages p > span {
  float: right;
  font-weight: 700;
}
