body {
    position: relative;
}

.app-nomobile-content, .app-nomobile-overlay {
    position: absolute;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    display: none; 
    /*display: flex; */
}
.app-nomobile-content {
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
    filter: blur(0px);
    backdrop-filter: blur(0px);
    background-color: #FFFFFF;
    border-radius: 6px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.13), 0 6px 20px 0 rgba(0, 0, 0, 0.12);
    opacity: 1;
    margin: auto;
    z-index:99999;
    width: 75%;
    height: auto;
    min-height: 150px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: dotted 1px #00000028;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 10px;
    text-align: center;
}
.app-nomobile-overlay {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
    backdrop-filter: blur(5px);
    background:rgba(255,255,255,0.93);
    z-index:99998;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.app-nomobile-logo {
    max-height:60px;
    width: auto;
    /* aspect-ratio: 1 / 1; */
    object-fit: contain;
}

@media (max-width: 1024px) {
    .app-nomobile-content {
        width: 85%;
    }
}

@media (max-width: 768px) {
    .app-nomobile-content {
        width: 95%;
    }

    .app-nomobile-logo {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .app-nomobile-content {
        width: 100%;
    }

    .app-nomobile-logo {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .app-nomobile-logo {
        width: 90%;
    }

}
