#totalpoll-presets {
  box-sizing: border-box;
  margin: 20px 20px 0 2px;
}
#totalpoll-presets *, #totalpoll-presets *::before, #totalpoll-presets *::after {
  box-sizing: inherit;
}
#totalpoll-presets h1, #totalpoll-presets h2, #totalpoll-presets h3, #totalpoll-presets h4, #totalpoll-presets h5, #totalpoll-presets h6, #totalpoll-presets p {
  margin: 0 0 16px;
}
#totalpoll-presets p {
  color: #777;
}
#totalpoll-presets .totalpoll-title {
  font-size: 23px;
  font-weight: 400;
  margin: 0;
  padding: 9px 0 4px 0;
  line-height: 1.3;
}
#totalpoll-presets .totalpoll-row {
  display: flex;
  flex-flow: row wrap;
  margin-left: -2px;
  margin-right: -2px;
}
#totalpoll-presets .totalpoll-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
#totalpoll-presets .totalpoll-list-label {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: auto;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bold;
  background-color: #333;
  color: #fff;
}
#totalpoll-presets .totalpoll-list-item {
  display: flex;
  flex-flow: row nowrap;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 3px;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  background-color: #f7f7f7;
}
#totalpoll-presets .totalpoll-list-item.is-active {
  border-color: #0073aa;
  background-color: rgba(0, 115, 170, 0.05);
  color: #0073aa;
}
#totalpoll-presets .totalpoll-list-item.has-failed {
  border-color: #f44336;
  background-color: rgba(244, 67, 54, 0.05);
  color: #f44336;
}
#totalpoll-presets .totalpoll-list-item.is-success {
  border-color: #00AA7B;
  background-color: rgba(0, 170, 123, 0.05);
  color: #00AA7B;
}
#totalpoll-presets .totalpoll-list.is-presets .totalpoll-list-item.is-active.is-hard {
  border-color: #f44336;
  background-color: rgba(244, 67, 54, 0.05);
  color: #f44336;
}
#totalpoll-presets .totalpoll-list.is-presets .totalpoll-list-item.is-active.is-soft {
  border-color: #00AA7B;
  background-color: rgba(0, 170, 123, 0.05);
  color: #00AA7B;
}
#totalpoll-presets .totalpoll-list.is-presets .totalpoll-list-item.is-soft .totalpoll-list-label {
  background-color: #00AA7B;
}
#totalpoll-presets .totalpoll-list.is-presets .totalpoll-list-item.is-hard .totalpoll-list-label {
  background-color: #f44336;
}
#totalpoll-presets .totalpoll-text {
  font-size: 16px;
}
#totalpoll-presets .totalpoll-column {
  display: flex;
  align-self: stretch;
  flex: 1 0 33.333333%;
  padding-left: 2px;
  padding-right: 2px;
}
#totalpoll-presets .totalpoll-column-content {
  width: 100%;
  align-self: stretch;
  background-color: white;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.01);
}
#totalpoll-presets .totalpoll-column-content.is-disabled {
  opacity: 0.5;
}
#totalpoll-presets .totalpoll-column-header, #totalpoll-presets .totalpoll-column-body {
  padding: 24px;
}
#totalpoll-presets .totalpoll-column-header {
  border-bottom: 1px solid #f5f5f5;
}
#totalpoll-presets .totalpoll-column-title {
  display: flex;
  margin: 0;
  font-size: 20px;
  font-weight: normal;
  color: #444;
}
#totalpoll-presets .totalpoll-column-title small {
  margin-left: auto;
  font-size: 75%;
}
#totalpoll-presets .totalpoll-column:first-child .totalpoll-column-content {
  border-radius: 8px 0 0 8px;
}
#totalpoll-presets .totalpoll-column:last-child .totalpoll-column-content {
  border-radius: 0 8px 8px 0;
}
#totalpoll-presets .totalpoll-presets-processing {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
}
#totalpoll-presets .totalpoll-progress {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  height: 8px;
  width: 100%;
  background-color: #f5f5f5;
  margin-bottom: 8px;
}
#totalpoll-presets .totalpoll-progress-container {
  text-align: center;
  margin-bottom: 16px;
}
#totalpoll-presets .totalpoll-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  background-color: #0073aa;
  transition: width 500ms linear;
}
#totalpoll-presets .totalpoll-progress-counter {
  font-weight: bold;
  color: #0073aa;
}
#totalpoll-presets .totalpoll-loading {
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  height: 100%;
  width: 100%;
  font-size: 24px;
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#totalpoll-presets .totalpoll-loading-spinner {
  font-size: 5px;
  margin: 50px auto;
  text-indent: -9999em;
  width: 11em;
  height: 11em;
  border-radius: 50%;
  background: #0073aa;
  background: -moz-linear-gradient(left, #0073aa 10%, rgba(0, 115, 170, 0) 42%);
  background: -webkit-linear-gradient(left, #0073aa 10%, rgba(0, 115, 170, 0) 42%);
  background: -o-linear-gradient(left, #0073aa 10%, rgba(0, 115, 170, 0) 42%);
  background: -ms-linear-gradient(left, #0073aa 10%, rgba(0, 115, 170, 0) 42%);
  background: linear-gradient(to right, #0073aa 10%, rgba(0, 115, 170, 0) 42%);
  position: relative;
  animation: load3 1.4s infinite linear;
  transform: translateZ(0);
}
#totalpoll-presets .totalpoll-loading-spinner:before {
  width: 50%;
  height: 50%;
  background: #0073aa;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
#totalpoll-presets .totalpoll-loading-spinner:after {
  background: white;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}