.haneco-win-an-ultimate-kegerator{
    display: flex;
    flex-direction: column;
    gap: var(--gutter-half);
    justify-content: center;
    align-items: center;
}

.haneco-win-an-ultimate-kegerator .flyer{
    max-width: 600px;
    position: relative;
    overflow: hidden;
}

.haneco-win-an-ultimate-kegerator .flyer::before{
    content:'';
    top:0;
    transform:translateX(100%);
    width:100%;
    height:100%;
    position: absolute;
    z-index:1;
    animation: shine-block 6s infinite;
    opacity: .6;
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(128,186,232,0) 99%, rgba(125,185,232,0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,0.8)), color-stop(99%,rgba(128,186,232,0)), color-stop(100%,rgba(125,185,232,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%); /* IE10+ */
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 50%,rgba(128,186,232,0) 99%,rgba(125,185,232,0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#007db9e8',GradientType=1 ); /* IE6-9 */
}

.haneco-win-an-ultimate-kegerator .flyer img{
    max-width: 100%;
    object-fit: contain;
}

.haneco-win-an-ultimate-kegerator .button-group a::after{
    filter: invert(100%);
}

@keyframes shine-block {
	0% {transform:translateX(-100%);}
    10% {transform:translateX(100%);}
	100% {transform:translateX(100%);}
}