*,
::after,
::before {
	box-sizing: border-box
}

ol[class],
ul[class] {
	padding: 0;
	list-style: none
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol[class],
p,
ul[class] {
	margin: 0
}

body {
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
}

a:not([class]) {
	text-decoration-skip-ink: auto
}

img {
	max-width: 100%;
	display: block
}

article>*+* {
	margin-top: 1em
}

button,
input,
select,
textarea {
	font: inherit
}

button{
	cursor: pointer;
}

@media (prefers-reduced-motion:reduce) {
	* {
		animation-duration: 0s !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0s !important;
		scroll-behavior: auto !important
	}
}

a {
	color: var(--accent);
	text-decoration: none;
	transition: 0.2s ease-in-out;
}

img {
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
}

.no-js {
	display: none;
}

.js-enabled .no-js {
	display: none;
}

img {
	max-height: 100%;
	max-width: 100%;
}

* {
	transition: 0.2s ease-in-out;
}

button {
	border: none;
	background: transparent;
	padding: 0;
	line-height: 1;
}

:root {
	--bgColor: #FAFBFF;
	--fontColor: #292D32;
	--accent: #00AAFF;
	--accentHover: #00AAFF;
}

html {
	font-size: 10px;
	background-color: var(--bgColor);
	font-family: 'Gilroy', sans-serif;
	color: var(--fontColor);
	overflow-x: hidden;
}

body.lock {
	overflow: hidden;
    height: 100vh;
}

.wrapper {
	--max-width: 1300px;
	--padding-side: 16px;

	width: min(var(--max-width), 100% - (var(--padding-side) * 2));
	margin-inline: auto;
}

.main {
	display: flex;
}

.aside {
	width: 306px;
	min-width: 306px;
	height: 100vh;
	overflow: auto;
	position: relative;
}

.aside__wrapper {
	padding: 40px 28px;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;

	width: 306px;
	min-width: 306px;
	background-color: #fff;
	box-shadow: 0px 10px 60px 0px rgba(226, 236, 249, 0.5);
	display: flex;
	flex-direction: column;
	height: 100vh;
	overflow: auto;
}

.aside.folded .aside__wrapper{
	width: 104px;
    min-width: 104px;
}

.aside__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.aside__header_logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.aside__header_logo_icon {
	width: 31px;
	height: 31px;
}

.aside__header_logo_text {
	font-size: 26px;
	font-weight: 600;
	color: var(--fontColor);
}

.aside__header_turn_icon {
	width: 16px;
	height: 14px;
	cursor: pointer;
}

.aside__header_turn_icon:hover {
	background-color: var(--accent);
}

.aside__header_turn_icon:active {
	background-color: #000;
}

.aside__info {
	margin-top: 37px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.aside__info_user {
	display: flex;
	align-items: center;
	gap: 11px;
}

.aside__info_user_picture {
	width: 42px;
	height: 42px;
}

.aside__info_user_picture img {
	border-radius: 50%;
}

.aside__info_user_text_name {
	font-size: 14px;
	font-weight: 600;
}

.aside__info_user_text_status {
	font-size: 14px;
	font-weight: 500;
	color: #757575;
}

.aside__info_arrow {
	cursor: pointer;
}

.aside__info_arrow_icon {
	width: 24px;
	height: 24px;
}

.aside__menu {
	margin-top: 40px;
	flex-grow: 1;
}

.aside__menu_list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}


.aside__menu_list_item_link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 11px 8px 11px 11px;
	border-radius: 8px;
}

.aside__menu_list_item_text {
	display: flex;
	align-items: center;
	gap: 14px;
}

.aside__menu_list_item_text_icon {
	width: 24px;
	height: 24px;
}

.aside__menu_list_item_text_name {
	font-size: 16px;
	font-weight: 600;
	color: #9197b3;
}

.aside__menu_list_item_arrow_icon {
	width: 16px;
	height: 16px;
}

.aside__menu_list_item_active .aside__menu_list_item_link {
	background-color: var(--accent);
}

.aside__menu_list_item_active .aside__menu_list_item_arrow_icon {
	transform: rotate(90deg);
}

.aside__menu_list_item_active .aside__menu_list_item_text_name {
	color: #fff;
}

.aside__menu_list_item_active .aside__menu_list_item_text_icon {
	background-color: #fff;
}

.aside__menu_list_item_active .aside__menu_list_item_arrow_icon {
	background-color: #fff;
}

.aside__menu_list_item.has-child {
	position: relative;
}

.aside__menu_list_item.has-child .aside__menu_list_item_child {


	margin-left: 40px;


	max-height: 500px;
	overflow: auto;


}
.aside__menu_list_item.has-child.--child-cover .aside__menu_list_item_arrow_icon{
	transform: rotate(-90deg);
}
.aside__menu_list_item.has-child.--child-cover .aside__menu_list_item_child {
	max-height: 0;
	overflow: hidden;
}

.aside__menu_list_item_child_box{
	padding: 10px 0 !important;

	display: flex;
	flex-direction: column;
	gap: 12px;
}


.aside__menu_list_item_child .aside__menu_list_item_child_item_active {
	background-color: transparent;
}

.aside__menu_list_item_child .aside__menu_list_item_child_item_active .aside__menu_list_item_child_item_link_text {
	color: var(--accent);
}

.aside__menu_list_item_child .aside__menu_list_item_child_item_active .aside__menu_list_item_child_item_link_icon {
	background-color: var(--accent);
}


.aside__menu_list_item_child_item {
	padding: 4px 15px;
}

.aside__menu_list_item_child_item_link {
	display: flex;
	align-items: center;
	gap: 14px;
}

.aside__menu_list_item_child_item_link_icon {
	width: 24px;
	height: 24px;
}

.aside__menu_list_item_child_item_link_text {
	font-size: 14px;
	font-weight: 600;
	color: #9197B3;
}

.aside__menu_list_item_child_item_active {
	background-color: var(--accent);
}

.aside__menu_list_item_child_item_active .aside__menu_list_item_child_item_link_text {
	color: #fff;
}

.aside__menu_list_item_child_item_active .aside__menu_list_item_child_item_link_icon {
	background-color: #fff;
}



.aside__logout_button {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 8px 11px 11px;
}

.aside__logout_button_icon {
	width: 19px;
	height: 19px;
}

.aside__logout_button_text {
	font-size: 16px;
	font-weight: 400;
	color: #9197B3;
}

.aside__logout_button:hover .aside__logout_button_text {
	color: var(--accent);
}

.aside__logout_button:hover .aside__logout_button_icon {
	background-color: var(--accent);
}

.aside__logout_button:active .aside__logout_button_text {
	color: #000;
}

.aside__logout_button:active .aside__logout_button_icon {
	background-color: #000;
}

.aside.folded {
	width: 104px;
	min-width: 104px;
}

.aside.folded .aside__wrapper {
	padding: 40px 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.aside.folded .aside__header_logo_text {
	display: none;
}

.aside.folded .aside__header {
	gap: 13px;
	margin-left: 20px;
}

.aside.folded .aside__header_turn_icon {
	transform: rotate(180deg);
	/* display: none; */
}

.aside.folded .aside__info_user_text {
	display: none;
}

.aside.folded .aside__info_arrow {
	display: none;
}

.aside.folded .aside__logout_button {
	padding: 11px 0;
}

.aside.folded .aside__logout_button_text {
	display: none;
}

.aside.folded .aside__menu_list_item {
	width: 46px;
	height: 46px;
	padding: 0;
}

.aside.folded .aside__menu_list_item_link {
	justify-content: center;
	padding: 11px;
}

.aside.folded .aside__menu_list_item_arrow {
	display: none;
}

.aside.folded .aside__menu_list_item_text {
	position: relative;
}

.aside.folded .aside__menu_list_item_text_name {
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	padding: 6px 11px;
	border-radius: 5px;
	box-shadow: 0px 0px 11.7px 0px rgba(0, 0, 0, 0.1);
	background: rgb(255, 255, 255);
	font-size: 10px;
	font-weight: 600;
	color: #9197B3;

	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.aside.folded .aside__menu_list_item:hover .aside__menu_list_item_text_name {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.aside.folded .aside__menu_list_item.has-child .aside__menu_list_item_child {
	right: -250px;
}

.aside.folded .aside__menu_list_item:hover {
	background-color: var(--accent);
}

.aside.folded .aside__menu_list_item:hover .aside__menu_list_item_text_icon {
	background-color: #fff;
}


.content__section {
	flex-grow: 1;
	padding: 40px 35px 40px 71px;
	max-width: calc(100% - 306px);
}

.content__inner {
	border-radius: 30px;
	box-shadow: 0px 10px 60px 0px rgba(226, 236, 249, 0.5);
	background: rgb(255, 255, 255);

	padding: 30px 40px 40px 40px;

	max-width: 1300px;
	width: 100%;
}

.content__section_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.content__section_header_title {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.content__section_header_title_text {
	font-size: 22px;
	font-weight: 600;
}

.content__section_header_title_text_count {
	font-size: 14px;
	font-weight: 500;
	color: rgb(22, 192, 152);
}

.content__section_header_search {
	display: flex;
	align-items: center;
	gap: 8px;
	border-radius: 10px;
	background: rgb(249, 251, 255);
	width: 216px;
	height: 38px;
	padding: 7px 8px;
	padding-right: 15px;
}

.content__section_header_search_button_icon {
	width: 24px;
	height: 24px;
}

.content__section_header_search_input {
	border: none;
	background: transparent;
	outline: none;
	color: var(--fontColor);
	font-size: 14px;
	font-weight: 600;
	width: 150px;
}

.content__section_header_search_input::placeholder {
	color: #b5b7c0;
}


.table {
	margin-top: 50px;
}

.table__header {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
	border-bottom: 1px solid rgb(238, 238, 238);
	padding-bottom: 17px;
}

.table__header_item {
	font-size: 14px;
	font-weight: 600;
	color: #9197B3;
	word-break: break-all;
	overflow-wrap: break-word;
}

.table__header_item_name {
	margin-left: 100px;
}

.table__header_item_date_mobile {
	display: none;
}

.table__inner {
	display: flex;
	flex-direction: column;
}

.table_row {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
	align-items: center;
	border-top: 1px solid rgb(238, 238, 238);
	border-bottom: 1px solid rgb(238, 238, 238);
}

.table_item {
	font-size: 14px;
	font-weight: 600;
	padding: 13px 0;
	text-wrap: wrap;
	text-wrap-mode: balance;
	word-break: break-all;
	overflow-wrap: break-word;
}

.table_item_name {
	display: flex;
	align-items: center;
	gap: 10px;
	/* max-width: 130px; */
}

.table_item_picture {
	width: 42px;
	min-width: 42px;
	height: 42px;
}

.table_item_picture img {
	border-radius: 50%;
}

.table_item_status_text {
	width: 120px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	font-size: 14px;
}

.table_item_status_text.active {
	border: 1px solid rgb(0, 176, 135);
	background: rgba(22, 192, 152, 0.38);
	color: rgb(0, 135, 103);
}

.table_item_status_text.inactive {
	border: 1px solid rgb(255, 175, 64);
	background: rgb(255, 239, 212);
	color: rgb(255, 175, 64);
}

.table_item_status_text.banned {
	border: 1px solid rgb(255, 64, 83);
	background: rgb(255, 196, 196);
	color: rgb(255, 64, 83);
}

.table_item_status_text.archived {
	border: 1px solid rgb(255, 193, 7);
	background: rgba(255, 193, 7, 0.2);
	color: rgb(133, 100, 4);
}

.table__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 35px;
}

.table__footer_center {
	justify-content: center;
}

.table__footer_text {
	font-size: 14px;
	font-weight: 600;
	color: #9197b3;
}

.table__footer_pagination {
	display: flex;
	align-items: flex-end;
	gap: 13px;
}

.table__footer_pagination_item {
	width: 25px;
	height: 25px;
	background: #f9f9f9;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	border: 1px solid rgb(238, 238, 238);
	border-radius: 4px;
	background: rgb(245, 245, 245);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	line-height: 1;

}

.table__footer_pagination_item:hover {
	background: var(--accent);
	color: #fff;
}

.table__footer_pagination_item.active,
.table__footer_pagination_item--active {
	background: var(--accent);
	color: #fff;
}

.table__footer_pagination_dots {
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	padding-bottom: 4px;
}

.header {
	display: none;
}

.table_item_text_username {
	display: none;
}

.content__section.column-2 {
	display: flex;
	gap: 50px;
}

.content__section.column-2 .content__inner {
	max-width: 100%;
	width: 50%;
}

.content__section.column-2.content__inner-60-40 .content__inner:first-child {
	width: calc(60% - 25px);
}

.content__inner-acc-project-project .table__header,
.content__inner-acc-project-project .table_row {
	grid-template-columns: 1fr 1fr 120px;
}

.content__section.column-2.content__inner-60-40 .content__inner:last-child {
	width: calc(40% - 25px);
}

.content__inner-acc-project-geo .table__header,
.content__inner-acc-project-geo .table_row {
	grid-template-columns: 1fr 100px 43px;
	gap: 12px;
}

.content__header-type-1 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 15px;
}

.content__header_title_text {
	font-size: 22px;
	font-weight: 600;
}

.content__header_buttons {
	display: flex;
	gap: 15px;
	align-items: center;
}

.table-switcher {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}

.table-switcher__btn {
	padding: 10px 20px;
	border: 2px solid var(--accent);
	background: transparent;
	color: var(--accent);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.2s ease-in-out;
}

.table-switcher__btn:hover {
	background: var(--accent);
	color: #fff;
}

.table-switcher__btn.active {
	background: var(--accent);
	color: #fff;
}

.xl-btn {
	background-color: var(--accent);
	color: #fff;
	width: 180px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.2s ease-in-out;
}

.xl-btn:hover {
	background-color: #1684BC;
}

.xl-btn:active {
	background-color: #000;
}

.table_item_flag {
	width: 43px;
	height: 30px;
	padding: 0;
	display: inline-flex;
	justify-content: flex-end;
}

.table--positions .table__header,
.table--positions .table_row {
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	padding-left: 20px;
	padding-right: 20px;
}
.table--positions .table_item{
	padding: 24px 0;
}



.table_item--position {
	display: flex;
	align-items: center;
	gap: 10px;
}

.table_item--position .icon{
	width: 21px;
	min-width: 21px;
	height: 21px;
}

@media (max-width: 576px) {
	.table--positions .table__header,
	.table--positions .table_row {
		padding-left: 10px;
		padding-right: 10px;
	}

	.table_item--position .icon{
		width: 15px;
		min-width: 15px;
		height: 15px;
	}
}




.popup {
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	padding: 0 15px;

	opacity: 0;
	visibility: hidden;
	transition: 0.2s ease-in-out;
	transform: translateY(-20px);
}

.popup.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.popup__content {
	background-color: #fff;
	border-radius: 25px;
	padding: 30px 40px;
	max-width: 600px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
}

.popup__content::-webkit-scrollbar {
	display: none;
}

.popup-user-info .popup__content {
	max-width: 650px;
}

.popup--project-info .popup__content {
	max-width: 700px;
}

.popup__content--vremenno {
	width: 90%;
	max-width: 90% !important;
	height: 90%;
}

.popup__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.popup__title {
	font-size: 22px;
	font-weight: 600;
}

.popup__title_img{
	width: 33px;
	height: 22px;
	display: inline;
	vertical-align: middle;
}

.popup__close_icon {
	width: 18px;
	height: 18px;
	cursor: pointer;
	transition: 0.2s ease-in-out;
}

.popup__close_icon:hover {
	background-color: var(--accent);
	transform: rotate(90deg);
}

.popup__body {
	margin-top: 40px;
}

.popup_user_header {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.popup_user_header_picture {
	width: 130px;
	height: 130px;
}

.popup_user_header_picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.popup_user_header_text {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
	margin-top: 20px;
}

.popup_user_header_text_name {
	font-size: 36px;
	font-weight: 700;
}

.popup_user_header_text_username {
	font-size: 18px;
	font-weight: 500;
	color: rgba(181, 183, 192, 1);
}

.popup_user_info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 24px 0;
	padding: 24px 0;
	border-top: 1px solid rgba(238, 238, 238, 1);
	border-bottom: 1px solid rgba(238, 238, 238, 1);
}

.popup_user_info_item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.popup_user_info_item_title,
.popup_user_info_item_value {
	font-size: 20px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.popup_user_box {
	display: flex;
	justify-content: space-between;
}

.popup_user_status {
	display: flex;
	gap: 50px;
	/* max-width: 250px; */
}

.popup_user_status_title {
	font-size: 20px;
	font-weight: 500;
}

.popup_user_status_box {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.popup_user_status_box_item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.popup_user_status_box_item input[type="radio"] {
	appearance: none;
	width: 20px;
	height: 20px;
	background-color: rgba(234, 234, 234, 1);
	border-radius: 50%;
	position: relative;
	margin: 0;
	cursor: pointer;
}

.popup_user_status_box_item input[type="radio"]:checked::after {
	content: '';
	display: block;
	width: 12px;
	min-height: 12px;
	min-width: 12px;
	height: 12px;
	background-color: var(--accent);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.popup_user_status_box_item label {
	font-size: 18px;
	font-weight: 500;
}

.popup_user_text {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 240px;
}

.popup_user_text_p {
	font-size: 16px;
	font-weight: 500;
}

.popup_user_text_btn {
	display: flex;
	gap: 8px;
	margin-top: 8px;
}

.popup_user_text_btn_button {
	background-color: var(--accent);
	color: #fff;
	width: calc(50% - 4px);
	padding: 8px 0;
	font-size: 14px;
	font-weight: 500;
	border-radius: 6px;
	cursor: pointer;
}

.popup_user_text_btn_button--cancel {
	background-color: transparent;
	color: var(--fontColor);
	border: 1px solid var(--fontColor);
}

.popup_user_text_btn_button--cancel:hover {
	background-color: var(--accent);
	border-color: var(--accent);
	color: #fff;
}

.popup-user-projects{
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #EBEBEB;
}

.popup-user-projects--settings{
	border: 1px solid rgba(211, 217, 221, 1);
	width: 100%;
	max-width: 100%;
	background-color: rgba(251, 251, 251, 1);
	padding: 23px;
	border-radius: 10px;
}




.popup-user-projects_header{
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(211, 217, 221, 1);
}

.popup-user-projects_header_title{
	font-size: 20px;
	font-weight: 700;
}

.popup-user-projects_list{
	display: flex;
	flex-direction: column;
}

.popup-user-projects_list_row{
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	padding: 15px 0;
	border-bottom: 1px solid #EBEBEB;
}

.popup-user-projects_list_row_item{
	font-size: 18px;
	font-weight: 500;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.popup-user-projects_list_row_item_label{
	color: #000;
	padding: 4px 24px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	border: 1px solid #EBEBEB;
	text-align: center;
}
.popup-user-projects_list_row_item_label.--permanent{
	background-color:rgba(134, 255, 110, 1);
}
.popup-user-projects_list_row_item_label.--one{
	background-color:rgba(255, 217, 91, 1);
}

.popup-user-projects_list_row_item:last-child,
.popup-user-projects_header_title:last-child{
	text-align: right;
	justify-self: end;
}

.popup-user-projects_list_row:last-child{
	border-bottom: none;
	padding-bottom: 0;
}

.popup-user-projects_item{
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	padding: 15px 0;
	border-bottom: 1px solid #EBEBEB;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

/* .popup-user-projects_item:hover{
	background-color: rgba(1, 170, 255, 0.05);
} */

.popup-user-projects_item:last-child{
	border-bottom: none;
	padding-bottom: 0;
}

.popup-user-projects_item_name,
.popup-user-projects_item_project,
.popup-user-projects_item_position,
.popup-user-projects_item_period{
	font-size: 18px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 10px;
}
.popup-user-projects_item_project img{
	width: 27px;
	height: 18px;
}
.popup-user-projects_item_position{
	line-height: 1.5;
}

.popup-user-projects_item_period{
	justify-content: flex-end;
}

.user-projects_empty,
.user-projects_error{
	text-align: center;
	padding: 40px 20px;
	font-size: 18px;
	color: #666;
}

.user-projects_error{
	color: #ff4444;
}

.popup-user-projects--settings .popup-user-projects_list{
	max-height: 350px;
	overflow-y: auto;
	padding-right: 10px;
	box-sizing: border-box;
}
.popup-user-projects--settings .popup-user-projects_header{
	padding-right: 10px;
}

@media (max-width: 768px) {
	.popup-user-projects_header_title{
		font-size: 14px;
	}
	.popup-user-projects_list_row{
		padding: 8px 0;
	}
	.popup-user-projects_list_row_item{
		font-size: 14px;
	}
	.popup-user-projects_list_row_item_label{
		font-size: 10px;
		padding: 2px 12px;
		border-radius: 3px;
	}
	
	.popup-user-projects_item{
		padding: 8px 0;
	}
	
	.popup-user-projects_item_name,
	.popup-user-projects_item_project,
	.popup-user-projects_item_position,
	.popup-user-projects_item_period{
		font-size: 14px;
	}
}

.popup-user-projects_empty {
	text-align: center;
	padding: 20px;
	color: #A1A1A1;
	font-size: 14px;
	font-style: italic;
}

.table__empty {
	text-align: center;
	padding: 40px 20px;
	color: #A1A1A1;
	font-size: 14px;
	font-style: italic;
}



.popup__title-2{
	font-size: 22px;
	font-weight: 600;
	text-align: center;
}

.popup__title-2 span{
	color: var(--accent);
}

.popup__btns_box{
	margin-top: 30px;
	max-width: 240px;
	margin-inline: auto;
}


.input_wrapper {
	margin-bottom: 20px;
}

.input_wrapper_input,
.input_wrapper_textarea,
.custom-select {
	border: 1px solid #D8D8D8;
	border-radius: 7px;
	padding: 12px 18px;
	font-size: 14px;
	font-weight: 500;
	width: 100%;
	color: var(--fontColor);
}

.input_wrapper_textarea{
	height: 95px;
	resize: none;
}

.input_wrapper_input::placeholder,
.input_wrapper_textarea::placeholder {
	color: #A1A1A1;
}

.input_wrapper_input:disabled{
	background-color: rgba(243, 243, 243, 1);
	border-color: rgba(216, 216, 216, 1);
	color: rgba(161, 161, 161, 1);
}

.input_wrapper_label {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 5px;
	display: block;
}

.mt20 {
	margin-top: 20px;
}

.mb0 {
	margin-bottom: 0;
}

.input_wrapper--date {
	position: relative;
	cursor: pointer;
	margin-bottom: 15px;
}

.input_wrapper--date_icon {
	position: absolute;
	right: 15px;
	top: 65%;
	transform: translateY(-50%);
}

.input_wrapper--date_icon i {
	width: 16px;
	height: 18px;
}

.input_wrapper--date_calendar {
	position: absolute;
	top: calc(100% + 10px);
	right: 15px;
	z-index: 10;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 4px 4px 9.6px 0px rgba(0, 0, 0, 0.15);
	width: 280px;
	user-select: none;
	padding: 15px;
	padding-bottom: 23px;
}

.calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.calendar-nav {
	background: #f5f5f5;
	border: none;
	border-radius: 4px;
	padding: 8px 12px;
	cursor: pointer;
	font-size: 16px;
	color: #333;
	transition: background-color 0.2s;
}

.calendar-nav:hover {
	background: #e0e0e0;
}

.calendar-month-year {
	font-weight: 600;
	font-size: 16px;
	color: #333;
}

.calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}

.calendar-day-header {
	text-align: center;
	font-weight: 600;
	font-size: 12px;
	color: #666;
	padding: 8px 4px;
}

.calendar-day {
	text-align: center;
	padding: 8px 4px;
	cursor: pointer;
	border-radius: 4px;
	transition: background-color 0.2s;
	font-size: 14px;
	color: #333;
}

.calendar-day:hover {
	background: #f0f0f0;
}

.calendar-day:not(:empty) {
	background: #f9f9f9;
}

.calendar-day:not(:empty):hover {
	background: #e0e0e0;
}

.input_wrapper--after{
	position: relative;
}

.input_wrapper--after::after{
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	color: #A1A1A1;
	font-size: 14px;
}

.input_wrapper--percent::after{
	content: '%';
}

.input_wrapper--dollar::after{
	content: '$';
}






.calendar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
}

.calendar-header__title {
	font-size: 10px;
	font-weight: 500;
}

.calendar-header__arrows {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	gap: 20px;
}

.calendar-header__arrow svg {
	width: 14px;
	height: 10px;
}

.calendar-days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	font-size: 10px;
	font-weight: 500;
	color: rgb(117, 117, 117);
	margin-bottom: 12px;
	text-align: center;
}

.calendar-dates {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
}

.calendar-date {
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.15s, color 0.15s;

	width: 19px;
	height: 19px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 500;
	text-align: center;
	line-height: 1;
}

.calendar-date--today {
	border: 1px solid var(--accent);
	color: var(--accent);
	background: #fff;
}

.calendar-date--selected {
	background: var(--accent);
	color: #fff;
}

.calendar-date--other {
	color: rgb(117, 117, 117);
	cursor: default;
}



.input_wrapper_box {
	display: flex;
	gap: 12px;
}

.input_wrapper_box .input_wrapper {
	width: calc(50% - 6px);
	margin-bottom: 10px;
}

.custom-select {
	color: #A1A1A1;
	cursor: pointer;
	padding: 12px 0;
	position: relative;
}

.custom-select__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 18px;
}

.custom-select__header_title {
	display: flex;
	align-items: center;
	gap: 11px;
}

.custom-select__header_title_text {
	font-size: 14px;
	font-weight: 500;
}

.custom-select__header_title_flag_icon {
	width: 24px;
	height: 16px;
}

.custom-select__header_arrow {
	max-height: max-content;
	font-size: 1px;
}

.custom-select__header_arrow_icon {
	height: 6px;
	width: 12px;
}

.popup__btn {
	margin-top: 25px;
}

.popup__btn_item {
	background-color: var(--accent);
	color: #fff;
	width: 100%;
	font-size: 16px;
	font-weight: 600;
	padding: 14px 0;
	border-radius: 8px;
	cursor: pointer;
	transition: 0.2s ease-in-out;
}

.popup__btn_item:hover {
	background-color: #1684BC;
}

.popup__btn_item:active {
	background-color: #000;
}

.popup__btn_item:disabled {
	background-color: rgba(210, 210, 210, 1);
	cursor: not-allowed;
}

.popup__btn_item:disabled:hover {
	background-color: rgba(210, 210, 210, 1);
}

.custom-select__body {
	display: flex;
	flex-direction: column;
	max-height: 0;
	overflow: hidden;
	transition: 0.5s ease-in-out;
}

.custom-select.active .custom-select__body {
	max-height: 400px;
	overflow-y: auto;
	padding-top: 15px;
}

.custom-select__body_item {
	display: flex;
	align-items: center;
	/* justify-content: space-between; */
	gap: 11px;
	padding: 7px 18px;
}

.custom-select__body_item:hover {
	background-color: #F5F5F5;
}

.custom-select__body_item_flag_icon {
	width: 35px;
	height: 23px;
}

.custom-select__body_item_text {
	font-size: 14px;
	font-weight: 500;
}

.popup__body_message {
	font-size: 12px;
	font-weight: 500;
	color: #FD7979;
	margin-top: 10px;

	opacity: 0;
	visibility: hidden;
	transition: 0.2s ease-in-out;
	display: none;
}

.popup__body_message.active {
	opacity: 1;
	visibility: visible;
	display: block;
}

.popup-info{
	margin-top: 40px;
}

.popup-info_tabs{
	display: flex;
	align-items: center;
	gap: 50px;
	border-bottom: 2px solid rgba(238, 238, 238, 1);
}

.popup-info_tabs--geo{
	justify-content: center;
}

.popup-info_tabs_item{
	font-size: 20px;
	font-weight: 500;
	color: rgba(212, 212, 212, 1);
	cursor: pointer;
	padding-bottom: 10px;
	border-bottom: 2px solid transparent;
	position: relative;
}

.popup-info_tabs_item.--active{
	color: var(--accent);
}


.popup-info_tabs_item:after{
	content: '';
	display: block;
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent);
	transition: 0.2s ease-in-out;
}

.popup-info_tabs_item.--active::after{
	width: 100%;
}

.popup-info_tabs_item:hover{
	color: var(--accent);
}
.popup-info_tabs_item:hover::after{
	width: 100%;
}

.popup-info_actions{
	margin-top: 20px;
	/* display: flex;
	align-items: center;
	gap: 15px;
	position: relative; */
}

.popup-info_actions_input{
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	height: 38px;
	padding: 0 8px;
	border: 1px solid rgba(231, 231, 231, 1);
	border-radius: 6px;
	background: rgba(249, 251, 255, 1);

	width: calc(50% - 7.5px);
}

.popup-info_actions_input .icon{
	width: 24px;
	height: 24px;
}


.popup-info_actions_input input{
	flex-grow: 1;
	height: 100%;
	background: transparent;
	border: none;
	outline: none;
	font-size: 14px;
	font-weight: 500;
}

.popup-info_actions_input input::placeholder{
	color: rgba(181, 183, 192, 1);
}

.popup-info_actions_btn{
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	background-color: var(--accent);
	height: 38px;
	border-radius: 8px;
	cursor: pointer;
	transition: 0.2s ease-in-out;
	text-align: center;
	width: calc(50% - 7.5px);
	display: block;
	margin-bottom: 15px;
}

.popup-info_actions_btn:hover{
	background-color: #1684BC;
}

.popup-info_list, .popup-info_list_shift{
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	width: 100%;
	border: 1px solid rgba(231, 231, 231, 1);
	border-radius: 5px;
	box-shadow: 0px 5px 13.699999809265137px 0px rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 1);
	padding: 15px;
	z-index: 10;

	display: none;
	
	
}

.popup-info_list_shift{
	top: 50px;
}

.popup-info_list.active, .popup-info_list_shift.active{
	display: block;
}


.popup-info_grid_item .popup-info_list{
	top: 50px;
}

.popup-info_list .popup-info_actions_input{
	width: 100%;
}

.popup-info_actions--history{
	flex-direction: column;
	align-items: flex-start;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(238, 238, 238, 1);
}
.popup-info_actions--history .popup-info_actions_box{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 8px;
	width: 100%;
	margin-top: 15px;
}
.popup-info_actions_box .popup-info_actions_btn{
	margin-bottom: 0;
}
@media (max-width: 768px) {
	.popup-info_actions_box, .popup-info_actions--history .popup-info_actions_box{
		grid-template-columns: 1fr 1fr;
	}
}
.popup-info_actions--history .popup-info_actions_input{
	width: 100%;
}
.popup-info_actions--history .popup-info_actions_btn{
	width: 100%;
}
.popup-info_actions--history .popup-info_actions_btn--all{
	background-color: transparent;
	border: 1px solid rgba(181, 183, 192, 1);
	color: #000;
}
.popup-info_actions--history .popup-info_actions_btn--select .reports__header_actions_select_header{
	width: 100%;
	height: 100%;
}
.popup-info_actions--history .popup-info_actions_btn--select .reports__header_actions_select_header::after{
	width: 12px;
	height: 10px;
}
.popup-info_actions--history .popup-info_actions_btn--apply{
	background-color: rgba(210, 210, 210, 1);
}
.popup-info_actions--history .popup-info_actions_btn--apply.active{
	background-color: var(--accent);
}
.popup-info_actions_btn--reset{
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
}
.popup-info_grid--history .popup-info_grid_container{
	max-height: max-content;
	overflow: visible;
}



.popup-info_grid{
	margin-top: 30px;
}
.popup-info_grid--history .popup-info_grid_header{
	grid-template-columns: 0.7fr 1fr 0.7fr;
}
.popup-info_grid--history .popup-info_grid_row{
	grid-template-columns: 0.7fr 1fr 0.7fr;
}
.popup-info_grid_header{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	padding-bottom: 20px;
}

.popup-info_grid_header_item{
	font-size: 20px;
	font-weight: 600;
}

.popup-info_grid_header_item:nth-child(2),
.popup-info_grid_header_item:nth-child(3){
	padding-left: 30px;
}

.popup-info_grid_container{
	max-height: 440px;
	overflow-y: scroll;
	padding-right: 13px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 2px 0;
}

.popup-info_grid_container::-webkit-scrollbar {
	width: 4px;
	background-color: #EBEBEB;
}

.popup-info_grid_container::-webkit-scrollbar-thumb {
	background-color: var(--accent);
	border-radius: 25px;
}

.popup-info_grid_row{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	border-bottom: 1px solid rgba(238, 238, 238, 1);
	padding-bottom: 10px;
	position: relative;

}

.popup-info_grid_item{
	border-right: 1px solid rgba(238, 238, 238, 1);
	padding: 12px 30px;
}

.popup-info_grid_item--worker{
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.popup-info_grid_item:first-child{
	padding-left: 0;
}

.popup-info_grid_item:nth-child(2){
	padding: 12px 15px;
}

.popup-info_grid_item:last-child{
	border-right: none;
	padding-right: 0;
}

.popup-info_grid_item_pos_title{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.popup-info_grid_item_pos_title span{
	font-size: 18px;
	font-weight: 500;
}

.popup-info_grid_item_pos_title .icon{
	width: 16px;
	height: 16px;
}
.popup-info_grid_item_pos_list{
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 14px;
}

.popup-info_grid_item_pos_list_item{
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}

.popup-info_grid_item_pos_list_item .popup-info_grid_item_pos_list_item_title{
	color: rgba(181, 183, 192, 1);
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.popup-info_grid_item_pos_list_item .popup-info_grid_item_pos_list_item_title i{
	width: 14px;
	height: 14px;
}

.popup-info_grid_item_pos_list_item .popup-info_grid_item_pos_list_item_value{
	min-width: 15px;
}

.popup-info_grid_item_worker_box{
	display: flex;
	align-items: center;
	gap: 10px;
}

.popup-info_grid_item_worker_avatar{
	width: 30px;
	min-width: 30px;
	height: 30px;
}

.popup-info_grid_item_worker_avatar img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.popup-info_grid_item_worker_info{
	display: flex;
	flex-direction: column;
	/* gap: 2px; */
}

.popup-info_grid_item_worker_info_name{
	font-size: 14px;
	font-weight: 600;
	word-break: break-all;
	overflow-wrap: break-word;
	max-width: 100px;

}

.popup-info_grid_item_worker_info_position{
	font-size: 12px;
	font-weight: 500;
	color: rgba(181, 183, 192, 1);
	word-break: break-all;
	overflow-wrap: break-word;
	max-width: 100px;
}

.popup-info_grid_item_worker_info_label{
	font-size: 12px;
	font-weight: 600;
	margin-top: 4px;
	padding: 3px 15px 3px 15px;
	border: 1px solid rgba(207, 207, 207, 1);
	border-radius: 5px;
	display: inline-flex;
}

.popup-info_grid_item_worker_info_label.--warning{
	background: rgba(255, 217, 91, 1);
}

.popup-info_grid_item_worker_info_label.--agree{
	background: rgba(134, 255, 110, 1);
}

.popup-info_grid_item_worker_text{
	font-size: 12px;
	font-weight: 500;
	color: rgba(181, 183, 192, 1);
}

.popup-info_grid_item_worker_box.--big-size .popup-info_grid_item_worker_avatar{
	width: 36px;
	height: 36px;
}

.popup-info_grid_item_worker_box.--big-size .popup-info_grid_item_worker_info_name{
	font-size: 16px;
	max-width: 200px;
}

.popup-info_grid_item_worker_box.--big-size .popup-info_grid_item_worker_info_position{
	font-size: 14px;
	max-width: 200px;
}
.popup-info_grid--history .popup-info_grid_item_worker_info_label{
	font-size: 14px;
	padding: 6px 32px;
}
.popup-info_grid_item_worker_box.--mini-size{
	gap: 7px;
}
.popup-info_grid_item_worker_box.--mini-size .popup-info_grid_item_worker_avatar{
	width: 24px;
	height: 24px;
	min-width: 24px;
}

.popup-info_grid_item_worker_box.--mini-size .popup-info_grid_item_worker_info_name{
	font-size: 12px;
}

.popup-info_grid_item_worker_box.--mini-size .popup-info_grid_item_worker_info_position{
	font-size: 10px;
}

.popup-info_grid_item_action_button{
	width: 100%;
	padding: 10px 0;
	font-size: 14px;
	background-color: var(--accent);
	color: #fff;
	border-radius: 6px;
	text-align: center;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 100px;	
}

.popup-info_grid_item_action_button .icon{
	background-color: #fff;
}

.popup-info_grid_item_title{
	font-size: 20px;
	font-weight: 600;
}


.popup-info_grid_empty{
	margin-top: 40px;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	color: rgba(181, 183, 192, 1);
}

.popup-info_actions_table{
	margin-top: 15px;
	min-height: 350px;
}

.popup-info_actions_table_header{
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	border-bottom: 1px solid rgba(238, 238, 238, 1);
	padding-bottom: 10px;
	padding-right: 10px;
}

.popup-info_actions_table_header_item{
	font-size: 14px;
	font-weight: 500;
	color: rgba(181, 183, 192, 1);
}

.popup-info_actions_table_body{
	display: flex;
	flex-direction: column;
	max-height: 250px;
	overflow-y: scroll;
	padding-right: 10px;
}

.popup-info_actions_table_body::-webkit-scrollbar {
	width: 4px;
	background-color: #EBEBEB;
}

.popup-info_actions_table_body::-webkit-scrollbar-thumb {
	background-color: var(--accent);
	border-radius: 25px;
}

.popup-info_actions_table_row{
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	padding: 10px 0;
	border-bottom: 1px solid rgba(238, 238, 238, 1);
}

.popup-info_actions_table_row_item{
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 14px;
	font-weight: 600;
}


.popup-info_actions_table_row_item_checkbox {
	appearance: none;
	width: 16px;
	min-width: 16px;
	height: 16px;
	background-color: transparent;
	border-radius: 3px;
	border: 1px solid #000;
	position: relative;
	margin: 0;
	cursor: pointer;
}
.popup-info_actions_table_row_item_checkbox:checked{
	border: 1px solid var(--accent);
}
.popup-info_actions_table_row_item_checkbox:checked::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	background: url('../img/icon/check.svg') no-repeat center center;
	background-size: contain;
}

.popup-info_actions_table_row_item_checkbox:disabled {
	cursor: not-allowed;
	opacity: 0.6;
	background-color: #f5f5f5;
}


.popup-info_list_userTable{
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	max-height: 180px;
	overflow-y: scroll;
	padding-right: 10px;
}

.popup-info_list_userTable::-webkit-scrollbar {
	width: 4px;
	background-color: #EBEBEB;
}

.popup-info_list_userTable::-webkit-scrollbar-thumb {
	background-color: var(--accent);
	border-radius: 25px;
}
.popup-info_list_userTable_item{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid rgba(238, 238, 238, 1);
}

.popup-info_list_userTable_item_action{
	display: flex;
	align-items: center;
	gap: 15px;
}

.popup-info_list_userTable_item_action_button{
	width: 120px;
	height: 35px;
	font-size: 14px;
	background-color: var(--accent);
	color: #fff;
	border: 1px solid rgba(1, 170, 255, 1);
	border-radius: 6px;
	cursor: pointer;
	display: block;
}

.popup-info_list_userTable_item_action_button.--one{
	background-color: #fff;
	color: rgba(1, 170, 255, 1);
}

.popup-info_list_userTable_item_action_button.--one:hover{
	background-color: rgba(1, 170, 255, 0.1);
}















.reports__header {
	display: flex;
	align-items: center;
}

.reports__header_title {
	font-size: 22px;
	font-weight: 600;
}

.reports__header_links {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: 30px;
}

.btn-link {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	background-color: var(--accent);
	padding: 8px 16px;
	border-radius: 6px;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.btn-link:hover {
	background-color: #0099e6;
}

.reports__header_actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: 30px;
}

@media (max-width: 480px) {
.reports__header--expenses .reports__header_title{
		font-size: 17px;
	}
}

.reports__header_actions_select {
	position: relative;
}

.reports__header_actions_select_header {
	font-size: 14px;
	font-weight: 500;
	width: 122px;
	height: 35px;
	border-radius: 7px;
	background: rgb(1, 170, 255);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	gap: 10px;
	line-height: 1;
	cursor: pointer;
}

.reports__header_actions_select_header::after {
	content: '';
	display: block;
	width: 9.11px;
	height: 4.8px;
	background-image: url('data:image/svg+xml,<svg width="9.113159" height="4.798828" viewBox="0 0 9.11316 4.79883" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><desc>Created with Pixso.</desc><defs/><path id="Vector 72" d="M0.5 0.5L4.11 4.11C4.35 4.35 4.75 4.35 4.99 4.11L8.61 0.5" stroke="%23FFFFFF" stroke-opacity="1.000000" stroke-width="1.000000" stroke-linecap="round"/></svg>');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.reports__header_actions_select_list {
	position: absolute;
	top: calc(100% + 5px);
	left: 0;
	width: 122px;

	border: 1px solid rgb(222, 222, 222);
	border-radius: 7px;
	background: rgb(250, 251, 255);
	padding: 10px 0;

	opacity: 0;
	visibility: hidden;
	transition: 0.2s ease-in-out;
	z-index: 11;
}

.reports__header_actions_select.--executor .tasks_item_user_worker_box {
	margin-top: 0;
}
.reports__header_actions_select.--executor .reports__header_actions_select_list_item.active .tasks_item_user_worker_info_position {
	color: #fff;
}

.reports__header_actions_select--projects .reports__header_actions_select_list {
	padding-right: 8px;
}

.reports__header_actions_select.active .reports__header_actions_select_list {
	opacity: 1;
	visibility: visible;
}

.reports__header_actions_select_list.active {
	opacity: 1;
	visibility: visible;
}

.reports__header_actions_select_list_item {
	padding: 4px 11px;
	padding-right: 5px;
	font-size: 11px;
	color: rgb(41, 45, 50);
	cursor: pointer;

	display: flex;
	align-items: center;
	line-height: 1;
	gap: 7px;
}
.tasks_item_status{
	width: 8px;
	min-width: 8px;
	height: 8px;
	border-radius: 50%;
}
.tasks_item_status.--created{
	background-color: #DFE2E8;
}
.tasks_item_status.--in-progress{
	background-color: #2F80ED;
}
.tasks_item_status.--completed{
	background-color: #27AE60;
}
.tasks_item_status.--timeout{
	background-color: #EB5757;
}
.tasks_item_status.--closed{
	background-color: #F2994A;
}
.custom-select__body_item .tasks_item_status{
	width: 12px;
	min-width: 12px;
	height: 12px;
}

.reports__header_actions_select_list_item.active {
	background-color: var(--accent);
	color: #fff;
}

.reports__header_actions_select_list_item input[type="checkbox"] {
	position: relative;
	width: 12px;
	min-width: 12px;
	height: 12px;
	margin: 0;
	cursor: pointer;
	appearance: none;
	background-color: rgba(234, 234, 234, 1);
	border-radius: 2px;
}

.reports__header_actions_select_list_item input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	width: 6px;
	height: 6px;
	transform: translate(50%, 50%);
	background-color: var(--accent);
	border-radius: 1px;
}

.reports__header_actions_select_list_inner {
	max-height: 150px;
	overflow-y: scroll;
}

.custom-scroll::-webkit-scrollbar {
	background-color: rgba(222, 222, 222, 1);
	width: 3px;
	height: 4px;
	border-radius: 5px;
}

.custom-scroll::-webkit-scrollbar-thumb {
	background-color: var(--accent);
	border-radius: 5px;
}

.reports__header_actions_select_list_item label {
	cursor: pointer;
}

.reports__header_actions_btn {
	font-size: 14px;
	font-weight: 500;
	width: 122px;
	height: 35px;
	border-radius: 7px;
	background: rgb(210, 210, 210);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	line-height: 1;
	cursor: pointer;
}

.reports__header_actions_btn.active {
	background: var(--accent);
}

.reports__header_actions_cancel {
	font-size: 12px;
	font-weight: 500;
	display: none;
}

.reports__header_btn {
	margin-left: auto;
}

.reports__header_btn_link {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background-color: var(--accent);
	padding: 11px 30px;
	border-radius: 8px;
	cursor: pointer;
	transition: 0.2s ease-in-out;
	display: block;
}
@media (max-width: 1100px) {
	.reports__header_btn_link {
		padding: 10px 20px;
		font-size: 12px;
	}
}
.reports__table_container{
	overflow: auto;
}
.reports__table {
	margin-top: 60px;
	display: flex;

	padding-bottom: 20px;
	min-width: max-content;
}

.reports__column {

	display: flex;
	flex-direction: column;
	align-items: center;
}

.reports__column_item {
	font-size: 11px;
	font-weight: 600;
	border-bottom: 1px solid rgb(238, 238, 238);
	padding: 10px 0;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-right: 15px;
	text-align: center;
	width: 100%;
	min-width: 110px;
	max-width: 110px;

	word-break: break-all;
}

.reports__column_item--name {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: flex-start;
	min-width: 130px;
}

.reports__column_item--name img {
	width: 25px;
	height: 15px;
	object-fit: contain;
}
.reports__column_item--name .btn-edit{
	cursor: pointer;
}
.reports__column_item--name .btn-edit i {
	width: 16px;
	height: 16px;
}

.reports__column_item_actions {
	gap: 10px;
}
.reports__column_item_actions i{
	width: 16px;
	height: 16px;
}

.reports__column_item.title-header {
	color: rgb(181, 183, 192);

	padding-bottom: 20px;
	display: block;
	height: auto;
	height: 60px;
	display: flex;
	align-items: center;
}

.reports__column_item_result {
	margin-top: 35px;
	font-size: 11px;
	font-weight: 600;
	color: #00AAFF;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.reports__header_actions_toggle {
	display: none;
}

.reports__header_actions_toggle i{
	width: 26px;
	height: 26px;
}

.reports-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 112px);

	opacity: 0;
	visibility: hidden;
	transition: 0.2s ease-in-out;
	z-index: 10;
}

.reports-popup.active {
	opacity: 1;
	visibility: visible;
}

.reports-popup__inner {
	box-shadow: 0px -7px 15px 0px rgba(118, 118, 118, 0.1);
	background: rgb(255, 255, 255);
	padding: 20px 30px;
	width: 100%;
	height: 100%;
	padding: 22px 15px 30px 15px;

	display: flex;
	flex-direction: column;
}

.reports-popup-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.reports-popup-header__title {
	font-size: 16px;
	font-weight: 600;
}

.reports-popup-header__cancel {
	font-size: 12px;
	font-weight: 500;
	display: none;
}

.reports-popup-body {
	margin-top: 25px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-grow: 1;
}

.reports-popup-body .reports__header_actions_select_header {
	width: 100%;
	justify-content: flex-start;
	padding: 14px 20px;
	font-size: 16px;
}

.reports-popup-body .reports__header_actions_select_list {
	width: 100%;
}

.reports-popup-footer {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.reports-popup-footer__btn {
	font-size: 16px;
	font-weight: 600;
	padding: 14px 0;
	width: 100%;
	border-radius: 8px;
	cursor: pointer;
	transition: 0.2s ease-in-out;
	color: #fff;
	text-align: center;
}

.reports-popup-footer__btn--apply {
	background: rgb(210, 210, 210);
}
.reports-popup-footer__btn--apply.active {
	background: var(--accent);
}

.reports-popup-footer__btn--close {
	background: rgb(0, 0, 0);
}


.radio_list {
	border: 1px solid rgb(222, 222, 222);
	border-radius: 7px;
	padding: 9px 7px;
}

.radio_list_inner {
	display: flex;
	flex-direction: column;
	gap: 8px;
	height: 80px;
	overflow-y: scroll;
}

.radio_list_item {
	display: flex;
	align-items: center;
	gap: 7px;
	line-height: 1;
}

.radio_list_item label {
	cursor: pointer;
	font-size: 11px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.radio_list_item label img{
	width: 18px;
	height: 12px;
}

.radio_list_item input[type="radio"], .radio_list_item input[type="checkbox"], .custom-checkbox {
	appearance: none;
	width: 12px;
	height: 12px;
	background-color: rgba(234, 234, 234, 1);
	border-radius: 50%;
	position: relative;
	margin: 0;
}

.radio_list_item input[type="radio"]:checked::after, .radio_list_item input[type="checkbox"]:checked::after, .custom-checkbox:checked::after {
	content: '';
	display: block;
	width: 8px;
	min-width: 8px;
	height: 8px;
	background-color: var(--accent);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

}


.settings__form{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
}
.settings__form_deparment{
	position: absolute;
	top: 30px;
	right: 0;
	font-size: 18px;
	font-weight: 600;
}
.settings__form_box{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	width: 100%;
}

.settings__form_avatar{
	width: 225px;
	height: 225px;
	margin-bottom: 20px;
}

.settings__form_avatar img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.settings__form_item{
	width: 100%;
	/* max-width: 410px; */
	margin-top: 15px;
}

.settings__form_item_label{
	font-size: 18px;
	font-weight: 600;
}

.settings__form_item_input_box{
	margin-top: 5px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px;
	background-color: rgba(251, 251, 251, 1);
	border-radius: 10px;
	border: 1px solid rgba(211, 217, 221, 1);
}

.settings__form_item_input_box_icon{
	width: 24px;
	height: 24px;
	background-color: rgba(162, 162, 162, 1);
}

.settings__form_item_input{
	font-size: 15px;
	font-weight: 500;
	color: rgba(162, 162, 162, 1);
	background-color: transparent;
	border: none;
	outline: none;
}

.settings__form .aside__logout_button{
	margin-top: 40px;
}

@media (max-width: 768px) {
	.settings__form_box{
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	.settings__form_item{
		margin-top: 0;
	}
	.content__header-type-1 .aside__logout_button{
		display: none;
	}
	.settings__form_deparment{
		top: -35px;
		font-size: 16px;
	}
}


.pif-title {
	font-size: 20px;
	font-weight: 600;
}
.pif-table {
	margin-top: 10px;
}
.pif-table-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}
.pif-table-body {
	display: flex;
	flex-direction: column;
}
.pif-table-row {
	padding: 10px 0;
	border-bottom: 1px solid rgba(238, 238, 238, 1);
}
.pif-table-row:first-child {
	border-top: 1px solid rgba(238, 238, 238, 1);
}
.pif-table-row-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}
.pif-table-row-header-item {
	font-size: 18px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.pif-table-row-header-item .icon{
	height: 8px;
}
.pif-table-row-header-item .icon.--rotate{
	transform: rotate(180deg);
}
.pif-table-row-body{
	max-height: 0;
	overflow: hidden;
	transition: 0.2s ease-in-out;
}
.pif-table-row-body.active{
	max-height: 500px;
	overflow: auto;
}
.pif-table-row-body-inner {
	padding: 12px 20px;
	margin-top: 10px;
	border: 1px solid rgba(181, 183, 192, 1);
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	max-width: 100%;
	overflow-x: auto;
}
.pif-table-row-body-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.pif-table-row-body-header-item{
	font-size: 14px;
	font-weight: 500;
	color: rgba(181, 183, 192, 1);
	display: inline-flex;
	align-items: flex-end;
	padding-bottom: 10px;
	height: 40px;
	min-width: 135px;
	max-width: 135px;
	padding-right: 15px;
	border-bottom: 1px solid rgba(238, 238, 238, 1);
}
.pif-table-row-body-header-item.--profit{
	color: #000;
}
.pif-table-row-body-row-header{
	display: flex;
	align-items: center;
}
.pif-table-row-body-row-item{
	font-size: 14px;
	min-width: 135px;
	max-width: 135px;
	padding-right: 15px;
	border-bottom: 1px solid rgba(238, 238, 238, 1);
	padding: 10px 0;
}


.pif-table-row-body-row-body {
	max-height: 0;
	overflow: hidden;
	transition: 0.2s ease-in-out;
	width: 100%;
	min-width: max-content;
}
.pif-table-row-body-row-body.active{
	max-height: 500px;
	overflow: auto;
}
.pif-table-row-body-row-body-inner {
	padding: 10px 0;
}
.pif-table-row-body-row-body-inner-title {
	font-size: 14px;
	font-weight: 600;
}
.pif-table-row-body-row-body-inner-box {
	display: flex;
	gap: 15px;
	margin-top: 10px;
	overflow-x: auto;
	min-width: max-content;
}
.pif-table-row-body-row-body-inner-item {
	padding: 10px;
	border-radius: 10px;
	border: 1px solid rgba(238, 238, 238, 1);
	display: flex;
	min-width: max-content;
}
.pif-table-row-body-row-body-inner-item_box{
	display: flex;
	flex-direction: column;
	align-self: stretch;
	/* min-width: 195px; */
}
.pif-table-row-body-row-body-inner-item-item {
	padding: 2px;
	border-bottom: 1px solid rgba(238, 238, 238, 1);
	display: flex;
	justify-content: space-between;
	font-size: 14px;
}
.pif-table-row-body-row-body-inner-item-item span:first-child {
	min-width: 160px;
}

.pif-table-row-body-row-body-inner-item_box-accent{
	margin-left: 5px;
	display: flex;
	flex-direction: column;
}
.pif-table-row-body-row-body-inner-item_box-accent span{
	font-size: 14px;
	color: #00AAFF;
	padding: 2px 0;
	border-bottom: 1px solid #fff;
}
.popup__body_message.error {
	background-color: #ffebee;
	color: #c62828;
	border: 1px solid #ffcdd2;
	padding: 10px;
	border-radius: 4px;
	margin: 10px 0;
}

.popup__body_message.success {
	background-color: #e8f5e8;
	color: #2e7d32;
	border: 1px solid #c8e6c9;
	padding: 10px;
	border-radius: 4px;
	margin: 10px 0;
}

.btn-edit:disabled,
.btn-delete:disabled {
	opacity: 0.5;
	cursor: not-allowed;

	/* display: none; */
}















@media (max-width: 1280px) {
	.xl-btn {
		width: 160px;
		height: 40px;
	}

	.content__header_title_text {
		font-size: 20px;
	}

	.table_item {
		font-size: 13px;
	}

	.table_item_status_text {
		width: 105px;
		height: 23px;
	}

	.table_item_flag {
		width: 43px;
		height: 29px;
		padding: 0;
	}

	.content__inner-acc-project-project .table__header,
	.content__inner-acc-project-project .table_row {
		grid-template-columns: 1fr 0.7fr 105px;
	}

	.content__inner-acc-project-geo .table__header,
	.content__inner-acc-project-geo .table_row {
		grid-template-columns: 1fr 100px 43px;
	}

	.content__section.column-2 {
		gap: 40px;
		padding: 35px 15px 35px 60px;
	}

	.content__inner {
		padding: 20px 30px 30px 20px;
	}

	.table__footer_pagination {
		gap: 5px;
	}
}

@media (max-width: 1200px) {
	.content__section {
		padding: 40px 15px 40px 34px;
	}

	.content__section_header_title_text {
		font-size: 20px;
	}

	.content__section_header_title_text_count {
		font-size: 13px;
	}

	.content__section_header_search {
		padding: 6px 7px;
		gap: 7px;
	}

	.content__section_header_search_button_icon {
		width: 21px;
		height: 21px;
	}

	.content__section_header_search_input {
		font-size: 13px;
	}

	.table__header_item {
		font-size: 13px;
	}

	.table__header_item_name {
		margin-left: 50px;
	}

	.table_item {
		font-size: 13px;
	}

	.table_item_name {
		gap: 20px;
	}

	.table_item_status_text {
		width: 107px;
		height: 22px;
	}

	.table__footer_text {
		font-size: 13px;
	}

}

@media (max-width: 1024px) {
	.content__section{
		max-width: 100%;
	}
	.content__section.column-2 {
		flex-direction: column;
		gap: 0;
	}

	.content__section.column-2.content__inner-60-40 .content__inner:first-child {
		width: 100%;
		border-radius: 0;
	}

	.content__section.column-2.content__inner-60-40 .content__inner:last-child {
		width: 100%;
		border-radius: 0;
	}

	.table {
		margin-top: 35px;
	}

	.content__inner-acc-project-project {
		order: 2;
	}

	.content__inner-acc-project-geo {
		order: 1;
	}

	body{
		padding-right: 0 !important;
	}


	.aside__logout{
		margin-top: 20px;
	}
}

@media (max-width: 1024px) {

	.table_item_username,
	.table__header_item_username {
		display: none;
	}

	.table__header {
		grid-template-columns: 1.3fr 1fr 1fr 110px;
		align-items: flex-end;
		gap: 5px;
	}

	.table_row {
		grid-template-columns: 1.3fr 1fr 1fr 110px;
		gap: 5px;
	}

	.table_item_text_username {
		display: block;
		color: #B5B7C0;
		font-size: 0.9em;
	}

	.table__footer {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.table__footer_text {
		order: 2;
		font-weight: 500;
	}

	.table__footer_pagination {
		order: 1;
	}

	.content__inner {
		padding: 30px 15px 40px 15px;
	}

	.content__section {
		overflow: scroll;
	}

	.content__inner {
		width: auto;
		overflow: auto;
		border-radius: 0;
	}



	.reports__header_actions .reports__header_actions_select {
		display: none;
	}

	.reports__header_actions .reports__header_actions_btn {
		display: none;
	}

	.reports__header_actions .reports__header_actions_cancel {
		display: none;
	}

	.reports__header_btn_link {
		font-size: 12px;
		padding: 10px 27px;
	}

	.content__section--reports {
		overflow: auto;
	}



	.reports__table {
		margin-top: 23px;
	}

	.reports__header_actions_toggle {
		display: block;
	}

	.reports__column {
		min-width: 80px;
	}

	.reports__header_actions {
		margin-left: 17px;
	}

	html {
		background-color: #fff;
	}

	.header {
		display: block;
		padding: 40px 0 30px 0;
		background-color: #F8F9FC;
	}

	.header__wrapper {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 15px;
	}

	.header__action {
		display: flex;
		align-items: center;
	}

	.header__menu {
		display: flex;
		flex-direction: column;
		gap: 3px;
	}

	.header__menu_item {
		width: 16px;
		height: 2px;
		background-color: #000;
		border-radius: 5px;
	}

	.header__logo {
		display: flex;
		align-items: center;
		gap: 8px;
		margin-left: 10px;
	}

	.header__logo_icon {
		width: 31px;
		height: 31px;
	}

	.header__logo_text {
		font-size: 26px;
		font-weight: 600;
	}

	.header__info_user {
		display: flex;
		align-items: center;
		gap: 11px;
	}

	.header__info_user_text {
		display: flex;
		flex-direction: column;
		gap: 1px;
	}

	.header__info_user_text_name {
		font-size: 14px;
		font-weight: 600;
	}

	.header__info_user_text_status {
		font-size: 14px;
		font-weight: 500;
		color: #757575;
	}

	.header__info_user_picture {
		width: 42px;
		height: 42px;
	}

	.header__info_user_picture img {
		border-radius: 50%;
	}

	.aside {
		height: calc(100vh - 112px);

		position: fixed;
		top: 112px;
		left: 0;
		transition: 0.3s ease-in-out;
		z-index: 10;

		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		width: 0;
		padding: 30px;
	}

	.aside.active {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		width: 100%;
		background-color: #fff;
	}

	.aside__wrapper{
		display: contents;
	}

	.aside__header {
		display: none;
	}

	.aside__info {
		margin-top: 0;
	}

	.aside__menu_list_item.has-child .aside__menu_list_item_child {
		right: -20px;
		top: 20px;
	}

	/* .content__inner {
		width: auto;
		overflow: auto;
		border-radius: 0;
	} */

	.content__section {
		overflow: auto;
	}

	.content__section {
		padding: 0;
	}

	.table {
		margin-top: 25px;
	}

	.table__header_item_date_desktop {
		display: none;
	}

	.table__header_item_date_mobile {
		display: block;
	}

	.table__header {
		padding-bottom: 10px;
	}

	.content__section.column-2 {
		padding: 0;
	}

	.table__footer_pagination {
		gap: 13px;
	}
}

@media (max-width: 630px) {
	.popup_user_header_picture {
		width: 100px;
		height: 100px;
	}

	.popup_user_header_text_name {
		font-size: 28px;
	}

	.popup_user_header_text_username {
		font-size: 14px;
	}

	.popup_user_info {
		margin: 20px 0;
		padding: 10px 0;
	}

	.popup_user_info_item_title,
	.popup_user_info_item_value {
		font-size: 12px;
	}

	.popup_user_status_title {
		font-size: 12px;
	}

	.popup_user_status {
		gap: 15px;
	}

	.popup_user_status_box_item input[type="radio"] {
		width: 10px;
		height: 10px;
	}

	.popup_user_status_box_item input[type="radio"]:checked::after {
		width: 6px;
		height: 6px;
	}

	.popup_user_status_box_item label {
		font-size: 11px;
	}

	.popup_user_text_p {
		font-size: 10px;
	}

	.popup_user_status_box {
		gap: 6px;
	}

	.popup_user_text {
		max-width: 150px;
		gap: 6px;
	}

	.popup_user_text_btn_button {
		font-size: 9px;
		padding: 5px 0;
		border-radius: 4px;
	}

	.popup__btns_box .popup_user_text_btn_button{
		font-size: 15px;
		padding: 10px 0;
		border-radius: 8px;
	}
}

@media (max-width: 576px) {
	.content__section_header_title_text {
		font-size: 16px;
	}

	.content__section_header_title_text_count {
		font-size: 10px;
	}

	.content__section_header_title {
		gap: 0;
	}

	/* .content__inner {
		padding: 15px;
	} */

	.content__section_header_search {
		width: 106px;
		height: 27px;
	}

	.content__section_header_search_input {
		width: 80px;
	}

	.content__section_header_search_button_icon {
		width: 16px;
		height: 16px;
	}

	.table__header_item {
		font-size: 10px;
		font-weight: 500;
	}

	.table_item_name {
		gap: 9px;
	}

	.table_item_picture {
		width: 25px;
		min-width: 25px;
		height: 25px;
	}

	.table_item_status_text {
		width: 80px;
		height: 20px;

	}

	.table_item {
		padding: 9px 0;
		font-size: 11px;
	}

	.table_item_status_text {
		font-size: 9px;
		width: 75px;
		height: 16px;
	}

	.table__header,
	.table_row {
		grid-template-columns: 1.3fr 1fr 1fr 75px;
		gap: 5px;
	}

	.table_item_flag {
		width: 35px;
		height: 23px;
		padding: 0;
	}

	.content__inner-acc-project-project .table__header,
	.content__inner-acc-project-project .table_row {
		grid-template-columns: 1fr 0.7fr 75px;
	}

	/* .content__inner-acc-project-geo .table__header,
	.content__inner-acc-project-geo .table_row {
		grid-template-columns: 1fr 100px 43px;
	} */

	.content__header_title_text {
		font-size: 16px;
	}

	.xl-btn {
		width: 135px;
		height: 33px;
		font-size: 12px;
	}

	.table__footer {
		margin-top: 20px;
	}

	.popup__content {
		max-width: 600px;
		padding: 20px;
	}

	.popup__body {
		margin-top: 25px;
	}

	.popup__body_message {
		margin-top: 8px;
	}

	.popup__btn {
		margin-top: 8px;
	}

	.settings__form_avatar{
		width: 133px;
		height: 133px;
	}
	.settings__form_item_label{
		font-size: 16px;
	}
	.settings__form_item_input{
		font-size: 14px;
	}
	.settings__form_item_input_box_icon{
		width: 22px;
		height: 22px;
	}
}

@media (max-width: 420px) {
	.popup__title-2{
		font-size: 18px;
	}
}

@media (max-width: 380px) {
	.content__inner {
		min-width: 400px;
		overflow: scroll;
	}
	.content__inner--without-scroll{
		overflow: auto;
		min-width: 0;
	}

	.popup_user_box {
		flex-direction: column;
		gap: 20px;
	}
}

.main-error {
	display: none;
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: #ff4444;
	color: white;
	padding: 15px 20px;
	border-radius: 8px;
	z-index: 10000;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	font-weight: 500;
	max-width: 90%;
	text-align: center;
	font-size: 20px;
}

@media (max-width: 600px) {
	.main-error {
		max-width: 300px;
		font-size: 13px;
		padding: 10px 15px;
		border-radius: 4px;
	}
}


@media (max-width: 550px) {
	.popup-info_actions{
		flex-direction: column;
	}
	.popup-info_actions_input{
		width: 100%;
	}
	.popup-info_actions_btn{
		width: 100%;
	}
	.popup-info_grid_item{
		padding: 12px;
	}
	.popup-info_grid_header_item:nth-child(2), .popup-info_grid_header_item:nth-child(3){
		padding-left: 12px;
	}
	.popup-info_grid_row {
		display: grid;
		grid-template-columns: 1fr 1fr 0.7fr;
	}
}

@media (max-width: 480px) {
	.popup-info_grid_row {
		gap: 10px;
	}
	.popup-info_grid_item{
		display: contents;
	}

	/* Порядок для внутренних элементов после разбивки контейнера */
	.popup-info_grid_item_pos_title{
		order: 1;
	}
	.popup-info_grid_item_worker_box, .popup-info_grid_item_worker_text{
		order: 2;
	}
	.popup-info_grid_item_action_button{
		order: 3;
		max-height: max-content;
		padding: 5px 0;
		font-size: 12px;
	}
	.popup-info_grid_item_pos_list{
		order: 4;
		grid-column: span 2;
		max-width: 150px;
	}
	.popup-info_grid_item_worker_label{
		order: 5;
		max-height: max-content;
		display: inline;
		text-align: center;
		margin-top: 0;
	}
	.popup-info_grid_item_worker_info_name{
		font-size: 10px;
	}
	.popup-info_grid_item_worker_info_position{
		font-size: 8px;
	}
	.popup-info_grid_item_pos_title span{
		font-size: 14px;
	}
	.popup-info_tabs{
		gap: 20px;
	}
	.popup-info_tabs_item{
		font-size: 16px;
	}
	.popup__title{
		font-size: 18px;
	}
	.popup-info_grid_header_item{
		font-size: 17px;
	}
}

.popup-info_error {
	background-color: #ffebee;
	border: 1px solid #f44336;
	border-radius: 5px;
	padding: 15px;
	margin-bottom: 20px;
	color: #d32f2f;
	position: relative;
}

.popup-info_error_text {
	font-size: 14px;
	line-height: 1.4;
	padding-right: 80px;
	white-space: pre-wrap;
	max-height: 300px;
	overflow-y: auto;
}

.popup-info_error_close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	color: #d32f2f;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	padding: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.2s;
}

.popup-info_error_clear {
	position: absolute;
	top: 10px;
	right: 40px;
	background: none;
	border: none;
	color: #d32f2f;
	font-size: 16px;
	cursor: pointer;
	padding: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.2s;
}

.popup-info_error_clear:hover {
	background-color: rgba(211, 50, 47, 0.1);
}

.popup-info_error.show {
	display: block !important;
}

.user-projects{
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
	max-width: 410px;
}

.user-projects_title{
	font-size: 18px;
	font-weight: 500;
	color: #000;
}

.user-projects_item{
	font-size: 16px;
	font-weight: 500;
	color: #000;
	text-decoration: none;
	white-space: nowrap;
}

.user-projects_item:hover{
	color: var(--accent);
}



.user-projects_empty,
.user-projects_error {
	padding: 12px;
	text-align: center;
	color: #999;
	font-style: italic;
	font-weight: 400;
}

.user-projects_error {
	color: #ff6b6b;
}

.user-projects_list{
	display: flex;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
}
.popup_user_info_item .user-projects {
	margin-top: 10px;
}

.popup_user_info_item .user-projects_item {
	font-size: 14px;
	padding: 8px 12px;
	border-radius: 6px;
	background-color: #f5f5f5;
	transition: background-color 0.2s;
}

.popup_user_info_item .user-projects_item:hover {
	background-color: #e0e0e0;
	color: var(--accent);
}

/* Стили для групп полей отчетов */
.reports-fields-group {
	margin-bottom: 25px;
	padding: 20px;
	background-color: #f8f9fa;
	border-radius: 8px;
	border: 1px solid #e9ecef;
}

.reports-fields-group h4 {
	margin: 0 0 15px 0;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	border-bottom: 2px solid var(--accent);
	padding-bottom: 8px;
}

.reports-fields-group .input_wrapper {
	margin-bottom: 15px;
}

.reports-fields-group .input_wrapper:last-child {
	margin-bottom: 0;
}

/* Стили для сообщений */
.main-error {
	display: none;
	position: fixed;
	top: 20px;
	right: 20px;
	padding: 15px 20px;
	border-radius: 8px;
	color: #fff;
	font-weight: 500;
	z-index: 10000;
	max-width: 400px;
	word-wrap: break-word;
}

.main-error.error {
	background-color: #dc3545;
}

.main-error.success {
	background-color: #28a745;
}

.main-error.info {
	background-color: #17a2b8;
}


.table--projects .table__header,
.table--projects .table_row {
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

.popup-info_actions.popup-info_actions--geo{
	flex-direction: column;
}
.popup-info_actions.popup-info_actions--geo .popup-info_actions_btn{
	width: 100%;
}
.popup-info-geo_table{
	width: 100%;
}
.popup-info-geo_table_header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-right: 10px;
}

.popup-info-geo_table_header_item{
	font-size: 20px;
	font-weight: 500;
}

.popup-info-geo_table_body{
	display: flex;
	flex-direction: column;
	max-height: 250px;
	overflow-y: auto;
}

.popup-info-geo_table_body_item{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #e0e0e0;
	padding: 17px 0;
}

.popup-info-geo_table_body_item_date,
.popup-info-geo_table_body_item_course{
	font-size: 18px;
	font-weight: 500;
}

.popup-info-geo_table_body_item_course{
	display: flex;
	align-items: center;
	gap: 15px;
}

.popup-info-geo_table_body_item_course i{
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.popup_actions_btn_box{
	display: flex;
	gap: 20px;
	margin-top: 15px;
}

.popup_actions_btn{
	width: calc(50% - 10px);
	height: 46px;
	border-radius: 8px;
	border: 1px solid var(--accent);
	background-color: var(--accent);
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
}

.popup_actions_btn--cancel{
	background-color: #fff;
	color: #000;
	border: 1px solid #000;
}

.fines-type{
	border: 1px solid rgba(207, 207, 207, 1);
	width: 65px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 600;
	color: rgba(255, 255, 255, 1);
	border-radius: 3px;
}

.fines-type.--fines{
	background-color: rgba(255, 91, 91, 1);
}

.fines-type.--bonus{
	background-color: rgba(82, 196, 10, 1);
}

.accept-type{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	border-radius: 3px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}
.accept-type.--FD{
	background-color: rgba(16, 255, 243, 1);
}
.accept-type.--RD{
	background-color: rgba(255, 219, 16, 1);
}


.schema{
	margin-top: 50px;
	overflow-x: auto;
	padding-bottom: 30px;
}

.schema__header{
	display: flex;
	align-items: center;
	gap: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(238, 238, 238, 1);
	min-width: min-content;
}

.schema__header_item{
	min-width: 120px;
	max-width: 120px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(181, 183, 192, 1);
}

.schema__body{
	display: flex;
	flex-direction: column;
	min-width: min-content;
}

.schema__body_row{
	padding: 13px 0;
	border-bottom: 1px solid rgba(238, 238, 238, 1);
	display: flex;
	align-items: center;
	gap: 20px;
}

.schema__body_row_item{
	min-width: 120px;
	max-width: 120px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(41, 45, 50, 1);
}
.schema__body_row_item.flex-row{
	display: flex;
	align-items: center;
	gap: 10px;
}

.schema__body_row_item.--project{
	display: flex;
	align-items: center;
	gap: 10px;
}
.schema__body_row_item.--project img{
	width: 27px;
	height: 18px;
}
.schema__body_row_item_btn i{
	width: 20px;
	height: 20px;
	background-color: #9197B3;
}

.--dashboard .schema__body_row_item.--project img{
	width: 18px;
	height: 12px;
}
.--dashboard .schema__body_row,
.--dashboard .schema__header{
	gap: 10px;
}
.--dashboard .schema__body_row_item,
.--dashboard .schema__header_item{
	font-weight: 400;
}
.--dashboard .--summ{
	min-width: 80px;
	max-width: 80px;
}
.--dashboard .--comment{
	max-width: 100%;
}
.--dashboard .schema__body{
	max-height: 250px;
}
.--dashboard{
	margin-top: 20px;
}
.schema__body_row_item.--income{
	color: #20A820;
}
.schema__body_row_item.--outcome{
	color: #D51717;
}

@media (max-width: 768px) {
	.schema__body_row_item,
	.schema__header_item{
		min-width: 75px;
		max-width: 75px;
		font-size: 11px;
	}
	.--dashboard .--summ{
		min-width: 50px;
		max-width: 50px;
	}
	.--dashboard .schema__header_item:first-child,
	.--dashboard .schema__body_row_item:first-child{
		min-width: 50px;
		max-width: 50px;
	}
}

.fines-users-list{
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	width: 100%;
	background-color: #fff;
	z-index: 1000;

	max-height: 0;
	overflow: hidden;
}
.fines-users-list.active{
	max-height: min-content;
	overflow: auto;
}
.fines-users-list_inner{
	padding-right: 10px;
	border-radius: 8px;
	border: 1px solid rgba(216, 216, 216, 1);
}
.fines-users-list_header{
	display: grid;
	grid-template-columns: 1fr 1.35fr 0.65fr;
	padding: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(216, 216, 216, 1);
}
.fines-users-list_header_item{
	font-size: 14px;
	font-weight: 600;
	color: rgba(181, 183, 192, 1);
}
.fines-users-list_body{
	display: flex;
	flex-direction: column;
	max-height: 135px;
	overflow-y: auto;
}
.fines-users-list_item{
	display: grid;
	grid-template-columns: 1fr 1.35fr 0.65fr;
	align-items: center;
	padding: 8px 15px;
	border-bottom: 1px solid rgba(216, 216, 216, 1);
	gap: 8px;
	color: #292D32;
	font-size: 12px;
	font-weight: 600;
}
.fines-users-list_item_project{
	display: flex;
	align-items: center;
	gap: 8px;
}
.fines-users-list_notification{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 15px;
	text-align: center;
}
.fines-users-list_notification_text{
	color: rgba(181, 183, 192, 1);
	font-size: 14px;
	font-weight: 500;
}

.input_wrapper--flex{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.fines-type-list{
	display: flex;
	gap: 4px;
}
.fines-type-list_item{
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(50% - 2px);
	border-radius: 8px;
	border: 1px solid rgba(216, 216, 216, 1);
	background: rgba(216, 216, 216, 1);
	height: 41px;
	text-align: center;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
}
.fines-type-list_item input[type="radio"] {
	display: none;
}

.fines-type-list_item:has(input[type="radio"]:checked) {
	background: rgba(255, 91, 91, 1);
}
.fines-type-list_item:last-child:has(input[type="radio"]:checked) {
	background: rgba(82, 196, 10, 1);
}

.fines-type-list.--accept .fines-type-list_item{
	font-weight: 600;
}
.fines-type-list.--accept .fines-type-list_item:has(input[type="radio"]:checked) {
	background: rgba(16, 255, 243, 1);
	color: #000;
}
.fines-type-list.--accept .fines-type-list_item:last-child:has(input[type="radio"]:checked) {
	background: rgba(255, 219, 16, 1);
	color: #000;
}

.input_wrapper_file_box.--changed{
	display: none; /* Скрыто по умолчанию */
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.input_wrapper_file_box.--changed.active {
	display: grid; /* Показываем при загрузке фото */
}

.input_wrapper_input_file-add,
.input_wrapper_input_file-preview{
	width: 100%;
	height: 100%;
	border-radius: 7px;
	border: 1px solid rgba(216, 216, 216, 1);
	height: 95px;
}
.input_wrapper_input_file-add{
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.input_wrapper_input_file-add label{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.input_wrapper_input_file-add label i{
	width: 42px;
	height: 42px;
	color: rgba(162, 162, 162, 1);
}
.input_wrapper_input_file-add label span{
	font-size: 13px;
	font-weight: 600;
	color: rgba(162, 162, 162, 1);
}
.input_wrapper_input_file-preview img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 7px;
}
.accent{
	color: var(--accent);
}
.popup__body_image{
	width: 100%;
	height: 460px;
}


.popup-info_tab {
	display: none;
}

.popup-info_tab.--active {
	display: block;
}

.popup-info_tab_accept{
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 30px;
}

.popup-info_tab_accept_item{
	display: flex;
	align-items: center;
	gap: 10px;
}

.popup-info_tab_accept_item_title{
	width: 245px;
	font-size: 20px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.popup-info_tab_accept_item_input{
	flex-grow: 1;
	border: 1px solid #D8D8D8;
    border-radius: 7px;
    padding: 9px 15px;
	padding-right: 10px;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    color: var(--fontColor);
	display: flex;
	align-items: center;
}

.popup-info_tab_accept_item_input input{
	border: none;
	outline: none;
	height: 100%;
	flex-grow: 1;
}

.popup-info_tab_accept_item_input i{
	width: 24px;
	height: 24px;
}
.popup-info_tab_accept_item_title.--approve{
	color: rgba(27, 143, 17, 1);
}

.popup-info_tab_accept_item_title.--approve i{
	background-color: rgba(27, 143, 17, 1);
}

.popup-info_tab_accept_item_title.--wait{
	color: rgba(0, 170, 255, 1);
}

.popup-info_tab_accept_item_title.--wait i{
	background-color: rgba(0, 170, 255, 1);
}

.popup-info_tab_accept_item_title.--drawing{
	color: rgba(255, 157, 0, 1);
}

.popup-info_tab_accept_item_title.--drawing i{
	background-color: rgba(255, 157, 0, 1);
}

.popup-info_tab_accept_item_title.--block{
	color: rgba(223, 33, 33, 1);
}

.popup-info_tab_accept_item_title.--block i{
	background-color: rgba(223, 33, 33, 1);
}

.popup-info_tab_accept_btn{
	display: block;
	width: 100%;
	padding: 15px 0;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	background-color: var(--accent);
	border-radius: 8px;
	cursor: pointer;
	transition: 0.2s ease-in-out;
	text-align: center;
	margin-top: 30px;
}

.table__tabs{
	margin: 18px 0;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	align-items: center;
	background-color: rgba(238, 238, 238, 1);
	border-radius: 10px;
}
.table__tabs.--7-col{
	grid-template-columns: repeat(7, 1fr);
}
.table__tabs_tab{
	font-size: 16px;
	font-weight: 600;
	padding: 13px 0;
	border-radius: 10px;
	cursor: pointer;
}

.table__tabs_tab.--active{
	background-color: var(--accent);
	color: #fff;
	text-align: center;
}

.table__tabs_tab--archive{
	opacity: 0.4;
}

.table__tabs_tab--archive.--active{
	opacity: 1;
}

.custom-select__body_item--archive{
	color: #856404;
	font-weight: 600;
}

@media (max-width: 768px) {
	.table__tabs_tab{
		padding: 13px 0;
		font-size: 14px;
	}
}
@media (max-width: 576px) {
	.table__tabs{
		border-radius: 6px;
	}
	.table__tabs_tab{
		padding: 9px 0;
		font-size: 11px;
		border-radius: 6px;
	}
}
@media (max-width: 480px) {
	.table__tabs_tab{
		padding: 7px 0;
		font-size: 10px;
		font-weight: 500;
	}
}
.pif-loading-indicator {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	gap: 15px;
}

.pif-loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid var(--accent);
	border-radius: 50%;
	animation: pif-spin 1s linear infinite;
}

.pif-loading-text {
	font-size: 16px;
	color: #666;
	font-weight: 500;
}

@keyframes pif-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.pif-load-more-btn {
	width: 100%;
	padding: 15px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background-color: var(--accent);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 20px 0;
}

.pif-week-row-loading {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.pif-week-row-loading.loaded {
	opacity: 1;
	transform: translateY(0);
}

.reports__header_actions_select {
	position: relative;
	cursor: pointer;
}

.reports__header_actions_select_list {
	position: absolute;
	top: calc(100% + 5px);
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #D8D8D8;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.reports__header_actions_select.active .reports__header_actions_select_list {
	max-height: 300px;
	overflow-y: auto;
}

.reports__header_actions_select_list_item {
	padding: 10px 8px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.reports__header_actions_select_list_item:hover {
	background-color: #f5f5f5;
}

.reports__header_actions_select_list_item.active {
	background-color: var(--accent);
	color: #fff;
}

.reports__header_actions_select_list_item img{
	width: 17px;
	height: 12px;
}
.reports__header_actions_select_list_item label{
	display: flex;
	align-items: center;
	gap: 3px;
}

.dash_header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 30px 0;
	padding: 14px 0;
	border-bottom: 1px solid rgba(238, 238, 238, 1);
	border-top: 1px solid rgba(238, 238, 238, 1);
}

.dash_header_title{
	font-size: 22px;
	font-weight: 600;
}

.dash_header_summ{
	font-size: 30px;
	font-weight: 600;
	color: var(--accent);
	margin-top: 4px;
}

.dash_header_btn{
	font-size: 16px;
	font-weight: 600;
	padding: 12px 20px;
	background-color: var(--accent);
	color: #fff;
	border-radius: 8px;
}

.graph_header{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.graph_header_title{
	font-size: 20px;
	font-weight: 600;
}

.graph_header_tabs{
	display: flex;
	align-items: center;
	gap: 30px;
}

.graph_header_tab{
	font-size: 16px;
	font-weight: 500;
	color: rgba(92, 92, 92, 1);
}

.graph_header_tab.--curent{
	color: var(--accent);
}

.graph_canvas_container{
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	margin-top: 40px;
}

.graph_canvas{
	height: 600px !important;
	width: 1220px !important;
}

.graph_canvas canvas {
	height: 600px !important;
	width: 1220px !important;
	max-width: 1220px;
	min-width: 1220px;
}



.finance_graph{
	margin-top: 20px;
}

.finance_graph_tabs{
	display: flex;
	align-items: center;
	justify-content: space-between;
	justify-self: center;
	border: 1px solid #B5B7C0;
	border-radius: 6px;
}
.finance_graph_tab{
	font-size: 16px;
	font-weight: 500;
	padding: 13px;
	border-right: 1px solid #B5B7C0;
	cursor: pointer;
	text-align: center;
	max-width: 100%;
}
.finance_graph_tab.--curent{
	background-color: var(--accent);
	color: #fff;
	border-color: var(--accent);
}
.finance_graph_tab:first-child{
	padding-left: 18px;
}
.finance_graph_tab:last-child{
	border-right: none;
	padding-right: 18px;
}
.finance_graph_info{
	margin-top: 20px;
	/* display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center; */
	padding: 20px 0;
	border-top: 1px solid #EEEEEE;
	border-bottom: 1px solid #EEEEEE;
}
/* .finance_graph_info_item:first-child{
	border-right: 1px solid #EEEEEE;
} */
/* .finance_graph_info_item:last-child{
	padding-left: 20px;
} */

.finance_graph_info_item_title{
	font-size: 20px;
	font-weight: 600;
}
.finance_graph_info_item_value{
	font-size: 26px;
	font-weight: 600;
	color: var(--accent);
	margin-top: 5px;
}
.finance_graph_canvas{
	margin-top: 30px;
	width: 100%;
	height: 275px;
	position: relative;
	overflow-x: scroll;
	overflow-y: hidden;
}

.finance_graph_scroll_container {
	width: 1240px;
	height: 275px;
	padding-bottom: 2px; 
}

.finance_graph_canvas canvas {
	height: 275px !important;
	width: 1240px !important;
	min-width: 1240px;
	max-width: none !important;
}

.finance-graph-highlighted-date {
	color: #00AAFF !important;
}

.tasks__table{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	margin-top: 20px;
}
.tasks_item{
	padding: 12px 18px;
	border-radius: 14px;
	border: 2px solid #EEEEEE;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
	cursor: pointer;
}
.tasks_item:hover{
	border-color: var(--accent);
}
.tasks_item_header_title{
	font-size: 18px;
	font-weight: 600;
}
.tasks_item_header_title_sub{
	font-size: 12px;
	font-weight: 400;
	color: #B5B7C0;
	margin-top: 4px;
}
.tasks_item_user{
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 5px 0;
	border-top: 1px solid #EEEEEE;
	border-bottom: 1px solid #EEEEEE;
	margin-top: 10px;
}
.tasks_item_user_item{
	padding: 6px 0;
}
.tasks_item_user_item_label{
	font-size: 10px;
	font-weight: 600;
}
.tasks_item_user_item_avatar{
	width: 24px;
	height: 24px;
}
.tasks_item_user_item:first-child{
	border-right: 1px solid #EEEEEE;
}
.tasks_item_user_item:last-child{
	padding-left: 10px;;
}
.tasks_item_user_worker_box{
	margin-top: 7px;
	display: flex;
	align-items: center;
	gap: 7px;
}
.tasks_item_user_worker_avatar{
	width: 23px;
	height: 23px;
}
.tasks_item_user_worker_avatar img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
.tasks_item_user_worker_info{
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.tasks_item_user_worker_info_name{
	font-size: 10px;
	font-weight: 600;
}
.tasks_item_user_worker_info_position{
	font-size: 9px;
	font-weight: 400;
	color: #B5B7C0;
}
.tasks_item_list{
	margin-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #EEEEEE;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.tasks_item_list_row{
	font-size: 11px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.tasks_item_progress{
	padding: 12px 0;
	border-bottom: 1px solid #EEEEEE;
}
.tasks_item_progress_bar{
	height: 15px;
	border-radius: 5px;
	background-color: #EEEEEE;
	position: relative;
}
.tasks_item_progress_bar_item{
	height: 100%;
	border-radius: 5px;
	background-color: var(--accent);
}
.tasks_item_progress_bar_item_text{
	font-size: 8px;
	font-weight: 500;
	color: #B5B7C0;
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translateY(-50%);
}
.tasks_item_status_label{
	display: block;
	margin-top: 12px;
	width: 100%;
	font-size: 10px;
	font-weight: 600;
	padding: 5px 0;
	text-align: center;
	color: #000;
	border: 1px solid #000;
	background-color: #fff;
	border-radius: 3px;
}

.tasks_item_status_label.--created{
	color: #848484;
	border: 1px solid #AAB3C3;
	background-color: #AAB3C361;
}

.tasks_item_status_label.--in-progress{
	color: #2F80ED;
	border: 1px solid #2F80ED;
	background-color: #B0CFF8;
}

.tasks_item_status_label.--completed{
	color: #27AE60;
	border: 1px solid #27AE60;
	background-color: #ADE0C3;
}

.tasks_item_status_label.--timeout{
	color: #EB5757;
	border: 1px solid #EB5757;
	background-color: #F7BFBF;
}

.tasks_item_status_label.--closed{
	color: #F2994A;
	border: 1px solid #F2994A;
	background-color: #FAD8BA;
}


@media (max-width: 768px) {
	.tasks__table{
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 576px) {
	.tasks__table{
		grid-template-columns: 1fr;
	}
}

.input_interval{
	display: flex;
	align-items: center;
	gap: 10px;
}
.input_interval_input{
	width: 55px;
	height: 40px;
	border: 1px solid #D8D8D8;
	border-radius: 7px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}

.input_interval_select{
	position: relative;
}
.input_interval_select.active .input_interval_select_body{
	max-height: 400px;
	overflow-y: auto;
}

.input_interval_select_header{
	border: 1px solid #D8D8D8;
	border-radius: 7px;
	width: 115px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	cursor: pointer;
	padding: 0 13px;
	font-size: 14px;
	font-weight: 500;
}

.input_interval_select_body{
	max-height: 0;
	overflow: hidden;
	transition: 0.2s ease-in-out;

	position: absolute;
	top: calc(100% + 5px);
	left: 0;
	width: 100%;
	border-radius: 7px;
	z-index: 10;
}

.input_interval_select_body_item{
	padding: 5px 13px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
}
.input_interval_select_inner{
	padding: 5px 0;
	background-color: #fff;
	border: 1px solid #D8D8D8;
}
.input_interval_select_body_item:hover{
	background-color: #F5F5F5;
}

/* Стили для адаптивного размера графика */
.finance_graph_scroll_container.--centered {
	display: flex;
	justify-content: center;
	width: 670px !important;
	min-width: 670px;
	max-width: 670px;
}

.finance_graph_scroll_container.--centered canvas {
	width: 670px !important;
	min-width: 670px;
	max-width: 670px;
}


@media (max-width: 480px) {
	.finance_graph_tabs{
		border-radius: 4px;
	}
	.finance_graph_tab{
		font-size: 12px;
		padding: 8px;
	}
	.finance_graph_tab:first-child{
		padding-left: 8px;
	}
	.finance_graph_tab:last-child{
		padding-right: 8px;
	}
	.finance_graph_info_item_title{
		font-size: 16px;
	}
	.finance_graph_info_item_value{
		font-size: 22px;
	}
	.finance_graph_info{
		margin-top: 10px;
		padding: 10px 0;
	}
	.pif-title{
		font-size: 16px;
	}
	.pif-table-row-header-item{
		font-size: 15px;
		gap: 5px;
	}
	.pif-table-row-header-item .icon{
		height: 6px;
	}
	.popup-info{
		margin-top: 15px;
	}
}

.finance_graph_canvas,
.schema,
.reports__table_container,
.graph_canvas_container,
.fing_table{
	scrollbar-width: thin;
	scrollbar-color: var(--accent) #EBEBEB;

}

.finance_graph_canvas::-webkit-scrollbar,
.schema::-webkit-scrollbar,
.reports__table_container::-webkit-scrollbar,
.graph_canvas_container::-webkit-scrollbar,
.fing_table::-webkit-scrollbar
{
    background-color: rgba(222, 222, 222, 1);
    width: 3px;
    height: 4px;
    border-radius: 25px;
}

.finance_graph_canvas::-webkit-scrollbar-thumb,
.schema::-webkit-scrollbar-thumb,
.reports__table_container::-webkit-scrollbar-thumb,
.graph_canvas_container::-webkit-scrollbar-thumb,
.fing_table::-webkit-scrollbar-thumb{
	background-color: var(--accent);
    border-radius: 25px;
	
}

@media (max-width: 576px) {
	.graph_header{
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.graph_header_title{
		font-size: 18px;
	}

}


.table-pos__header, 
.table-pos_item_header_box,
.table-pos_item_body_row{
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 0 15px;
}

.table-pos__header_item, 
.table-pos_item_header_item,
.table-pos_item_body_item{
	min-width: 120px;
	max-width: 120px;
}

.table-pos__header_item.--pos, 
.table-pos_item_header_item.--pos,
.table-pos_item_body_item.--pos {
	flex-grow: 1;
	max-width: 100%;
	min-width: 0;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.table-pos_item_header_item button,
.table-pos_item_body_item button{
	line-height: 1;
}
.table-pos_item_header_item i,
.table-pos_item_body_item i{
	width: 20px;
	height: 20px;
}

.table-pos_item_header_item, 
.table-pos_item_body_item{
	font-size: 14px;
	font-weight: 600;
}

.table-pos__header{
	padding-bottom: 15px;
	border-bottom: 1px solid #EEEEEE;
}

.table-pos__header_item{
	font-size: 14px;
	color: #B5B7C0;
	font-weight: 600;
}


.table-pos_item_header{
	padding-top: 15px;
}

.table-pos_item_header_label{
	margin-top: 15px;
	padding-left: 45px;
	font-size: 14px;
	font-weight: 600;
	color: #B5B7C0;
	margin-bottom: 10px;
}

.table-pos_item_body{
	background-color: #FAFAFA;
	border-top: 1px solid #EEEEEE;
	border-bottom: 1px solid #EEEEEE;
}

.table-pos_item_body_row{
	padding: 10px 15px;
}

.table-pos_item_body_item img{
	width: 27px;
	height: 18px;
}

.table-pos_item_body_vertical_header{
	background-color: #fff;
	font-size: 14px;
	font-weight: 500;
	padding: 10px 15px;
	border-top: 1px solid #EEEEEE;
	border-bottom: 1px solid #EEEEEE;
}

@media (max-width: 660px) {
	.table-pos__header_item,
	.table-pos_item_header_item,
	.table-pos_item_body_item{
		min-width: 100px;
		max-width: 100px;
	}

	.table-pos__header, 
	.table-pos_item_header_box,
	.table-pos_item_body_row{
		gap: 7px;
		padding: 5px 7px;
	}

	.table-pos__header_item.--pos, .table-pos_item_header_item.--pos, .table-pos_item_body_item.--pos{
		gap: 5px;
	}

	.table-pos_item_body_item img{
		width: 20px;
		height: 12px;
	}
	.table-pos_item_header_item i, .table-pos_item_body_item i{
		width: 14px;
		height: 14px;
		margin-right: 5px;
	}
	.table-pos_item_header_label{
		margin-top: 10px;
		margin-bottom: 5px;
	}
	.table-pos__header_item{
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.table-pos_item_header_item, .table-pos_item_body_item{
		font-size: 12px;
	}
	.table-pos_item_header_label{
		font-size: 12px;
	}
	.table-pos{
		min-width: 480px;
		overflow-x: auto;
	}
}

/* @media (max-width: 1500px) {
	.content__inner{
		width: 100%;
		max-width: 100%;
	}
} */


.fing_table{
	margin-top: 20px;
}

.fing_table__header,
.fing_table_row_header{
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 0 20px;
}
.fing_table__header_item,
.fing_table_row_header_item{
	font-size: 14px;
	font-weight: 600;
	color: #B5B7C0;
	min-width: 200px;
	max-width: 200px;
}
.fing_table__header_item:last-child,
.fing_table_row_header_item:last-child{
	text-align: right;
}
.fing_table__header_item.--project,
.fing_table_row_header_item.--project{
	flex-grow: 1;
	max-width: 100%;
	min-width: 0;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.fing_table__body{
	margin-top: 18px;
	display: flex;
	flex-direction: column;
}
.fing_table_row_header{
	padding: 13px 20px;
	border-top: 1px solid rgba(238, 238, 238, 1);
	background-color: #EEEEEE94;
}

.fing_table_row_header:last-child{
	border-bottom: 1px solid rgba(238, 238, 238, 1);
}
.fing_table_row_header_item{
	color: #000;
}

.fing_table_row_header_item .icon{
	width: 20px;
	height: 20px;
	margin-left: -16px;
}
.fing_table_row_header_item img{
	width: 27px;
	height: 18px;
}

.fing_table .pif-table,
.fing_table .pif-total-header{
	padding: 0 20px;
}
.fing_table .pif-title{
	font-size: 16px;
	font-weight: 600;
}
.pif-total-header{
	margin-top: 8px;
}
.fing_table .pif-table-body{
	padding: 8px 0;
	border-bottom: 1px solid rgba(238, 238, 238, 1);
}

.fing_table.--salary .fing_table_row_header{
	background-color: #fff;
}

.fing_table_row_body_row_header{
	padding: 12px 20px;
	border-bottom: 1px solid rgba(238, 238, 238, 1);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.fing_table_row_body_row .popup-info_grid_item_worker_info_name,
.fing_table_row_body_row .popup-info_grid_item_worker_info_position{
	max-width: max-content;
}
.fing_table_row_body_row_worker{
	display: flex;
	align-items: center;
	gap: 10px;

}

.fing_table_row_body_row_worker .project-toggle-btn i{
	width: 20px;
    height: 20px;
    margin-left: -16px;
}

.fing_table_row_body_row_title{
	font-size: 14px;
	font-weight: 600;
}

.fing_table_row_body_row_body .schema{
	margin-top: 12px;
	padding-bottom: 0;
}
.popup-info_grid_item_worker_box.--mini-size.--project .popup-info_grid_item_worker_avatar{
	width: 25px;
	height: 16px;
}
.popup-info_grid_item_worker_box.--mini-size.--project .popup-info_grid_item_worker_avatar img{
	border-radius: 0;
}
.fing_table_row_body_row_body .schema__body_row_item,
.fing_table_row_body_row_body .schema__header_item{
	max-width: 180px;
	min-width: 180px;
}

.fing_table_row_body_row_body .schema__body_row_item.--summ,
.fing_table_row_body_row_body .schema__header_item.--summ{
	flex-grow: 1;
	max-width: 100%;
	min-width: 0;
	display: flex;
	justify-content: flex-end;
}

.fing_table_row_body_row_body .schema__header{
	padding: 0 20px;
	padding-bottom: 13px;
}
.fing_table_row_body_row_body .schema__body_row{
	padding: 13px 20px;
}





.project-toggle-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}

.project-toggle-btn .icon {
	transition: transform 0.3s ease;
}

.project-toggle-btn .icon-arrow-up, 
.pif-table-row-header-item .icon-arrow-down {
	transform: rotate(180deg);
}

.loading-indicator {
	text-align: center;
	padding: 20px;
	color: #B5B7C0;
	font-size: 14px;
}

.reports__header_actions_select_list_item.--selected {
	background-color: #00AAFF;
	color: white;
}

.no-projects {
	text-align: center;
	padding: 40px 20px;
	color: #B5B7C0;
	font-size: 16px;
}

.pif-table-row-header {
	cursor: pointer;
}

.fing_table_row_body.active {
	display: block !important;
}

.pif-table-row-body.active {
	display: block !important;
}

.pif-table-row-body-row-header {
	cursor: pointer;
}

.pif-table-row-body-row-body.active {
	display: block !important;
}

@media (max-width: 600px) {
	.fing_table__header_item, .fing_table_row_header_item{
		min-width: 80px;
		max-width: 80px;
	}
}
@media (max-width: 440px) {
	.fing_table_row_header_item .icon{
		width: 15px;
		height: 14px;
		margin-left: -16px;
	}
	.fing_table_row_header_item img{
		width: 22px;
		height: 14px;
	}
	.fing_table__header_item.--project, .fing_table_row_header_item.--project{
		gap: 5px;
	}
	.fing_table__header_item, .fing_table_row_header_item{
		font-size: 12px;
	}
	.fing_table_row_header{
		padding: 9px 12px;
	}
	.fing_table__body{
		margin-top: 8px;
	}
	.fing_table__header{
		padding: 0 12px;
	}

	.popup-info_tab_accept_item_title{
		font-size: 17px;
		width: 200px;
		gap: 5px;
	}
	.popup-info_tab_accept_item_input{
		padding: 5px 10px;
	}
	.popup-info_tab_accept_item_input input{
		font-size: 14px;
	}
	.popup-info_tab_accept_item_input i{
		width: 20px;
		height: 20px;
	}
	.popup-info_tab_accept{
		margin-top: 15px;
	}
	.popup-info_tab_accept_item_input input{
		width: 100%;
	}
}

.schema.--expenses .schema__body_row_item,
.schema.--expenses .schema__header_item{
	min-width: 150px;
	max-width: 150px;
}

.tasks__top{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	
}

.content__inner-acc-reports.detail-view {
	display: none;
}

.content__inner-acc-reports.detail-view.active {
	display: block;
}
.tasks__top_title {
	font-size: 22px;
}
.tasks__top_title b{
	font-weight: 600;
}
.tasks__top_btn {
	font-size: 18px;
	color: #B5B7C0;
}
.tasks__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 60px;
}
.tasks__header_left {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.tasks__header_left_title {
	font-size: 25px;
	font-weight: 600;
}
.tasks__header_left_text {
	font-size: 18px;
	color: #B5B7C0;
}
.tasks__header_status {
	width: 277px;
	font-size: 16px;
	padding: 13px 0;
	margin-top: 0;
}

.tasks__info {
	margin-top: 20px;
	border: 1px solid #EEEEEE;
	border-radius: 20px;
	padding: 22px;

	display: flex;
}
.tasks__info_comment {
	padding-right: 20px;
	border-right: 1px solid #EEEEEE;

	width: 30%;
}
.tasks__info_comment_title {
	font-size: 20px;
	font-weight: 600;
}
.tasks__info_comment_text {
	margin-top: 10px;
	font-size: 14px;
}
.tasks__info_user {
	padding: 0 20px;
	border-right: 1px solid #EEEEEE;
	display: flex;
	flex-direction: column;
	gap: 30px;
	min-width: 150px;
	width: 20%;
}
.tasks__info_user_item_label {
	font-size: 16px;
	font-weight: 600;
}
.tasks__info_user_item .popup-info_grid_item_worker_box {
	margin-top: 7px;
}
.tasks__info_user_item .popup-info_grid_item_worker_info_name,
.tasks__info_user_item .popup-info_grid_item_worker_info_position{
	max-width: 320px;
}
.tasks__comm_item_top .popup-info_grid_item_worker_info_name,
.tasks__comm_item_top .popup-info_grid_item_worker_info_position{
	max-width: 100%;
}
.tasks__info_action {
	padding-left: 20px;
	width: 50%;
}
.tasks_item_list {
	gap: 6px;
	border: none;
}
.tasks__info_action .tasks_item_list_row {
	font-size: 14px;
}
.tasks_item_progress {
	border: none;
}
.tasks_item_progress_bar {
	height: 26px;
}
.tasks_item_progress_bar_item_text {
	font-size: 10px;
	font-weight: 500;
}
.tasks_item_action_btn {
	background-color: var(--accent);
	color: #fff;
	border-radius: 8px;
	padding: 13px;
	font-size: 16px;
	font-weight: 600;
	width: 100%;
	display: block;
	margin-top: 10px;
}

.tasks__comm {
	margin-top: 15px;
}
.tasks__comm_title {
	font-size: 20px;
	font-weight: 600;
}
.tasks__comm_list {
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 1100px;
}
.tasks__comm_item {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.tasks__comm_item_top {
	display: flex;
	gap: 15px;
}
.tasks__comm_item_top_label {
	font-size: 10px;
	font-weight: 600;
	color: #B5B7C0;
}
.tasks__comm_item_text {
	font-size: 12px;
}
.tasks__comm_action {
	margin-top: 20px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border-radius: 8px;
	border: 1px solid #D8D8D8;
	gap: 20px;
	padding-left: 18px;
	padding-right: 10px;
	max-width: 1100px;
}
.tasks__comm_action_input {
	width: 100%;
	height: 100%;
	background: transparent;
	border: none;
	outline: none;
	font-size: 14px;
	font-weight: 500;
	height: 100%;
}

.tasks__comm_action_input::placeholder {
	color: #A1A1A1;
}
.tasks__comm_action_btn i{
	width: 27px;
	height: 27px;
}

.tasks__comm_empty {
	text-align: center;
	color: #B5B7C0;
	font-size: 14px;
	padding: 20px;
}

.tasks_item_action_btn:disabled {
	background-color: #B5B7C0;
	cursor: not-allowed;
	opacity: 0.7;
}

@media (max-width: 768px) {
	.tasks__info {
		flex-direction: column;
	}
	.tasks__info_comment {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #EEEEEE;
		padding-bottom: 20px;
	}
	.tasks__info_user {
		width: 100%;
		padding: 0;
		border-right: none;
		border-bottom: 1px solid #EEEEEE;
		padding-bottom: 20px;
		padding-top: 20px;

		flex-direction: row;
	}
	.tasks__info_action {
		width: 100%;
		padding-top: 20px;
		padding-left: 0;
	}

	.tasks__header_status{
		width: 220px;
		padding: 10px 0;
	}

	.tasks__header_left_title{
		font-size: 21px;
	}
	.tasks__header_left_text{
		font-size: 16px;
	}
}

@media (max-width: 576px) {
	.tasks__top{
		flex-direction: column-reverse;
		align-items: flex-start;
		gap: 10px;
	}
	.tasks__header{
		margin-top: 25px;
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}

@media (max-width: 480px) {
	.tasks__comm_item .popup-info_grid_item_worker_box{
		order: inherit;
	}
	.tasks__top_title{
		font-size: 19px;
	}
	.tasks__info{
		padding: 12px;
	}
}


.dashbord__checkGroup{
	margin-top: 50px;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	column-gap: 18px;
	row-gap: 12px;
}
.dashbord__checkGroup_item{
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}
.dashbord__checkGroup_item--all,
.dashbord__checkGroup_item--cancel{
	grid-column: 1 / 8;
}

.dashbord__checkGroup_item img{
	width: 23px;
	height: 16px;
}
.dashbord__checkGroup_item label{
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.custom-checkbox-square{
	appearance: none;
	width: 16px;
	min-width: 16px;
	height: 16px;
	background-color: rgba(234, 234, 234, 1);
	border-radius: 2px;
	position: relative;
	margin: 0;
	cursor: pointer;
}

.custom-checkbox-square:checked::after {
	content: '';
	display: block;
	width: 8px;
	min-width: 8px;
	height: 8px;
	background-color: var(--accent);
	border-radius: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Цвета для разных проектов */
.dashbord__checkGroup_item[data-color="blue"] .custom-checkbox-square:checked::after {
	background-color: #3B82F6;
}

.dashbord__checkGroup_item[data-color="pink"] .custom-checkbox-square:checked::after {
	background-color: #EC4899;
}

.dashbord__checkGroup_item[data-color="yellow"] .custom-checkbox-square:checked::after {
	background-color: #F59E0B;
}

.dashbord__checkGroup_item[data-color="green"] .custom-checkbox-square:checked::after {
	background-color: #10B981;
}

.dashbord__checkGroup_item[data-color="purple"] .custom-checkbox-square:checked::after {
	background-color: #8B5CF6;
}

.dashbord__checkGroup_item[data-color="orange"] .custom-checkbox-square:checked::after {
	background-color: #F97316;
}

.dashbord__checkGroup_item[data-color="red"] .custom-checkbox-square:checked::after {
	background-color: #EF4444;
}

.dashbord__checkGroup_item[data-color="teal"] .custom-checkbox-square:checked::after {
	background-color: #14B8A6;
}

.dashbord__checkGroup_item[data-color="indigo"] .custom-checkbox-square:checked::after {
	background-color: #6366F1;
}

.dashbord__checkGroup_item[data-color="lime"] .custom-checkbox-square:checked::after {
	background-color: #84CC16;
}

.dashbord__checkGroup_item[data-color="cyan"] .custom-checkbox-square:checked::after {
	background-color: #06B6D4;
}

.dashbord__checkGroup_item[data-color="emerald"] .custom-checkbox-square:checked::after {
	background-color: #059669;
}

.dashbord__checkGroup_item[data-color="violet"] .custom-checkbox-square:checked::after {
	background-color: #7C3AED;
}

.dashbord__checkGroup_item[data-color="amber"] .custom-checkbox-square:checked::after {
	background-color: #D97706;
}

.dashbord__checkGroup_item[data-color="rose"] .custom-checkbox-square:checked::after {
	background-color: #F43F5E;
}

.dashbord__checkGroup_item[data-color="sky"] .custom-checkbox-square:checked::after {
	background-color: #0EA5E9;
}

.dashbord__checkGroup_item[data-color="fuchsia"] .custom-checkbox-square:checked::after {
	background-color: #D946EF;
}

.dashbord__checkGroup_item[data-color="slate"] .custom-checkbox-square:checked::after {
	background-color: #64748B;
}

.dashbord__checkGroup_item[data-color="zinc"] .custom-checkbox-square:checked::after {
	background-color: #71717A;
}

.dashbord__checkGroup_item[data-color="stone"] .custom-checkbox-square:checked::after {
	background-color: #78716C;
}

.dashbord__checkGroup_item[data-color="gray"] .custom-checkbox-square:checked::after {
	background-color: #6B7280;
}

.dashbord__checkGroup_item[data-color="neutral"] .custom-checkbox-square:checked::after {
	background-color: #737373;
}

.dashbord__checkGroup_item[data-color="warm"] .custom-checkbox-square:checked::after {
	background-color: #F97316;
}

.dashbord__checkGroup_item[data-color="cool"] .custom-checkbox-square:checked::after {
	background-color: #0891B2;
}

.dashbord__checkGroup_item[data-color="mint"] .custom-checkbox-square:checked::after {
	background-color: #6EE7B7;
}

.dashbord__checkGroup_item[data-color="coral"] .custom-checkbox-square:checked::after {
	background-color: #FF7849;
}

.dashbord__checkGroup_item[data-color="lavender"] .custom-checkbox-square:checked::after {
	background-color: #A78BFA;
}

.dashbord__checkGroup_item[data-color="peach"] .custom-checkbox-square:checked::after {
	background-color: #FED7AA;
}

.dashbord__checkGroup_item[data-color="crimson"] .custom-checkbox-square:checked::after {
	background-color: #DC2626;
}

@media (max-width: 1500px) {
	.dashbord__checkGroup{
		grid-template-columns: repeat(6, 1fr);
	}
	.dashbord__checkGroup_item--all,
	.dashbord__checkGroup_item--cancel{
		grid-column: 1 / 7;
	}
}

@media (max-width: 1200px) {
	.dashbord__checkGroup{
		grid-template-columns: repeat(5, 1fr);
	}
	.dashbord__checkGroup_item--all,
	.dashbord__checkGroup_item--cancel{
		grid-column: 1 / 6;
	}
}

@media (max-width: 1024px) {
	.dashbord__checkGroup{
		grid-template-columns: repeat(4, 1fr);
	}
	.dashbord__checkGroup_item--all,
	.dashbord__checkGroup_item--cancel{
		grid-column: 1 / 5;
	}
}

@media (max-width: 768px) {
	.dashbord__checkGroup{
		grid-template-columns: repeat(3, 1fr);
	}
	.dashbord__checkGroup_item--all,
	.dashbord__checkGroup_item--cancel{
		grid-column: 1 / 4;
	}
}

@media (max-width: 576px) {
	.dashbord__checkGroup{
		grid-template-columns: repeat(2, 1fr);
	}
	.dashbord__checkGroup_item--all,
	.dashbord__checkGroup_item--cancel{
		grid-column: 1 / 3;
	}
	.dashbord__checkGroup_item--all,
	.dashbord__checkGroup_item--cancel{
		grid-column: 1 / 2;
	}
}

@media (max-width: 480px) {
	.dashbord__checkGroup{
		grid-template-columns: repeat(1, 1fr);
	}
	.dashbord__checkGroup_item--all,
	.dashbord__checkGroup_item--cancel{
		grid-column: 1 / 1;
	}
}

/* removed salary-* styles: switched to existing fing_table/schema structure */

.error {
    padding: 16px;
    text-align: center;
    color: #d32f2f;
    font-size: 14px;
}

/* Arrow icons */
.icon-arrow-down-thin-active {
    transform: rotate(180deg);
}

.icon-arrow-up-thin {
    transform: rotate(180deg);
}


.panel-form{
	padding-top: 35px;
	border-top: 1px solid #EEEEEE;
	margin-top: 10px;
}

.panel-form .reports__header_title{
	margin-bottom: 20px;
}

.panel-form .input_wrapper_label{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.panel-form .input_wrapper_label span{
	font-size: 18px;
	font-weight: 600;
}
.panel-form .input_wrapper_label button{
	font-size: 10px;
	font-weight: 600;
	color: #231F20;
}

.panel-form .input_wrapper_input:disabled{
	background: #FBFBFB;
	color: #A2A2A2;
	cursor: not-allowed;
}