/**/
.test1 {
    animation-name: test1;
    animation-duration: .8s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    max-width: 750px;
    overflow: hidden;
}

@keyframes test1 {
    from {}

    to {
        transform: scale(1.1, 1.1);
    }
}

.btn-fixed img {
    width: 90%;
}

.reflection-img {
    position: relative;
    overflow: hidden;

}

.reflection {
    height: 100%;
    width: 10%;
    position: absolute;
    top: -100px;
    left: 0;
    background-color: #fff;
    opacity: 0;
    transform: rotate(112deg);
    animation: reflection 2s ease-in-out infinite;
}

@keyframes reflection {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    80% {
        transform: scale(0) rotate(12deg);
        opacity: 0.5;
    }

    81% {
        transform: scale(4) rotate(45deg);
        opacity: 1;
    }

    100% {
        transform: scale(20) rotate(45deg);
        opacity: 0;
    }
}


.wid81 {
    width: 81%;
}

.top38_5 {
    top: 38.5%;
}

.all-refund {
    position: absolute;
    top: 56%;
    right: 33%;
    width: 21%;
    height: 20px;
    z-index: 100;
}

.ugc-area {
    margin-top: -15%;
}

.ugc-header {
    z-index: 1;
}

.coupon_note {
    text-align: center;
    margin-top: 1%;
    color: red;
}

.test1 {
    animation-name: test1;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

@keyframes test1 {
    from {}

    to {
        transform: scale(1.2, 1.2);
    }
}


@media screen and (max-width:750px) {
    .ugc-area {
        margin-top: -20%;
    }
}