.justify-content-center {
    justify-content: center;
}
.vote-row {
    display: flex;
}
.voting {
    border-radius: 20px;
    margin-bottom: 20px;
    text-align: center;
    padding: 20px 20px;
    background: white;
}
.vote-row {
    margin-top: 24px;
    display: flex;
}
.vote-col-md-2 {
    margin: 6px;
}
.voting img {
    width: 40px;
}
.vote {
    cursor: pointer;
}


@keyframes increaseWidth {
  from {
    width: 40px;
  }
  to {
    width: 80px;
  }
}

.vote-selected {
  width: 80px;
  animation: increaseWidth 0.5s ease-in-out forwards;
}

.voting span {
    font-size: 22px;
}
.voting p {
    background: #4c4c4c;
    color: white;
    border-radius: 9px;
    margin-top: 3px;
}
.vote-status {
    background: #4c4c4c;
    color: white;
    border-radius: 9px;
    margin-top: 3px;
}
p.vote-status {
    color: white;
}
.vote-col-md-2 p {
    background: #6c56b9;
    color: white !important;
}
