/**
 * Variable Suffix Meanings
 *
 * _f = fill
 * _t = transparency
 * _l = line
*/
/*
Placeholder
*/
/*
* Dotted Border - A SASS mixin to help you increase spacing between the dots of border-style:dotted.
* By @florbraz
* Documentation and examples - github.com/florbraz/Dotted-Border-w-custom-spacing-SCSS-Mixin
* V1.0
*/
/*
* Function to effect of newsletter message box
*/
@-webkit-keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }
  to {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }
  to {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@-webkit-keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  to {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}
@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  to {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}
/**
 * Mixin for animation e Keyframes
 */
/**
 * Gradients
 */
/**
 * COMO UTILIZAR
 *
 * background-image: icon(heart, transparent, red, 2);
 */
.poll-001 {
  display: flex;
  flex-direction: column;
  border-bottom: solid 1px rgba(137, 228, 201, 0.6);
}
.poll-001__options {
  display: flex;
  flex-direction: column;
  margin-left: 0;
  list-style-type: none;
}
.poll-001__option {
  display: flex;
  justify-content: space-between;
}
.poll-001__stars {
  display: flex;
  flex-direction: row-reverse;
}
.poll-001__star svg path {
  stroke: rgb(12, 12, 12);
  fill: transparent;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.poll-001__star.selected svg path {
  fill: rgb(12, 12, 12);
}
.poll-001__star.selected ~ * svg path {
  fill: rgb(12, 12, 12);
}
.poll-001__submit {
  display: none;
  float: right;
  margin-bottom: 32px;
}
.poll-001__message {
  margin-bottom: 32px;
  color: rgb(12, 12, 12);
}
.poll-001:not(.voted) .poll-001__star {
  cursor: pointer;
}
.poll-001:not(.voted) .poll-001__star:hover svg path, .poll-001:not(.voted) .poll-001__star.selected svg path {
  fill: rgb(12, 12, 12);
}
.poll-001:not(.voted) .poll-001__star:hover ~ * svg path, .poll-001:not(.voted) .poll-001__star.selected ~ * svg path {
  fill: rgb(12, 12, 12);
}
.poll-001:not(.voted) .poll-001__submit {
  display: inherit;
  cursor: pointer;
}
.poll-001:not(.voted) .poll-001__message {
  display: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  font-family: "RedHatDisplay-Regular";
}

.poll-002 {
  padding: 32px 0;
  border-bottom: solid 1px rgba(137, 228, 201, 0.6);
}
.poll-002__choices {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.poll-002__choices .poll-002__choice {
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0 16px;
  border: rgb(12, 12, 12) 1px solid;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: background-color 250ms ease-in-out;
  -moz-transition: background-color 250ms ease-in-out;
  -ms-transition: background-color 250ms ease-in-out;
  -o-transition: background-color 250ms ease-in-out;
  transition: background-color 250ms ease-in-out;
}
.poll-002__choices .poll-002__choice input[type=radio] {
  display: none;
  cursor: default;
}
.poll-002__choices .poll-002__choice label {
  width: 100%;
  padding: 16px;
  cursor: default;
}
.poll-002__choices .poll-002__choice .poll-002__percentage-bar {
  position: absolute;
  z-index: -1;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgb(12, 12, 12);
  border-radius: 14px;
  -webkit-transition: width 250ms ease-in-out;
  -moz-transition: width 250ms ease-in-out;
  -ms-transition: width 250ms ease-in-out;
  -o-transition: width 250ms ease-in-out;
  transition: width 250ms ease-in-out;
}
.poll-002__choices .selected {
  background-color: rgb(192, 192, 192);
}
.poll-002__vote {
  display: none;
}
.poll-002:not(.voted) .poll-002__choices .poll-002__choice {
  cursor: pointer;
}
.poll-002:not(.voted) .poll-002__choices .poll-002__choice:hover {
  background-color: rgb(192, 192, 192);
  -webkit-transition: background-color 250ms ease-in-out;
  -moz-transition: background-color 250ms ease-in-out;
  -ms-transition: background-color 250ms ease-in-out;
  -o-transition: background-color 250ms ease-in-out;
  transition: background-color 250ms ease-in-out;
}
.poll-002:not(.voted) .poll-002__choices .poll-002__choice.selected {
  background-color: rgb(192, 192, 192);
  -webkit-transition: background-color 250ms ease-in-out;
  -moz-transition: background-color 250ms ease-in-out;
  -ms-transition: background-color 250ms ease-in-out;
  -o-transition: background-color 250ms ease-in-out;
  transition: background-color 250ms ease-in-out;
}
.poll-002:not(.voted) .poll-002__choices .poll-002__choice .poll-002__percentage-label {
  display: none;
}
.poll-002:not(.voted) .poll-002__choices .poll-002__choice input[type=radio], .poll-002:not(.voted) .poll-002__choices .poll-002__choice label {
  cursor: pointer;
}
.poll-002:not(.voted) .poll-002__vote {
  display: inherit;
  float: right;
  margin-bottom: 32px;
  cursor: pointer;
}
.poll-002__message {
  margin-bottom: 0;
  color: rgb(12, 12, 12);
}

/*# sourceMappingURL=style.css.map */
