/* Music screen things */
#music_screen {
    width: 100%;
    background-size: cover;
}

body, #music_screen {
    margin: 0vw;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    color: #cccbd0;
    background-color: black;
}

#canvas {
    z-index: 0;
    pointer-events: none;    
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    image-rendering: pixelated;
}

.hide_canvas {
    display: none;
}

#progress_and_timer_div {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 12vw;
}

#timer_container {
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 1vw;
    border: 0.16vw solid var(--dynamic-color);
    box-shadow: 0.5vw 0.5vw 0.4vw #000000e6;
    margin-left: 1.5vw;
    width: 12vw;
}

#timer {
    font-family: RWmenu;
    font-size: 1vw;
    margin-left: 1vw;
    margin-top: 0.6vw;
    margin-bottom: 0.6vw;
    color: var(--dynamic-color);
}

.solo_button {
    padding: 0.4vw;
    padding-bottom: 0.1vw;
    image-rendering: pixelated;
}

.layer_options {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#layer_button_container {
    display: flex;
    flex-direction: row;
}

.layer_button {
    padding: 0.6vw;
    image-rendering: pixelated;
}

.button_icon {
    width: 100%;
    min-width: 3.7vw;
}

.solo_button_icon {
    width: 100%;
    min-width: 2vw;
}

.other_button_icons {
    width: 100%;
    min-width: 3.5vw;
    image-rendering: pixelated;
    filter: var(--dynamic-filter)
}

.other_buttons {
    padding: 0.6vw;
    position: relative;
    image-rendering: pixelated;
    color: var(--dynamic-color);
    border: 0.16vw solid var(--dynamic-color);
}

#region_name {
    margin: 0vw;
    font-size: 7vw;
    text-shadow: 0.3vw 0.3vw 0.25vw #000000e6;
    color: var(--dynamic-color);
}

#exit_button, #settings_button {
    padding: 0.5vw;
    color: var(--dynamic-color);
    border: 0.16vw solid var(--dynamic-color);
}

#music_option_buttons_container {
    display: flex;
    flex-direction: column;
    z-index: 0;
    position: absolute;
    left: 1.3vw;
    top: 1.8vw;
}

#visualizer_toggle, #fade_button {
    color: var(--dynamic-color);
    border: 0.16vw solid var(--dynamic-color);
}

.layer_button_brightened {
    box-shadow: 0vw 0vw 1.3vw 0.4vw var(--glow-color);
}

.layer_button_brightened, .layer_button_darkened {
    transition: all 0.3s ease;
}

.layer_button_darkened:hover, .layer_button_brightened {
    filter: brightness(100%);
}

.layer_button_brightened {
    scale: 1.125;
}

.solo_button:hover {
    filter: brightness(100%);
}

.darken_button {
    filter: brightness(10%);
    pointer-events: none;
}

.darken_button.other_buttons {
    filter: brightness(50%);
    pointer-events: none;
}

#layer_button_container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.layer_button_tippy_div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sliders {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 1vw;
    background-color: #000000;
    border: 0.15vw solid var(--dynamic-color);
    cursor: pointer;
}

.sliders::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 0.8vw;
    width: 0.8vw;
    border-radius: 5vw;
    background-color: var(--dynamic-color);
}

.sliders::-moz-range-thumb {
    border: none;
    background-color: var(--dynamic-color);
}

#master_volume_slider {
    width: 18vw;
}

.fade_duration_sliders {
    width: 14vw;
}

#settings_container {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: RWmenu;
    font-size: 0.7vw;
    color: var(--dynamic-color);
    border-radius: 1vw;
    border: 0.16vw solid var(--dynamic-color);
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    position: absolute;
    top: 8.5vw;
    left: 7.5vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    padding: 1vw;
    padding-top: 0.4vw;
    width: 20vw;
    height: 17vw;
}

#volume_reset_button {
    color: inherit;
    border: 0.16vw solid var(--dynamic-color);
    font-size: 0.6vw;
    margin-left: 0vw;
    padding: 0.6vw;
}

#c {
    display: none;
    position: absolute;
    z-index: 999;
    opacity: 3%;
    max-height: 4vw;
    width: 10vw;
    top: -1vw;
    right: -2vw;
}