/* normal button style */
.banner-shine {
    width: auto;
    height: auto;
    background-color:#0099cc;
    text-align: center;
    color: #FFF;
    position: relative;
}
/* button hover style if required */
.banner-shine:hover {

}
/* generated element for shine effect.
 * normal state is semi-transparent
 * white but with zero width. Set no
 * transition here for no mouse-leave
 * animations. Otherwise the effect
 * will play in reverse when your mouse
 * leaves the element
 */
.banner-shine:after {
    content: "";
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255,255,255,0.6);
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;


}
/* on hover we animate the width to
 * 100% and opacity to 0 so the element
 * grows and fades out
 */
.banner-shine:hover:after {
    width: 120%;
    background-color: rgba(255,255,255,0);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.4s ease-out;
}
