@charset "utf-8";
/* CSS Document */
*{ box-sizing:border-box;}
html{font-smoothing:antialiased;-webkit-font-smoothing:antialiased;-moz-font-smoothing:antialiased; scroll-behavior: smooth;}
body{font:normal 13px/18px '1_TAUNTamil117', Arial; margin: 0; color: #393939;  counter-reset: my-sec-counter; background: #FFF;}
.clear{content:".";display:block;clear:both;height:0;visibility:hidden;}
img{max-width:100%;width:auto\9;height:auto;border:0;-ms-interpolation-mode:bicubic; vertical-align: middle;}
p{ margin:5px 0;}
a{ color: #404040; text-decoration: none; display: inline-block;}
ul,ul li{ list-style:none; padding: 0; margin: 0;}
i{ font-size:24px;}

.vikatan-poll-wrapper{ background-color: #f5f5f5; border-radius: 10px; max-width: 100%;  margin:0 auto;height: 550px;overflow: hidden;}
.poll-header{ background: #FFF; display: grid; grid-template-columns: auto max-content; grid-gap:10px; align-items:center;padding: 0px; border-radius:10px 10px 0 0;}
.poll-header h1{color: #FFF; margin: 0; font-weight: normal;font-size: 24px;}
.poll-header a{ color:#eaf368; font-size:12px;font-size: 18px;}
.questions-wrapper{}
.questions{padding:10px 20px;}
.questions-wrapper h2{ margin: 0 0 10px; font-weight: normal; font-size: 20px; line-height: 20px;color: #000;}
.questions-wrapper .options li{box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2); background-color: #fff;padding: 10px; display: grid; grid-template-columns: auto max-content; align-items: center; border-radius: 5px; font-size: 17px; margin: 10px 0;color: #000;}
.questions-wrapper .options li:last-of-type{margin-bottom: 0;}
.image-section{position: relative;}
.image-section img{height: 140px; width:100%; object-fit: cover;}
.tag{ position: absolute; bottom: 0;left: 20px;background: #FFF;box-shadow: -1px -5px 6px 0 rgba(0, 0, 0, 0.55);padding: 8px 20px;border-radius: 5px 5px 0 0; font-size: 18px;color: #e92227;}
/* Base for label styling */
[type="radio"]:not(:checked),
[type="radio"]:checked {
  position: absolute;
  left: -9999px;
}

[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
  position: relative;
  padding-left: 0.95em;
  cursor: pointer;
}

/* checkbox aspect */
[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
  content:'';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 25px; height: 25px;
  background: #b6b9b7;
  border-radius: 50%;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
/* checked mark aspect */
[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after {
  content: '\2713\0020';
  position: absolute;
  width: 25px; height: 25px;
  border-radius:50%;
  top: 50%; transform: translateY(-50%) rotate(14deg); left: 0;
  font-size: 1em;font-weight: bold;
  line-height: 26px;
  background: #239208;
  text-align:center;
  transition: all .2s;
  color:#FFF;
  font-family: 'Lucida Sans Unicode', 'Arial Unicode MS', Arial;
}
/* checked mark aspect changes */
[type="radio"]:not(:checked) + label:after {
  content: '\2713\0020';
  position: absolute;
  top: 50%; transform: translateY(-50%) rotate(14deg); left: 0;
  font-size: 1em; font-weight: bold;
  line-height: 26px;
  background: transparent;
  transition: all .2s;
  font-family: 'Lucida Sans Unicode', 'Arial Unicode MS', Arial;
}
/* disabled checkbox */
[type="radio"]:disabled:not(:checked) + label:before,
[type="radio"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
[type="radio"]:disabled:checked + label:after {
  color: #999;
}
[type="radio"]:disabled + label {
  color: #aaa;
}

.progress-container {margin-bottom: 0px;}

.play-animation {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  padding: 5px 15px;
  margin: auto;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: 2px solid #1c1c1c;
  border-radius: 4px;
  background-color: transparent;
  box-shadow: none;
  outline: none;
  cursor: pointer;
}
.play-animation:hover {
  color: #fff;
  background-color: #1c1c1c;
}

/* progress bar styles !!!YOU NEED THEM */
.progress-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.progress-bar {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.progress-bar:not(:last-child) {
  margin-bottom: 35px;
}

.progress-bar--lg-offset:not(:last-child) {
  margin-bottom: 52.5px;
}

.progress-bar__bar,
.progress-bar__bar-inner,
.progress-bar__value,
.progress-bar__skill {
  box-sizing: border-box;
}

.progress-bar__bar {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.progress-bar__bar--no-overflow {
  overflow: visible;
}

.progress-bar__bar-inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
}
.progress-bar__bar-inner.js-animated {
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.1, 1.14, 0.31, 1.06);
  transition-delay: 0s;
  transform: scaleX(1);
}

.progress-bar__skill,
.progress-bar__value {
  font-size: 16px;
}

.progress-bar__value--aligned-value {
  transform: translateX(-50%);
}

/* progress bar #1 styles */
.progress-bar--1 {
  height: 10px;
  padding: 0px;
  border-radius: 5px 5px 0 0;
}

.progress-bar__bar-inner--1 {
  background-image: linear-gradient(to right, #00BFB3 0, #037971 100%);
  background-size: 200%;
  background-position: 0 0;
  border-radius: 5px 5px 0 0;
}

.progress-bar__skill--1 {
  position: absolute;
/*
  top: -27px;
  left: -20px;
*/
  opacity: 0;
}
.progress-bar__skill--1.js-animated {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  left: 12px;
  bottom: -25px;
  opacity: 1;
}

.progress-bar__value--1 {
  position: absolute;
/*
  top: -27px;
  right: -20px;
*/
  opacity: 0;
}
.progress-bar__value--1.js-animated {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  right: 12px;
  bottom: -22px;
  opacity: 1;
    font-size: 26px;
}
.questions-wrapper .options.result li{ display: block; padding: 0 0 30px;}

.progress-container.green .progress-bar__bar-inner--1{    background: linear-gradient(to right, #0f8e49 0, #0f8e49 100%);}
.progress-container.green .progress-bar__skill--1,.progress-container.green .progress-bar__value--1{color:#0f8e49;}

.progress-container.red .progress-bar__bar-inner--1{    background: linear-gradient(to right, #f90425 0, #f90425 100%);}
.progress-container.red .progress-bar__skill--1,.progress-container.red .progress-bar__value--1{color:#f90425;}

.progress-container.grey .progress-bar__bar-inner--1{    background: linear-gradient(to right, #9b9b9b 0, #9b9b9b 100%);}
.progress-container.grey .progress-bar__skill--1,.progress-container.grey .progress-bar__value--1{color:#9b9b9b;}

.progress-container.orange .progress-bar__bar-inner--1{    background: linear-gradient(to right, #f58426 0, #f58426 100%);}
.progress-container.orange .progress-bar__skill--1,.progress-container.orange .progress-bar__value--1{color:#f58426;}


.content-area{ padding: 10px;} 
.main-txt h1{font-size: 22px;font-weight: normal; line-height: 26px; margin: 0;}
.main-txt h5{font-size: 18px;font-weight: normal; line-height: 26px; margin: 10px 0 0;}
.cta-btn{ text-align: center;}
.button{ display: inline-block; background: #269457; cursor: pointer; border: 0;
  color: #fff;
  padding: 10px 30px 8px;
  border-radius: 10px;
  font-weight: normal;
  font-size: 20px;
  line-height: 20px;
  margin-top: 20px;}
  .questions{ padding: 0;}
  .quiz-panel h1{ font-weight: normal; font-size: 20px; line-height: 24px; margin-top: 20px;}
  .quiz-panel .item ul li{ display: flex; grid-gap: 15px; margin: 16px 0; font-size: 20px;}

  .quiz-panel .button{ margin-top: 0;}
  .input-name input{ margin-top: 15px; background-color: #fff; border-radius: 5px; border: 0; width: 100%; padding: 10px;}

  .thankyou{ margin-top: 50px;}
.thankyou p{text-align: center;
  font-size: 26px;
  font-weight: normal;
  line-height: 30px;}

  .quiz-panel h1 .count{display: inline-block; width: 30px; height: 30px; line-height: 32px; background: #5b8710; border-radius: 50%; text-align: center; color: #fff; margin-right: 5px;}
  .quiz-panel .owl-dots{position: absolute;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%); display: flex;
    justify-content: center; grid-gap:5px; margin-bottom: 10px;}
   
    .quiz-panel .owl-dots button span{ width: 36px;
      background-color: #d7d7d7;
      display: inline-block;
      height: 4px; border-radius: 2px; }
      .quiz-panel .owl-dots button.active span{background-color: #f00;}
@media only screen and (min-width: 768px) and (max-width: 1024px) {

}
@media only screen and (max-width: 767px) {

}

