.imgHover {
    border: dashed 3px #87CEFA;
}

.hoverHaze {
    position: absolute;
    width: 52px;
    height: 52px;
    background: white;
    margin: 5px auto 0 30px;
    border: solid;
    color: black;
    vertical-align: middle;
    opacity: 0.8;
    font-size: 10px;
    font-weight: bold;
}

.hoverHaze img {
    vertical-align: middle;
    padding: 0 10px;
}

@-webkit-keyframes pulseBorder {
from {
    border:dashed 2px green;
}
to {
    border:dotted 4px green;

}
}

.hoverReload {
    -webkit-animation-name: pulseBorder;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    -webkit-animation-direction: alternate;
    -webkit-animation-duration: 0.5s;
    text-align:center;
    border: dotted 4px green;
}