div#content{
  display:none;
}

div.contest-video{
  margin-bottom:50px;
}

div.contest-video video{
  width:100%;
  max-width:500px;
}

.contest-video.is-voted {
  border: 2px solid #e19f4e;
  background-color: #fff7ef;
  border-radius: 10px;
  padding: 12px;
  position: relative;
}

/* Бейдж */
.contest-video.is-voted::after {
  content: "Ваш выбор";
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e19f4e;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
}

/* Кнопка в выбранном */
.contest-video.is-voted .vote-btn {
  background-color: #bdbdbd;
  cursor: default;
}

/* Сообщение */
.js-vote-message {
  margin: 0px 12px;
  padding: 10px 14px;
  background-color: #fff4e6;
  color: #a8651a;
  border: 1px solid #f0d2a8;
  border-radius: 6px;
  font-size: 13px;
  display: inline-block;
}

/* Кнопка */
.vote-btn {
  padding: 10px 16px;
  background-color: #e19f4e;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.vote-btn[disabled] { 
  opacity:.5; 
  cursor:default; 
}

.vote-btn:hover {
  background-color: #cf8e3f; /* чуть темнее */
}

.vote-btn:active {
  transform: scale(0.97);
}



.contest-vote-warning {
  margin: 15px 0;
  padding: 12px 14px;
  border: 1px solid #d9d9d9;
  background: #f7f7f7;
  font-size: 14px;
  line-height: 1.5;
}

.contest-vote-warning strong {
  display: block;
  margin-bottom: 6px;
}

.contest-vote-warning p {
  margin: 0;
}