.page[type="main"]{
	padding: 70px 20px 20px;
	/*background: #1e1e1e;*/
	background: #0f0f0f;
	overflow: hidden auto;
}

.main_top_block{
	display: flex;
	height: 66px;
	background: var(--light_dark);
	border-radius: 10px;
	box-shadow: var(--bevel);
	padding: 3px;
}

.main_top_ava_wrap{
	width: 64px;
	height: 64px;
	border-radius: 32px;
	position: relative;
	margin: 0 0 0 10px;
	padding: 5px;
	top: -35px;
	background: var(--light_dark);
	box-shadow: var(--bevel);
	position: relative;
}

.main_top_ava{
	width: 54px;
	height: 54px;
	border-radius: 28px;
	background: #0450d9;
	font-family: 'MontserratSemiBold';
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	position: relative;
	z-index: 1;
}

.main_top_ava_mask{
	position: absolute;
	width: 64px;
	height: 32px;
	background: var(--light_dark);
	left: 0;
	bottom: 0;
	z-index: 0;
}

.main_top_online_status{
	width: 14px;
	height: 14px;
	margin: auto;
	background: #0450d9;
	border-radius: 50%;
	position: relative;
	top: 12px;
}

.main_top_info_wrap{
	position: relative;
	flex: 1;
	margin-left: 10px;
	font-size: 12px;
}

.main_top_name{
	color: white;
	font-family: 'MontserratMedium';
	position: absolute;
	width: 100%;
	left: 0;
	top: -22px;
}

.main_top_stats_wrap{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.main_top_stats{
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	line-height: 15px;
}

.main_top_stats_name{
	color: var(--stat_name);
}

.main_top_stats_value{
	color: var(--stat_value);
	font-family: 'MontserratSemiBold';
}

.main_top_stats_more{
	position: absolute;
	bottom: -30px;
	height: 30px;
	right: 0;
	line-height: 30px;
}

.main_date_filter{
	display: flex;
	margin: 20px 3px;
	font-family: 'MontserratSemiBold';
	color: white;
}

.main_date_filter_label{
	font-size: 14px;
	line-height: 18px;
}

.main_date_filter_select{
	width: 120px;
	height: 18px;
	background: #0057f2;
	border-radius: 9px;
	margin-left: 7px;
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 9px;
}

.main_date_filter_icon{
	position: relative;
	width: 10px;
}

.main_date_filter_icon::before{
	content: '';
	display: block;
	width: 6px;
	height: 1px;
	background: white;
	position: absolute;
	transform: rotate(45deg);
	top: 0;
	left: 0;
}

.main_date_filter_icon::after{
	content: '';
	display: block;
	width: 6px;
	height: 1px;
	background: white;
	position: absolute;
	transform: rotate(-45deg);
	top: 0;
	right: 0;
}

.main_date_filter_selected{
	font-size: 12px;
	margin: 0 0 0 auto;
	position: relative;
	top: -1px;
}

.main_stat_card{
	width: 100%;
	height: calc(50vw - 10px);
	background: var(--light_dark);
	box-shadow: var(--bevel);
	border-radius: 10px;
	font-size: 12px;
	margin: 7px 0 0;
}

.main_stat_card_header{
	display: flex;
	height: 30px;
	align-items: center;
}

.main_stat_card_header_icon{
	width: 16px;
	height: 16px;
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	margin: 0 10px;
}

.main_stat_card[type="work"] .main_stat_card_header_icon{
	background-image: url(/static/img/main/work.svg);
}

.main_stat_card[type="time"] .main_stat_card_header_icon{
	background-image: url(/static/img/main/time.svg);
}

.main_stat_card[type="loading"] .main_stat_card_header_icon{
	background-image: url(/static/img/main/loading.svg);
}

.main_stat_card_header_name{
	font-family: 'MontserratSemiBold';
	color: white;
}

.main_stat_card_data_wrap{
	display: flex;
	padding: 0 20px 0;
	gap: 32px;
	height: calc(100% - 30px);
}

.main_stat_card_chart_rounded_wrap{
	width: calc(50vw - 60px);
	height: calc(50vw - 60px);
}

.main_stat_card_chart{
	width: 100%;
	height: 100%;
}

.main_stat_card_chart_rounded_legend{
	line-height: 13px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: calc(50vw - 60px);
	height: calc(50vw - 60px);
}

.main_stat_card_chart_rounded_legend_row{
	display: flex;
}

.main_stat_card_chart_rounded_legend_color{
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin: 7px 10px 0 0;
	flex-shrink: 0;
}

.main_stat_card[type="work"] .main_stat_card_chart_rounded_legend_color[type="active"]{
	background: #0047d7;
}

.main_stat_card[type="work"] .main_stat_card_chart_rounded_legend_color[type="error"]{
	background: #277bd3;
}

.main_stat_card[type="work"] .main_stat_card_chart_rounded_legend_color[type="offline"]{
	background: #002b56;
}

.main_stat_card[type="work"] .main_stat_card_chart_rounded_legend_color[type="maintenence"]{
	background: #ffffff;
}

.main_stat_card_chart_rounded_legend_data{

}

.main_stat_card_chart_rounded_legend_name{
	color: var(--stat_name);
	font-family: 'MontserratSemiBold';
}

.main_stat_card_chart_rounded_legend_value{
	color: #b7b7b7;
}
