.planfix-projects {
	height: calc(100vh - 101px);
	overflow-y: scroll;
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.planfix-projects::before {
	content: "";
	width: 4px;
	height: 32px;
	position: absolute;
	top: 0;
	right: 0;
	background: var(--e-global-color-secondary);
}
.planfix-projects::after {
	content: "";
	width: 4px;
	height: 32px;
	position: absolute;
	bottom: 0;
	right: 0;
	background: var(--e-global-color-secondary);
}

.planfix-projects::-webkit-scrollbar {
	width: 4px;              
}
.planfix-projects::-webkit-scrollbar-track {
	background: var(--e-global-color-6493ee0);    
	border-radius: 0;
}
.planfix-projects::-webkit-scrollbar-thumb {
	border-radius: 0;
	background-color: var(--e-global-color-8b660b3);    /* цвет плашки */
}

.planfix-project:first-child {
	margin: 32px 0 0 0;
}
.planfix-project:last-child {
	margin: 0 0 32px 0;
}

.planfix-project__name {
    font-family: var(--e-global-typography-b3df870-font-family), Sans-serif;
    font-size: var(--e-global-typography-b3df870-font-size);
    font-weight: var(--e-global-typography-b3df870-font-weight);
    line-height: var(--e-global-typography-b3df870-line-height);
    color: var(--e-global-color-primary);
}

.planfix-project__group { 
    font-family: var(--e-global-typography-06034f3-font-family), Sans-serif;
    font-size: var(--e-global-typography-06034f3-font-size);
    font-weight: var(--e-global-typography-06034f3-font-weight);
    line-height: var(--e-global-typography-06034f3-line-height);
    color: var(--e-global-color-1e98cc6);
}

.planfix-project__tasks {
	padding: 0 32px 0 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.planfix-task {
	max-width: calc((100% - 8px) / 2);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 4px 8px;
	border-radius: 4px;
    font-family: var(--e-global-typography-06034f3-font-family), Sans-serif;
    font-size: var(--e-global-typography-06034f3-font-size);
    font-weight: var(--e-global-typography-06034f3-font-weight);
    line-height: var(--e-global-typography-06034f3-line-height);
}

.planfix-task--active {
	background: #ffead4;
	color: var(--e-global-color-text);
}

.planfix-task--completed {
	text-decoration: line-through;
	background: #d4e7d4;
	color: var(--e-global-color-text);
}

.planfix-project__more {
	padding: 4px 8px;
	border-radius: 4px;
    font-family: var(--e-global-typography-06034f3-font-family), Sans-serif;
    font-size: var(--e-global-typography-06034f3-font-size);
    font-weight: var(--e-global-typography-06034f3-font-weight);
    line-height: var(--e-global-typography-06034f3-line-height);
	background: var(--e-global-color-6493ee0);
	color: var(--e-global-color-text);
}

@media (max-width: 767px) {
	.planfix-projects {
		height: calc(100vh - 63px);
	}
	.planfix-projects::-webkit-scrollbar {
		width: 0;
		display: none;
	}
	.planfix-projects::-webkit-scrollbar-track {
		display: none;
	}
	.planfix-projects::-webkit-scrollbar-thumb {
		display: none;
	}
	.planfix-projects::before, .planfix-projects::after {
		display: none;
	}
	.planfix-project:first-child {
		margin: 16px 0 0 0;
	}
	.planfix-project:last-child {
		margin: 0 0 16px 0;
	}
	.planfix-project__tasks {
		padding: 0;
	}
}