.memlistcontain{
    display: flex;
    flex-direction: column;	
	width: 100%;
}

.memlistwrap{
	display: flex;
    flex-direction: row;
    width: 100%;
    gap: 5px;
	margin-bottom: 50px;
}

.memlistchars{
    width: 80%;
    background: var(--tb-bg);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px;
	gap: 20px;
	max-height: 480px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--tb-hl1) var(--tb-bg);
}

.memlistuser{
	width: 20%;
    background: var(--tb-bg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.memlistname{
	font-size: 40px;
    font-family: var(--tb-main);
    font-weight: 600;
    color: var(--tb-hl1);
}

.memlistfacts{
	font-size: 13px;
    font-style: italic;
	text-align:center;
}