#gallery {
    background-image: url(/img/snapwine/bottle.webp);
    height: 1330px;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 324px 1250px;
    z-index: 3;
}
.preview {
    display: block;
    width: 288px;
    height: 288px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    margin-left: -144px;
    top: 610px;
    border-radius: 0px 0px 140px 140px / 0px 0px 8px 8px;
}
#gallery .shadow {
    display: block;
    width: 288px;
    height: 288px;
    background-color: yellow;
    position: absolute;
    left: 50%;
    margin-left: -144px;
    top: 610px;
    z-index: 2;
    background: -webkit-linear-gradient(
            to right,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0) 6%,
            rgba(0, 0, 0, 0) 30%,
            rgba(0, 0, 0, 0.2) 65%,
            rgba(0, 0, 0, 0.6) 100%
    );
    background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0) 6%,
            rgba(0, 0, 0, 0) 30%,
            rgba(0, 0, 0, 0.2) 65%,
            rgba(0, 0, 0, 0.6) 100%
    );
    border-radius: 0px 0px 140px 140px / 0px 0px 8px 8px;
}