/* POLLs */
.poll-buttons > * {
  margin-bottom: 1rem;
}
.poll-layout-one .poll-choice {
  border: 1px solid #536D79;
  display: flex;
  align-items: center;
  padding: .5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
}
.poll-layout-one .poll-choice label {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 24px;
  font-weight: 700;
}
.poll .progress {
  height: 100%;
  width: 100%;
  position: relative;
  background: transparent;
}
.poll .progress-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
  position: relative;
  z-index: 2;
  border-radius: 0;
  align-items: center;
}
.poll-layout-one .poll-choice:hover, .poll-layout-one .poll-choice:focus, .poll-layout-one .poll-choice.selected-choice {
    background: #c2c7c9;
}
.poll-layout-one .progress span {
  content: "";
  position: absolute;
  background-color: #EBEEF0;
  height: 100%;
  border-radius: 0;
  top: 0;
  left: 0;
}
.poll-layout-one .progress p {
  font-weight: 700;
  line-height: 26px;
  font-size: 1rem;
  margin-bottom: 0;
  color: #253137;
}
.poll-layout-one .poll-buttons, .poll-layout-three .poll-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
}
.poll-btn.submit:disabled, .poll-btn.submit[disabled="disabled"], .poll-btn.reset:disabled, .poll-btn.reset[disabled="disabled"] {
    opacity: .5;
    pointer-events: none;
}

/* POLL LAYOUT TWO */
.poll-layout-two .poll-choice {
  border: 1px solid #CED7DB;
  border-radius: 8px;
  padding: .25rem;
  margin-bottom: 1rem;
}
.poll-layout-two .poll-choice.selected-choice, .poll-layout-two .poll-choice:hover, .poll-layout-two .poll-choice:focus {
  border-color: #536D79;
}
.poll-layout-two .poll-choice.selected-choice span.dot {
  background-color: #5C7884;
}
.poll-layout-two .poll-choice.selected-choice span.dot:before {
  float: right !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  padding-right: 5px;
  color: white;
  font-size: 1rem;
  font-style: normal;
}
.poll-layout-two .poll-choice .topic {
  background: transparent;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 0;
}
.poll-layout-two .progress {
  height: unset;
}
.poll-layout-two .rating {
  display: none;
}
.poll-layout-two .progress span.dot {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #CED7DB;
  position: relative;
}
.poll-layout-two .poll-footer {
  display: flex;
  justify-content: space-between;
}
.poll-layout-two .poll-footer .results-btn {
  background: transparent;
  border: none;
  font-size: 1rem;
  color: #5C7884;
  font-weight: 700;
  line-height: 22px;
}
.poll-layout-two .poll-footer .results-btn:hover, .poll-layout-two .poll-footer .results-btn:focus {
  text-decoration: underline;
}
.poll-layout-two .progress-labels .topic-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.poll-layout-two .progress-labels .topic-wrapper .rating {
  margin-left: auto;
}
.poll-layout-two.show-results .progress span.value {
  content: "";
  position: absolute;
  background-color: #EBEEF0;
  height: 100%;
  border-radius: 0;
  top: 0;
  left: 0;
}
.poll-layout-two .progress {
  position: relative;
}
.poll-layout-two.show-results .rating {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 0;
  line-height: 24px;
}
.poll-layout-two.show-results .progress span.dot {
  border-color: #253137;
}

/* Poll Layout Three */
.poll-layout-three .topic , .poll-layout-three .rating {
  font-weight: 700;
  line-height: 30px;
  font-size: 1rem;
}
.poll-layout-three .poll-choice.selected-choice .topic {
  font-size: 1.25rem;
}
.poll-layout-three .progress-bar {
  border-radius: 8px;
  background: #ECECEC;
  height: 10px;
  position: relative;
}
.poll-layout-three .progress-bar span {
  position: absolute;
  background-color: #253137;
  height: 100%;
  border-radius: 8px;
  top: 0;
  left: 0;
}
.poll-layout-three .poll-choice:hover .topic, .poll-layout-three .poll-choice:focus .topic {
    cursor: pointer;
    font-size: 1.125rem;
}
p.voting-success-notice {
  border: 1px solid #e1e1e1;
  padding: .5rem;
  background: #f9f9cd;
}