body {
    height: 95vh;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    font-family: Medium, sans-serif;
    color: #fff;
    background-color: #000;
    user-select: none;
}

form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: auto;
    max-width: 1200px;
}

a {
    text-decoration: none;
    color: #999;
}

a:hover {
    opacity: 0.7;
}

div {
    margin: 12px;
    width: 80%;
}

ul {
    list-style: none;
    padding-left: 0;
}

.inline {
    display: inline-block;
    padding-left: 10px;
}

#quality {
    height: 10px;
    max-width: 350px;
    width: 35%;
}

#loading {
    border: #f0f;
    position: absolute;
    width: 300px;
    overflow: hidden;
}

#loading_div span {
    line-height: 54px;
    margin-left: 320px;
}

#greenBar {
    height: 30px;
    background-color: #0b0;
    position: relative;
    left: -300px;
    width: 300px;
    margin: 0;
}

.hidden {
    display: none;
}

.submitButton {
    display: inline-block;
    border: 1px solid #f0f;
    color: #f0f;
    width: initial;
    margin: 5px;
    padding: 0 5px;
    height: 30px;
    line-height: 30px;
    background-color: transparent;
    font-size: 1rem;
}

button.submitButton{
    box-sizing: content-box;
}

#fileList_ul {
    border-radius: 3px;
    border: solid 1px #f0f;
    padding: 20px;
}

#fileList_ul li {
    color: #fff;
    width: 18%;
    overflow: hidden;
    margin-left: 10px;
    font-size: 12px;
}

#fileList_ul .done {
    color: #393;
}

#fileList_ul {
    display: flex;
    justify-items: center;
    flex-wrap: wrap;
}

#files_multiple {
    position: absolute;
    left: -200px;
}

#errorMessage {
    line-height: 30px;
    padding: 0 10px;
    margin-top: 20px;
    background-color: #bc1717;
    border-radius: 5px;
    text-align: center;
}

#maxSize {
    width: 60px;
    height: 30px;
    line-height: 30px;
}

.ml_30 {
    margin-left: 30px;
}

footer {
    width: 100%;
    margin: auto;
    text-align: center;
    position: absolute;
    bottom: 30px;
}

#waiting {
    margin-left: 20px;
}

button, input:hover, input, label:hover, a {
    cursor: none;
}

label:hover {
    color: #f0f;
    transition: 0.3s;
}

.animate_fading {
    animation: waitingFading 2s linear infinite;
}

.fadeIn {
    animation: fadeIn 0.3s ease-in forwards;
}

@keyframes waitingFading {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 680px) {
    body {
        font-size: 1.2rem;
    }


}