/* CSS Document */
/* Put here all style referred to specific Visual */

body {   
     
}


.bkgBlur {
    filter: blur(8px);
    -webkit-filter: blur(8px);
}


.hidden {
    display: none !important;
}

#rotate-device {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99999;
}
#rotate-device p {
    color: #fff;
    font-size: 12px;
    text-align: center;
    display: block;
    position: relative;
    top: 32%;
}
#rotate-device img {
    display: block;
    position: relative;
    width: 30%;
    height: auto;
    top: 25%;
    left: 35%;
    filter: invert(1);
    animation: rotate90deg 2s infinite;
}
@keyframes rotate90deg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(90deg);
    }
}

.reductpulse
{
    transform-origin: center;
    animation: 1.5s linear 0s infinite normal none running reductpulse !important;
}

@-webkit-keyframes reductpulse {
    0% {
        -webkit-transform: scale3d(1.0, 1.0, 1.0);
        -webkit-animation-timing-function: ease-in-out;
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        -webkit-animation-timing-function: ease-in-out;
    }

    100% {
        -webkit-transform: scale3d(1.0, 1.0, 1.0);
        -webkit-animation-timing-function: ease-in-out;
    }
}