/***** credit: do not touch *****/

.vt {
    position: fixed;
    height: 25px;
    width: 25px;
    bottom: 10px;
    right: 5px;
    border-radius: {select:Edges};
}

.vt img {
    color: red;
    height: 25px;
    width: 25px;
     -webkit-transition: -webkit-transform .8s ease-in-out;
          transition:         transform .8s ease-in-out;
}

.vt img:hover {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}