*, *:after, *:before {
    padding: 0;
    margin: 0;
    background: none;
    font-size: inherit;
    border: none;
    font-family: Arial, 'Helvetica Neue', Helvetica, Tahoma, sans-serif;
    text-decoration: none;
    font-weight: normal;
    list-style: none;
}

pre {
    white-space: pre;
    background: #FFFFFF;
    color: #333333;
    font-family: Monospace;
    font-size: 12px;
    line-height: 120%;
    overflow: auto;
    max-height: 100vh;
}

code {
    white-space: nowrap;
    font-family: Monospace;
    font-size: 11px;
}

body {
    background: #000000;
    color: #FFFFFF;
    overflow: hidden;
    position: relative;
    background-size: contain;
    z-index: 1;
}

#info {
    color: #FFFFFF;
    position: absolute;
    top: 10px;
    width: 100%;
    text-align: center;
    z-index: 100;
    display: block;
}

#info a, .button {
    color: #FF0000;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer
}

li .a, li.data {
    display: block;
    background: #FFFFFF;
    color: #333333;
    padding: 10px 15px;
    white-space: normal;
    font-size: 11px;
}

li.data {
    background: none;
    color: #FFFFFF;
    border: none !important;
}

.menu > li.export {
    background: blue;
    padding: 4px 15px;
}

li.export input {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    background: #FFF;
    padding: 5px;
    text-transform: uppercase;
}

li.export input[disabled] {
    opacity: 0.2;
}

li:hover > .a,
li.active > .a {
    background: #CCCCCC;
}

ul.menu {
    list-style: none;
    padding: 0;
    height: 30px;
    position: relative;
    z-index: 5;
    margin: 0 0 0 75px;
    user-select: none;
}

.menu > li {
    display: inline-block;
    vertical-align: top;
    border-right: 1px solid #CCCCCC;
    position: relative;
    white-space: nowrap;
}

.children {
    display: none;
    position: absolute;
    top: 100%;
    left: 0px;
    z-index: 5;
}

.menu > li:hover ul.children {
    display: block;
}

.children > li {
    border: 1px solid #CCCCCC;
    border-top: 0px;
}

.info {
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 9999;
    height: 20px;
    width: 100%;
}

.progress {
    width: 90%;
    float: left;
}

.progress-bar {
    width: 0%;
    transition: width 0.2s;
    background: rgba(255, 255, 255, .25);
    height: 20px;
}

.objects {
    width: 10%;
    float: left;
    background: rgba(255, 255, 255, .45);
    color: #FFFFFF;
    text-align: center;
    height: 20px;
}

.info .export {
    display: none;
    background: #FFF;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.export textarea {
    display: block;
    min-width: 1200px;
    min-height: 800px;
    color: #000;
    padding: 30px;
    border: 1px solid #000;
    margin: 10px;
}

.close {
    margin: 10px;
    padding: 5px;
    color: #000;
    cursor: pointer;
    user-select: none;
}