/* reset */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}
body {
  line-height: 1;
  font-size: 16px;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* end reset */

/* --------------------------------

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Fira Sans", sans-serif;
  color: #383838;
  background-color: #f8f8f8;
}

a {
  color: #592064;
  text-decoration: none;
}

/* -------------------------------- 

Main Components 

-------------------------------- */
.cd-horizontal-poll {
  opacity: 0;
  margin: 2em auto;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.cd-horizontal-poll::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none;
}
.cd-horizontal-poll.loaded {
  /* show the poll after events position has been set (using JavaScript) */
  opacity: 1;
}
.cd-horizontal-poll .poll {
  position: absolute;
  height: 100px;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  left: 0%;
  right: 0;
  bottom: 5px;

}
.cd-horizontal-poll .events-wrapper {
  position: relative;
  height: 100%;
  margin: 0 40px;
  overflow: hidden;
}
.cd-horizontal-poll .events-wrapper::after, .cd-horizontal-poll .events-wrapper::before {
  /* these are used to create a shadow effect at the sides of the poll */
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  /*height: 100%;*/
  width: 20px;
}
.cd-horizontal-poll .events-wrapper::before {
  left: 0;
  background-image: -webkit-linear-gradient( left , #f8f8f8, rgba(248, 248, 248, 0));
  background-image: linear-gradient(to right, #f8f8f8, rgba(248, 248, 248, 0));
}
.cd-horizontal-poll .events-wrapper::after {
  right: 0;
  background-image: -webkit-linear-gradient( right , #f8f8f8, rgba(248, 248, 248, 0));
  background-image: linear-gradient(to left, #f8f8f8, rgba(248, 248, 248, 0));
}
.cd-horizontal-poll .events {
  /* this is the grey line/poll */
  position: absolute;
  z-index: 1;
  left: 0;
  top: 49px;
  height: 3px;
  /* width will be set using JavaScript */
  background: #dfdfdf;
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  transition: transform 0.4s;
}
.cd-horizontal-poll .filling-line {
  /* this is used to create the green line filling the poll */
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #592064;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-horizontal-poll .events a {
  position: absolute;
  bottom: 0;
  z-index: 2;
  text-align: center;
  font-size: 1.3rem;
  padding-bottom: 15px;
  color: #383838;
  /* fix bug on Safari - text flickering while poll translates */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}
.cd-horizontal-poll .events a::after {
  /* this is used to create the event spot */
  content: '';
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -7px;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  border: 2px solid #dfdfdf;
  background-color: #f8f8f8;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  -moz-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
.no-touch .cd-horizontal-poll .events a:hover::after {
  background-color: #592064;
  border-color: #592064;
}
.cd-horizontal-poll .events a.selected {
  pointer-events: none;
}
.cd-horizontal-poll .events a.selected::after {
  background-color: #592064;
  border-color: #592064;
}
.cd-horizontal-poll .events a.older-event::after {
  border-color: #592064;
}
@media only screen and (min-width: 1100px) {
  .cd-horizontal-poll {
    /*margin: 30px auto 60px auto;*/
    margin: .7em auto 0em auto;
  }
  .cd-horizontal-poll::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
}

.cd-poll-navigation a {
  /* these are the left/right arrows to navigate the poll */
  position: absolute;
  z-index: 1;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: 2px solid #dfdfdf;
  /* replace text with an icon */
  overflow: hidden;
  color: transparent;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.cd-poll-navigation a::after {
  /* arrow icon */
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: url(../images/cd-arrow.svg) no-repeat 0 0;
}
.cd-poll-navigation a.prev {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.cd-poll-navigation a.next {
  right: 0;
}
.no-touch .cd-poll-navigation a:hover {
  border-color: #592064;
}
.cd-poll-navigation a.inactive {
  cursor: not-allowed;
}
.cd-poll-navigation a.inactive::after {
  background-position: 0 -16px;
}
.no-touch .cd-poll-navigation a.inactive:hover {
  border-color: #dfdfdf;
}

.cd-horizontal-poll .events-content ol {
    background: rgb(255, 107, 91);
    width: 93%;
    /*max-width: 800px;*/
    /*min-height: 600px;*/
    margin: 0 auto;
    height: 100%;
    display: block;
    border-radius: 10px;
    padding: 40px 25px 47px 25px;
    position: relative;
  z-index: 4;
  overflow: hidden;

}
.cd-horizontal-poll .logoContainer
{
 width: 80px;
  height: 80px;
  position: absolute;
  /*background-color: #f8f8f8;
  top: 43px;
  border-radius: 40px;  */
  left: 50%;
  transform: translate3d(-50%,-50%,0);
  color: #ff6469;
  font-size: 72px;
  text-align: center;
  z-index: 1000;
  overflow: hidden;
  line-height: 107px;
  opacity: 1;
}
.logoContainer img {
  max-width: 100%;
  border-radius: 50%;
  opacity: 0.9;
  /*height: 85%;*/
}
#pollform
{
  position: relative;
}
.cd-horizontal-poll .events-content {
  position: relative;
  width: 100%;
  margin: 10px 0 10px 0;
  padding-top: 48px;
  /*overflow-x: hidden;*/
  -webkit-transition: height 0.4s;
  -moz-transition: height 0.4s;
  transition: height 0.4s;
}
.cd-horizontal-poll .events-content li {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  padding: 0 5%;
  opacity: 0;
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.cd-horizontal-poll .events-content li.selected {
  /* visible event content */
  position: relative;
  z-index: 2;
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.cd-horizontal-poll .events-content li.enter-right, .cd-horizontal-poll .events-content li.leave-right {
  -webkit-animation-name: cd-enter-right;
  -moz-animation-name: cd-enter-right;
  animation-name: cd-enter-right;
}
.cd-horizontal-poll .events-content li.enter-left, .cd-horizontal-poll .events-content li.leave-left {
  -webkit-animation-name: cd-enter-left;
  -moz-animation-name: cd-enter-left;
  animation-name: cd-enter-left;
}
.cd-horizontal-poll .events-content li.leave-right, .cd-horizontal-poll .events-content li.leave-left {
  -webkit-animation-direction: reverse;
  -moz-animation-direction: reverse;
  animation-direction: reverse;
}
.cd-horizontal-poll .events-content li > * {
  /*max-width: 800px;*/
  margin: 0 auto;
  margin: 10px auto 2px auto;
}
.cd-horizontal-poll .events-content h2 {
  font-size: 1.2em;
  line-height: 1.8em;
  font-family: "Iransans", serif;
  font-weight: 700;
  padding-top: 60px;
}
.cd-horizontal-poll .events-content em {
  display: block;
  font-style: italic;
  margin: 10px auto;
}
.cd-horizontal-poll .events-content em::before {
  content: '- ';
}
.cd-horizontal-poll .events-content p {
  font-size: 1.4rem;
  color: #959595;
}
.cd-horizontal-poll .events-content em, .cd-horizontal-poll .events-content p {
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .cd-horizontal-poll .events-content h2 {
    font-size: 1.2em;
    line-height: 1.8em;
    margin: 0;
    font-weight: normal;
    text-align: center;
  }
  .cd-horizontal-poll .events-content em {
    font-size: 2rem;
  }
  .cd-horizontal-poll .events-content p {
    font-size: 1.8rem;
  }
}

@-webkit-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}
@-moz-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -moz-transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0%);
  }
}
@keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-webkit-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}
@-moz-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0%);
  }
}
@keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@media (max-width: 1400px) {

}
@media (max-width: 980px) {

}
@media (max-width: 767px) {
  .npswidget
  {
    width: 100% !important;
  }
  .npscontainer
  {
    width: 100% !important;
  }
  .cd-horizontal-poll .events-content h2
  {
    font-size: 1em;
    line-height: 1.6em;
  }

  .npscontainer .widget.widget-sm
  {
    padding: 15px 5px 5px 5px !important;
  }

  .npscontainer .widget.widget-sm button
  {
    width: 26px !important;
    height: 26px !important;
  }
  .npscontainer .widget.widget-sm{
    width: 100% !important;
  }
  .mCS-dir-rtl>.mCSB_inside>.mCSB_container
  {
    margin-left: 4px;
  }

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

}
.npscontainer {
    margin: 10px auto;
    width: 80%;
}
.npscontainer .widget span {
    color: #383232;
    font-size: 12px;
}
.npscontainer .widget button {
    /* padding: 5px 10px; */
    font-size: 16px;
    white-space: nowrap;
    vertical-align: middle;
    display: inline-block;
    background: none;
    border: none;
    box-shadow: none;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    border-radius: 100%;
    margin: 0;
    outline: none;
    margin-left: -1px;
    width: 40px;
    height: 40px;
    border: 3px solid #eee;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: background 0.2s ease-in, color 0.2s ease-in, border-color 0.2s ease-in, -webkit-transform 0.2s cubic-bezier(0.5, 2, 0.5, 0.75);
    transition: background 0.2s ease-in, color 0.2s ease-in, border-color 0.2s ease-in, transform 0.2s cubic-bezier(0.5, 2, 0.5, 0.75);
    transition: background 0.2s ease-in, color 0.2s ease-in, border-color 0.2s ease-in, transform 0.2s cubic-bezier(0.5, 2, 0.5, 0.75), -webkit-transform 0.2s cubic-bezier(0.5, 2, 0.5, 0.75);
}
.npscontainer .widget button.detractor-hover {
    background: #F44336;
    color: white;
    border-color: #f55a4e;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.npscontainer .widget button.passive-hover {
    background: #F57C00;
    color: white;
    border-color: #ff8910;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.npscontainer .widget button.promoter-hover {
    background: #4CAF50;
    color: white;
    border-color: #5cb860;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.npscontainer .widget.widget-sm {
    width: 315px;
    background: #eee;
    border: 0px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    box-sizing: border-box;
    position: relative;
    padding-bottom: 30px;
    direction: ltr;
    margin: 0 auto;
    opacity: 0.7;
}
.npscontainer .widget.widget-sm .positive-text, .npscontainer .widget.widget-sm .negative-text {
    position: absolute;
}
.npscontainer .widget.widget-sm .positive-text {
    right: 20px;
    bottom: 10px;
    text-align: right;
}
.npscontainer .widget.widget-sm .negative-text {
    left: 20px;
    bottom: 10px;
    text-align: left;
}
.npscontainer .widget.widget-sm button {
    border: none;
    margin-left: 1px;
    width: 34px;
    height: 34px;
    font-size: 12px;
    font-weight: normal;
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
    /* background-color: #ccc; */
    border-radius: 0;
    text-align: center;
    display: inline-block;
}
.qdescription
{
  padding-bottom: 1em;
  color: #592064e3;
  font-size: 0.92em;
  line-height: 1.6em;
  text-align: right;
}

  
@media (max-width: 968px) {
  #progressContainer canvas
  {
    display: none;
  }
  #logoContainer
  {
    display: none;
  }
  #progressContainer
  {
    left: 50% !important;
    bottom: 18px !important;
    transform: translateX(-50%);
    right: unset !important;

  }
  #correctContainer {
    padding: 5px 20px 5px 20px;
    background: #592064;
    color: #FFF;
    border-radius: 5px;
    font-weight: bold;
    font-family: webyekan;
    margin-bottom: -8px;
  }
  .checkmark
  {
    width: 115px !important;
  }
  

  .cd-horizontal-poll .events-content
  {
    padding-top: 0px;
  }
  .cd-horizontal-poll .logoContainer
  {
    top: -5px;
  }
  .logoContainer img
  {
    height: 65%;
  }
  .cd-horizontal-poll .events a::after
  {
    bottom: -11px;
    height: 25px;
    width: 25px;
  }
  .cd-horizontal-poll .events-content ol
  {
    /*padding: 20px 0px 6px 0px;*/
    padding: 25px 5px 25px 5px
  }
}
#progressContainer canvas
{
  display: none;
}
#logoContainer
{
  display: none;
}
#progressContainer
{
  left: 50% !important;
  bottom: 18px !important;
  transform: translateX(-50%);
  right: unset !important;

}
#correctContainer {
  padding: 5px 20px 5px 20px;
  background: #592064;
  color: #FFF;
  border-radius: 5px;
  font-weight: bold;
  font-family: webyekan;
  margin-bottom: -8px;
}
.img-holder img
{
  max-width: 35%;
  margin: 12px;
}
.grecaptcha-badge {
  visibility: hidden;
}
.pretty .state label
{
  line-height: 1.6em;
  text-align: justify;
  white-space: initial;
}
.pretty input
{
  width: 100% !important;
}
.imageoption {
    display: inline-block;
    width: calc( 33% - 5px );
    text-align: center;
    border: 1px #7368a799 solid;
    margin-left: 5px;
    padding: 5px;
    border-radius: 5px;
    margin-top: 1em;
}
.imageoption img {
  max-width: 100%;
  max-height: 100%;
}

.imageoption input {
    width: 1em !important;
    display: block;
    margin-top: 0.8em !important;
}
.imageoption .imgoption-holder {
    height: 120px;
    display: table-cell;
    vertical-align: middle;
    width: 33%;
}
input.otherinp {
  position: absolute;
  display: block !important;
  visibility: visible;
  right: 25px;
  opacity: 0.8;
  border: 0;
  background: #f8f8f8;
  width: 95% !important;
}
input.otherinp:focus {
  outline: none;
}
.imageoption span {
  display: block;
  margin-top: 10px;
}
.imgrow
{
  display: flex;
}
.imageoption-item{
  flex:1;
}
.qreqired {
  color: red;
}