.voting > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.voting .voting-entry {
  position: relative;
  margin: 0 0 10px;
  display: block;
  max-width: 100%;
  overflow-x: hidden;
}
.voting .voting-entry .img-container {
  width: 100%;
  position: relative;
}
.voting .voting-entry .img-container > img {
  width: 100%;
  display: block;
}
.voting .voting-entry .sharing {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  min-height: 100%;
  box-sizing: border-box;
  background: rgba(0,0,0,0.8);
  color: #fff;
  z-index: 2;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.voting .voting-entry .sharing > * {
  padding-left: 30px;
  padding-right: 30px;
  margin: 15px 0;
}
.voting .voting-entry .sharing .close {
  color: inherit;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  margin: 0;
  font-size: 2em;
  line-height: 30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.voting .voting-entry .sharing .close:hover {
  opacity: 0.7;
}
.voting .voting-entry .sharing .message {
  font-size: 1.7em;
  font-family: Taz_SemiBold, sans-serif;
  color: inherit;
  display: none;
}
.voting .voting-entry .sharing .message:empty {
  display: none !important;
}
.voting .voting-entry .sharing .content {
  font-size: 1.3em;
  color: inherit;
}
.voting .voting-entry .sharing .content:empty {
  display: none;
}
.voting .voting-entry .sharing .share {
  background-color: rgba(255,255,255,0.2);
  padding-top: 20px;
  padding-bottom: 10px;
  margin: 0;
  color: inherit;
}
.voting .voting-entry .sharing .share > span {
  display: block;
  margin-bottom: 10px;
  font-size: 1.3em;
  color: inherit;
}
.voting .voting-entry .sharing .share > span.share-btn {
  display: inline-block;
  font-size: 2.5em;
  margin: 10px 8px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.voting .voting-entry .sharing .share > span.share-btn:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.voting .voting-entry .sharing .share > span.share-btn:hover.facebook {
  color: #3b5998;
}
.voting .voting-entry .sharing .share > span.share-btn:hover.twitter {
  color: #55acee;
}
.voting .voting-entry .sharing .share > span.share-btn:hover.google {
  color: #dd4b39;
}
.voting .voting-entry .sharing .share > span.share-btn:hover.pinterest {
  color: #cc2127;
}
.voting .voting-entry.has-voted .sharing .message {
  display: block;
}
.voting .voting-entry.show-sharing .sharing {
  left: 0;
  opacity: 1;
}
.voting .voting-entry .text {
  padding: 10px;
  border: 1px solid #e7e7e7;
  border-top: none;
  word-wrap: break-word;
}
.voting .voting-entry .text ul,
.voting .voting-entry .text ol {
  padding-left: 40px;
}
.voting .voting-entry .text ul li {
  list-style-type: disc;
}
.voting .voting-entry .text ul,
.voting .voting-entry .text ol,
.voting .voting-entry .text p {
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1.4;
}
.voting .voting-entry .text ul:last-child,
.voting .voting-entry .text ol:last-child,
.voting .voting-entry .text p:last-child {
  margin-bottom: 0;
}
.voting .voting-entry .text a {
  color: #e2194c;
}
.voting .voting-entry .controls {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #000;
  background: rgba(0,0,0,0.18);
  border-radius: 4px;
  color: #fff;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.voting .voting-entry .controls:hover:after {
  background: #555;
  background: rgba(0,0,0,0.4);
}
.voting .voting-entry .controls:active:after {
  background: rgba(0,0,0,0.5);
}
.voting .voting-entry .controls:after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  border-radius: 4px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.voting .voting-entry .controls.vote:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\f110';
  color: #e7e7e7;
  line-height: 25px;
  height: 25px;
  display: inline-block;
  width: 0;
  overflow: hidden;
  vertical-align: middle;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.voting .voting-entry .controls.vote .voteCount {
  height: 25px;
  line-height: 25px;
  padding: 0 7px;
  display: inline-block;
  vertical-align: middle;
}
.voting .voting-entry .controls.vote .voteCount:after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\f08a';
  font-size: 0.9em;
  margin-left: 8px;
}
.voting .voting-entry .controls .btn {
  height: 25px;
  line-height: 25px;
  padding: 0 7px;
  display: inline-block;
  font-size: 0.9em;
  vertical-align: middle;
}
.voting .voting-entry .controls .btn:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\f00c';
  font-size: 0.9em;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  overflow: hidden;
  max-width: 0;
  vertical-align: middle;
}
.voting .voting-entry .controls.light {
  background: #fff;
  border: 1px solid #e7e7e7;
  color: #555;
}
.voting .voting-entry .controls.light:hover:after {
  background: #eee;
  background: rgba(0,0,0,0.05);
  border-radius: 0 4px 4px 0;
}
.voting .voting-entry .controls.light:active:after {
  background: rgba(0,0,0,0.1);
}
.voting .voting-entry .controls.light.vote:before {
  color: #555;
}
.voting .voting-entry .text .controls {
  position: relative;
  top: 0;
  left: 0;
  float: right;
  margin: 10px 0 0 10px;
}
.voting .voting-entry .text .controls.share {
  float: left;
  margin: 10px 10px 0 0;
}
.voting .voting-entry.loading .controls.vote {
  pointer-events: none;
}
.voting .voting-entry.loading .controls.vote:before {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  width: 15px;
  opacity: 1;
  margin-left: 7px;
}
.voting .voting-entry.has-voted .controls.vote .voteCount:after {
  color: #e2194c;
  content: '\f004';
}
.voting .voting-entry.has-voted .controls.vote .vote {
  opacity: 0.5;
}
.voting .voting-entry.has-voted .controls.vote .vote:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 5px;
  max-width: 15px;
  line-height: 25px;
  vertical-align: middle;
}
.voting.voting-disabled .controls {
  cursor: default;
}
.voting.voting-disabled .controls:after {
  display: none;
}
.voting.voting-disabled .controls .vote {
  display: none;
}
@media (min-width: 64em) {
  .grid-1 > .cols-1 .voting > ul {
    margin: -7px;
  }
  .grid-1 > .cols-1 .voting > ul .voting-entry {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding: 7px;
  }
}
