#popup_account_container{
    background: var(--bg);
    position: fixed;
    
    top: 80px;
    right: 80px;
    

    height: 600px;
    width: 400px;

    border: 2px solid var(--fg);
    border-radius: 20px;

    padding: 10px 0 0 20px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}

#popup_account_container > div{
    width: 100%;
}

#account_info_title{
    font-family: "bebas neue";
    font-size: 24pt;
    color: var(--hl_fg);

    text-align: center;
    margin-top: 30px;
}

.account_info{
    display: flex;
    margin: 10px 0 10px 0;
}

.account_info_title{
    font-family: "bebas neue";
    font-size: 18pt;
    color: var(--hl_fg);
    width: 40%;
}

#account_info{
    margin-top: 30px;
}

#account_info_content{
    width: 60%;
}

#account_actions{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-bottom: 30px;
}