body {
    margin: 0;
    background-color: #ffffff;
    overflow: hidden;
}

#main {
    position: relative;
    margin: auto;
    width: 360px;
    height: 460px;
}

#toys {
    position: absolute;
    top: 210px;
    left: 102px;
    width: 231px;
    height: 121px;
    background-image: url('img_gacha_crane_prize.png');
    object-fit: contain;
}

.toy {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-image: url('img_gacha_crane_grabbit.png');
    background-size: 350px 350px;
    background-position: 0 0;
}

#moveContainer {
    position: absolute;
    top: 343px;
    left: 102px;
    width: 231px;
    height: 36px;
    background: #434242;
    border: 2px solid #898989;
    border-radius: 20px;
}

#moveControl {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 36px;
    height: 36px;
    background: #303030;
    border: 2px solid #898989;
    border-radius: 50%;
    cursor: pointer;
}

#claw {
    position: absolute;
    top: 65px;
    left: 30px;
    width: 60px;
    height: 260px;
}

#clawBar {
    position: absolute;
    top: 20px;
    left: 27px;
    width: 6px;
    height: 15px;
    background: #5b5b5b;
}

#clawALL {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
}

#clawBall {
    position: absolute;
    top: 31px;
    left: 25px;
    width: 6px;
    height: 6px;
    border: 6px solid #5b5b5b;
    border-radius: 50%;
}

#leftClaw {
    position: absolute;
    top: 36px;
    left: 8px;
    width: 16px;
    height: 25px;
    border-top: 8px solid #5b5b5b;
    border-left: 4px solid #5b5b5b;
    transform-origin: top right;
    transform: rotate(-30deg);
}

#rightClaw {
    position: absolute;
    top: 36px;
    right: 8px;
    width: 16px;
    height: 25px;
    border-top: 8px solid #5b5b5b;
    border-right: 4px solid #5b5b5b;
    transform-origin: top left;
    transform: rotate(30deg);
}

#clawOpen {
    transform: rotate(0deg);
}

@-webkit-keyframes fullsize {
    from {
        transform: scale(1) translate(0, 0)
    }

    to {
        transform: scale(4) translate(30px, -30px)
    }
}