.vote-area {
  display:flex;
  flex-direction:column;
}

.vote-container{
  order: 1;
}
.action-container{
  order: 2;
}

@media screen and (max-width: 480px) {
  .vote-container{
    order: 2;
  }
  .action-container{
    order: 1;
    padding: 10px 40px;
  }
}