body {
    background-color: #000000;
    height: 100%;
    width: 100%;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#input {
    position: fixed;
    font-size: 100px;
    top: -200px;
    display: none;
}

#content {
    top: 0px;
    width: 100%;
    height: 100%;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
}

#error-title {
    background-color: #4d4d4d;
    font-size: 30px;
    padding-top: 5%;
    padding-bottom: 5%;
    ;
    border-radius: 10px 10px 0 0;
}

#error-text {
    margin-top: 6%;
    font-size: 24px;
}

#error-container {
    top: 0px;
    width: 100%;
    height: 100%;
    margin: 0px;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #000000;

}

#error-content {
    transform: scale(1);
    height: 300px;
    width: 400px;
    position: absolute;
    left: 50%;
    margin-left: -200px;
    background-color: #212121;
    text-align: center;
    color: #FFFFFF;
    border-radius: 10px;
}

.wiener_debugMenu {
    position: fixed;
    opacity: 0;
    top: 0px;
    left: 0px;
    font-size: 25px;
}

.wiener_debugMenu.wiener_debugMenu_opened {
    opacity: 1;
}

.wiener_debugMenu:hover {
    opacity: 1;
}

.wiener_debugMenu_fps {
    position: fixed;

    top: 0px;
    left: 0px;
    font-size: 30px;
}

.wiener_debugMenu_opened .wiener_debuContent {
    display: block;
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: calc(100vh - 200px);
}

.wiener_debugMenu_closed .wiener_debuContent {
    display: none;
}

.wiener_debugMenu_closed .wiener_debugBtn {
    opacity: 0.5;
}

.wiener_icon {
    margin-top: 36%;
}

.wiener_debug_item {
    padding: 5%;
    pointer-events: all;
    cursor: pointer;
    width: 300px;
    /* height: 80px; */
    background-color: #a96e6e;
}

.wiener_debugBtn {
    width: 100px;
    height: 100px;
    cursor: pointer;
    background-color: #8c7b7bd9;
    pointer-events: all;
}

#fullscreen {
    width: 100vw;
    height: 155vh;
    position: absolute;
    z-index: 500;
}

#fullscreenAnimation {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 501;
    background: rgba(35, 35, 35, 0.90);
}


#soundAdjustment-wrapper {
    background: gray;
    border-radius: 50%;
    color: wheat;
    z-index: 99999;
    right: calc(50% - 5vh);
    top: 0;
    width: 10vh;
    height: 10vh;
    opacity: 0;
    position: absolute;
}

#soundAdjustment-wrapper:hover {
    opacity: 0.6;
}

#slidersContainer {
    top: 10vh;
    width: 40vw;
    background: black;
    position: absolute;
    /* left: -19vw; */
    padding: 2vw;
    border-radius: 5%;
    z-index: 9999;
    /* left: -19vw; */
    color: wheat;
}

.sound-names {
    font-size: 1.5vw;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #04AA6D;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #04AA6D;
    cursor: pointer;
}

.row {
    display: flex;
    justify-content: space-between;
}