#app{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}
body , html{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
*{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.container{
    margin: 0px;
    width: 90%;
    height: 70%;
    background: #445;
    border: 1px solid #556;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
body{
    margin: 0px;
    background: #334;
}

#inputs input{
    padding: 2px;
    background: transparent;
    border-width: 0px 0px 1px 0px;
    border-color: #667;
    border-style: solid;
    margin: 8px;
    color: white;
    outline: none;
    font-size: 24px;
    display: flex;
}
#inputs .inp{
    display: flex;
    justify-content: center;
    align-items: center;
}
#inputs .inp select{
    background: #445;
    border: 1px solid #667;
    border-width: 0px 0px 1px 0px;
    padding: 8px;
    color: white;
    outline: none;
}
#inputs input:focus{
    border-color: white;
}

.btn{
    font-weight: bold;
    color: white;
    background: #37c;
    border: none;
    padding: 8px 32px;
    border-radius: 4px;
    margin-top: 32px;
    outline: none;
    cursor: pointer;
    font-size: 20px;
}
.btn:hover{
    background: #79f;
}
.loading-bar{
    width: 50%;
    height: 32px;
    border: 1px solid black;
    overflow: hidden;
    border-radius: 6px;
    margin-top: 32px;
    background: #556;
}
.loading-bar .bar{
    width: 0%;
    height: 100%;
    background: #4f8;
    text-align: center;
    overflow: hidden;
    transition: 1s;
}
.progress{
    color: white;
    font-weight: bold;
    position: absolute;
    transform: translate(-50%,0);
    left: 50%;
}
@keyframes lod{
    from{
        width: 0%
    }
    to{
        width: 100%;
    }
}
.timing{
    margin-top: 32px;
    color: white;
    font-weight: bold;
}
.percent{
    font-size: 8px;
    display: inline;
}
.title{
    color: white;
}
.cr{
    color: white;
}
.cr a{
    color: white;
}
@media (max-width:480px){
    #inputs input{
        width: 90%;
    }
    .loading-bar{
        width: 90%;
    }
}