﻿.bg-danger {
    visibility: visible !important;
    width: 100%;
    position: absolute;
    background: #eee;
    top: 0;
    height: 100vh;
    text-align: center;
    /* display: flex; */
    overflow: unset;
    z-index: 999;
}




.xMob {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999999;
    background: rgb(0 0 0 / 60%);
    text-align: center;
    font-family: "Cairo";
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(10px);
    padding: 25px;
}

    .xMob p {
        font-size: 16px;
    }

    .xMob .adbtimer {
        font-size: 16px;
        color: #e88301;
        font-weight: 600;
    }

#bab {
    display: none;
    color: #fff;
}

.phone {
    height: 50px;
    width: 100px;
    border: 3px solid white;
    border-radius: 10px;
    animation: rotate 1.5s ease-in-out infinite alternate;
}

.message {
    color: white;
    font-size: 1em;
    margin-top: 40px;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-90deg);
    }

    100% {
        transform: rotate(-90deg);
    }
}

@media screen and (min-width: 320px) and (max-width: 812px) and (orientation: portrait) {
    .xMob {
        display: flex;
    }
}

@media only screen and (max-device-width: 812px) and (orientation: landscape) {

    .phone,
    .message {
        display: block;
    }

    .xMob {
        display: none;
    }
}
