html, body {
    position: fixed;
    width: 100vw;
    height: 100vh;
    margin: 0;
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;
}

a {
    color: #4286f4;
    text-decoration: none;
}

a:active {
    text-decoration: underline;
}

.center {
    text-align: center;
}

.offline {
    display: unset;
}

.online {
    display: none;
}

.iconButton {
    color: white;
    text-decoration: none;
    width: 32px;
    height: 32px;
    left: calc(50vw - 16px);
}

.iconButton.lower {
    position: fixed;
    bottom: 24px;
}

.iconButton.left {
    position: fixed;
    left: 24px;
}

.iconButton.right {
    position: fixed;
    left: unset;
    right: 24px;
}

.iconButtonContent {
    font-size: 32px!important;
}

#preview {
    position: fixed;
    width: calc(100vw - 20px);
    height: calc(100vh + 20px);
    object-fit: cover;
    z-index: -1;
}

#lens {
    position: fixed;
    top: calc(calc(100vh - 50vw) / 2);
    left: calc(calc(100vw - 50vw) / 2);
    width: 50vw;
    height: 50vw;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 5vw;
    transition: 0.5s;
}

#drawerHandle {
    position: fixed;
    left: calc(50vw - 50px);
    width: 100px;
    height: 40px;
    bottom: 0;
    background-color: white;
    border-radius: 10px 10px 0 0;
    pointer-events: none;
}

.drawerHandlePart {
    width: calc(100% - 20px);
    height: 20px;
    margin: 10px;
    background-color: #bbbbbb;
    border-radius: 10px;
}

#drawer {
    position: relative;
    top: 100vh;
    width: 100vw;
    min-height: calc(100vh + 50px);
    background-color: white;
    border-radius: 10px 10px 0 0;
}

#drawerInsideHandleHolder {
    position: relative;
    width: 100px;
    height: 40px;
    padding-top: 3px;
    left: calc(50vw - 50px);
}

#map {
    width: 100%;
    height: 40vh;
}

#options {
    position: absolute;
    top: calc(100vh + 100px);
    width: 100%;
    height: 50px;
    background-color: #4286f4;
}

#webpage {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
}

#webpageURL {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100vw - 100px);
    padding: 20px;
    overflow: hidden;
}

#webpageCloseButton {
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px;
    color: black;
}

#webpageContent {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 60px);
    border: none;
}

@media (orientation: landscape) {
    #lens {
        width: 50vh;
        height: 50vh;
        top: calc(calc(100vh - 50vh) / 2);
        left: calc(calc(100vw - 50vh) / 2);
        border-radius: 5vh;
    }
}

@media (max-width: 600px) {
    #map {
        height: 50vh;
    }
}