
/* .position {
  float: left;
  margin: 100px 20px;
} */
.voice-icon-position{
  margin: auto;
}
.voice-progress-bar {
  position: relative;
  height: 100px;
  width: 100px;
}

.voice-progress-bar div {
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 50%;
}

.voice-progress-bar div span {
  position: absolute;
  font-family: Arial;
  font-size: 25px;
  line-height: 80px;
  height: 80px;
  width: 80px;
  left: 10px;
  top: 10px;
  text-align: center;
  border-radius: 50%;
  background-color: white;
}

.voice-progress-bar .background { background-color: #b3cef6; }

.voice-progress-bar .rotate {
  clip: rect(0 50px 100px 0);
  background-color: #4b86db;
}

.voice-progress-bar .left {
  clip: rect(0 50px 100px 0);
  opacity: 1;
  background-color: #b3cef6;
}

.voice-progress-bar .right {
  clip: rect(0 50px 100px 0);
  transform: rotate(180deg);
  opacity: 0;
  background-color: #4b86db;
}
 @keyframes 
toggle {  0% {
 opacity: 0;
}
 100% {
 opacity: 1;
}
}
