
.wrapper{
    height: 5vh;
  display: flex;
  margin: auto;
}

.img-box{
    height: 70px;
    width: 70px;
    justify-content: center;
    align-items: center;
    margin: auto;
    display: flex;
}

.image1{
    border-radius: 1rem;
    position: relative;
    transition: 0.5s ease-in-out;
}

.image2{
    position: absolute;
    border-radius: 1rem;
    transition: 0.5s ease-in-out;
    opacity: 0;
}

.img-box:hover .image1{
  opacity: 0;
}

.img-box:hover .image2{
   opacity: 100%;
}

.watermark{
    position: absolute;
    margin-top: 25rem;
}

/* counter vote*/

.percent {
  font-size: 30px;
  font-color: #0080FF;
  position: absolute;
  left: 45%;
}