.election-results {
  margin: 2rem auto;
}
.election-results.is-admin {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  background-color: white;
  border: 1px solid #6601FF;
  border-radius: 8px;
  font-size: 1.4rem !important;
  font-weight: bold;
  line-height: 1.4;
  color: #6601FF;
  text-transform: uppercase;
}

.election-card {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  min-height: 1px;
  margin-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-family: "Raleway", sans-serif;
}
@media (min-width: 768px) {
  .election-card {
    flex-direction: column;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    width: 33.33333%;
  }
}
.election-card__body {
  padding: 20px 15px;
  background-color: white;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.election-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 10px;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  border-bottom: 1px solid #e0e3da;
}
.election-card__title a {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  color: #000;
  line-height: 1.25;
  text-decoration: none;
}
.election-card__title a span {
  margin-left: 15px;
  font-size: 10px;
  letter-spacing: 1px;
  color: #576271;
  text-transform: uppercase;
}
.election-card__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
.election-card__item {
  display: flex;
  flex-grow: 1;
  margin-bottom: 1rem;
  padding: 0;
}
.election-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  border: 1px solid #d3d3d3;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 992px) {
  .election-card__image {
    display: none;
  }
}
.election-card__image img {
  width: 100%;
  max-width: inherit;
  height: auto;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.election-card__progress {
  position: relative;
  flex: 1;
  margin-left: 8px;
}
.election-card__data {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.election-card__data .candidate {
  display: flex;
  flex-direction: column;
}
.election-card__data .candidate .name, .election-card__data .candidate .party {
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  line-height: 1.5;
  color: #576271;
}
.election-card__data .candidate .party {
  text-transform: uppercase;
}
.election-card__data .status {
  text-align: right;
}
.election-card__data .status span {
  display: inline-block;
  padding: 0 0.5rem;
  font-size: 0.7rem;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  text-align: center;
  border-radius: 3px;
}
.election-card__data .status.elected span {
  min-width: 55px;
  background-color: #05c215;
}
.election-card__data .status.round span {
  min-width: 70px;
  background-color: #ff7205;
}
.election-card__data .votes {
  display: flex;
  flex-direction: column;
  margin-left: 0.5rem;
}
.election-card__data .votes .percent {
  font-size: 18px;
  font-family: Roboto, sans-serif;
  line-height: 1.25;
  color: #576271;
}
.election-card__data .votes .total {
  font-size: 10px;
  font-family: Roboto, sans-serif;
  line-height: 1;
  color: #576271;
}
.election-card__progressbar {
  display: flex;
  border-bottom: 1px solid #e0e3da;
}
.election-card__progressbar span {
  display: inline-block;
  height: 4px;
  background-color: #6601FF;
  background: linear-gradient(90deg, #6601FF 0%, #0CF 100%);
}
.election-card__more {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  text-align: center;
}
.election-card__more span {
  display: block;
  margin-bottom: 0.25rem;
}
.election-card__more .btn-confira {
  margin: 0 0.5rem;
}
.election-card .btn-confira {
  display: inline-block;
  height: 20px;
  padding: 0 0.5rem;
  line-height: 20px;
  color: #6601FF;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #6601FF;
  box-shadow: inset 0 0 0 #6601FF;
  transition: all 0.2s linear;
}
.election-card .btn-confira:hover {
  box-shadow: inset 0 -20px 0 #6601FF;
  color: white;
}
.election-card--large {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}
.election-card--large .election-card__list {
  flex-direction: row;
  justify-content: space-between;
  flex: 1;
}
.election-card--large .election-card__item {
  flex: 0 0 100%;
  flex-basis: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .election-card--large .election-card__item {
    flex: 0 0 50%;
    flex-basis: 50%;
    width: 50%;
    padding: 20px;
  }
}
.election-card--medium {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .election-card--medium {
    flex: 0 0 50%;
    width: 50%;
  }
}
.election-card--medium .election-card__body {
  flex: 1;
}

.btn-more {
  display: inline-block;
  padding: 0 0.5rem;
  height: 20px;
  line-height: 20px;
  color: #6601FF;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #6601FF;
  box-shadow: inset 0 0 0 #6601FF;
  transition: all 0.2s linear;
}
.btn-more:hover {
  box-shadow: inset 0 -20px 0 #6601FF;
  color: white;
}

.election-footer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 2rem;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .election-footer {
    flex-direction: row;
    align-items: center;
  }
}
.election-footer span {
  margin: 0 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .election-footer span {
    margin: 10px;
    text-align: left;
  }
}
.election-footer .btn-more {
  height: initial;
  margin: 10px 0 0;
  text-align: center;
}
@media (min-width: 768px) {
  .election-footer .btn-more {
    margin: 0 0 0 10px;
  }
}

/*# sourceMappingURL=election-card.css.map */
