@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style-type: none;
	font-family: "Source Sans Pro";
}
body{
	display: grid;
	grid-template-areas:
		"aside header"
		"aside main";
	min-height: 100vh;
	grid-template-columns: 254px 1fr;
}
header{
	grid-area: header;
	height: 76px;
	background: #FFFFFF;
	box-shadow: 5px 0px 20px rgba(0, 0, 0, 0.05);
	border-radius: 0px;
	padding-left: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: sticky;
	top: 0;
	z-index: 9999;
}
aside{
	grid-area: aside;
	background: #FFFFFF;
	box-shadow: 5px 0px 20px rgba(0, 0, 0, 0.05);
	border-radius: 0px;
	position: sticky;
	top: 0;
	max-height: 100vh;
}
main{
	grid-area: main;
	min-height: calc(100vh - 76px);
	padding: 48px 80px 0 80px;
	background-color: #F7F7F7;
}
.logo{
	text-align: center;
	border-bottom: 2px solid #F7F7F7;
	padding: 20px;
	height: 76px;
}
nav,
.main_menu_manager{
	padding: 62px 48px;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 140%;
	text-transform: uppercase;
}
.main_menu,
.main_menu_manager{
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.main_menu_manager{
    position: absolute;
    bottom: 150px;
	padding-top: 40px;
	border-top: 2px solid #F7F7F7;
}
.main_menu_manager .main_menu_item a{
	color: #8E959C;
}
.main_menu_item{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.main_menu_item a{
	text-decoration: none;
	color: black;
}
.main_menu_item.active{
	color: #E83E09;
}
.main_menu_item.active a{
	color: #E83E09;
}

.main_menu_item.active::after{
	content: '';
	width: 6px;
	height: 6px;
	background-color: #E83E09;
	display: block;
	border-radius: 50%;
}
.header_search_field{
	position: relative;
	width: 354px;
}
.header_search_field input{
	width: 100%;
	height: 38px;	
	background: #F7F7F7;
	border-radius: 4px;
	border: none;
	padding: 0 0 0 20px;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #8E959C;
}
.header_search_field button{
	position: absolute;
	width: 15px;
	height: 15px;
	border: none;
	background: url('/local/templates/lk_new/img/new_lk/search.png') center center no-repeat;
	left: calc(100% - 27px);
	top: 50%;
	transform: translateY(-50%);
}
.header_personal{
    display: grid;
    grid-template-columns: 232px 247px auto auto auto auto;
    height: 100%;
	align-items: center;
}
.sos,
.access_request{
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    border-radius: 4px;
    border: unset;
    padding: 9px 12px 9px 36px;
    background-repeat: no-repeat;
    background-position: 14px center;
	text-align: right;
	transition: all .3s linear;
}
.sos{
	background-color: #FF7716;
	color: white;
	background-image: url('/local/templates/lk_new/img/new_lk/warning.svg');
	width: 220px;
}
.access_request{
	background-color: #E6E7E9;
	color: #131313;
	background-image: url('/local/templates/lk_new/img/new_lk/lock.svg');
	width: 215px;
}
.sos:hover{
	background-color:  #E83E09;
	transition: all .3s linear;
}
.access_request:hover{
	transition: all .3s linear;
	background-image: url('/local/templates/lk_new/img/new_lk/lock_hover.svg');
	color: #E83E09;
}
.header_personal div{
	border-left: 2px solid #F7F7F7;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 32px;
	position: relative;
	cursor: pointer;
}
.lk_exit{
	font-weight: 600;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #BBC4CD;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 12px;
}
.lk_exit::before{
    content: '';
    display: flex;
    width: 25px;
    height: 25px;
    background-image: url('/local/templates/lk_new/img/new_lk/exit.svg');
    background-position: center center;
    background-repeat: no-repeat;
}
.header_personal div{
	transition: all .3s linear;
}
.header_personal div:hover{
    background-color: #E83E09;
	transition: all .3s linear;
}
.header_personal div:hover img {
    filter: invert(100%);
}
.lk_exit:hover a{
	color:white;
	transition: all .3s linear;
}
.lk_exit:hover a::before{
	background-image: url('/local/templates/lk_new/img/new_lk/exit_white.svg');
	color:white;
	transition: all .3s linear;
}
.notifications_new{
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #FF7716;
	position: absolute;
	bottom: 10px;
	left: calc(50% - 3px);
}
.project{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
.project_manager_item,
.project_item{
	background-color: white;
	padding: 24px 32px;
	position: relative;
	border-radius: 4px;
}
.project_item::before{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-top-color: #E83E09;
	border-right-color: #E83E09;
	position: absolute;
	right: 0;
	top: 0;
	border-top-right-radius: 4px
}
.manager_job,
.project_job{
	color: #BBC4CD;
	display: flex;
	justify-content: space-between;
	margin: 0 0 24px;
}
.manager_job_title,
.project_item_title{
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 120%;
}
.manager_department{
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	line-height: 140%;
	display: flex;
	gap: 8px;
}
.manager_department p,
.project_right_departament,
.project_kr_departament p{
	display: flex;
	gap: 8px;
	align-items: center;
	color: #8E959C;
	text-transform: uppercase;
}
.manager_department p::before,
.project_right_departament::before,
.project_kr_departament p::before{
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	background-color: #BBC4CD;
	border-radius: 50%;
}
.project_manager{
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 24px;
	max-width: 300px;
}
.project_manager_avatar{
	width: 80px;
	height: 80px;
}
.project_manager_avatar img{
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 2px solid;
}
.project_manager_contact{
	display: grid;
}
.project_manager_name{
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 140%;
	margin: 0 0 12px;
}
.project_manager_contact a{
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: black;
	margin: 0;
}
.project_manager_contact .project_manager_email{
	color: #FF7716;
}
.project_manager_tel{
	text-decoration: none;
}
.manager_feedback{
	position: absolute;
	right: 32px;
	bottom: 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.manager_feedback a{
	display: flex;
	width: 48px;
	height: 48px;	
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 5px 0px 20px rgba(0, 0, 0, 0.05);
	transition: .3s all ease-in;
}
.manager_feedback a path {
	transition: all .5s linear;
}
.manager_feedback a:hover path {
	fill: red;
}
.manager_feedback a:hover {
	background-color: #FF7716;
	transition: .3s all ease-in;
}
.project_right{
	display: grid;
	grid-template-columns: auto auto;
	gap: 24px;
}
.project_nav{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.btn_project{
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #F0F1F2;
	border-radius: 50%;
	text-decoration: none;
	color: #8E959C;
	background: url('/local/templates/lk_new/img/new_lk/arrow.png') center center no-repeat;
	transition: all .5s linear;
}
.btn_project.next{
	transform: rotate(180deg);
}
.btn_project:hover {
    background: url("/img/arrow_h.png") center center no-repeat;
}
.poject_timeline{
	display: flex;
	justify-content: space-between;
}
.project_time:last-child{
	text-align: right;
}
.time_top{
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.time_date{
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	line-height: 140%;
	color: #8E959C;
}
.project_progress_line{
	width: 100%;
	height: 32px;
	background-color: #F0F1F2;
	border-radius: 4px;
	margin: 8px 0 0;
}
.analytics,
.design,
.layout,
.programming,
.testing{
	background: linear-gradient(90deg, #E83E09 0%, #FF9404 100%);
	border-radius: 4px 0px 0px 4px;	
	display: none;
	color: white;
	height: 100%;
	padding: 0 13px 0 0;
}
.analytics.active,
.design.active,
.layout.active,
.programming.active,
.testing.active{
		display: grid;
		align-items: center;
		text-align: right;
}

.analytics{
	width: 20%;
}
.design{
	width: 40%;
}
.layout{
	width: 60%;
}
.programming{
	width: 80%;
}
.testing{
	width: 100%;
	border-radius: 4px;
}
.project_progress_items{
	display: flex;
	justify-content: space-between;
	margin: 8px 0 0;
}
.project_progress_items p{
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	line-height: 140%;
	color: #8E959C;
}
.nav_additional{
	display: flex;
	justify-content: space-between;
	height: 64px;
	margin: 30px 0 0;
	padding: 20px 32px 20px 0;
	background-color: #F0F1F2;
	position: relative;
}
.nav_additional::after{
    width: 100%;
    height: 3px;
    background-color: black;
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    border-radius: 2px;
}
.nav_additional_items{
	display: flex;
	text-transform: uppercase;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: 0.05em;
	align-items: center;
}
.nav_additional_item{
    width: 160px;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav_additional_item a{
	text-decoration: none;
	color: black;
}
.nav_additional_item.active::after{
    content: '';
    width: 100%;
    height: 3px;
    background-color: #E83E09;
    position: absolute;
    left: 0;
    bottom: -23px;
    z-index: 100;
    border-radius: 2px;
}
.project_select_items{
	display: flex;
	gap: 24px;
}
.project_select{
	width: 224px;
	background-color: unset;
	border: 1px solid #E2E3E7;
	border-radius: 4px;
}
.project_desc_column{
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 140%;
	color: #8E959C;
}
.project_desc_column_items,
.project_list_item{
	display: grid;
	grid-template-columns: 2.65fr 1.7fr 1.4fr 4.25fr;
	padding: 20px 32px;
	position: relative;
}

.project_desc_column_item:first-child{
	position: relative;
	display: flex;
	gap: 12px;
	align-items: center;
	align-content: center;
}
/*
.project_desc_column_item:first-child::after{
	content: '';
	display: block;
	width: 8px;
	height: 13px;
	background: url('/local/templates/lk_new/img/new_lk/arrow2.png') center center no-repeat;
}
*/
.project_items{
	display: grid;
	gap: 6px 0;
	max-height: 584.8px;
}
.project_list_item{
	background-color: white;
	color: #131313;
	text-decoration: none;
	border-radius: 2px;
	box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1);
}
.project_list_item:hover{
	box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1);
	transition: .3s all ease-in;
}
.project_list_item::after{
	content: '';
	width: 24px;
	height: 24px;
	display: block;
	border: 1px solid #F0F1F2;
	border-radius: 50%;
	position: absolute;
	right: 32px;
	background: url('/local/templates/lk_new/img/new_lk/arrow_r.png') center center no-repeat;
	transform: translateY(-50%);
	top: 50%;
	transition: .3s all ease-in;
	box-sizing: border-box;
}
.project_list_item:hover::after{
	background: url('/local/templates/lk_new/img/new_lk/arrow_white.png') center center no-repeat;
	transform: translateY(-50%);
	border: none;
	transition: .3s all ease-in;
}

.project_item_name,
.project_item_service,
.project_item_timereport,
.project_item_desc{
	font-style: normal;
	font-size: 14px;
	line-height: 140%;
}
.project_item_name{
	font-weight: 600;
}
.project_item_service{
	font-weight: 400;
}
.project_item_timereport,
.project_item_desc{
	font-weight: 400;
	color: #8E959C;
}
.project.kr{
	grid-template-columns: 1fr 2fr;
	gap: 30px;
}
.project.kr .project_item{
	width: 994px;
	background: none;
	padding: 0;
}
.project.kr .project_manager_item {
	width: 100%;
}
.project.kr .project_item::before{
	border: none;
}
.slick_kr_item{
	background-color: white;
	padding: 24px;
	max-width: 226px;
	height: 200px;
}
.pagination{
	display: flex;
	margin: 24px 0 0 auto;
	width: max-content;
	align-items: center;
}
.pagination_item{
	color: #8E959C;
	text-decoration: none;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	margin: 0 8px;
	transition: all .3s;
}
.pagination_item:hover {
    color: black;
}
.pagination_item.previous,
.pagination_item.next{
	display: flex;
	width: 24px;
	height: 24px;
	border: 1px solid #8E959C;
	background: url('/local/templates/lk_new/img/new_lk/arrow.png') center center no-repeat;
	border-radius: 50%;
}
.pagination_item.previous:hover,
.pagination_item.next:hover {
	background: url('/local/templates/lk_new/img/new_lk/arrow_h.png') center center no-repeat;
} 
.pagination_item.next{
	transform: rotate(180deg);
}
.pagination_item.previous{
	margin: 0 20px 0 0;
}
.pagination_item.next{
	margin: 0 0 0 20px;
}
.pagination_item.active{
	background: #FF7716;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
}
.project_kr_title{
	display: flex;
	justify-content: space-between;
	font-style: normal;
	font-weight: 600;
	line-height: 120%;
	color: #BBC4CD;
}
.project_kr_system{
	font-size: 20px;
}
.project_kr_departament{
	font-size: 13px;
}
.project_system_top_items{
	margin-top: 25px;
}
.project_system_top{
	display: grid;
	grid-template-columns: 1.2fr .5fr .5fr;
}
.top_title{
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 140%;
	color: #8E959C;
	margin: 0 0 12px 0;
}
.top_position,
.top_dinamic{
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 140%;
	color: #131313;
}
.top_dinamic{
	color: #BBC4CD;
}
.top_dinamic.plus{
	color: #27D838;
}
.top_dinamic.minus{
	color: #E52B41;
}
.top_title{
	position: relative;
}
.top_title::after{
	content: '';
	display: block;
	height: 12px;
	width: 8px;
	position: absolute;
	right: 18px;
	top: calc(50% - 6px);
	transform: rotate(-90deg);
	background: url('/local/templates/lk_new/img/new_lk/arrow2.png') center center no-repeat;
}
.project_system_top.kr{
	grid-template-columns: 1fr 1fr;
	gap: 36px;
}
.project_system_top.kr .top_title{
	border: 1px solid #F0F1F2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	border-radius: 50%;
}
.project_system_top.kr .top_title::after{
	right: 0;
	left: 82px;
}
.project_kr_title.kr ~ .project_system_top_items{
	margin-top: 42px;
}
.top_position.plus{
	color: #27D838;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
}
.top_position.minus{
	color: #E52B41;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
}
.top_dinamic_kr{
	margin-top: 12px;
}
.top_dinamic_kr .top_dinamic{
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 100%;
	color: #131313;
}
.top_dinamic_kr .top_dinamic span{
	font-weight: 600;
	font-size: 14px;
	line-height: 140%;
	color: #BBC4CD;
}
.project_list_item.akkordeon{
	display: block;
	background: none;
	padding: 0;
}
.project_list_item.akkordeon .project_item_label{
	display: grid;
	grid-template-areas: 
		"project_name project_service project_timereport project_desc"
		"project_child project_child project_child project_child";
	grid-template-columns: 2.65fr 1.7fr 1.4fr 4.25fr;
	background: white;
	padding: 20px 32px;
	transition: .3s all ease-in;
	cursor: pointer;
}
.project_list_item.akkordeon .project_item_name{
	grid-area: project_name;
	display: flex;
	gap: 8px;
}
.project_item_amount{
	background: #F0F1F2;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.project_list_item.akkordeon .project_item_service{
	grid-area: project_service;
}
.project_list_item.akkordeon .project_item_timereport{
	grid-area: project_timereport;
}
.project_list_item.akkordeon .project_item_desc{
	grid-area: project_desc;
}
.project_list_item.akkordeon .project_list_item.child{
	grid-area: project_child;
}

.project_list_item.child .project_item_name{
	grid-area: unset;
	color: #8E959C;
}
.project_list_item.child .project_item_service{
	grid-area: unset;
	color: #8E959C;
}
.project_list_item.child .project_item_timereport{
	grid-area: unset;
}
.project_list_item.child .project_item_desc{
	grid-area: unset;
}
.project_list_item.child .project_list_item{
	padding: 20px 32px;
	margin: 6px 0 0;
	border-bottom: 1px solid #F0F1F2;
}
.project_list_item.akkordeon::after{
	display: none;
}
.project_list_item.child::after{
	display: none;
}
.project_item_label::after{
	content: '+';
	width: 24px;
	height: 24px;
	display: flex;
	position: absolute;
	border: 1px solid #F0F1F2;
	border-radius: 50%;
	right: 32px;
	justify-content: center;
	align-items: center;
	color: #8E959C;
	box-sizing: border-box;
}
.project_list_item-input{
	position: absolute;
	width: 100%;
	height: 100%;
	appearance: none;
	z-index: 10;
}
.project_list_item.child{
	display: none;
	padding: 0;
}
.project_list_item-input:checked ~ .project_item_label{
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
	transition: .3s all ease-in;
}
.project_list_item-input:checked ~ .project_item_label::after{
	content: '—';
	align-items: baseline;
	color: white;
	background-color: #FF7716;
}
.project_list_item-input:checked ~ .project_list_item.child{
    display: block;
    z-index: 20;
}
.project_list_item-input:checked .project_list_item.akkordeon{
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.project_list_item:hover::after,
.project_item_label:hover::after{
	background-color: #FF7716;
	transition: .3s all ease-in;
	color: white;
	border: none;
}
.project_top_section{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.project_title_left{
	display: flex;
	align-items: center;
	gap: 24px;
}
.project_link_back{
	width: 52px;
	height: 38px;
	background-color: #E6E7E9;
	/* filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */
	border-radius: 5px;
}
.link_back{
	content: '';
	display: block;
	background: url('/local/templates/lk_new/img/new_lk/arrow_black_left.png') center center no-repeat;
	width: 100%;
	height: 100%;
	transition: all .3s;
}
.link_back:hover{
	background: url('/local/templates/lk_new/img/new_lk/arrow_black_left_h.png') center center no-repeat;
}
.project_title{
	font-style: normal;
	font-weight: 600;
	font-size: 36px;
	line-height: 100%;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #131313;
}
.project_title_right{
	display: flex;
	gap: 32px;
	align-items: center;
}
.project_right_link{
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #FF7716;
	text-decoration: none;
}
.project_right_link::before{
	content: '';
	width: 14px;
	height: 14px;
	background-image: url('/local/templates/lk_new/img/new_lk/link.png');
	display: block;
}
.project_position,
.project_report{
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 30px;
	margin-top: 30px;
}
.chek_position,
.history_position,
.setting_core,
.chek_report,
.history_report,
.setting_report{
	background-color: white;
	border-radius: 4px;
	padding: 26px 32px;
	display: grid;
	gap: 20px;
	transition: .3s all ease-in;
	text-decoration: none;
}
.chek_position:hover,
.history_position:hover,
.setting_core:hover,
.chek_report:hover,
.history_report:hover,
.setting_report:hover,
.analytics_item:hover,
.effecty_item-block:hover{
	box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.1);
	transition: .3s all ease-in;
}
.history_position h3,
.project_position h3,
.project_report h3,
.efficiency h3{
	font-weight: 600;
	font-size: 20px;
	line-height: 120%;
	color: #BBC4CD;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: .3s all ease-in;
}
.chek_position h3:before{
	content: '';
	background: url('/local/templates/lk_new/img/new_lk/chek_position.png') center center no-repeat;
	display: block;
	width: 20px;
	height: 20px;	
}
.history_position h3:before{
	content: '';
	background: url('/local/templates/lk_new/img/new_lk/history_position.png') center center no-repeat;
	display: block;
	width: 20px;
	height: 20px;	
}
.setting_core h3:before{
	content: '';
	background: url('/local/templates/lk_new/img/new_lk/setting_core.png') center center no-repeat;
	display: block;
	width: 20px;
	height: 20px;
	opacity: .3;
	transition: .3s all ease-in;
}
.chek_position .middle{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.chek_position select{
	border: 1px solid #E6E7E9;
	background: none;
	padding: 9px 16px;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #131313;
}
.btn_check{
	border: none;
	background-color: #FF7716;
	padding: 10px 20px;
	color: white;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	cursor: pointer;
	width: 164px;
	border-radius: 4px;
	transition: all .3s;
}
.btn_check:hover{
	background-color: #E83E09;
}
.project_position .middle,
.history_report .middle,
.setting_report .middle{
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #8E959C;
}
.history_position .bottom::before,
.setting_core .bottom::before,
.history_report .bottom::before,
.setting_report .bottom::before{
	display: block;
	width: 24px;
	height: 24px;
	content: '';
	border: 1px solid #8E959C;
	border-radius: 50%;
	background-image: url('/local/templates/lk_new/img/new_lk/arrow_r.png');
	background-position: center center;
	background-repeat: no-repeat;
	transition: .3s all ease-in;
	box-sizing: border-box;
}
.history_position:hover .bottom::before,
.setting_core:hover .bottom::before,
.history_report:hover .bottom::before,
.setting_report:hover .bottom::before{
	background-image: url('/local/templates/lk_new/img/new_lk/arrow_white.png');
	background-color: #FF7716;
	border: none;
	transition: .3s all ease-in;
}
.chek_position:hover h3,
.history_position:hover h3,
.setting_core:hover h3,
.chek_report:hover h3,
.history_report:hover h3,
.setting_report:hover h3,
.analytics_item:hover h3,
.effecty_item-block:hover .effecty_item-block-title,
.effecty_item-block:hover .effecty_item-block-info {
	filter: brightness(0);
	transition: .3s all ease-in;
}
.setting_core:hover h3::before,
.setting_report:hover h3::before{
	opacity: 1;
	transition: .3s all ease-in;
}
.seo_analytics{
	margin: 32px 0;
}
.seo_analytics h2{
	margin-bottom: 24px;
}
.analytics_items{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}
.analytics_item{
	display: flex;
	flex-direction: column;
	gap: 35px;
	padding: 32px;
	background: white;
	border-radius: 4px;
	transition: all .3s;
}
.analytics_item_title{
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 120%;
	color: #BBC4CD;
}
.analytics_item_links{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 35px 45px;
	padding: 0 30px;
	margin: 0 auto;
}
.analytics_link{
	display: grid;
	height: max-content;
	gap: 12px;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #131313;
	text-decoration: none;
	text-align: center;
	max-width: 80px;
	transition: all .3s;
}
.analytics_link:hover{
	color:#FF7716;
}
.analytics_link_img{
	background-color: #F0F1F2;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
.seo_analytics h2,
.report_title{
	margin: 32px 0 24px 0;
	font-style: normal;
	font-weight: 600;
	font-size: 28px;
	line-height: 120%;
	color: #131313;
}
.project_report{
	margin: 30px 0;
}
.middle_date{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 19px;
}
.selection_date{
	padding: 11px 0 11px 20px;
	border-radius: 4px;
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	border: 1px solid #E2E3E7;
	gap: 13px;
	transition: all .3s;
}
.selection_date:hover{
	border: 1px solid #BBC4CD;
}
.selection_date::before{
	display: block;
	width: 16px;
	height: 16px;
	content: '';
	background: url('/local/templates/lk_new/img/new_lk/date.png') center center no-repeat;

}
.selection_date input{
	border: none;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #131313;
	position: relative;
}
input[type="date"]::-webkit-calendar-picker-indicator{
	width: 100%;
	height: 100%;
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
	opacity: 0;
}
.chek_report h3::before{
	content: '';
	background: url('/local/templates/lk_new/img/new_lk/formirovanie.png') center center no-repeat;
	display: block;
	width: 20px;
	height: 20px;
	transition: .3s all ease-in;
}
.history_report h3::before{
	content: '';
	background: url('/local/templates/lk_new/img/new_lk/raboty.png') center center no-repeat;
	display: block;
	width: 20px;
	height: 20px;
	transition: .3s all ease-in;
}
.setting_report h3::before{
	content: '';
	background: url('/local/templates/lk_new/img/new_lk/setting_core.png') center center no-repeat;
	display: block;
	width: 20px;
	height: 20px;
	opacity: .3;
	transition: .3s all ease-in;
}
.analytics_items.kr{
	grid-template-columns: 1fr 1fr;
}
.analytics_items.kr .analytics_item_links{
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 35px 80px;
}
.project_report.kr{
	grid-template-columns: 1fr 1fr;
}
.project_report.kr .project_report_right{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
.efficiency{
	display: grid;
	grid-template-columns: 729.5px;
	margin-bottom: 30px;
}
.efficiency .chek_report .middle{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 24px;
}
.efficiency_date{
	padding: 11px 20px 11px 48px;
	border: 1px solid #BBC4CD;
	border-radius: 4px;
	background-color: unset;
}
.efficiency_date.month{
	background-image: url('/local/templates/lk_new/img/new_lk/month.png');
	background-repeat: no-repeat;
	background-position: 20px 11px;
}
.efficiency_date.year,
.efficiency_date.month_before{
	background-image: url('/local/templates/lk_new/img/new_lk/year.png');
	background-repeat: no-repeat;
	background-position: 20px 11px;
}
.add_request{
	background-color: #FF7716;
	border: none;
	color: white;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	padding: 9px 20px;
	margin: 30px 0;
	transition: all .3s;
	border-radius: 4px;
}
.add_request:hover{
	background-color: #E83E09;
}
section.request{
	padding: 32px;
	background-color: white;
}
.request_top{
    display: flex;
    align-items: baseline;
}
.search_system{
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #131313;
	padding: 9px 16px;
	border: 1px solid #E6E7E9;
	border-radius: 4px;
	background-color: unset;
	margin-right: 8px;
	text-decoration: none;
}
.search_system.active{
	background-color: #E6E7E9;
}
.request_reg{
	margin-left: 32px;
	width: 325px;
	padding: 9px 16px;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #131313;
	border: 1px solid #E6E7E9;
	border-radius: 4px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url('/local/templates/lk_new/img/new_lk/arrow_down.png');
	background-repeat: no-repeat;
    background-position: calc(100% - 16px) center;
	transition: all .3s;
}
.request_reg:hover{
	border: 1px solid #BBC4CD;
}
.request_reg:focus{
	border: 1px solid #BBC4CD;
	outline: none;
}
.buttons_current{
    margin-left: auto;
}
.requests_list_items .requests_list_items--top{
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #8E959C;
   	display: grid;
    grid-template-columns: 1fr .6fr;
    margin-top: 36px;
}
.requests_list_items .list_items-top--right{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    text-align: right;
    margin-right: 34px;
    margin-bottom: 20px;
}
.request_item{
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #131313;
	display: none;
}
.request_item.active{
	display: block;
}
.request_item .requests_list_item{
    display: grid;
    grid-template-columns: 1fr .6fr;
    border-top: 2px solid #F7F7F7;
    padding: 20px 0;
}
.request_item .list_items--right{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	text-align: right;
	margin-right: 34px;
}
.list_items--left .request_items_top--item{
	display: flex;
}
.list_items--left .request_items_top--item input{
	width: 20px;
	height: 20px;
	border: none;
	background-color: #F0F1F2;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin-right: 20px;
}
.list_items--left .request_items_top--item input:checked{
	background-image: url('/local/templates/lk_new/img/new_lk/checked.png');
	background-repeat: no-repeat;
	background-position: center center;
}
.request_item .requests_list_item:nth-child(1){
	font-weight: 600;
}
.selected_action{
	display: none;
}
.selected_action,
.selected_action button{
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #8E959C;
}
.selected_action button{
	color: #FF7716;
	text-decoration: underline;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	background-color: unset;
}
.popup_add_request{
	display: none;
}
.popup_add_request.open{
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    z-index: 9999;
}
.popup_add_request .overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: black;
    opacity: .3;
}
form.add_request_form{
    position: fixed;
    background-color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 610px;
    height: 556px;
    padding: 40px 50px;
}
form.add_request_form h2{
	font-weight: 600;
	font-size: 28px;
	line-height: 120%;
	color: #131313;
	margin-bottom: 40px;
}
.option_add_request{
	border: 1px solid #E6E7E9;
	border-radius: 4px;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #131313;
	padding: 9px 16px;
}
.option_add_request:focus,
.option_add_request:hover{
	outline: none;
	border: 1px solid #BBC4CD;
}
.option_add_request:nth-child(1){
	grid-area: left;
}
.option_add_request:nth-child(2){
	grid-area: right;
}
.option_add_request:nth-child(1),
.option_add_request:nth-child(2){
	background-image: url('img/arrow_down.png');
	background-repeat: no-repeat;
	background-position: calc(100% - 10px) center;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.option_add_request:nth-child(3){
	grid-area: center;
	max-width: 100%;
	min-height: 280px;
	max-height: 280px;
}
.add_request_form-grid{
    display: grid;
    grid-template-areas: 'left right'
        'center center';
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}
button.add_request_form--close{
	display: block;
    width: 24px;
    height: 24px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	background-color: unset;
	position: absolute;
	top: 24px;
	right: 24px;
	cursor: pointer;
}
button.add_request_form--close:hover::after,
button.add_request_form--close:hover::before{
	background-color: #8E959C;
}
button.add_request_form--close::before,
button.add_request_form--close::after{
	content: '';
	display: block;
	width: 90%;
	height: 2px;
	background-color: #BBC4CD;
	position: absolute;
	transition: all .3s;
}
button.add_request_form--close::before{
	transform: translateY(-50%) rotate(45deg);
}
button.add_request_form--close::after{
	transform: translateY(-50%) rotate(-45deg);
}
form.add_request_form input[type="submit"]{
	background-color: #FF7716;	
	border: none;
	font-size: 14px;
	line-height: 140%;
	text-align: center;
	color: #FFFFFF;
	padding: 9px 20px;
	border-radius: 4px;
}
.work_done{
    background-color: white;
    padding: 32px;
    margin-top: 32PX;
}
form.work_donne_top{
    display: grid;
    grid-template-columns: 1232px 128px;
    gap: 16px;
    height: 92px;
}
.workdone_add,
.work_done_right input[type="date"]{
	border: 1px solid #E6E7E9;
	border-radius: 4px;
}
.work_done_right input[type="date"]{
	-webkit-appearance: none;
	appearance: none;
	padding-left: 48px;
	background-image: url('/local/templates/lk_new/img/new_lk/date.png');
	background-repeat: no-repeat;
	background-position: 20px center;
	position: relative;
	transition: all .3s;
}
.work_done_right input[type="date"]:hover {
    border: 1px solid #BBC4CD;
}
.work_done_right input[type="submit"]{
	background: #FF7716;
	border-radius: 4px;
	border: none;
	color: white;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
}
.workdone_add{
    max-height: 92px;
    resize: none;  
    padding: 9px 16px;
}
.work_done_right{
    display: grid;
    gap: 16px;
}
.work_items_top,
.work_item {
    display: grid;
    grid-template-columns: 1090px 128px;
    gap: 158px;
}
.work_items_top{
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #8E959C;
	margin-top: 40px;
	padding-bottom: 20px;
	border-bottom: 2px solid #F7F7F7;
}
.work_item{
	padding: 20px 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #131313;
}
.work_item:not(:last-child){
	border-bottom: 2px solid #F7F7F7;
}
.position_region_select{
    background-color: white;
    margin: 32px 0;
    padding: 32px;
    display: flex;
    justify-content: space-between;
}
.position_search_system{
    display: flex;
    justify-content: space-between;
    gap: 32px;
}
.search_system_date.work_done_right{
    display: flex;
}
section.tabs_analytics{
    margin: 32px 0;
    background-color: #F0F1F2;
    padding: 22px 32px 22px 0;
    border-bottom: 3px solid black;
    border-radius: 2px;
}
button.tabs_analytics_item{
    width: 125px;
    border: none;
    background-color: unset;
    font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	position: relative;
}
button.tabs_analytics_item.active{
	color: #E83E09;
}
button.tabs_analytics_item.active::after{
    width: 100%;
    content: '';
    height: 3px;
    background-color: #E83E09;
    display: block;
    position: absolute;
    bottom: -25px;
}
.report_setting_title{
	font-weight: 600;
	font-size: 28px;
	line-height: 120%;
	margin: 32px 0 24px;
}
.report_setting_bg{
	padding: 32px;
	background-color: white;
	border-radius: 4px;
	margin-bottom: 58px;
}
.target_report:not(:last-child){
    padding-bottom: 40px;
    border-bottom: 1px solid #F0F1F2;
}
fieldset.target_report_fieldset{
    border: unset;
    margin-bottom: 16px;
    display: flex;
    gap: 16px;
}
fieldset.target_report_fieldset input{
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	border: 1px solid #E2E3E7;
	border-radius: 4px;
	padding: 9px 16px;
	transition: all .3s;
}
fieldset.target_report_fieldset input:hover,
fieldset.target_report_fieldset input:focus{
	border: 1px solid #BBC4CD;
	outline: none;
}

fieldset.target_report_fieldset input:nth-child(1){
	width: 578px;
}
fieldset.target_report_fieldset input:nth-child(2){
	width: 354px;
}

.target_report .btn_check{
	margin-top: 4px;
}
section.report_setting_bg h2{
	font-weight: 600;
	font-size: 20px;
	line-height: 120%;
	margin-top: 40px;
}
.report_setting_bg input{
	font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    border: 1px solid #E2E3E7;
    border-radius: 4px;
    padding: 9px 16px;
	transition: all .3s;
}
.report_setting_bg input:hover,
.report_setting_bg input:focus{
	border: 1px solid #BBC4CD;
	outline: none;
}
form.target_report.target{
    display: grid;
    grid-template-columns: 187px 744px;
    gap: 16px;
    margin-top: 32px;
	align-items: center;
}
.report_setting_bg .btn_check{
	width: 134px;
}
form.target_report.target label{
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
}
section.report_setting_bg span{
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
}
form.target_report.grid{
    display: grid;
    margin-top: 24px;
    gap: 16px;
}
form.target_report.grid input:not(.btn_check){
	width: 578px;
}
.aside_subscribe{
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    display: grid;
    grid-template-columns: auto 1fr;
    color: #8E959C;
    padding: 24px 48px;
    position: absolute;
    bottom: 0;
    text-decoration: none;
    gap: 12px;
	border-top: 2px solid #F7F7F7
}
.aside_subscribe.tg::before{
	content: '';
	display: block;
	width: 32px;
	height: 32px;
	background-image: url('/local/templates/lk_new/img/new_lk/logos_telegram.svg');
}
.work_rate{
    border: 1px solid #E83E09;
    border-radius: 4px;
    background-color: unset;
    color: #E83E09;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    padding: 9px 30px;
    left: calc(50% - 80px);
    position: absolute;
    bottom: 125px;
	cursor: pointer;
	transition: all .3s linear;
}
.work_rate:hover{
	border: 1px solid #131313;
	color: #131313;
	transition: all .3s linear;
}
.docs_tabs_item--content{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	gap: 30px;
}
.docs_tabs_item {
    display: none;
    padding-top: 10px;
}
.docs_tabs_item.active{
	display: block;
}
.docs_top {
    display: flex;
    justify-content: space-between;
    padding: 13px 32px 13px 0;
    background-color: #F0F1F2;
    align-items: center;
    border-radius: 2px;
    border-bottom: 2px solid #131313;
}
.docs_tabs {
    display: flex;
    padding: 9px 0;
}
.docs_tabs_button {
	border: unset;
	background-color: unset;
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #131313;
	width: 101px;
	position: relative;
	text-align: center;
}
.docs_tabs_button.active {
	color: #E83E09;
}
.docs_tabs_button::after{
	content: '';
    width: 0;
    height: 2px;
    position: absolute;
    bottom: -24px;
    left: 0;
    display: block;
    background-color: #E83E09;
	transition: all .5s linear;
}
.docs_tabs_button.active::after {
	width: 100%;
}
.act_popup {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	text-align: center;
	color: #E83E09;
	background-color: unset;
	border: 1px solid #E83E09;
	padding: 9px 16px;
	border-radius: 4px;
	transition: all .5s;
	cursor: pointer;
}
.act_popup:hover{
	color: black;
	border: 1px solid black;
}
.docs_tabs_item--filter {
    margin-top: 23px;
	margin-bottom: 32px;
}
.docs_tabs_item--filter select {
    border: 1px solid #E6E7E9;
    border-radius: 4px;
    background-color: unset;
    padding: 9px 16px;
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #131313;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: unset;
    position: relative;
    background-image: url('/documents/img/arrow.png');
    background-repeat: no-repeat;
    background-position: calc(100% - 16px) center;
}
.docs_tabs_item--filter select:first-child {
	width: 482px;
	margin-right: 16px;
}
.docs_tabs_item--filter select:last-child {
	width: 240px;
}
.content_item {
    background-color: white;
	position: relative;
}
.content_item .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all .5s linear;
    background-color: rgba(0, 0, 0, .4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.content_item .title {
	margin: 24px 0 0 24px;
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 140%;
	color: #131313;
}
.content_item .img {
	padding: 0 24px;
}
.content_item_desc {
    margin: 12px 0 24px 24px;
}
.content_item_desc .departament {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #131313;
}
.content_item_desc .time {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #8E959C;
}
.content_item:hover .overlay {
    opacity: 1;
}
.dowdownload_item,
.content_item_popup {
	width: 40px;
	height: 40px;
	background-color: white;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	border: unset;
	cursor: pointer;
}
.dowdownload_item {
	background-image: url('/local/components/dial/seo.bookkeeping/templates/v_2022/dw.png');
}
.content_item_popup {
	background-image: url('/local/components/dial/seo.bookkeeping/templates/v_2022/glaz.png');
}
.content_item .document {
	display: none;
}
/* попап документов */
.popup_document {
	display: none;
	position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
}
.popup_document.active {
	display: block;
}
.popup_document .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0,0,0,.3);
}
.popup_document_item {
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1080px;
    background-color: white;
    height: 95vh;
    top: 50%;
    padding: 30px;
}
.popup_document_item .closed {
    width: 25px;
    height: 25px;
    padding: 2px;
    background-color: unset;
    border: unset;
    position: absolute;
    top: 15px;
    right: 15px;
}
.popup_document_item .closed::after,
.popup_document_item .closed::before {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #131313;
	transition: all .5s linear;
}
.popup_document_item .closed::after {
	transform: translate(-50%, -50%) rotate(45deg);
}
.popup_document_item .closed::before {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.popup_document_item .closed:hover::after,
.popup_document_item .closed:hover::before {
	background-color: #E52B41;
}
.popup_document_item .closed:hover::after {
	transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
}
.popup_document_item .closed:hover::before {
	transform: translate(-50%, -50%) rotate(-45deg) scale(1.2);
}
.popup_document_item--value,
.popup_document_item--value embed {
	width: 100%;
	height: 100%;
}
.rate_form_container,
.sos_form_container,
.faq_form_container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: none;
    z-index: 9999;
}
.rate_form_container.active,
.sos_form_container.active,
.faq_form_container.active {
	display: block;
}
.rate_form p,
.accesses_form p,
.sos_form p {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
	color: #8E959C;
	margin-bottom: 30px;
}
.rate_form_container .overlay,
.sos_form_container .overlay,
.faq_form_container .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.2);
}
.rate_form,
.sos_form,
.faq_form {
    background-color: white;
    z-index: 9999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	padding: 40px 50px;
	width: 480px;
	height: 488px;
	display: grid;
	gap: 16px;
	border-radius: 4px;
}
.rate_form.submit,
.sos_form.submit {
	display: block;
}
.sos_title {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 600;
	font-size: 28px;
	line-height: 120%;
	color: #131313;
	margin-bottom: 24px;
}
.rate_form input,
.rate_form select,
.rate_form textarea,
.sos_form input,
.sos_form select,
.sos_form textarea,
.faq_form input,
.faq_form select,
.faq_form textarea {
	border: 1px solid #E6E7E9;
	border-radius: 4px;
	padding: 9px 16px;
}
.rate_form textarea,
.sos_form textarea {
	height: 104px;
	resize: none;
}
.rate_submit_container .rate_submit,
.sos_form_container .sos_submit,
.faq_form_container .faq_submit {
	display: grid;
	grid-template-columns: 161px 194px;
	gap: 20px;
	align-items: center;
}
.sos_form_container .sos_submit a,
.sos_form_container .sos_submit p,
.faq_form_container .faq_submit p,
.faq_form_container .faq_submit p {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 120%;
	color: #8E959C;
	margin: 0;
}
.rate_form_container .rate_submit input,
.sos_form_container .sos_submit input,
.faq_form_container .faq_submit input {
	background: #FF7716;
	border-radius: 4px;
	color: white;
}
.rate_form_container .rate_submit input:disabled,
.sos_form_container .sos_submit input:disabled,
.faq_form_container .faq_submit input:disabled {
	opacity: .8;
	cursor: not-allowed;
}
.closed_rate,
.closed_sos,
.closed_faq {
    width: 20px;
    height: 20px;
    background-color: unset;
    position: absolute;
    border: unset;
    right: 24px;
    top: 24px;
    cursor: pointer;
}
.closed_rate::before,
.closed_rate::after,
.closed_sos::before,
.closed_sos::after,
.closed_faq::before,
.closed_faq::after {
	content: '';
	width: 16px;
	height: 2px;
	display: block;
	background-color: #BBC4CD;
	position: absolute;
	top: 50%;
	left: 50%;
	transition: all .5s linear;
}
.closed_rate::before,
.closed_sos::before,
.closed_faq::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.closed_rate::after,
.closed_sos::after,
.closed_faq::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.closed_rate:hover::before,
.closed_rate:hover::after,
.closed_sos:hover::before,
.closed_sos:hover::after,
.closed_faq:hover::before,
.closed_faq:hover::after {
	background-color: #FF7716;
}
.closed_rate:hover::before,
.closed_sos:hover::before,
.closed_faq:hover::before {
	transform: translate(-50%, -50%) rotate(45deg) scale(1.1);
}
.closed_rate:hover::after,
.closed_sos:hover::after,
.closed_faq:hover::after {
	transform: translate(-50%, -50%) rotate(-45deg) scale(1.1);
}
.accesses_form_container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: none;
	z-index: 9999;
}
.accesses_form_container.active {
	display: block;
}
.accesses_form_container .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.2);
}
.accesses_form {
    background-color: white;
    z-index: 9999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	padding: 40px 50px;
	width: 480px;
	height: 488px;
	display: grid;
	gap: 16px;
	border-radius: 4px;
}
.accesses_form.submit {
	display: block;
}
.accesses_title {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 600;
	font-size: 28px;
	line-height: 120%;
	color: #131313;
	margin-bottom: 24px;
}
.accesses_form input,
.accesses_form select,
.accesses_form textarea {
	border: 1px solid #E6E7E9;
	border-radius: 4px;
	padding: 9px 16px;
}
.accesses_form textarea,
.faq_form textarea {
	height: 104px;
	resize: none;
}
.accesses_form_container .accesses_submit {
	display: grid;
	grid-template-columns: 161px 194px;
	gap: 20px;
	align-items: center;
}
.accesses_form_container .accesses_submit a,
.accesses_form_container .accesses_submit p {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 120%;
	color: #8E959C;
}
.accesses_form_container .accesses_submit input {
	background: #FF7716;
	border-radius: 4px;
	color: white;
}
.accesses_form_container .accesses_submit input:disabled {
	opacity: .8;
	cursor: not-allowed;
}
.closed_accesses {
    width: 20px;
    height: 20px;
    background-color: unset;
    position: absolute;
    border: unset;
    right: 24px;
    top: 24px;
    cursor: pointer;
}
.closed_accesses::before,
.closed_accesses::after {
	content: '';
	width: 16px;
	height: 2px;
	display: block;
	background-color: #BBC4CD;
	position: absolute;
	top: 50%;
	left: 50%;
	transition: all .5s linear;
}
.closed_accesses::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.closed_accesses::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.closed_accesses:hover::before,
.closed_accesses:hover::after {
	background-color: #FF7716;
}
.closed_accesses:hover::before {
	transform: translate(-50%, -50%) rotate(45deg) scale(1.1);
}
.closed_accesses:hover::after {
	transform: translate(-50%, -50%) rotate(-45deg) scale(1.1);
}
.analitics_content {
	display: grid;
	grid-template-columns: 344px 1112px;
	gap: 30px;
	margin-top: 32px;
}
.analitics_content .left,
.analitics_content .right {
	background-color: white;
	padding: 32px;
}
.analitics_content .left h3 {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 120%;
	color: #BBC4CD;
	margin-bottom: 24px;
}
.analitics_content .left ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.analitics_content .left ul:not(:last-child) {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 2px solid #F0F1F2;
}
.analitics_content .left li {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #131313;
	padding-left: 32px;
	position: relative;
}
.analitics_content .left li.active {
	color: #E83E09;
}
.analitics_nav li::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	background-position: center center;
	background-repeat: no-repeat;
}
.analitics_nav li.summary::before {
	background-image: url('/local/templates/lk_new/img/new_lk/summ.png');
}
.analitics_nav li.target::before {
	background-image: url('/local/templates/lk_new/img/new_lk/target.png');
}
.analitics_nav li.conversion::before {
	background-image: url('/local/templates/lk_new/img/new_lk/conversion.png');
}
.analitics_nav li.geo::before {
	background-image: url('/local/templates/lk_new/img/new_lk/geo_left.png');
}
.analitics_nav li.age::before {
	background-image: url('/local/templates/lk_new/img/new_lk/age.png');
}
.analitics_nav li.gender::before {
	background-image: url('/local/templates/lk_new/img/new_lk/gender.png');
}
.analitics_nav li.devices::before {
	background-image: url('/local/templates/lk_new/img/new_lk/devices.png');
}
.analitics_nav li.sites::before {
	background-image: url('/local/templates/lk_new/img/new_lk/sites.png');
}
.analitics_nav li.search::before {
	background-image: url('/local/templates/lk_new/img/new_lk/search_left.png');
}
.analitics_nav li.phrases::before {
	background-image: url('/local/templates/lk_new/img/new_lk/phrases.png');
}
.analitics_nav li.advertisement::before {
	background-image: url('/local/templates/lk_new/img/new_lk/advertisement.png');
}
.act_form_container {
	display: none;
}
.act_form_container.active {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
	display: block;
}
.act_form_container .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}
form.act_form {
    width: 480px;
    height: 368px;
    position: absolute;
    left: 50%;
    top: 50%;
	background-color: #fff;
	transform: translate(-50%, -50%);
	padding: 40px 50px;
	display: grid;
	gap: 16px;
}
.act_title{
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 600;
	font-size: 28px;
	line-height: 120%;
	color: #131313;
}
.closed_act {
    width: 20px;
    height: 20px;
    background-color: unset;
    position: absolute;
    border: unset;
    right: 24px;
    top: 24px;
}
.closed_act::before,
.closed_act::after {
    content: '';
    width: 16px;
    height: 2px;
    display: block;
    background-color: #BBC4CD;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all .5s linear;
}
.closed_act::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.closed_act::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.act_form select,
.act_form input {
	border: 1px solid #E6E7E9;
	border-radius: 4px;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #131313;
	padding: 9px 16px;
	transition: all .3s;
}
.act_form .act_submit{
	background: #FF7716;
	color: white;
	width: 161px;
}
.act_form select:hover,
.act_form input:hover,
.act_form select:focus,
.act_form input:focus {
	outline: none;
	border: 1px solid #BBC4CD;
}
.act_form .act_submit:hover{
	background-color: #E83E09;
}
.effecty_items {
    display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 50px 24px;
}
.effecty_item .title {
	margin-bottom: 50px;
	font-size: 32px;
	line-height: 35px;
	font-weight: 600;
	color: #1C1F23;
}
.effecty_item-block {
    background-color: #fff;
    padding: 23px 20px 33px;
    transition: all .3s;
    display: grid;
    gap: 22px 0;
}
.effecty_item-block-title, 
.effecty_item-block-info.top {
	color: #B1B9CC;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	transition: all .3s;
}
.effecty_item-block-title {
    display: flex;
    gap: 11px;
    align-items: center;
	margin-bottom: 34px;
}
.effecty_item-block:hover .effecty_item-block-title,
.effecty_item-block:hover .effecty_item-block-info.top {
	color: #1C1F23;
}
.effecty_item-block-title::before {
    display: block;
    width: 20px;
    height: 20px;
    content: '';
}
.effecty_item-block-title.period::before {
	background: url('/local/templates/lk_new/img/new_lk/date.png') center center no-repeat;
}
.effecty_item-block-title.score::before {
    background: url('/local/templates/lk_new/img/new_lk/raboty.png') center center no-repeat;
}
.effecty_item-block-indicator {
	font-size: 48px;
	line-height: 52px;
	font-weight: 400;
	color: #FF3D00;
}
.effecty_item-block-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.effecty_item-block-info.top {
	margin-bottom: 20px;
}


#no_auth{
    display: unset;
}
#no_auth header {
    display: flex;
    justify-content: center;
    padding: 20px 0 16px 0;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.lk_exit,
.setting {
    border-left: 2px solid #F7F7F7;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 32px;
    position: relative;
}
.lk_exit:hover,
.setting:hover{
    background-color: #E83E09;
	transition: all .3s linear;
}
.setting:hover img {
    filter: invert(100%);
}