:root {
	--font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial,
		sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	--content-width: 2160px;
	--container-offset: 20px;
	--container-width: calc(var(--content-width) + (var(--container-offset) * 2));
	--white-color: #fff;
	--black-color: #333;
	--grey-color: #f6fafc;
	--dark-grey-color: #8a94a0;
	--border-color: #e8eaef;
	--blue-color: #4fc2f7;
	--dark-blue-color: #43a2cd;
	--darker-blue-color: #105b94;
	--darkest-blue-color: #1a2a4c;
	--green-color: #0ad214;
	--dark-green-color: #0faf13;
	--yellow-color: #f8d521;
	--dark-yellow-color: #ceb21e;
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
	opacity: 1;
}
.custom-checkbox__field:focus + .custom-checkbox__content::before {
	outline: red solid 2px;
	outline-offset: 2px;
}
.custom-checkbox__field:disabled + .custom-checkbox__content {
	opacity: 0.4;
	pointer-events: none;
}
html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
*,
::after,
::before {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}
.page {
	height: 100%;
	font-family: var(--font-family, sans-serif);
	-webkit-text-size-adjust: 100%;
}
.page__body {
	margin: 0;
	min-width: 320px;
	min-height: 100%;
	font-size: 16px;
}
.site-container {
	overflow: hidden;
}
.btn-reset {
	border: none;
	padding: 0;
	background-color: transparent;
	cursor: pointer;
}
.list-reset {
	list-style: none;
	margin: 0;
	padding: 0;
}
.container_main {
	margin: 0 auto;
	padding: 0 var(--container-offset);
	max-width: var(--container-width);
}
@media (max-width: 445px) {
	.container_main {
		padding-left: 10px;
		padding-right: 10px;
	}
}
.title {
	margin: 0;
}
.plan {
	padding: 100px 0;
}
.plan__container-graph {
	padding: 7px 15px;
	background: #e8f5fc;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 14px;
}
.plan__container-stats {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [3];
	grid-template-columns: repeat(3, 1fr);
	-webkit-column-gap: 27px;
	-moz-column-gap: 27px;
	column-gap: 27px;
	padding-left: 16px;
	padding-right: 16px;
}
.plan__container-dateline {
	position: relative;
}
.plan__container-today {
	position: absolute;
	top: -73px;
	background: var(--white-color);
	padding: 5px 15px;
	-webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
	border-radius: 37px;
	-webkit-transform: translateX(-47%);
	-ms-transform: translateX(-47%);
	transform: translateX(-47%);
}
.plan__container-today::before {
	content: "";
	position: absolute;
	top: calc(100% + 6px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background: #b3e600;
	border-radius: 0 0 6px 6px;
	width: 3px;
	height: 33px;
}
.plan__container-today::after {
	content: "";
	width: 10px;
	height: 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 5px solid transparent;
	border-top: 5px solid #fff;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: -9px;
}
.plan__content {
	background: var(--grey-color);
	border-radius: 10px;
	padding-bottom: 14px;
}
.plan__row-first {
	padding: 20px;
}
.plan__row-second {
	padding: 15px 20px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.plan__row-graph {
	padding-top: 10px;
	width: 100%;
}
.plan__row-graph-single .plan__container-graph {
	background: 0 0;
	padding: 46px 16px;
}
.plan__row-graph-single .plan__text-all {
	display: none;
}
.plan__row-graph-single .plan__title-graph {
	max-width: 383px;
}
.plan__row-graph-single .plan__track {
	background: #33c2f4;
}
.plan__row-graph-single .plan__row-graph {
	padding-top: 0;
}
.plan__column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.plan__title-h2 {
	font-size: 24px;
	line-height: normal;
	color: rgba(51, 51, 51, 0.6);
	font-weight: 400;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.plan__title-h3 {
	color: var(--black-color);
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--border-color);
}
.plan__title-h4 {
	color: var(--dark-grey-color);
	font-size: 13px;
	font-weight: 400;
	line-height: normal;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.plan__title-graph {
	font-size: 15px;
	line-height: normal;
	font-weight: 500;
	color: #2269b1;
	max-width: 368px;
	width: 100%;
}
.plan__title-stat {
	margin-bottom: 20px;
	font-size: 13px;
	color: rgba(51, 51, 51, 0.84);
	font-weight: 400;
	line-height: normal;
}
.plan__text-value {
	font-size: 29px;
	font-weight: 400;
	line-height: normal;
	color: var(--black-color);
	margin-left: 6px;
}
.plan__text-value-stat {
	white-space: nowrap;
	font-size: 34px;
	line-height: 44px;
	color: #333;
	margin-right: 8px;
}
.plan__text-currency {
	font-size: 18px;
	line-height: normal;
	color: #878787;
	margin-left: 4px;
	margin-top: 6px;
}
.plan__text-currency-stat {
	margin-top: 4px;
}
.plan__text-dash {
	margin-left: 6px;
}
.plan__text-period {
	margin-left: 6px;
	font-size: 16px;
	line-height: 51px;
	color: #525c69;
}
.plan__text-all {
	font-size: 14px;
	font-weight: 400;
	color: #787c86;
	text-align: right;
	margin-top: 4px;
}
.plan__text-dateline {
	position: absolute;
	bottom: -23px;
	font-size: 12px;
	color: #525c69;
	line-height: normal;
}
.plan__text-dateline-start {
	left: 0;
}
.plan__text-dateline-end {
	right: 0;
}
.plan__text-today {
	font-size: 11px;
	line-height: 11px;
	margin-bottom: 2px;
	text-transform: uppercase;
	color: #525c69;
	font-weight: 600;
	text-align: center;
	width: 100%;
}
.plan__text-date-today {
	font-size: 8px;
	line-height: 8px;
	opacity: 0.5;
	text-align: center;
	width: 100%;
}
.plan__graphs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 5px;
	padding: 0 15px;
}
.plan__graph {
	position: relative;
	height: 28px;
	width: 100%;
	background: var(--white-color);
	border: 2px solid rgba(130, 139, 149, 0.1);
	border-radius: 2px;
}
.plan__track {
	position: absolute;
	top: -2px;
	bottom: -2px;
	left: 0;
	background: #5dcfe0;
	max-width: 100%;
	border-radius: 2px;
}
.plan__track::after {
	content: attr(data-width);
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translate(100%, -50%);
	-ms-transform: translate(100%, -50%);
	transform: translate(100%, -50%);
	padding: 0 9px;
	line-height: 26px;
	color: #525c69;
	font-size: 13px;
}
.plan__track-toleft::after {
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	color: #fff;
}
.plan__stat {
	-ms-grid-column-span: 1;
	grid-column: 1 span;
	border-left: 6px solid;
	padding: 10px 20px 5px;
	border-radius: 3px;
}
.plan__stat-done {
	border-color: #6fd4f5;
	background: #e8f5fc;
}
.plan__stat-remaining {
	border-color: #bcc3ca;
	background: #eeefef;
}
.plan__stat-persentage {
	border-color: #b7d848;
	background: #edf2d3;
}
.plan__stat-persentage .plan__text-value-stat {
	padding-left: 11px;
}
.plan__dateline {
	position: relative;
	width: 100%;
	height: 11px;
	margin-top: 6px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 2px;
}
.plan__dateline .plan__line:nth-child(3n + 1) {
	opacity: 1;
}
.plan__line {
	width: 1px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	opacity: 0.2;
	background: #828b95;
	border-radius: 2px;
}
@media (max-width: 480px) {
	.plan {
		padding-bottom: 20px;
	}
	.plan__container-stats {
		padding: 0;
		-ms-grid-columns: (1fr) [1];
		grid-template-columns: repeat(1, 1fr);
		gap: 27px 0;
	}
	.plan__row-second {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 12px;
	}
	.plan__text-period {
		line-height: normal;
	}
}
@media (max-width: 445px) {
	.plan__graphs {
		padding: 0;
	}
}
.board {
	padding-bottom: 100px;
}
.board__container-icon {
	width: 60px;
	height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #dce7e8;
	border-radius: 100%;
	position: absolute;
	top: 22px;
	right: 30px;
}
.board__container-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.board__grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [12];
	grid-template-columns: repeat(12, 1fr);
	gap: 27px;
	-ms-grid-rows: auto;
	grid-template-rows: auto;
}
.board__title-header {
	color: var(--white-color);
	font-size: 18px;
	line-height: 55px;
	font-weight: 400;
}
.board__title-body {
	font-size: 52px;
	line-height: normal;
	color: var(--white-color);
	text-align: right;
	font-weight: 400;
	white-space: nowrap;
}
.board__title-body-main {
	font-size: 72px;
	line-height: normal;
	color: var(--white-color);
	text-align: right;
	font-weight: 400;
	white-space: nowrap;
}
.board__title-inner {
	color: var(--white-color);
	font-size: 18px;
	line-height: normal;
	margin-bottom: 12px;
	margin-top: 10px;
	font-weight: 400;
}
.board__title-inner-0 {
	margin-bottom: 0;
	margin-top: 0;
}
.board__title-value {
	font-size: 30px;
	line-height: normal;
	margin-bottom: 12px;
	font-weight: 400;
	color: var(--white-color);
	margin-left: 6px;
}
.board__title-devs {
	color: var(--white-color);
	font-size: 28px;
	font-weight: 500;
	line-height: normal;
}
.board__title-devs-month {
	font-size: 22px;
	font-weight: 600;
	position: absolute;
	top: 12px;
	right: 20px;
}
.board__item {
	border-radius: 10px;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	overflow: hidden;
}
.board__item-6 {
	-ms-grid-column-span: 6;
	grid-column: 6 span;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [12];
	grid-template-columns: repeat(12, 1fr);
	-ms-grid-row-span: 2;
	grid-row: 2 span;
}
.board__item-6-single {
	-ms-grid-row-span: 1;
	grid-row: 1 span;
}
.board__item-6-column {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [6];
	grid-template-columns: repeat(6, 1fr);
	gap: 27px;
	-ms-grid-row-span: 4;
	grid-row: 4 span;
}
.board__item-6-gapped {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [1];
	grid-template-columns: repeat(1, 1fr);
	gap: 27px;
	-ms-grid-column-span: 2;
	grid-column: 2 span;
}
.board__item-6-gapped .board__item-inner {
	border-radius: 10px;
	overflow: hidden;
	-ms-grid-column-span: 1;
	grid-column: 1 span;
}
.board__item-6-4 {
	-ms-grid-row-span: 4;
	grid-row: 4 span;
}
.board__item-6-4 .board__item-inner-blue:first-child .board__item-inner-body {
	background: var(--green-color);
}
.board__item-6-4 .board__item-inner-blue:first-child .board__item-inner-header {
	background: var(--dark-green-color);
}
.board__item-4 {
	-ms-grid-column-span: 4;
	grid-column: 4 span;
}
.board__item-4-gapped {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
	gap: 27px;
}
.board__item-4-gapped .board__item-inner {
	position: relative;
	height: 184px;
	border-radius: 10px;
	overflow: hidden;
	-ms-grid-column-span: 1;
	grid-column: 1 span;
	padding: 22px 30px 44px 34px;
}
.board__item-4-gapped .board__item-inner:nth-child(odd) {
	background: var(--darker-blue-color);
}
.board__item-4-gapped .board__item-inner:nth-child(odd) .board__container-icon::after {
	background: url(../img/logout.svg) 0 0 / cover;
	width: 25px;
	height: 26px;
}
.board__item-4-gapped .board__item-inner:nth-child(even) {
	background: var(--darkest-blue-color);
}
.board__item-4-gapped .board__item-inner:nth-child(even) .board__container-icon::after {
	background: url(../img/user.svg) 0 0 / cover;
	width: 30px;
	height: 30px;
}
.board__item-inner-6 {
	-ms-grid-column-span: 6;
	grid-column: 6 span;
}
.board__item-inner-12 {
	-ms-grid-column-span: 12;
	grid-column: 12 span;
}
.board__item-inner-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 20px;
	padding-right: 20px;
}
.board__item-inner-body {
	padding: 30px 15px;
}
.board__item-inner-blue .board__item-inner-body {
	background: var(--blue-color);
}
.board__item-inner-blue .board__item-inner-header {
	background: var(--dark-blue-color);
}
.board__item-inner-green .board__item-inner-body {
	background: var(--green-color);
}
.board__item-inner-green .board__item-inner-header {
	background: var(--dark-green-color);
}
.board__item-inner-yellow .board__item-inner-body {
	background: var(--yellow-color);
}
.board__item-inner-yellow .board__item-inner-header {
	background: var(--dark-yellow-color);
}
.board__item-chart {
	-ms-grid-column-span: 5;
	grid-column: 5 span;
	-ms-grid-row-span: 4;
	grid-row: 4 span;
	max-height: 396px;
	border-radius: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 396px;
}
.board__item-chart canvas {
	min-height: 396px;
}
.board__item-devs {
	position: relative;
	-ms-grid-column-span: 5;
	grid-column: 5 span;
	-ms-grid-row-span: 4;
	grid-row: 4 span;
	background: #5b6ed0;
	max-height: 396px;
	border-radius: 10px;
	padding: 24px 30px;
}
.board__chart {
	border-radius: 10px;
	border: 1px solid var(--blue-color);
	padding: 15px;
}
.board__table {
	padding-bottom: 15px;
}
.board__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-left: 20px;
	background: var(--white-color);
	border-radius: 8px;
}
.board__row:not(:last-child) {
	margin-bottom: 15px;
}
.board__row-header {
	background: 0 0;
	margin-bottom: 9px !important;
}
.board__cell {
	text-align: center;
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	color: var(--white-color);
	padding: 0 4px 4px;
}
.board__cell-name {
	width: 343px;
	color: #000;
	font-size: 24px;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 0;
	padding-right: 8px;
}
.board__cell-tasks {
	width: 150px;
	color: var(--white-color);
	background: #fecd00;
}
.board__cell-expired {
	width: 130px;
	color: var(--white-color);
	background: #f44718;
}
.board__cell-hours {
	width: 185px;
	background: #64c24c;
	border-bottom-right-radius: 8px;
	border-top-right-radius: 8px;
}
.board__cell-header {
	color: #fdfafa;
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	text-align: center;
	background: 0 0;
	white-space: nowrap;
}
@media (max-width: 480px) {
	.board__container-icon {
		display: none;
	}
	.board__grid {
		-ms-grid-columns: (1fr) [6];
		grid-template-columns: repeat(6, 1fr);
	}
	.board__title-header {
		line-height: 120%;
	}
	.board__title-body {
		font-size: 22px;
	}
	.board__title-body-main {
		font-size: 42px;
	}
	.board__title-devs {
		margin-bottom: 12px;
		font-size: 24px;
	}
	.board__title-devs-month {
		font-size: 18px;
	}
	.board__item-inner-header {
		padding-top: 12px;
		padding-bottom: 12px;
	}
	.board__item-inner-body {
		padding: 15px;
	}
	.board__item-6-gapped {
		-ms-grid-column-span: 6;
		grid-column: 6 span;
	}
	.board__item-4-gapped {
		-ms-grid-column-span: 6;
		grid-column: 6 span;
		gap: 18px;
	}
	.board__item-4-gapped .board__item-inner {
		padding: 15px 20px;
		height: unset;
	}
	.board__item-4-gapped .board__title-inner {
		margin-top: 0;
		font-size: 16px;
	}
	.board__item-devs {
		-ms-grid-column-span: 6;
		grid-column: 6 span;
		max-height: unset;
		padding: 36px 20px 20px;
	}
	.board__item-chart {
		-ms-grid-column-span: 6;
		grid-column: 6 span;
	}
	.board__item-chart canvas {
		min-height: 236px;
	}
	.board__table {
		padding-bottom: 0;
	}
	.board__cell {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		font-size: 22px;
	}
	.board__cell-name {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		font-size: 16px;
		line-height: 120%;
		padding-top: 4px;
	}
	.board__cell-header {
		font-size: 12px;
		padding-bottom: 0;
	}
	.board__cell-expired {
		width: 170px;
	}
	.board__cell-hours {
		width: 155px;
	}
	.board__cell-hours-half {
		display: none;
	}
	.board__row {
		padding-left: 14px;
	}
}
@media (max-width: 445px) {
	.board__title-body-main {
		font-size: 26px;
	}
	.board__item-inner-header {
		padding: 8px;
	}
	.board__item-inner-6 {
		-ms-grid-column-span: 12;
		grid-column: 12 span;
	}
	.board__item-chart canvas {
		min-height: unset;
	}
	.board__chart {
		padding: 4px;
	}
}
