:root {
    --accent-color: #252525;
    --accent-color2: rgb(212, 24, 24);
}

html,
body {
    padding: 0;
    margin: 0;
    background: #fff;
    /* background: #171e3b; */
    /* background: #fff; #171e3b; */
    /* background: #f1f1f1; */
    /* background:  #11162e; */
    /* background:  #111; */
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#file-drop-area {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#controls {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#play-music {
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

#controls.loaded {
    background-image: none;
}

#controls.loaded * {
    display: none;
}

canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#time {
    position: absolute;
    top: 0;
    height: 4px;
    left: 0;
    width: 1%;
    background: var(--accent-color);
    -webkit-backface-visibility: hidden;
}

#artist-track {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

#artist,
.artist {
    font-family: 'Roboto';
    font-size: 27px;
    font-weight: 300;
    color: var(--accent-color);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 3px;
}

#track,
.track {
    font-family: 'Roboto';
    font-size: 16px;
    color: var(--accent-color2);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

#save-and-download {
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0%;
    top: 0;
    border-bottom: 1px solid #003040;
    background: #fff;
    padding: 0;
    text-align: center;

    -webkit-transform: translateY(-101px);
    -moz-transform: translateY(-101px);
    -ms-transform: translateY(-101px);
    -o-transform: translateY(-101px);
    transform: translateY(-101px);

    -webkit-transition: -webkit-transform 300ms ease-out;
    -moz-transition: -moz-transform 300ms ease-out;
    -ms-transition: -ms-transform 300ms ease-out;
    -o-transition: -o-transform 300ms ease-out;
    transition: transform 300ms ease-out;
    ;
}

#save-and-download.visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    
    z-index: 999999;

}

#save-and-download h1 {
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 21px;
    text-align: center;
    line-height: 1;
    display: block;
    color: #333;
    text-transform: uppercase;
    margin: 0;
    padding: 14px 0 0 0;
}

#save-and-download-buttons {
    padding-top: 13px;
    text-align: center;
    transition: opacity 0.3s ease-out;
}

#save-and-download-buttons.hidden {
    opacity: 0;
    pointer-events: none;
}

#save-and-download button,
#save-and-download a {
    display: inline-block;
    font-family: 'Roboto';
    height: 25px;
    padding: 0 10px;
    line-height: 25px;
    background: var(--accent-color);
    border-radius: 3px;
    font-size: 13px;
    font-weight: bold;
    border: none;
    /* text-shadow: 0 1px 1px #004C66; */
    color: #FFF;
    opacity: 0.4;
    text-decoration: none;
}

#save-and-download-buttons button:hover {
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

#generate-progress {
    width: 314px;
    height: 21px;
    padding: 1px;
    border: 1px solid #FFF;
    position: absolute;
    left: 50%;
    margin: -24px 0 0 -158px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

#generate-progress.visible {
    pointer-events: auto;
    opacity: 1;
}

#generate-bar {
    height: 21px;
    width: 0%;
    background: #00B2B2;
}

#save {
    position: absolute;
    bottom: 30px;
    left: 20px;
}

#save-and-download a#get-download {
    position: absolute;
    bottom: 27px;
    left: 50%;
    width: 100px;
    margin: 0 0 0 -60px;
    opacity: 0;
    pointer-events: none;
}

#save-and-download a#get-download.visible {
    opacity: 1;
    pointer-events: auto;
}

#status {
    position: absolute;
    top: 30px;
    left: 30px;
    color: #FFF;
}

form {
    position: absolute;
    left: 50%;
    top: 45%;
    width: 600px;
    margin-left: -300px;
    text-align: center;
    color: #AAA;
    font-family: 'Roboto';
    font-size: 16px;
}

form div {
    text-align: center;
    margin-bottom: 1em;
}

.renderer-config-inputs {
    z-index: 99999;
    position: relative;
    padding:20px;
}

.slide-container {
    display: flex;
    align-content: center;
    align-items: center;
}

.slide-container .slider {
    margin: 10px 8px;
}