.settings-container {
    transition: all 0.5s ease, left 0.5s ease 0.25s, bottom 0.5s ease 0.25s;
    --move-px: calc((1vw + 1vh) - 2px);
    width: fit-content;
    height: fit-content;
    overflow: clip;
    border-radius: 10px;
    background: rgba(50,50,50,0.2);
    position: fixed;
    bottom: var(--move-px);
    left: var(--move-px);
    z-index: 999;
    backdrop-filter: blur(8px) saturate(250%) brightness(75%);
    border: 1px solid transparent;
}
.settings-container:has(.open-settings.settings-part.hide) {
    bottom: calc(10vh - 2px);
    left: calc(10vw - 2px);
    border-radius: 25px;
    border: 1px solid rgb(115, 115, 115,0.5);
}
.settings-container .open-settings.settings-part {
    --open-size: calc(1.5vw + 0.75vh);
    width: var(--open-size);
    height: var(--open-size);
    padding: 10px;
    border-radius: 10px;
    background: rgb(0, 0, 0,0.2);
    outline: none;
    border: 1px solid rgba(255,255,255,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.settings-part.settings-main:not(.hide) {
    transition: all 0.5s ease 0.5s, width 0.5s ease 0.25s, height 0.5s ease 0.25s;
    width: 80vw;
    height: 80vh;
}
.settings-container .open-settings.settings-part {
    cursor: pointer;
    transition: all 0.5s ease 0.5s, width 0.5s ease 0.5s, height 0.5s ease 0.5s, opacity 0.5s ease 0.5s, padding 0.5s ease 0.5s;
}
.open-settings .fa-solid {
    cursor: pointer;
}
.settings-part.hide,
.settings-part.settings-main.hide {
    transition: all 0.5s ease, width 0.5s ease 0.25s, height 0.5s ease 0.25s;
    pointer-events: none;
    opacity: 0;
    width: 0;
    height: 0;
    overflow: clip;
    padding: 0;
    margin: 0;
}
.settings-container .open-settings.settings-part.hide {
    transition: all 0.5s ease, width 0.5s ease 0.25s, height 0.5s ease 0.25s, padding 0.5s ease 0.25s, opacity 0.25s ease;
    pointer-events: none;
    opacity: 0;
    width: 0;
    height: 0;
    overflow: clip;
    padding: 0;
    margin: 0;
}

.settings-part.settings-main {
    transition: all 0.5s ease 1s, width 0.5s ease 0.5s, height 0.5s ease 0.5s, padding 0.5s ease 0.5s;
    position: relative;
}
.settings-part.settings-main button {
    width: fit-content;
    height: fit-content;
    margin: 0;
    padding: 10px;
    border-radius: 10px;
    border: none;
    outline: 1px solid rgba(255,255,255,0.25);
    position: absolute;
    top: 2vh;
    right: 2vw;
    color: white;
    background-color: black;
    background: rgba(50,50,50,0.2);
    cursor: pointer;
    backdrop-filter: brightness(1) saturate(100%);
}
.settings-part.settings-main button:hover {
    backdrop-filter: brightness(1.5) saturate(500%);
}