@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: 320px; margin:0 auto;height: 475px;overflow: hidden;}
.poll-header{ background: #e92227; display: grid; grid-template-columns: auto max-content; grid-gap:10px; align-items:center;padding: 0px; border-radius:10px 10px 0 0; text-align: center;}
.poll-header h1{color: #FFF; margin: 0; font-weight: normal;font-size: 18px; padding: 10px;}
.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;}


/*-------Tabs style starts------*/
ul.tabs{list-style: none; width: 100%; margin-bottom: 10px; justify-content: center; text-align: center;  background:#FFF; margin: 0 auto; padding: 0px; border-radius: 4px; position: relative; display: grid; grid-template-columns: repeat(2, 1fr);}
ul.tabs li{color: #404040; cursor: pointer; padding: 6px 10px 10px; font-size: 18px; line-height: 20px; display: inline-block;}
ul.tabs li span{ display: block;}
ul.tabs li:first-child{border-radius:0;}
ul.tabs li:last-of-type{ border-right:0;}
ul.tabs li.current{background: #eaf6ed; position: relative;}
ul.tabs li.current:before{ background: #28a745; content:''; position: absolute; left: 0; bottom: 0; width:100%; height: 3px; }
ul.tabs li.current span{ color: #28a745;}
.tab-content{display: none; padding: 0px; background: #fff; box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.13); border-radius: 0 0 15px 15px; width: 100%; margin: 0 auto;}
.tab-content.current{display: inherit;}

.flourish-embed.flourish-bar-chart-race { height: 155px; }
.flourish-credit{display: none !important;}
.tab-container{ padding: 10px;}
.tab-container iframe{border-radius: 10px;}
.cta-wrapper { text-align: center; display: grid; grid-template-columns: auto max-content; align-items: center; max-width: 80%; margin: 0 auto; margin-top: 26px;}
.cta-wrapper p{font-size: 18px; margin: 0;}
.cta-wrapper a{display: inline-block; background: #4caf50; padding: 8px 14px; color: #fff; border-radius: 5px; font-size: 16px; line-height: 16px; text-transform: uppercase; margin: 0;}
.cta-wrapper a span{animation: blink 1s linear infinite;}
@keyframes blink{
0%{opacity: 0;}
50%{opacity: .5;}
100%{opacity: 1;}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {

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

}

