.game_config {
    display: flex;
    flex-direction: column;
    width: 75vw;
    min-width: 850px;
    margin: 0px auto 0px;
    gap: 10px;
}

.topbar {
    display: flex;
    flex-direction: row;
    height: 30px;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 6px;
    background-color: var(--blue);
    padding: 6px 20px 6px;
    display: flex;
    color: white;

}

.game_config div,
.game_config span {
    user-select: none;
    cursor: pointer;
}

.divider {
    height: 95%;
    width: 4px;
    border-radius: 2px;
    background-color: white;
    opacity: .4;
}

.category,
.gamemode,
.setting,
.timetype {
    opacity: .4;
    transform: scale(1);
    transition: .2s;
}

.category.active,
.gamemode.active,
.setting.active,
.timetype.active {
    opacity: 1;
}

.category:hover,
.gamemode:hover,
.setting:hover,
.timetype:hover {
    transform: scale(1.04);
}

.game_config input[type=number] {
    display: none;
}

.itembuild.hidden,
.spells.hidden {
    display: none;
}

.settings {
    width: 150px;
}

.settings.down {
    display: none;
}

.categories.items {
    display: none;
}

.section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 25px;
}