/* WP POLLS */
.post-content .wp-polls {
  width: 640px;
  display: block;
  margin: 30px auto;
  padding: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}
.post-content .wp-polls input.Buttons {
  margin: 10px 0;
  padding: 10px 30px;
  text-transform: uppercase;
  font-weight: 400;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  transition: all 0.3s ease-in-out 0s;
}
.post-content .wp-polls input.Buttons:hover {
  background: #AF000B;
  border-color: #AF000B;
}
.post-content .wp-polls p > a {
  color: #999;
  font-weight: 400;
}
.post-content .wp-polls p > a:hover {
  color: #000;
}
.post-content .wp-polls .wp-polls-ul {
  border-top: 1px solid #eee;
}
.post-content .wp-polls .wp-polls-ul li {
  margin: 0;
  padding: 10px 0;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}
.post-content .wp-polls .wp-polls-ul li small {
  font-weight: 300;
}
.post-content .wp-polls .wp-polls-ul li i {
  font-style: normal;
}
.post-content .wp-polls .wp-polls-ul li .pollbar {
  background: #AF000B;
  border: none;
}
.post-content .wp-polls .wp-polls-ul li input[type=radio] + label {
  font-size: 1rem;
  color: #000;
  cursor: pointer;
  display: block;
}
.post-content .wp-polls .wp-polls-ul li input[type=radio] + label:before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  margin-right: 8px;
  border-radius: 3px;
  transition: background 0.3s ease-in-out 0s;
}
.post-content .wp-polls .wp-polls-ul li input[type=radio] + label:hover {
  color: #AF000B;
}
.post-content .wp-polls .wp-polls-ul li input[type=radio] + label:hover:before {
  background: #f4f4f4;
}
.post-content .wp-polls .wp-polls-ul li input[type=radio]:checked + label {
  font-weight: 600;
}
.post-content .wp-polls .wp-polls-ul li input[type=radio]:checked + label:before {
  background: #AF000B;
  border-color: #AF000B;
}
