.main_header{
	/*background: #121212;*/
	background: var(--main_header);
	padding: 15px;
	border-radius: 20px;
	position: sticky;
	top: 15px;
	width: calc(100vw - 30px);
	margin: 15px auto 0;
	z-index: 0;
	-webkit-transform: translate3d(0,0,0);
}

.main_top_line{
	display: flex;
	font-size: 24px;
	font-family: 'MontserratSemiBold';
	align-items: center;
}

.main_name{
	flex: 1;
}

.main_settings_button{
	width: 40px;
	height: 40px;
	background: url(/static/img/main/settings.svg) center/30px no-repeat;
	margin-left: auto;
}

.main_header_additional{
	height: 0px;
	overflow: hidden;
	transition: height 0.3s;
	-webkit-transform: translate3d(0,0,0);
	will-change: height;
}

.main_header_additional[expand]{
	height: 316px;
}

.main_header_balance_wrap{
	display: flex;
	align-items: center;
	font-size: 24px;
	line-height: 29px;
	font-family: 'MontserratSemiBold';
	padding: 20px 0;
}

.main_header_balance_icon{
	width: 30px;
	height: 30px;
	background: url(/static/img/main/balance.svg) center/30px;
	margin-right: 15px;
}

.main_header_balance_value{
	color: #18a718;
}

.main_header_balance_value[type="0"]{
	color: #e54141;
}

.main_header_balance_value::after,
.main_header_details_row_value::after,
.object_card_info_balance::after{
	content: '\00a0 ₽';
}

.main_header_details_wrap{

}

.main_header_details_row{
	padding-bottom: 10px;
	font-family: 'MontserratMedium';
}

.main_header_details_row::before{
	content: '';
	display: block;
	height: 1px;
	background: #323232;
	margin: 0 0 10px;
}

.main_header_details_row_name{
	font-size: 12px;
	color: var(--main_header_details_row_name);
	line-height: 15px;
}

.main_header_details_row_value{
	font-size: 16px;
	line-height: 19px;
	font-family: 'MontserratSemiBold';
}

.main_header_details_row_value[type="funds"]{
	color: #18a718;
}

.main_header_details_row_value[type="expense"]{
	color: #e54141;
}

.main_header_details_row_value[type="payment"]{
	color: #e58e23;
}

.main_object_list{
	width: 100%;
	flex: 1;
	padding-bottom: 160px;
	background: var(--list);
	border-radius: 20px 20px 0 0;
	position: relative;
	z-index: 1;
	margin-top: 15px;
	box-shadow: 0px 3px 5px black;
}

.object_card{
	display: flex;
	align-items: flex-start;
	font-family: 'MontserratMedium';
	margin: 15px;
	border-bottom: 1px solid #323232;
	padding: 0px 0px 15px;
}

.object_card:last-child{
	border-bottom: 0px;
	padding: 0;
}

.object_card_avatar{
	border-radius: 50%;
	width: 40px;
	height: 40px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-right: 10px;
}

.object_card_avatar[type="null"]{
	border: 4px solid white;
}

.object_card_info{

}

.object_card_info_name{
	font-size: 12px;
	line-height: 15px;
	color: var(--list_row_name);
}

.object_card_info_balance{
	font-size: 16px;
	line-height: 19px;
}