* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a{
    color: white;
}

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;
}
#app {
    display: none;
}

#app>* {
    position: absolute;
    visibility: visible;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

#app ul {
    list-style-type: none;
}

#app li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
}

#app ul a {
    display: block;
    text-decoration: none;
}

#app ul p {
    padding: 0;
    margin: 0;
    font-size: 10px;
    transform: scale(.9);
}

#app .tools {
    top: 10px;
    right: 10px;
    list-style: none;
}

#app ul.tools li {
    display: block;
    margin-bottom: 5px;
    overflow: hidden;
}

#app .tools a {
    width: 30px;
    height: 30px;
    color: white;
}

#app .tools img {
    width: 30px;
}

#app .menu {
    width: 100%;
    bottom: 0;
    text-align: center;
}

#app .menu li {
    float: left;
}

#app .menu li.right {
    float: right;
}

#app .menu img {
    width: 40px;
}

#app .languages {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    user-select: none;
    background-color: rgba(0, 0, 0, .3);
    text-align: center;
    display: none;
}

#app .languages span {
    width: 50px;
    display: inline-block;
    margin: 0 5px;
    position: relative;
    top: 50%;
    transition: all .3s;
    cursor: pointer;
}

#app .languages span:hover {
    transform: translateY(-10px);
}

#app .languages span img {
    width: 100%;
    vertical-align: bottom;
}

#app .tools a.off img {
    transform: translateY(-30px);
}