.workers_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;
}

.workers_list_row{
	margin: 15px;
	border-bottom: 1px solid #323232;
	padding: 0px 0px 15px;
	font-family: 'MontserratMedium';
}

.workers_list_row:last-child{
	border-bottom: 0px;
	padding: 0;
}

.workers_list_row_name{
	font-size: 12px;
	line-height: 15px;
	color: #cfcfcf;
}

.workers_list_row_tel{
	font-size: 16px;
	line-height: 19px;
}

.workers_list_row_earn{
	font-size: 16px;
	line-height: 19px;
	color: #18a718;
	font-family: 'MontserratSemiBold';
}

.workers_list_row_earn[minus="1"]{
	color: #e54141;
}

.worker_profile_wrap{
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	background: var(--body-bg);
	z-index: 11;
	overflow: hidden auto;
	transform: translateX(100%);
	display: flex;
	flex-direction: column;
}

.worker_profile_wrap[show]{
	transition: transform 0.3s;
}

.worker_profile_wrap[show="1"]{
	transform: translateX(0px);
}

.worker_profit{
	font-family: 'MontserratSemiBold';
	color: #18a718;
	font-size: 22px;
}

.worker_profit[minus="1"]{
	color: #e54141;
}

.worker_profile_name_wrap{
	padding: 10px 0px;
	font-family: 'MontserratMedium';
}