html, body
{
    margin: 0;
    padding: 0;
    height: 100%;
}

.app-container
{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}


#p360-container {
    width: 100%;
    height: 100%;    
    background: #ffffff;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}


#loading {           
    background-color: #fff;            
    border-radius: 50px;
    box-shadow: 0px 0px 10px #3e3e3e;
    visibility: hidden;            
    font-family: 'segoe ui';
    font-size:20px;
    text-align: center;
    position: absolute;
    width: 60px;
    height: 29px;
    top: 50%;
    left: 50%;
    padding: 0px 4px;
    margin-left: -30px;
    margin-top: -14px;
}

.show {
    display: block;
}

.show-inline{
    display: inline-block;
}

.hide {
    display: none;
}

.function-rotate-btn {
    position: absolute;
    width: 67px;
    height: 58px;
    overflow: hidden;
    background: rgba(82,82,82,0.4);
    border: none;
    border-radius: 5px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    outline: none;
}

.function-rotate-btn:hover {
    background: rgba(82,82,82,0.6);
}

#desc {
    position:fixed;
    top:46px;
    left:50%;
    transform:translateX(-50%);
    background:rgba(82,82,82,0.8);
    padding:10px 20px;
    border-radius:6px;
    color:white;
    overflow:auto;
    box-sizing:border-box;
    min-width:240px;
    width: 90%;
    max-width: 600px;
}

#desc::-webkit-scrollbar {
    width: 6px;
    height: 1px;
}

#desc::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #535353;
}

#desc::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 10px;
    background: #EDEDED;
}

