.vote {
  background: #F9FAFC;
  padding: 24px 12px 32px 12px;
  border-radius: 4px;
}
.vote_title {
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 8px;
  text-align: center;
}
.vote_subtitle {
  font-size: 14px;
  line-height: 130%;
  margin-bottom: 20px;
  text-align: center;
}
.vote_list {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.vote_item {
  padding: 12px;
  border-radius: 8px;
  background: #F2F3F5;
  width: 49.619289%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.vote_item:hover {
  background: #DFF3E9;
}
.vote_item_img {
  width: 13.192612%;
  flex-shrink: 0;
}
.vote_item_center {
  width: 54.617414%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vote_item_name {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 150%;
}
.vote_item_bar {
  display: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #E5E6EB;
  position: relative;
  margin-top: 32px;
}
.vote_item_bar_percent {
  width: 0;
  height: 100%;
  border-radius: 2px;
  background: #2EBD71;
}
.vote_item_btn {
  width: 26.385224%;
  margin-left: 4.221635%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 11px 20px;
  gap: 8px;
  border-radius: 4px;
  background: #E5E6EB;
  cursor: pointer;
}
.vote_item_btn:hover {
  background: #009C49;
  color: #fff;
}
.vote_item_img_in {
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}
.vote_item_img_in img {
  border-radius: 2px;
  display: block;
  width: 100%;
}
.vote_item_checkbox {
  width: 17px;
  height: 16px;
  background: url('https://img.aosomcdn.com/upload/activity/images/vote_checkbox.png') 0 0 no-repeat;
  display: none;
}
.vote_item_select_style {
  margin-right: 2.638522%;
  margin-left: 8.443271%;
  width: 32px;
  height: 32px;
  background: url('https://img.aosomcdn.com/upload/activity/images/vote_selected.png') 0 0 no-repeat;
  display: none;
}
.vote_item_right {
  display: none;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  margin-left: 8.4432%;
  margin-right: 2.6385%;
}
.vote_item_result {
  font-size: 16px;
  line-height: 130%;
  color: #5F6166;
}
.vote_item_result_icon {
  display: none;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url('https://img.aosomcdn.com/upload/activity/images/vote_selected_result.png') 0 0 no-repeat;
}
.vote_item_label {
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  text-transform: capitalize;
}
.vote_item.selected {
  background: #DFF3E9;
}
.selected .vote_item_checkbox {
  background-image: url('https://img.aosomcdn.com/upload/activity/images/vote_checkbox_select.png');
}
.single .selected .vote_item_select_style {
  display: block;
}
.single .selected .vote_item_center {
  width: 68.33773%;
}
.single .selected .vote_item_btn {
  display: none;
}
.multiple .vote_item_checkbox {
  display: block;
}
.multiple .selected .vote_item_btn {
  background: #F9FAFC;
}
.multiple .selected .vote_item_btn:hover {
  background: #009C49;
  color: #fff;
}
.complete .vote_item_center {
  height: 100%;
}
.complete .vote_item_btn, .complete .selected .vote_item_select_style {
  display: none;
}
.complete .vote_item.selected, .complete .vote_item:hover {
  background: #F2F3F5;
}
.complete .vote_item {
  justify-content: flex-start;
}
.complete .vote_item_right {
  display: flex;
}
.complete .selected .vote_item_result_icon, .complete .vote_item_bar {
  display: block;
}
.vote_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vote_btn_action {
  height: 48px;
  padding: 11px 100px;
  border-radius: 4px;
  background: #E5E6EB;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  color: #8E9299;
}
.vote_btn_action.active {
  cursor: pointer;
  background: #DC2F2F;
  color: #fff;
}
@media only screen and (max-width: 1300px) {
 .vote_item_name {
  font-size: 14px;
 }
}
@media only screen and (max-width: 1025px) {
  .vote_item {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .vote {
    padding: 12px 12px 20px;
  }
  .vote_title {
    font-size: 16px;
    margin-bottom: 4px;
    text-align: left;
  }
  .vote_subtitle {
    font-weight: 500;
    margin-bottom: 16px;
    text-align: left;
  }
  .vote_item {
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 4px;
    justify-content: flex-start;
  }
  .vote_item_name {
    -webkit-line-clamp: 3;
    font-size: 12px;
    font-weight: 500;
  }
  .vote_item_bar {
    margin-top: 8px;
  }
  .vote_item_btn {
    display: none;
  }
  .vote_item_img {
    width: 19.2926%;
  }
  .vote_item_center, .single .selected .vote_item_center {
    width: 62.7%;
  }
  .vote_list {
    margin-bottom: 12px;
  }
  .vote_btn_action {
    height: 40px;
    padding: 11px 65px;
    font-size: 14px;
  }
  .vote_item_select_style {
    margin-right: 2.572347%;
    margin-left: 2.572347%;
    width: 16px;
    height: 16px;
    background-size: contain;
  }
  .vote_item_right {
    margin-right: 2.572347%;
    margin-left: 2.572347%;
  }
  .vote_item_result {
    font-size: 12px;
  }
  .vote_item_result_icon {
    width: 16px;
    height: 16px;
    background-size: contain;
  }
  .vote_item:hover {
    background: #F2F3F5;
  }
  .vote_item.selected {
    background: #DFF3E9;
  }
  .multiple .selected .vote_item_select_style {
    display: block;
  }
  .complete .vote_item_right {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
  }
  .complete.multiple .selected .vote_item_select_style {
    display: none;
  }
  .act_content_vote .act-title h2 {
    margin: 0;
  }
}