.flip-box {
  background-color: transparent;
  width:156.26px;
  float:left;
  height: 73px;
  color: #929292;
  margin:0px 10px 10px 0px;
  font-size: 13px;
  font-size:13px;
  perspective: 1000px;
  font-family: 'Open Sans', sans-serif;
  cursor:pointer;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-front {
  border:1px solid #ffffff;
  background:linear-gradient(to bottom right, #ffffff , #ffffff);
  color: #929292;
  line-height:31px;
  padding:0px;
  border-radius:3px;
}

.flip-box-back {
  background-color: #0073dc;
  border-radius:3px;
  padding-top:10px;
  color: white;
  transform: rotateY(180deg);
}