.tabbed-menu {
    position: absolute;
    bottom:0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    z-index: 2000;
    color: white;
    backdrop-filter: blur(5px);
}
.tab-header {
    display: flex;
    position: relative;
    background: #222;
    border-bottom: 1px solid #444;
}
.tab-button-menu {
    flex: 1;
    padding: 12px;
    font-size: 1.5em;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-weight: bold;
}
.tab-button-menu.active {
    background: #444;
    display: flex;
    justify-content: center;
}
.tab-content {
    padding: 0px;
    display: none;
    position: relative;
}

.close-tab-menu
{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    right: 13px;
    transform: translateY(-50%);
    font-size: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 0, 0, 0.3);
}

.close-tab-menu:hover
{
    background-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 1);
}

#passivesTab {
    flex: 1;
    flex-direction: column;
    height: 100%;
    position: relative;
}

#questsTab, #craftTab, #glossaryTab
{
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    font-size: 3em;
    color:#737373;
    display: none;
    text-align: center;
}

/* CONTROLS*/
.controls
{
    position: absolute;
   
    top: 78px;
    left: 25px;
    z-index: 1000;
    text-transform: uppercase;
    color:#a5a5a5;
    font-weight: bold;
    font-size: 1.2em;
    user-select: none;
}

.controls img
{
    width:50px;
    margin-right: 20px;
}

.controls_action
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin:20px 0;
}