.panel-container
{
	height: calc(100vh - 12em);
	width: 100%;
}

.panel-profile
{
	padding: 1em;
	height: 100%;
	display: flex;
	flex-flow: column;
}

.panel-profile-left
{
	float: left;
	width: 20%;
	position: relative;
	display: flex;
	flex-direction: column;
}

.panel-profile-right
{
	float: right;
	width: calc(80% - 1em);
}

.panel-profile-panel
{
	background-color: #0004;
	width: 100%;
	flex: 1 1 auto;
	padding: 1em;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.profile-avatar
{
	width: 100%;
	border-radius: 1em;
	margin-bottom: 1em;
}

.profile-nickname
{
	font-weight: bold;
	text-align: center;
	flex-grow: 1;
}

.profile-buttons
{
	width: 100%;
	display: flex;
	flex: 0 1 2em;
	margin-bottom: 1em;
	min-height: 2em;
}

.profile-buttons button
{
	height: 100%;
	font-size: .8em;
}

.profile-buttons button:not(:last-child)
{
	margin-right: 1em;
}

.profile-line
{
	width: 100%;
	line-height: 1.5em;
}

.profile-line:nth-child(even)
{
	opacity: .7;
}

.profile-line > font:first-child
{
	float: left;
	font-weight: bold;
}

.profile-line > font:last-child
{
	float: right;
	max-width: 60%;
	text-align: right;
}

.profile-element
{
	background-color: #0004;
	padding: .5em;
	cursor: pointer;
	position: relative;
}

.profile-element:not(:last-child)
{
	margin-bottom: 1em;
}

.profile-element-rule
{
	width: 100%;
}

.profile-element-transaction
{
	cursor: default;
	display: flex;
}

.profile-element-transaction-description
{
	flex: 1;
}

.profile-element-transaction-amount
{
	width: 20%;
	text-align: center;
}

.button-steam
{
	background: #0006;
	border-radius: .5em;
	color: #fff;
	font-weight: bold;
	text-align: center;
	padding: .5em;
}

.button-steam:hover
{
	background: #0008;
}

.show-element
{
	display: flex;
	flex-direction: column;
}

.panel-notes
{
	height: calc(100% - 3em);
	display: flex;
	flex-direction: column;
}

.profile-notes
{
	overflow-y: auto;
	background-color: #0004;
	padding: 1em;
}

.profile-note
{
	position: relative;
	padding: .5em;
	background-color: #0004;
}

.profile-note:not(:last-child)
{
	margin-bottom: 1em;
}

.profile-note-owner
{
	
}

.profile-note-text
{
	
}

.profile-note-date
{
	position: absolute;
	top: 1em;
	right: 1em;
	font-size: .75em;
	color: #fff8;
}

.profile-edit-note-button
{
	margin-top: 1em;
}

.profile-edit-balance
{
	display: flex;
}

.profile-edit-balance-amount
{
	width: 15% !important;
	text-align: center;
}

.profile-edit-balance-reason
{
	margin: 0 1em;
}

.profile-edit-balance-button
{
	height: 100%;
	width: 20% !important;
}