@import "b2w-help.css"; 

@-webkit-keyframes pulsen {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 1;
    }

    30% {
        opacity: 0.5;
    }

    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0;
    }
}

@-webkit-keyframes ray_anim {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.b2w-disabledbutton {
    pointer-events: none !important;
    opacity: 0.4;
}

#btn-box2win-button {
    width: 7.031%;
    height: 12.500%;
    position: absolute;
    left: 90%;
    top: 0.4%;
    cursor: pointer;
}

.box2win-button-icon {
    background-image: url(box.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
}

#btn-box2win-button.disabledbutton {
    filter: grayscale(1);
}

    #btn-box2win-button.disabledbutton .b2w-circle {
        display: none;
    }

    #btn-box2win-button.disabledbutton.win {
        filter: grayscale(0);
        opacity: 1
    }

.ray_box {
    position: absolute;
    margin: auto;
    top: -18%;
    left: -106%;
    right: 0;
    bottom: 0;
    width: 300%;
    height: 300%;
    -webkit-animation: ray_anim 70s linear infinite;
    animation: ray_anim 10s linear infinite;
    z-index: 1;
    background-image: url(ray.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: none;
}

.b2w-textbox {
    position: absolute;
    top: 13.9%;
    left: -69%;
    height: 63%;
    width: 155%;
    color: white;
    font-family: Roboto-Condensed;
    text-align: center;
    text-shadow: 0.2vmin 0 0 #000, -0.2vmin 0 0 #000, 0 0.2vmin 0 #000, 0 -0.2vmin 0 #000, 0.1vmin 0.1vmin 0 #000, -0.1vmin -0.1vmin 0 #000, 0.1vmin -0.1vmin 0 #000, -0.1vmin 0.1vmin 0 #000, 0.1vmin 0.1vmin 0.5vmin #000;
    z-index: 1;
    background-image: url(display.png);
    background-repeat: no-repeat;
    background-size: contain;
}

    .b2w-textbox div {
        position: absolute;
        top: 17%;
        left: 5%;
        height: 63%;
        width: 38%;
    }

#btn-box2win-button .b2w-circle {
    position: absolute;
    top: -10%;
    left: -8%;
    height: 98%;
    width: 100%;
    border-radius: 100%;
    border: 5px solid #00bacb;
    -webkit-animation: pulsen 2s infinite;
    -moz-animation: pulsen 2s infinite;
    -o-animation: pulsen 2s infinite;
    /* box-shadow: 0px 0px 50px #ffeb3b96, 0px 0px 50px #00bacb; */
    z-index: 1;
}

/*****************************
******* CSS PRELOADER ********
*****************************/

.box2win-preloader-container {
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .7s ease-in-out;
    z-index: 3;
    position: absolute;
}

    .box2win-preloader-container.show {
        opacity: 1;
    }

        .box2win-preloader-container.show .box2win-preloader-loader {
            transform: scale(1);
        }

        .box2win-preloader-container.show .box2win-preloader-logo {
            transform: translateY(0);
        }

.box2win-preloader-wrap {
    width: 35vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.box2win-preloader-logo {
    width: 100%;
    transform: translateY(-100%);
    transition: transform .5s ease-in-out;
}

.box2win-preloader-loader {
    width: 30%;
    transform: scale(0);
    transition: transform .5s .5s ease-in-out;
}

