.poll-completed-state {
  padding: 5px 0 5px;
}

.poll-completed-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-direction: column;
}
.poll-completed-inner p{
  font-weight: 600;
}
.poll-completed-text {
  font-weight: 600;
}

.checkmark {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  box-shadow: inset 0 0 0 #7ac142;
  animation: poll-check-fill 0.4s ease-in-out 0.4s forwards,
             poll-check-scale 0.3s ease-in-out 0.9s both;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: poll-check-stroke 0.6s cubic-bezier(0.650, 0.000, 0.450, 1.000) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: #fff;
  stroke-width: 2;
  animation: poll-check-stroke 0.3s cubic-bezier(0.650, 0.000, 0.450, 1.000) 0.8s forwards;
}

@keyframes poll-check-stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes poll-check-scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes poll-check-fill {
  100% {
    box-shadow: inset 0 0 0 30px #7ac142;
  }
}

.poll-single-option-btn .checkmark {
  width: 18px;
  height: 18px;
}

.checkmark__circle,
.checkmark__check {
  stroke-width: 6px;    
  stroke-linecap: round;  
}
.checkmark__check {
  stroke: #ffffff;          
}
.checkmark__circle {
  stroke: #7ac142;       
}
