.game-container {
    &.slotmachine {
        .slotmachine-wrap{
            position: relative;

            .slotcontainer {
                display: flex;
                justify-content: center;
                align-items: center;
                margin-bottom: 20px;

                .slot {
                    border-radius: 7.5px;
                    display: inline-block;
                    overflow: hidden;
                    position: relative;
                    background: #fafafa;
                    &:last-child {
                        margin-right:0 !important;
                    }
                }

                &.spin{
                    .symbols {
                        position: absolute;
                        top: 0;
                        left: 0;
                    }

                    .symbol {
                        display: block;
                        text-align: center;
                    }
                }

                &.flip{
                    .slot {
                        perspective: 250px;

                        .flipper {
                            position: relative;
                            transform-style: preserve-3d;
                            will-change: transform;

                            .front, .back {
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                backface-visibility: hidden;

                                img {
                                    width: 100%;
                                    height: 100%;
                                    object-fit: contain;
                                }
                            }

                            .back {
                                transform: rotateX(180deg);
                            }
                        }
                    }

                }
            }

            .result-target{
                display: none;
                width: 100%;
                height: 100%;
                position: absolute;
                left: 0;
                top: 0;
                z-index: 2;

                .result-prize {
                    background: no-repeat 50% 50%;
                    background-size: contain;
                    width: 100px;
                    height: 100px;
                    position: absolute;
                    top: 35%;
                    left: 50%;
                    transform: translate(-50%, 10%) scale(0.75);
                    transition: .5s ease-in-out transform;
                    z-index: 1;
                }

                &.show_ani{
                    .result-prize{
                        transform: translate(-50%,-50%) scale(1)!important;
                        transition: .5s ease-in-out transform;
                    }
                }

                #confetti {
                    position: absolute;
                    left:0;
                    right:0;
                    width: 100%;
                    height: 100%;
                    z-index: 0;
                }

            }

        }

    }
}
