#poll-form .form-row {
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
}
#poll-form .form-col {
  flex: 0 0 48%;
  height: 56px;
  margin: 0 1% 1% 1%;
  position: relative;
}

#poll-form .form-wrapper h2 {
  font-family: "Noto Sans",Arial,sans-serif;
  color: #334D5E;
  font-size: 20px !important;
  font-weight: 700;
  line-height: 27px !important;
  margin-bottom: 25px !important;
  padding: 0;
}

#poll-form .poll-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 30px;
  min-height: 377px;
}

#poll-form .poll-col label {
  display: block;
}
#poll-form .poll-col .label-text {
  color: #344E5F;
  font-size: 20px;
  line-height: 28px;
  height: 70px;
  display: block;
}
#poll-form .poll-col .poll-input {
  width: 100%;
  display: block;
  border: none;
  outline: 0;
  background-color: #F2F2F2;
  height: 50px;
  border-radius: 6px;
  padding: 0 25px;
  font-family: inherit;
  text-transform: capitalize;
  color: #334d5e;
}
#poll-form .submit-text {
  color: #334D5E;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 20px;
}
#poll-form .form-wrapper {
  margin-bottom: 45px;
}
#poll-form .submit-btn {
  background: #673bb7;
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  height: 50px;
  line-height: 50px;
  padding: 0 40px;
  border: none;
  outline: 0;
  cursor: pointer;
}
#poll-form .submit-btn.not-active {
  opacity: .3;
}

#poll-form {
  width: 100%;
  margin-top: 40px;
  padding-bottom: 24px;
}

#poll-form .js-ks-radio {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid #D8D8D8;
  -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    margin: 0 !important;
}
#poll-form .js-ks-radio:checked {
  border: 2px solid #ffffff;
}
#poll-form .js-ks-radio:checked::before {
  content: "";
  background: #ffffff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#poll-form .js-ks-radio:checked:focus {
  outline: none;
}
#poll-form .js-ks-radio:checked + label {
  background: #673bb7;
  border: none;
  color: #ffffff;
}
#poll-form .js-ks-radio:checked + label span {
  color: #ffffff;
}
#poll-form .form-col label {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: #F7F7F7;
  border: 1px solid #E9E9E9;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
#poll-form .form-col .checkmark {
  left: 15px;
  padding: 0;
  background: #f7f7f7;
  border-color: #d8d8d8;
}
#poll-form .form-col .checkbox-label {
  margin: 0;
  padding: 0;
}

#poll-form .form-col label span {
  padding: 0 40px 0 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 17px;
  color: #334D5E;
  pointer-events: none;
}
#poll-form .not-active {
    cursor: not-allowed !important;
}

/* Question Result */
#ks-poll-form .option-result{
  padding: 20px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  background: #858585;
  color: #ffffff;
  border-radius: 6px;
  margin-top: 10px;
}
#ks-poll-form .option-result.true{
  background: #28a745;
}
#ks-poll-form .option-result.false{
  background: #dc3645;
}

/* Result Screen */
#result-screen {
  margin-top: 30px;
  border: 1px solid #E0E0E0;
  padding: 25px 25px 15px 25px;
  border-radius: 12px;
  background: #fff;
}
#result-screen img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  min-height: 377px;
}
#result-screen p {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
}
#result-screen a {
  text-decoration: underline;
}
