@charset "UTF-8";
/*Обнуление старт*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");
* {
	padding: 0;
	margin: 0;
	border: 0;
	outline: 0 !important;
}

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

nav,
footer,
header,
aside {
	display: block;
}

html,
body {
	width: 100%;
	height: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

.sql-table-container {
	padding: 50px 0 0 100px;
}

input,
button,
textarea {
	font-family: inherit;
	border: 1px black solid;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a,
a:visited {
	text-decoration: none !important;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: 400;
}

/*Обнуление конец*/
/*Шрифты старт*/
/*Шрифты конец*/
.errors {
	color: red;
	font-weight: bold;
	font-size: 20px;
}

.color_green {
	color: green;
}

.img_btn {
	width: 20px;
}
.img_btn-add {
	width: 35px;
}
.border-red {
	border: solid 1px red;
}

.font-black {
	color: black;
}

.center {
	text-align: center;
}

.flex-center {
	display: flex;
	justify-content: center;
}

.flex-left {
	display: flex;
	justify-content: start;
}

.text-left {
	text-align: left;
}

.hidden {
	visibility: hidden;
}

/*Основная разметка старт*/
.wrapper {
	font-family: "Montserrat", sans-serif;
	min-height: 100%;
	background-color: #d3d9d0;
}
.wrapper .content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/*Основная разметка конец*/
/*Меню сайта старт*/
.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #1e361d;
	z-index: 10;
	padding: 10px 0 0 0;
}
.header__container {
	max-width: 1100px;
	width: 100%;
	display: grid;
	grid-template: repeat(2, 1fr)/3fr 1fr;
	padding: 0 20px;
}
.header__box-login {
	grid-column-start: 2;
	grid-row-start: 1;
	grid-row-end: 3;
}

.header__logo-link {
	font-size: 30px;
	text-decoration: none !important;
	color: #70be6d !important;
}

.arrow {
	width: 0;
	height: 0;
	position: absolute;
	right: 0;
}

.parent {
	padding: 0 20px 0 0;
}

.menu__arrow {
	border-top: 14px solid rgb(204, 218, 87);
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	top: 4px;
}
.menu__list {
	display: flex;
	gap: 30px;
}
.menu li {
	position: relative;
}
.menu__item {
	min-width: max-content;
}
.menu__link {
	font-size: 16px;
	color: rgb(255, 255, 255);
}
.menu__link:hover {
	color: rgb(255, 255, 255);
}

.sub-menu__list {
	display: none;
	position: absolute;
	top: 20px;
	left: 0;
	padding: 20px 0 0 0;
}
.sub-menu__list > li {
	background-color: #255e12;
}
.sub-menu__arrow {
	border-left: 14px solid rgb(204, 218, 87);
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	top: 5px;
}
.sub-menu__link {
	color: white;
	padding: 5px 10px;
	display: inline-block;
	min-width: 200px;
}
.sub-menu__link:hover {
	color: rgb(255, 255, 255);
}

.sub-sub-menu__list {
	display: none;
	position: absolute;
	top: 0;
	left: 100%;
}
.sub-sub-menu__list > li {
	background-color: rgb(204, 218, 87);
}
.sub-sub-menu__link {
	color: black;
	min-width: 200px;
	padding: 5px 10px;
	display: inline-block;
}
.sub-sub-menu__link:hover {
	color: black;
}

body.mobile .open {
	display: block;
}

body.mouse .sub-menu__list > li:hover .sub-sub-menu__list {
	display: block;
}

body.mouse .sub-menu__list > li:hover .sub-menu__arrow {
	transform: rotate(180deg);
}

body.mouse .menu__list > li:hover .sub-menu__list {
	display: block;
}

body.mouse .menu__list > li:hover .menu__arrow {
	transform: rotate(180deg);
}

.menu__arrow.active {
	border-top: none;
	border-bottom: 14px solid rgb(128, 0, 0);
}

.sub-menu__arrow.active {
	border-left: none;
	border-right: 14px solid rgb(0, 0, 0);
}

.box-login {
	display: grid;
	justify-items: end;
	align-items: center;
	grid-template: 1fr/repeat(2, 1fr);
	gap: 10px;
}
.box-login__login-in {
	display: grid;
	grid-template: repeat(2, 1fr)/repeat(2, 1fr);
	gap: 0;
}
.box-login__hello {
	color: white !important;
	font-size: 20px;
}
.box-login__hello a {
	text-decoration: none !important;
}
.box-login__hello-name {
	color: #addcab;
}
.box-login__ava {
	position: relative;
	padding: 0 0 70px 0;
	width: 70px;
	margin: 0 20px 0 0;
}
.box-login__ava img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
.box-login__link {
	padding: 7px 20px;
	border-radius: 5px;
	font-size: 18px;
	background-color: rgb(73, 143, 75);
	border: solid 3px rgb(48, 177, 15);
	color: white;
	text-decoration: none !important;
}
.box-login__link:hover {
	color: rgb(73, 143, 75);
	background-color: rgb(206, 247, 219);
	color: rgb(73, 143, 75);
	font-weight: bold;
	border: solid 3px rgb(124, 255, 142);
}
.box-login__link-reg {
	background-color: rgb(143, 73, 73);
	border: solid 3px rgb(177, 45, 15);
}
.box-login__link-reg:hover {
	background-color: rgb(247, 224, 206);
	font-weight: bold;
	border: solid 3px rgb(255, 124, 124);
	color: rgb(143, 73, 73);
}
.box-login__link-logout {
	grid-column-start: 2;
	justify-self: center;
}

.hamb {
	display: none;
}

@media (max-width: 600px) {
	.parent {
		padding: 0 25px 0 0;
	}
	.menu {
		display: flex;
		flex-direction: column;
		width: 100%;
		padding: 20px 20px;
	}
	.menu__list {
		flex-direction: column;
		align-items: flex-end;
		gap: 15px;
	}
	.menu li {
		position: relative;
		text-align: right;
	}
	.sub-menu__list {
		position: relative;
		top: 0;
		padding: 10px 0 0 0;
	}
	.sub-menu__list > li {
		background-color: transparent;
	}
	.sub-menu__arrow {
		border-right: 7px solid transparent;
		border-left: 7px solid transparent;
		border-top: 14px solid rgb(204, 218, 87);
		border-bottom: none;
		top: 12px;
	}
	.sub-menu__link {
		color: rgb(101, 255, 101);
		padding: 7px 20px;
		font-size: 16px;
	}
	.sub-sub-menu__list {
		position: relative;
		top: 0;
		left: 0;
	}
	.sub-sub-menu__list > li {
		background-color: transparent;
	}
	.sub-sub-menu__link {
		color: rgb(141, 209, 255);
		padding: 7px 10px;
		font-size: 16px;
	}
	.sub-menu__arrow.active {
		border-right: 7px solid transparent;
		border-left: 7px solid transparent;
		border-top: none;
		border-bottom: 14px solid rgb(141, 209, 255);
	}
	.menu__arrow.active {
		border-top: none;
		border-bottom: 14px solid rgb(101, 255, 101);
	}
	.box-login {
		display: none;
	}
	.header__container {
		height: 50px;
	}
	.hamb {
		position: absolute;
		top: center;
		right: 0;
		top: center;
		display: flex;
		flex-direction: column;
		padding: 10px 20px;
		cursor: pointer;
		gap: 7px;
	}
	.bar {
		width: 30px;
		height: 3px;
		background-color: #fff;
		transition: 0.2s;
	}
	.box-login__hello {
		margin: 0 0 20px 0;
	}
	.box-login__ava {
		margin: 20px 0 20px 0;
	}
}
/*Меню сайта конец*/
/*Долги таблица старт*/
.dolgi {
	display: flex;
	flex-direction: column;
	font-weight: bold;
	color: #184118;
	align-items: center;
}

.dolgi__title {
	font-size: 25px;
	margin: 0 0 30px 0;
	cursor: pointer;
	width: max-content;
	position: relative;
	align-self: flex-start;
}
.dolgi__title.active:after, .dolgi__title.active:before {
	background-color: red;
}
.dolgi__title.active:before {
	transform: rotate(-40deg);
}
.dolgi__title.active:after {
	transform: rotate(40deg);
}
.dolgi__title:after, .dolgi__title:before {
	content: "";
	width: 15px;
	height: 2px;
	background-color: #000;
	position: absolute;
	top: 16px;
	transition: all 0.3s ease 0s;
}
.dolgi__title:before {
	transform: rotate(40deg);
	right: -30px;
}
.dolgi__title:after {
	transform: rotate(-40deg);
	right: -19px;
}

.td_red {
	color: rgb(232, 1, 1);
}

.td_orange {
	color: rgb(232, 124, 1);
}

.td_orange_2 {
	color: rgb(237, 183, 122);
}

.td_green {
	color: rgb(1, 232, 20);
}

.td_green_2 {
	color: rgb(145, 228, 152);
}

.btn__add {
	margin: 0 0 30px 0;
	align-self: center;
}

.tab {
	max-width: 900px;
	font-size: 20px;
	margin: 0 0 50px 0;
}
.tab__tr-body {
	background-color: #cfe1c3;
}
.tab__tr-body .date-payment_color {
	background-color: #e1c4c3;
}
.tab__tr-body .usd_color {
	background-color: #6cb974;
}
.tab__tr-body .uah_color {
	background-color: #6c7db9;
}
.tab__tr-body .kc_color {
	background-color: #d3d19d;
}
.tab__tr-body:hover, .tab__tr-body:hover .date-payment_color, .tab__tr-body:hover .usd_color, .tab__tr-body:hover .uah_color, .tab__tr-body:hover .kc_color, .tab__tr-body:active, .tab__tr-body:active .date-payment_color, .tab__tr-body:active .usd_color, .tab__tr-body:active .uah_color, .tab__tr-body:active .kc_color, .tab__tr-body:focus, .tab__tr-body:focus .date-payment_color, .tab__tr-body:focus .usd_color, .tab__tr-body:focus .uah_color, .tab__tr-body:focus .kc_color {
	background-color: #e0b4a1;
}
.tab__tr-body-orders {
	background-color: #c3dfe1;
}
.tab__tr-body-clients:hover, .tab__tr-body-clients:active, .tab__tr-body-clients:focus {
	background-color: #a1d1e0;
	color: #0c0c0c;
}
.tab__tr-body-clients:hover a, .tab__tr-body-clients:active a, .tab__tr-body-clients:focus a {
	color: rgb(20, 20, 19);
}
.tab__tr-body-clients {
	background-color: #0b1050;
	color: rgb(217, 236, 211);
}
.tab__tr-body-clients a {
	color: rgb(217, 236, 211);
}
.tab th,
.tab td {
	padding: 7px 31px;
}
.tab td {
	border: solid 1px rgb(241, 235, 235);
	vertical-align: middle;
}
.tab__thead th, .tab__total td {
	padding: 10px 31px;
}
.tab__total_2, .tab__thead {
	background-color: #212427;
	color: rgb(217, 236, 211);
	font-weight: bold;
}
.tab__thead td {
	padding: 10px;
}
.tab__thead-orders {
	background-color: #0a4547;
}
.tab__total_1 {
	background-color: #184118;
	opacity: 0.7;
	color: rgb(217, 236, 211);
}

.tab2__tr-body:hover .tab2__date-payment {
	background-color: #9bc281;
}
.tab2__tr-body {
	background-color: #dfe1c3;
}
.tab2 th,
.tab2 td {
	padding: 7px 17px;
}

/*Долги таблица конец*/
.form__group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0 0 15px 0;
}

@media screen and (max-width: 620px) {
	.tab th,
	.tab td {
		padding: 9px 18px;
	}
	.tab__thead th, .tab__total td {
		padding: 9px 10px;
		font-weight: normal;
	}
}
@media screen and (max-width: 560px) {
	.tab2 {
		font-size: 18px;
	}
	.tab2 th,
	.tab2 td {
		padding: 7px 14px;
	}
}
@media screen and (max-width: 510px) {
	.tab2 {
		font-size: 16px;
	}
	.tab2 th,
	.tab2 td {
		padding: 7px 10px;
	}
}
@media screen and (max-width: 480px) {
	.tab {
		font-size: 18px;
	}
	.tab th,
	.tab td {
		padding: 9px 16px;
	}
	.tab__thead th, .tab__total td {
		padding: 7px 7px;
	}
	.tab2 {
		font-size: 16px;
	}
	.tab2 th,
	.tab2 td {
		padding: 7px 10px;
	}
}
@media screen and (max-width: 442px) {
	.tab {
		font-size: 14px;
	}
	.tab th,
	.tab td {
		padding: 9px 12px;
		border: none;
	}
	.tab2 {
		font-size: 16px;
	}
	.tab2 th,
	.tab2 td {
		padding: 5px;
	}
}
@media screen and (max-width: 400px) {
	.dolgi {
		padding: 0;
	}
	.dolgi__title {
		font-size: 20px;
		margin: 0 0 25px 0;
	}
	.dolgi__title:after, .dolgi__title:before {
		content: "";
		width: 13px;
		top: 12px;
	}
	.dolgi__title:after {
		right: -20px;
	}
	.tab {
		font-size: 14px;
	}
	.tab th,
	.tab td {
		padding: 7px 8px;
	}
	.tab2 {
		font-size: 14px;
	}
	.tab2 th,
	.tab2 td {
		padding: 5px;
	}
	.tab2 .btn__correct {
		width: 30px;
		height: 30px;
		margin: 0 5px 0 0;
		position: relative;
	}
	.tab2 .img_btn-correct {
		width: 20px;
		position: absolute;
		top: center;
		left: 4px;
	}
}
@media screen and (max-width: 365px) {
	.dolgi {
		min-width: 350px;
	}
	.tab th,
	.tab td {
		padding: 5px 6px;
	}
	.tab2 {
		font-size: 12px;
	}
	.tab2 th,
	.tab2 td {
		padding: 5px;
	}
	.tab2 .btn__correct {
		width: 25px;
		height: 25px;
		margin: 0 5px 0 0;
		position: relative;
	}
	.tab2 .img_btn-correct {
		width: 20px;
		position: absolute;
		top: 1px;
		left: 2px;
	}
}
@media screen and (max-width: 350px) {
	.dolgi {
		min-width: 325px;
	}
	.tab th,
	.tab td {
		padding: 5px;
	}
	.tab2 {
		font-size: 12px;
	}
	.tab2 th,
	.tab2 td {
		padding: 5px;
	}
	.tab2 .btn__correct {
		width: 25px;
		height: 25px;
		margin: 0 5px 0 0;
		position: relative;
	}
	.tab2 .img_btn-correct {
		width: 20px;
		position: absolute;
		top: 1px;
		left: 2px;
	}
}
@media screen and (max-width: 332px) {
	.tab {
		font-size: 12px;
	}
	.tab th,
	.tab td {
		padding: 5px;
	}
	.tab2 {
		font-size: 12px;
	}
	.tab2 th,
	.tab2 td {
		padding: 5px;
	}
	.tab2 .btn__correct {
		width: 25px;
		height: 25px;
		margin: 0 5px 0 0;
		position: relative;
	}
	.tab2 .img_btn-correct {
		width: 20px;
		position: absolute;
		top: 1px;
		left: 2px;
	}
}
/*Долги таблица конец*/
/*Авторизация старт*/
.box-autorized {
	width: 100%;
	max-width: 500px;
	padding: 0 20px;
	margin: 0 0 50px 0;
}
.box-autorized__title {
	font-size: 23px;
	margin: 0 0 40px 0;
	color: #1e361d;
	font-weight: bold;
	background-color: rgba(128, 255, 128, 0.5);
	border-radius: 10px;
	padding: 5px 20px;
}

.form-autorized__items {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.form-autorized__label {
	font-size: 18px;
	color: #134911;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-weight: bold;
}
.form-autorized__input, .form-autorized__input-file {
	width: 100%;
	padding: 10px;
	font-size: 18px;
	border: none;
	border-radius: 5px;
}
.form-autorized__input:focus {
	border: #498f4b 3px solid;
}
.form-autorized__box-btns {
	margin: 30px 0 0 0;
	display: flex;
	gap: 13px;
}

.form-autorized__assist {
	margin-top: -6px;
}

.form-autorized__assist-link {
	display: inline-flex;
	align-items: center;
	color: #2f6c32;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px dashed rgba(57, 125, 65, 0.38);
	transition: color 0.18s ease, border-color 0.18s ease;
}

.form-autorized__assist-link:hover {
	color: #1d4e24;
	border-color: rgba(29, 78, 36, 0.48);
}

.form-autorized__label {
	position: relative;
}

.form-autorized__error-icon {
	position: absolute;
	width: 30px;
	height: 30px;
	background: url("../img/form-info.png") 0 0/30px 30px no-repeat;
	bottom: 10px;
	right: 5px;
}

.form-autorized__error-place {
	background-color: white;
	width: max-content;
	max-width: 300px;
	position: absolute;
	right: 40px;
	top: -60px;
	color: red;
	padding: 10px;
	border-radius: 20px;
	font-weight: 300;
}

/*Авторизация конец*/
/*Страница профиля старт*/
.profile-info {
	max-width: 700px;
	width: 100%;
	padding: 0 15px;
}
.profile-info__title {
	font-size: 25px;
}
.profile-info__title span {
	font-weight: bold;
	color: #307a21;
}
.profile-info__ava-box {
	position: relative;
	padding: 0 0 200px 0;
	width: 200px;
}
.profile-info__ava-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.profile-info__ava-edit {
	margin: 10px 0 20px 0;
	border-bottom: 1px solid rgb(69, 150, 71);
	width: max-content;
}
.profile-info__ava-edit a {
	color: #1e361d;
	font-size: 20px;
}
.profile-info__ava-edit a:hover {
	color: rgb(69, 150, 71);
}
.profile-info__info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 20px;
}
.profile-info__info span {
	font-weight: bold;
	color: #307a21;
}

@media screen and (max-width: 620px) {
	.profile-info__title {
		font-size: 20px;
	}
	.profile-info__ava-edit a {
		color: #293f7c;
		font-size: 16px;
	}
	.profile-info__info {
		font-size: 16px;
	}
}
/*Страница профиля конец*/
/*инстаграм odessa_anonimno заказы старт*/
.img_order {
	transform: translateY(-2px);
}

.img_order-pin {
	transform: translateY(-5px);
}

.img_info-order {
	transform: translateY(-4px);
}

.td_order {
	min-width: 273px;
}

.barter_img {
	transform: translateY(-1px);
}

.formPay__conteiner {
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
}
.formPay__conteiner_card {
	background-color: #1338b1;
}
.formPay__conteiner_cash {
	background-color: #abf18b;
}
.formPay__conteiner_center {
	display: flex;
	justify-content: center;
}

.bg_yellow {
	background-color: #f3e5bd;
}

.contentOrders {
	padding: 0 0 0 0;
}

.instagram-orders__container {
	max-width: 90%;
	overflow: auto;
	font-size: 18px;
	margin: 0 0 70px 0;
	max-height: 62vh;
}
.instagram-orders__tab-thead, .instagram-orders__tab-total {
	position: sticky;
	top: 0;
	z-index: 2;
}
.instagram-orders__tab-td {
	padding: 10px;
}
.instagram-orders__tab-td-info {
	min-width: 206px;
	display: flex;
	gap: 5px;
}
.instagram-orders__tab-td-info-clients {
	padding-left: 40px;
	position: relative;
}
.instagram-orders__tab-td-date {
	min-width: 206px;
	display: flex;
	justify-content: space-between;
}
.instagram-orders__tab-td-datePayment {
	transform: translateY(-4px);
}
.instagram-orders__tab-td-date-box {
	height: 100%;
	padding: 5px 0 0 0;
}
.instagram-orders__tab-td-datePay-box {
	height: 100%;
	margin: 0 0 10px 0;
}
.instagram-orders__tab-total {
	background-color: #357831;
	color: #fff;
}
.instagram-orders__tab-td-evaluationOrder {
	min-width: 139px;
}

.tr-allMonth {
	background-color: rgb(47, 90, 153);
	color: #fff;
	font-weight: bold;
}
.tr-allMonth td {
	padding: 10px;
}

.tab-td-year {
	min-width: 133px;
	position: relative;
}

.instagram-orders__tab {
	font-size: 17px;
}

.orders_h3 {
	color: #212427;
	align-self: self-start;
	margin: 0 0 30px 5%;
}

.allOrders {
	align-self: self-start;
	margin: 0 0 30px 5%;
}

.TrAllYear {
	background-color: #08192b;
	color: #7ada76;
	font-weight: 700;
}

@media screen and (max-width: 500px) {
	.instagram-orders__tab {
		font-size: 12px;
	}
	.img_btn-client, .img_btn-correct-odessa, .img_btn-delete-odessa {
		width: 14px;
	}
	.btn-correct-odessa {
		margin: 0 5px 0 0;
	}
	.td-correct-odessa {
		display: flex;
	}
	.orders_h3 {
		margin: 0 0 30px 20px;
	}
}
/*инстаграм odessa_anonimno заказы конец*/
/*tiguan ремонтные работы старт*/
.tiguan__content {
	max-width: 90%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.tiguan__content-box-remont {
	margin: 0 0 50px 0;
}
.tiguan__h3 {
	font-size: 20px;
	color: rgb(10, 19, 11);
	font-weight: bold;
}
.tiguan__h3-avtoservisy {
	margin: 0 0 20px 0;
}
.tiguan__h3-totalsum {
	margin: 0 0 20px 0;
}
.tiguan__h3-remont {
	margin: 0 0 20px 0;
}
.tiguan__img-plus {
	width: 20px;
}
.tiguan__table-box {
	overflow: auto;
}
.tiguan__table-thead {
	font-size: 16px;
	background-color: rgb(5, 7, 32);
	color: white;
}
.tiguan__table-th {
	padding: 5px 10px;
	border: solid 1px black;
}
.tiguan__table-tr {
	background-color: rgb(127, 255, 133);
}
.tiguan__table-td {
	font-size: 16px;
	padding: 5px 10px;
	border: solid 1px black;
	min-width: max-content;
}
.tiguan__table-td_w200 {
	min-width: 200px;
}
.tiguan__table-td_w300 {
	min-width: 300px;
}
.tiguan__table-tr_bgBlack {
	background-color: rgb(25, 55, 75);
	color: rgb(165, 240, 168);
	font-weight: bold;
}

.close-block {
	display: none;
}

.tiguan__table-tr_yellow {
	background-color: rgb(253, 255, 127);
}

@media screen and (max-width: 500px) {
	.tiguan__table-td {
		font-size: 14px;
	}
	.tiguan__table-thead {
		font-size: 14px;
	}
}
/*tiguan ремонтные работы конец*/
/*tiguan ремонтные работы старт*/
.js-content {
	max-width: 90%;
	overflow: auto;
	margin: 0 0 50px 0;
}

.learn-errors {
	margin: 0 0 20px 0;
}

.js-arrow {
	width: 0;
	height: 0;
	position: absolute;
	left: 294px;
	border-left: 9px solid transparent;
	border-right: 9px solid transparent;
	top: 16px;
}

.js-arrow-table_tr {
	position: relative;
}

.js-arrow-table_span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 30px;
	margin-left: 10px;
	border: 1px solid #bfd5cb;
	border-radius: 10px;
	background: #eef6ef;
	color: #1f4f39;
	cursor: pointer;
	vertical-align: middle;
	font-size: 0;
	line-height: 1;
	position: static;
}

.js-arrow-table_span::before {
	content: "\25BE";
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.js-arrow-table_span-tiguan {
	margin-left: 8px;
}

.js-arrow-table_span-clients {
	margin-left: 8px;
}

.arrow__active {
	rotate: 0deg;
}

.arrow__active::before {
	content: "\25B4";
}

.js-arrow-table_span:hover {
	background: #e3f0e6;
	border-color: #8cb89b;
}

.js-arrow-table_tr_hidden {
	max-height: 0;
}

.js-table {
	width: 1200px;
}
.js-table__head {
	border: solid 1px rgb(9, 0, 128);
	display: flex;
	font-size: 18px;
	font-weight: bold;
	background-color: rgb(18, 29, 46);
	color: white;
}
.js-table__head-title {
	min-width: 320px;
	max-width: 320px;
	padding: 5px 0 3px 15px;
}
.js-table__head-description {
	padding: 5px 0 3px 15px;
}
.js-table__body {
	font-size: 16px;
}
.js-table__body a {
	color: #000000;
}
.js-table__body a:hover {
	color: #000000;
}

.floor-item {
	display: flex;
	position: relative;
	border: solid 1px rgba(107, 101, 101, 0.5);
	border-top: none;
}
.floor-item__title-block {
	min-width: 320px;
	max-width: 320px;
	border-right: solid 1px rgba(107, 101, 101, 0.5);
	padding: 0 32px 0 0;
	display: flex;
}
.floor-item__title-block:last-child {
	border-bottom: none;
}
.floor-item__title {
	width: 100%;
	padding: 15px 10px;
}
.floor-item__title-button-block {
	margin: 14px 0 0 12px;
	display: flex;
	gap: 10px;
}
.floor-item__title-button-block button {
	border: none;
}
.floor-item__title-button-plus {
	width: 30px;
	height: 26px;
	position: relative;
}
.floor-item__title-button-link {
	width: 30px;
	height: 26px;
	position: relative;
	margin: 12px 4px 0 0;
}
.floor-item__title-img-plus {
	width: 18px;
	position: absolute;
	left: 5px;
	top: 4px;
}
.floor-item__title-img-link {
	width: 23px;
	position: absolute;
	left: 3px;
	top: 2px;
}
.floor-item__description-block {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.floor-item__description {
	padding: 15px 0 15px 17px;
}
.floor-item__description-button-block {
	display: flex;
	padding: 10px 10px 0 76px;
	gap: 5px;
	position: relative;
}
.floor-item .button__arrow {
	border: none;
}
.floor-item__arrow {
	position: absolute;
	top: 17px;
	width: 0;
	height: 0;
	border-left: 9px solid transparent;
	border-right: 9px solid transparent;
}
.floor-item__arrow-up {
	left: 15px;
	border-bottom: 18px solid rgb(18, 97, 8);
}
.floor-item__arrow-down {
	left: 50px;
	border-top: 18px solid rgb(8, 9, 97);
}

.close-block {
	display: none;
}

.first-floor {
	background-color: rgb(39, 85, 39);
}
.first-floor__button-arrow-up {
	border-bottom: 18px solid rgb(30, 255, 0);
}
.first-floor__button-arrow-down {
	border-top: 18px solid rgb(0, 255, 255);
}
.first-floor__description {
	color: white;
}
.first-floor__title {
	color: white;
}
.first-floor__item a {
	color: #ffffff;
}
.first-floor__item a:hover {
	color: #ffffff;
}
.first-floor__arrow {
	border-bottom: 18px solid rgb(233, 235, 236);
}

.second-floor {
	background-color: rgb(208, 255, 214);
}
.second-floor__arrow {
	border-bottom: 18px solid rgb(4, 51, 94);
}

.three-floor {
	background-color: rgb(252, 255, 208);
}
.three-floor__arrow {
	border-top: 18px solid rgb(4, 51, 94);
}

.four-floor {
	background-color: rgb(208, 250, 255);
}
.four-floor__arrow {
	border-top: 18px solid rgb(4, 51, 94);
}

.five-floor {
	background-color: rgb(232, 245, 228);
}
.five-floor__arrow {
	border-top: 18px solid rgb(4, 51, 94);
}

/*tiguan ремонтные работы старт*//* ===== Modern Header/Menu Refresh ===== */
:root {
  --hn-header-bg: #183d1f;
  --hn-header-bg-2: #134321;
  --hn-header-text: #f4f9ee;
  --hn-accent: #cddf5a;
  --hn-sub-bg: #245a12;
  --hn-sub-bg-2: #d8e36a;
  --hn-sub-text: #f7ffef;
  --hn-shadow: 0 14px 32px rgba(8, 20, 10, 0.28);
  --hn-radius: 14px;
}

.header {
  background: linear-gradient(90deg, var(--hn-header-bg), var(--hn-header-bg-2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(10, 24, 13, 0.2);
}

.header__container {
  max-width: 1240px;
  grid-template: auto auto / 1fr auto;
  row-gap: 14px;
  column-gap: 24px;
  align-items: center;
  padding: 12px 20px 14px;
}

.header__logo {
  align-self: center;
}

.header__logo-link {
  display: inline-block;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #7bd47a !important;
  text-shadow: 0 3px 12px rgba(13, 31, 15, 0.35);
}

.menu {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  align-self: stretch;
}

.menu__list {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.menu__item {
  min-width: auto;
}

.menu__link,
.sub-menu__link,
.sub-sub-menu__link {
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.menu__link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 34px;
  font-weight: 600;
  color: var(--hn-header-text);
}

.menu__link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.menu li {
  position: relative;
}

.menu__arrow {
  right: 5px;
  top: 15px;
  border-top: 10px solid var(--hn-accent);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

.parent {
  padding-right: 24px;
}

.sub-menu__list {
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  padding-top: 0;
  border-radius: var(--hn-radius);
  overflow: hidden;
  box-shadow: var(--hn-shadow);
  background: var(--hn-sub-bg);
}

.sub-menu__list > li {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sub-menu__list > li:last-child {
  border-bottom: none;
}

.sub-menu__link {
  display: block;
  min-width: 240px;
  padding: 12px 14px;
  font-size: 26px;
  color: var(--hn-sub-text);
}

.sub-menu__link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.sub-menu__arrow {
  right: 10px;
  top: 15px;
  border-left: 10px solid var(--hn-accent);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.sub-sub-menu__list {
  top: 0;
  left: calc(100% + 10px);
  min-width: 260px;
  border-radius: var(--hn-radius);
  overflow: hidden;
  box-shadow: var(--hn-shadow);
  background: var(--hn-sub-bg-2);
}

.sub-sub-menu__list > li {
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sub-sub-menu__list > li:last-child {
  border-bottom: none;
}

.sub-sub-menu__link {
  display: block;
  min-width: 260px;
  padding: 12px 14px;
  font-size: 24px;
  color: #11270f;
  font-weight: 600;
}

.sub-sub-menu__link:hover {
  background: rgba(255, 255, 255, 0.32);
  color: #0b1b09;
}

.sub-sub-menu__item:hover {
  background: rgba(255, 255, 255, 0.32);
}

.sub-sub-menu__item:hover > .sub-sub-menu__link {
  background: transparent;
}

body.mouse .menu__list > li:hover > .menu__arrow,
.menu__arrow.active {
  transform: rotate(180deg);
  border-top-color: #9fc63d;
}

body.mouse .sub-menu__list > li:hover > .sub-menu__arrow,
.sub-menu__arrow.active {
  transform: rotate(180deg);
  border-left-color: #9fc63d;
}

.header__box-login {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  align-self: center;
}

.box-login__hello {
  font-size: 18px;
}

.box-login__link {
  border-radius: 10px;
  font-size: 18px;
}

@media (max-width: 980px) {
  .header {
    padding-top: 8px;
  }

  .header__container {
    grid-template: auto auto auto / 1fr auto;
    row-gap: 12px;
  }

  .menu {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    display: none;
    background: rgba(8, 22, 10, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 10px;
  }

  .menu.menu--open {
    display: block;
  }

  .menu__list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .menu li {
    text-align: left;
  }

  .menu__link {
    width: 100%;
    min-height: 44px;
    font-size: 18px;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.08);
  }

  .menu__arrow {
    top: 17px;
    right: 12px;
  }

  .sub-menu__list,
  .sub-sub-menu__list {
    position: static;
    left: 0;
    top: 0;
    margin: 6px 0 8px;
    min-width: 100%;
    box-shadow: none;
    border-radius: 10px;
    display: none;
  }

  .sub-menu__list.open,
  .sub-sub-menu__list.open {
    display: block;
  }

  .sub-menu__link,
  .sub-sub-menu__link {
    min-width: 100%;
    font-size: 16px;
    padding: 10px 12px;
  }

  .sub-menu__arrow {
    right: 12px;
    top: 17px;
    border-left: none;
    border-top: 9px solid var(--hn-accent);
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-bottom: none;
  }

  .sub-menu__arrow.active {
    transform: rotate(180deg);
  }

  .header__box-login {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    justify-self: start;
  }

  .box-login {
    grid-template: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }

  .box-login__login-in {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .box-login__ava {
    margin: 0;
    width: 44px;
    padding: 0 0 44px;
  }

  .box-login__hello {
    margin: 0;
    font-size: 16px;
  }

  .box-login__link,
  .box-login__link-logout {
    margin: 0;
    font-size: 15px;
    padding: 6px 12px;
  }

  .hamb {
    display: flex;
    align-self: center;
    justify-self: end;
    position: static;
    padding: 8px;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
  }

  .hamb .bar {
    width: 24px;
    height: 2px;
  }
}
/* ===== End Modern Header/Menu Refresh ===== */

/* ===== Desktop Menu Font Hotfix ===== */
@media (min-width: 981px) {
  .menu__link {
    font-size: 16px;
    line-height: 1.25;
    padding: 8px 12px;
    min-height: 38px;
  }

  .sub-menu__link {
    font-size: 15px;
    padding: 10px 12px;
  }

  .sub-sub-menu__link {
    font-size: 15px;
    padding: 10px 12px;
  }

  .menu__list {
    gap: 16px;
  }
}
/* ===== End Desktop Menu Font Hotfix ===== */

/* ===== Desktop Arrow Spacing Fix ===== */
@media (min-width: 981px) {
  .menu__link.parent,
  .sub-menu__link.parent {
    padding-right: 30px;
  }

  .menu__arrow,
  .sub-menu__arrow {
    right: 8px;
  }
}
/* ===== End Desktop Arrow Spacing Fix ===== */

/* ===== Desktop Hover Gap Fix (Projects -> Delivery) ===== */
@media (min-width: 981px) {
  .sub-menu__list {
    top: 100%;
    margin-top: 0;
    padding-top: 0;
  }

  .sub-sub-menu__list {
    left: 100%;
    margin-left: 0;
  }

  /* Bridge zones remove accidental hover loss between levels */
  .menu__item:hover > .sub-menu__list::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    height: 10px;
  }

  .sub-menu__item:hover > .sub-sub-menu__list::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    width: 10px;
    height: 100%;
  }
}
/* ===== End Desktop Hover Gap Fix ===== */

/* ===== Desktop 3rd Level Visibility Fix ===== */
@media (min-width: 981px) {
  .sub-menu__list {
    overflow: visible;
    z-index: 120;
  }

  .sub-menu__item {
    position: relative;
  }

  .sub-sub-menu__list {
    display: none;
    z-index: 130;
  }

  body.mouse .sub-menu__item:hover > .sub-sub-menu__list {
    display: block;
  }
}
/* ===== End Desktop 3rd Level Visibility Fix ===== */

/* ===== Desktop Invisible Hover Bridge (keep visual gap) ===== */
@media (min-width: 981px) {
  .menu__item > .sub-menu__list {
    top: calc(100% + 10px);
  }

  .menu__item:hover::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 320px;
    height: 10px;
    background: transparent;
  }

  .sub-menu__item > .sub-sub-menu__list {
    left: calc(100% + 10px);
  }

  .sub-menu__item:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 10px;
    height: 100%;
    background: transparent;
  }
}
/* ===== End Desktop Invisible Hover Bridge ===== */

/* ===== Submenu Hover Radius Fix ===== */
.sub-menu__item:first-child > .sub-menu__link,
.sub-menu__item:first-child > .sub-menu__link:hover {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.sub-menu__item:last-child > .sub-menu__link,
.sub-menu__item:last-child > .sub-menu__link:hover {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.sub-sub-menu__item:first-child {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  overflow: hidden;
}

.sub-sub-menu__item:last-child {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  overflow: hidden;
}
/* ===== End Submenu Hover Radius Fix ===== */

/* ===== Mobile Header Bottom Spacing Fix ===== */
@media (max-width: 980px) {
  .header {
    padding-bottom: 10px;
  }

  .header__container {
    padding-bottom: 8px;
  }
}
/* ===== End Mobile Header Bottom Spacing Fix ===== */

/* ===== Mobile Open Menu Top Offset Fix ===== */
@media (max-width: 980px) {
  .header {
    padding-top: 10px;
  }

  .header__container {
    position: relative;
    row-gap: 14px;
  }

  .hamb {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 220;
  }

  .menu {
    margin-top: 14px;
  }

  .menu.menu--open {
    margin-top: 14px;
  }
}
/* ===== End Mobile Open Menu Top Offset Fix ===== */

/* ===== Mobile Arrow Direction Fix ===== */
@media (max-width: 980px) {
  .menu__arrow,
  .sub-menu__arrow {
    border-top: 9px solid var(--hn-accent) !important;
    border-right: 6px solid transparent !important;
    border-left: 6px solid transparent !important;
    border-bottom: none !important;
    transform: rotate(0deg) !important;
    transition: transform 0.2s ease;
  }

  .menu__arrow.active,
  .sub-menu__arrow.active {
    transform: rotate(180deg) !important;
  }
}
/* ===== End Mobile Arrow Direction Fix ===== */

/* ===== Mobile Header FOUC Guard ===== */
@media (max-width: 980px) {
  .header:not(.menu-initialized) .menu,
  .header:not(.menu-initialized) .header__box-login {
    visibility: hidden;
  }
}
/* ===== End Mobile Header FOUC Guard ===== */

/* ===== Header Offset Without JS Delay ===== */
:root {
  --header-offset: 170px;
}

.wrapper {
  padding-top: var(--header-offset) !important;
}

@media (max-width: 980px) {
  :root {
    --header-offset: 96px;
  }
}
/* ===== End Header Offset Without JS Delay ===== */

/* ===== Desktop Header Compact Mode ===== */
@media (min-width: 981px) {
  :root {
    --header-offset: 124px;
  }

  .header {
    padding-top: 6px;
  }

  .header__container {
    row-gap: 8px;
    padding-top: 6px;
    padding-bottom: 8px;
  }

  .header__logo-link {
    font-size: clamp(24px, 2vw, 30px);
  }

  .menu__link {
    min-height: 34px;
    padding: 6px 10px;
  }

  .box-login__hello {
    font-size: 15px;
  }

  .box-login__ava {
    width: 54px;
    padding-bottom: 54px;
  }

  .box-login__link,
  .box-login__link-logout {
    font-size: 16px;
    padding: 6px 14px;
  }
}
/* ===== End Desktop Header Compact Mode ===== */

/* ===== Login Block Visual Upgrade ===== */
.header__box-login {
  justify-self: end;
}

.box-login__login-in {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 8px 12px;
  backdrop-filter: blur(4px);
}

.box-login__ava {
  margin: 0 10px 0 0;
}

.box-login__ava img {
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.box-login__hello {
  font-weight: 600;
  letter-spacing: 0.2px;
}

.box-login__hello-name {
  color: #9fe28f;
}

.box-login__link-logout {
  border-radius: 12px;
  border: 2px solid #ca3e1a;
  background: linear-gradient(180deg, #9a5754, #8e4b49);
  color: #fff;
  box-shadow: 0 8px 18px rgba(88, 28, 24, 0.28);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.box-login__link-logout:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 10px 20px rgba(88, 28, 24, 0.34);
  color: #fff;
}

@media (max-width: 980px) {
  .box-login__login-in {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    padding: 10px;
  }

  .box-login__link-logout {
    width: auto;
  }
}
/* ===== End Login Block Visual Upgrade ===== */

/* ===== Login Block Clean Compact Redesign ===== */
.header__box-login {
  justify-self: end;
}

.box-login__login-in {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

.box-login__ava {
  width: 52px;
  padding: 0 0 52px;
  margin: 0;
}

.box-login__ava img {
  border: 2px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
}

.box-login__hello {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.box-login__hello-name {
  color: #9fe28f;
}

.box-login__link-logout {
  grid-column: auto;
  justify-self: auto;
  margin-left: 4px;
  padding: 8px 16px;
  border-radius: 10px;
  border: 2px solid #c84321;
  background: #9b5a57;
  color: #fff;
  box-shadow: 0 4px 12px rgba(88, 28, 24, 0.22);
}

.box-login__link-logout:hover {
  background: #a46360;
  color: #fff;
  transform: translateY(-1px);
}

.box-login__preview-badge {
  order: 10;
  flex: 0 0 100%;
  margin: 4px 0 0 64px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 140, 0.45);
  background: linear-gradient(135deg, rgba(255, 248, 226, 0.95) 0%, rgba(255, 236, 184, 0.95) 100%);
  color: #7b5417;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(94, 67, 18, 0.12);
}

@media (max-width: 980px) {
  .box-login__login-in {
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .box-login__hello {
    font-size: 16px;
  }

  .box-login__link-logout {
    padding: 7px 12px;
    font-size: 15px;
  }

  .box-login__preview-badge {
    margin-left: 52px;
    font-size: 11px;
  }
}
/* ===== End Login Block Clean Compact Redesign ===== */

/* ===== Mobile Login Block Polish ===== */
@media (max-width: 980px) {
  .menu .box-login__login-in {
    margin-top: 10px;
    padding: 10px 12px !important;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    display: grid !important;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 10px;
  }

  .menu .box-login__ava {
    width: 42px;
    padding: 0 0 42px;
    grid-column: 1;
    margin: 0;
  }

  .menu .box-login__hello {
    grid-column: 2;
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu .box-login__preview-badge {
    grid-column: 2 / 4;
    margin: 2px 0 0;
  }

  .menu .box-login__link-logout {
    grid-column: 3;
    margin: 0;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 9px;
    width: auto;
    min-width: 88px;
    text-align: center;
  }
}
/* ===== End Mobile Login Block Polish ===== */

/* ===== Mobile Login Row Alignment Fix ===== */
@media (max-width: 980px) {
  .menu .box-login__login-in {
    align-items: center;
    grid-template-columns: 46px minmax(120px, 1fr) auto;
    column-gap: 12px;
  }

  .menu .box-login__ava {
    align-self: center;
    justify-self: center;
  }

  .menu .box-login__hello {
    align-self: center;
    justify-self: start;
    display: flex;
    align-items: center;
    min-height: 42px;
  }

  .menu .box-login__link-logout {
    align-self: center;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    line-height: 1;
  }
}
/* ===== End Mobile Login Row Alignment Fix ===== */

/* ===== Desktop Menu Stabilization Fix ===== */
@media (min-width: 981px) {
  .menu__item > .menu__link.parent {
    padding-right: 34px !important;
  }

  .menu__item > .menu__arrow {
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  body.mouse .menu__list > li:hover > .menu__arrow,
  .menu__arrow.active {
    transform: translateY(-50%) rotate(180deg) !important;
  }

  .sub-menu__item > .sub-menu__link.parent {
    padding-right: 30px !important;
  }

  .sub-menu__item > .sub-menu__arrow {
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  body.mouse .sub-menu__item:hover > .sub-menu__arrow,
  .sub-menu__arrow.active {
    transform: translateY(-50%) rotate(180deg) !important;
  }
}
/* ===== End Desktop Menu Stabilization Fix ===== */

/* ===== Desktop Full-Row Hover Coverage (submenu levels) ===== */
@media (min-width: 981px) {
  .sub-menu__list > .sub-menu__item,
  .sub-sub-menu__list > .sub-sub-menu__item {
    position: relative;
  }

  .sub-menu__list > .sub-menu__item > .sub-menu__link,
  .sub-sub-menu__list > .sub-sub-menu__item > .sub-sub-menu__link {
    display: block !important;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .sub-menu__list > .sub-menu__item:hover > .sub-menu__link {
    background: rgba(255, 255, 255, 0.12);
  }

  .sub-sub-menu__list > .sub-sub-menu__item:hover > .sub-sub-menu__link {
    background: rgba(255, 255, 255, 0.32) !important;
    color: #0b1b09;
  }
}
/* ===== End Desktop Full-Row Hover Coverage ===== */
