.openSettings {
    background-color: rgb(199, 103, 88) !important;
    justify-content: flex-end !important;
    flex-direction: row-reverse;
    width: 600px !important;
    height: 400px !important;
    border-radius: 40px !important;
    z-index: 2 !important;
}

#changeSettingsContainer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.settings-list-item {
    list-style-type: none;
    display: flex;
    height: 60px;
    display: flex;
    align-items: center;
    font-size: 28px;
    gap: 20px;
    transition: all 175ms ease-in-out;
    width: calc(100% - 38px);
    justify-content: space-between;
    margin-left: 20px;
}

#volumeCounter {
    font-size: 34px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.volume-arrow-btns {
    background-color: transparent;
    border-color: transparent;
    width: 80px;
}

.change-volume-container {
    display: flex;
    justify-content: flex-end;
    width: 200px;
}

.toggle-hitbox-container {
    display: flex;
    justify-content: center;
    width: 200px;
}

.toggle-hitbox-btn {
    border-color: transparent;
    background-color: transparent;
}

.switch-btn-img {
    transition: all 175ms ease-in-out;
    width: 70px;
}

.switch-btn-img:hover {
    cursor: pointer;
    filter: drop-shadow(0px 0px 3px black);
}

.volume-arrow {
    transition: all 175ms ease-in-out;
}

.volume-arrow:hover {
    cursor: pointer;
    filter: drop-shadow(0px 0px 3px black);
}

#settingsBtnImg {
    width: 48px;
    height: 48px;
    transition: all 175ms ease-in-out;
}

#settingsBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    background-color: rgb(199,103,88);
    border: 2px solid white;
    border-radius: 50%;
    filter: drop-shadow(0px 0px 3px black);
    transition: all 175ms ease-in-out; 
}

#settingsBtn:hover {
    cursor: pointer;
    filter: drop-shadow(0px 0px 0px transparent) !important; 
}

#settingsBtn:hover #settingsBtnImg {
    filter: drop-shadow(0px 0px 3px black);     
}

#settingsBtnContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background-color: transparent;
    border-radius: 50%;
    transition: all 175ms ease-in-out !important;
}