// Vote Poll section area
.poll-wrapper{
    background: #fff;
    padding: 40px;
    max-width: 600px;
    width: 500px;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.3);
    border-radius: 10px;
    position: fixed;
    z-index: 999;
    right: -500px;
    top: 70%;
    transform: translateY(-70%);
    transition: .7s all ease;
    &.vote {
      right: 0%;
    }
    header {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        .thumb {
            img {
                border-radius: 6px;
                margin-right: 20px;
            }
        }
        .content {
            .voter-name {
                font-size: 24px;
                line-height: 28px;
                font-family: var(--body-font);
                font-weight: 700;
                color: var(--heading-color);
            }
            span {
                font-size: 16px;
                line-height: 28px;
                font-family: var(--body-font);
                font-weight: 400;
                color: #505050;
            }
        }
    }
  }
  .wrapper .poll-area{
    margin: 20px 0 15px 40px;
  }
  .poll-area .label{
    display: block;
    margin-bottom: 20px;
    border-radius: 5px;
    border-radius: 30px;
    padding: 16px;
    background: #F9F9FF;
    transition: all 0.2s ease;
  }
  .poll-area .label:hover{
    border-color: #ddd;
  }
  .label.selected{
    border-color: #6665ee!important;
  }
  .label .content-wrap{
    display: flex;
    pointer-events: none;
    justify-content: space-between;
  }
  .label .content-wrap .content{
    display: flex;
    align-items: center;
  }
  .label .content-wrap .circle{
    height: 19px;
    width: 19px;
    display: block;
    border: 1px solid #C9C9C9;
    background: #fff;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
  }
  .label.selected .content-wrap .circle{
    border-color: var(--main-color-one);
    // background: red;
    transition: .5s all ease;
  }
  .label .content-wrap .circle::after{
    content: "";
    height: 12px;
    width: 12px;
    line-height: 12px;
    background: #6665ee;
    border-radius: inherit;
    position: absolute;
    left: 49%;
    top: 47%;
    transform: translate(-46%, -46%);
    display: none;
    transition: .5s all ease;
  }
  .poll-area .label:hover .content-wrap .circle::after{
    display: block;
    background: transparent;
  }
  .label.selected .content-wrap .circle::after{
    display: block;
    background: var(--main-color-one)!important;
  }
  .label .content-wrap span{
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--body-font);
    color: var(--heading-color);
  }
  .label .content-wrap .percent{
    display: none;
    color: var(--main-color-one);
  }
  .label .progress{
    height: 7px;
    width: 100%;
    position: relative;
    background: #f0f0f0;
    margin: 8px 0 3px 0;
    border-radius: 30px;
    display: none;
    pointer-events: none;
    &.style-01 {
      height: 7px;
      width: 100%;
      position: relative;
      background: #f0f0f0;
      margin: 8px 0 3px 0;
      border-radius: 30px;
      display: none;
      pointer-events: none;
    }
    &.style-02 {
      height: 7px;
      width: 100%;
      position: relative;
      background: #f0f0f0;
      margin: 8px 0 3px 0;
      border-radius: 30px;
      display: none;
      pointer-events: none;
    }
  }
  
  .label .progress:after{
    position: absolute;
    content: "";
    height: 100%;
    background: #ccc;
    width: calc(1% * var(--w));
    border-radius: inherit;
    transition: all 0.5s ease;
  }
  .label .progress.style-01:after{
    position: absolute;
    content: "";
    height: 100%;
    background: #ccc;
    width: calc(1% * var(--w));
    border-radius: inherit;
    transition: all 0.5s ease;
  }
  .label .progress.style-02:after{
    position: absolute;
    content: "";
    height: 100%;
    background: #ccc;
    width: calc(1% * var(--w));
    border-radius: inherit;
    transition: all 0.5s ease;
  }
  .label .progress.style-03:after{
    position: absolute;
    content: "";
    height: 100%;
    background: #ccc;
    width: calc(1% * var(--w));
    border-radius: inherit;
    transition: all 0.5s ease;
  }
  .label.selected .progress::after{
    background: var(--main-color-one);
    animation: loader 0.7s linear;
  }
  .label.selected .progress.style-01::after{
    background: var(--main-color-one);
    animation: loader01 0.7s linear;
  }
  .label.selected .progress.style-02::after{
    background: var(--main-color-one);
    animation: loader02 0.7s linear;
  }
  .label.selected .progress.style-03::after{
    background: var(--main-color-one);
    animation: loader03 0.7s linear;
  }
  .label.selectall .progress,
  .label.selectall .content-wrap .percent{
    display: block;
  }
  input[type="radio"],
  input[type="checkbox"]{
    display: none;
  }

@keyframes loader {
  0% {
    width: 0%;
  }
  100% {
    width: 20%;
  }
}

@keyframes loader01 {
  0% {
    width: 0%;
  }
  100% {
    width: 40%;
  }
}

@keyframes loader02 {
  0% {
    width: 0%;
  }
  100% {
    width: 10%;
  }
}

@keyframes loader03 {
  0% {
    width: 0%;
  }
  100% {
    width: 30%;
  }
}