#fullScreenTapContainer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 2147483647;
    display: none;
}

#fullScreenSwipeContainer {
    width: 100%;
    height: 400vh;
    position: absolute;
    z-index: -1;
    overflow: hidden;
    display: none;
}

.scroll-helper {
    width: 100%;
    height: 200vh;
}

body.ios-full-screen #fullScreenSwipeContainer {
    z-index: 1000;
    overflow-y: auto;
}

body.android-full-screen #fullScreenTapContainer {
    display: block;
}

.fullscreen-dimmer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-align: center;
    z-index: 9999;
}

.fullscreen-icon {
    position: absolute;
    width: 100px;
    height: 100px;
    margin-bottom: 150px;
}
