@-ms-viewport {
    width: device-width;
}

@media only screen and (min-device-width:800px) {
    html {
        overflow: hidden;
    }
}

html {
    height: 100%;
}

body {
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    background-color: #000000;
}

.pano-box {
    background-color: #df091e;
    padding: 20px;
    border-radius: 10px;
    opacity: 0.8;
    text-align: center;
    color: #ffffff;
}

a.back-button {
    color: #ffffff;
}

#controls {
    position: fixed;
    top: 15px;
    left: 10px;
}

#controls>a {
    width: 50px;
    height: 50px;
    margin-left: 5px;
    line-height: 45px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #ffffff;
    display: inline-block;
    text-align: center;
    border-radius: 25px;
    font-size: 25px;
}

#controls>a:hover {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
}

#controls>a:focus {
    outline: 0;
}

#pano {
    width: 100%;
    height: 100%;
}

.pano-box-container,
#panorama-hint {
    /* Center vertically in container */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pano-box a {
    color: #ffffff;
}

.pano-box a:before {
    font-family: FontAwesome;
    content: "\f138";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
}

#debug-block {
    position: fixed;
    z-index: 99999;
    padding: 5px;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.smartphoneturn {
    display: block;
}

@media (min-width: 480px) {
    .smartphoneturn {
        display: none;
    }
}


