/* Product zoom */
.easyzoom {
    position: relative;
    *display: inline;
    *zoom: 1; }
.easyzoom img {
    vertical-align: bottom;
    max-width: 100%; }
.easyzoom.is-loading img {
    cursor: progress; }
.easyzoom.is-ready img {
    cursor: crosshair; }
.easyzoom.is-error img {
    cursor: not-allowed; }
.easyzoom .easyzoom-notice {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 150;
    width: 10em;
    margin: -1em 0 0 -5em;
    line-height: 2em;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 10px #888; }
.easyzoom .easyzoom-flyout {
    position: absolute;
    z-index: 97;
    overflow: hidden;
    background: #ffffff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }
.easyzoom .easyzoom-flyout img {
    max-width: none;
    width: auto !important; }
.easyzoom .easyzoom-flyout:hover {
    opacity: 1; }