.container {
  width: auto;
  max-width: 800px;
  padding: 0 15px;
}

.vote {
  position: relative;
  padding: 45px 15px 15px;
  border-style: solid;
  border-color: #ddd;
  border-width: 1px;
  border-radius: 4px 4px 0 0;
}

.vote:after {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 12px;
  font-weight: 700;
  color: #959595;
  text-transform: uppercase;
  letter-spacing: 1px;
  content: "Poll"
}

.result {
  margin-top: 5em;
  margin-bottom: 5em;
}

.separator {
  margin-top: 5em;
}

.footer {
  margin-top: 5em;
}

/* Results, inspired by TheGuardian */
.summary {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
  clear: both;
  overflow: hidden;
}

.segment {
  position: relative;
  float: left;
  height: 60px;
  line-height: 60px;
  box-sizing: border-box;
  text-align: center;
  font-size: 16px;
}

.remain {
  background-color: #ffe900;
}

.leave {
  background-color: #16b5e5;
}

.mid {
  position: relative;
  clear: both;
  text-align: center;
  font-size: 13px;
  line-height: 18px;
  color: #000;
  padding-top: 8px;
}

.mid:before {
  content: '';
  display: block;
  position: absolute;
  border: 0;
  border-left: 1px solid #000;
  left: 50%;
  top: 0;
  height: 8px;
}