.poll-form {
  display: none;
  font-family: Arial, sans-serif;
  width: 350px;
  padding: 10px 15px 5px 15px;
  border: 1px solid #ddd;
  box-shadow: -10px 2px 10px rgba(0, 0, 0, 0.1), 2px 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  bottom: 55px;
  right: 230px;
  z-index: 105;
  background: #fff;
}
@media screen and (max-width: 600px) {
  .poll-form {
    right: 50%;
    transform: translateX(50%);
  }
}
.poll-form.active {
  display: block;
}
.poll-close-btn {
  position: absolute;
  top: 5px;
  right: 15px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  height: 20px;
  color: grey;
  padding: 0;
}
.poll-option {
  display: flex;
  align-items: center;
  margin: 10px 0;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 17px;
}
.poll-checkbox[type='checkbox'] {
  margin-right: 10px;
  cursor: pointer;
}
.poll-textarea {
  display: none;
  position: relative;
  margin-bottom: 10px;
}
.poll-textarea.active {
  display: block;
}
.poll-textarea textarea {
  width: 100%;
  min-height: 130px;
  max-height: 130px;
  margin-top: 5px;
  padding: 5px;
  border: 1px solid #ccc;
  resize: vertical;
  font-size: 17px;
  padding-bottom: 35px;
}
.poll-btn {
  position: absolute;
  right: 15px;
  bottom: 10px;
  height: 22px;
  margin-top: 10px;
  border: none;
  border-radius: 10px;
  background-color: orange;
  color: #000;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: 400;
}
.poll-btn.disabled {
  background-color: gray;
  cursor: default;
}
.poll-footer {
  font-weight: normal;
  font-size: 17px;
}
