/* Grow Rotate */
.grow-rotate {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.grow-rotate:hover, .grow-rotate:focus, .grow-rotate:active {
  -webkit-transform: scale(1.1) rotate(4deg);
  transform: scale(1.1) rotate(4deg);
}


.grow-rotate2 {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.grow-rotate2:hover, .grow-rotate2:focus, .grow-rotate2:active {
  -webkit-transform: scale(1.1) rotate(-4deg);
  transform: scale(1.1) rotate(-4deg);
}

/* Float Shadow */
.float-shadow {
display: inline-block;
position: relative;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transform: translateZ(0);
transform: translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.float-shadow:before {
pointer-events: none;
position: absolute;
z-index: -1;
content: '';
top: 100%;
left: 5%;
height: 10px;
width: 90%;
opacity: 0;
background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
/* W3C */
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-property: transform, opacity;
transition-property: transform, opacity;
}
.float-shadow:hover, .float-shadow:focus, .float-shadow:active {
-webkit-transform: translateY(-5px);
transform: translateY(-5px);
/* move the element up by 5px */
}
.float-shadow:hover:before, .float-shadow:focus:before, .float-shadow:active:before {
opacity: 1;
-webkit-transform: translateY(5px);
transform: translateY(5px);
/* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}


.boton-cliente {
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bdbbb2), color-stop(1, #a8a6a1) );
    background:-moz-linear-gradient( center top, #bdbbb2 5%, #a8a6a1 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bdbbb2', endColorstr='#a8a6a1');
    background-color:#bdbbb2;
    -webkit-border-top-left-radius:24px;
    -moz-border-radius-topleft:24px;
    border-top-left-radius:24px;
    -webkit-border-top-right-radius:24px;
    -moz-border-radius-topright:24px;
    border-top-right-radius:24px;
    -webkit-border-bottom-right-radius:24px;
    -moz-border-radius-bottomright:24px;
    border-bottom-right-radius:24px;
    -webkit-border-bottom-left-radius:0px;
    -moz-border-radius-bottomleft:0px;
    border-bottom-left-radius:0px;
    text-indent:0;
    border:1px solid #695450;
    display:inline-block;
    color:#050505;
    font-family:Verdana;
    font-size:15px;
    font-weight:bold;
    font-style:normal;
    height:60px;
    line-height:60px;
    width:225px;
    text-decoration:none;
    text-align:center;
    margin-top: 4px;
}