@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

body {
	font-family: "Roboto", serif;
	background: url(./images/main_background.png);
	background-size: cover;
	color: white;
	background-attachment: fixed;

	background-position: bottom right;
	min-height: 100vh;
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
}

img {
	max-width: 100%;
	/* Ограничиваем ширину изображений */
	height: auto;
	/* Сохраняем пропорции */
}

body::-webkit-scrollbar {
	width: 15px;
	/* ширина scrollbar */
	background: none;
}

body::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0);
	/* цвет дорожки */
}

body::-webkit-scrollbar-thumb {
	background-color: rgba(163, 159, 159, 1);
	/* цвет плашки */
	border-radius: 20px;
	/* закругления плашки */

}

button {
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid white;
	border-radius: 10px;
	color: black;
}

img {
	vertical-align: top;
}

input[type="text"],
input[type="date"],
input[type="number"],
input[type="email"],
input[type="url"],
select {
	background: rgba(255, 255, 255, 0.3);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	border-radius: 10px;
	border: none;
	min-height: 35px;
	outline: none;
	color: white;
	padding: 8px 10px;
}

label {
	cursor: pointer;
}

.terms-checkbox {
	font-size: 12px;
    margin: 0 0 0 12px;
}

.terms-checkbox label {
	gap: 5px;
}

.terms-checkbox a {
	color: #B4B4B4;
	text-decoration: underline;
}


select option {
	color: black;
	border: 1px solid black;
}

input[type="radio"] {
	width: 15px;
	height: 15px;
	cursor: pointer;
}

input[type="checkbox"] {
	width: 15px;
	height: 15px;
	cursor: pointer;
}

textarea {
	background: rgba(255, 255, 255, 0.3);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	border-radius: 10px;
	border: none;
	outline: none;
	color: white;
	padding: 8px 10px;
}

.flex_block {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	margin-bottom: 5px;
}

h5 {
	margin: 0;
}


p {
	margin: 0;
}


.container {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
}

ol,
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.main_title h1 {
	font-size: 32px;
	font-weight: 900;
	text-align: center;
}

.photo_block,
.name_surname {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	gap: 10px;
}

.project_part {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	gap: 5px;
}

.project_part strong {
	margin-bottom: 5px;
}

.accordeon_projects {
	cursor: pointer;
}

.accordeon_dropblock {
	display: none;
}

.accordeon_dropblock.active {
	display: block;
}

.table_search {
	margin-bottom: 20px;
}

a {
	color: white;
	text-decoration: none;
	cursor: pointer;
}


.index_page {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-bottom: 40px;
}

.lk_page {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	justify-content: space-between;
	position: relative;
	width: 1300px;
	margin-bottom: 40px;
}

.line_blocks {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	justify-content: space-around;
}

.profession-list {
	font-size: 15px;
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	align-items: center;
	gap: 10px;

	a {
		font-size: inherit;
	}
}

.center_side {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	position: relative;
	-webkit-flex-direction: column;
	flex-direction: column;
	align-items: center;
	width: 750px;
	gap: 20px;
}

.show-more-btn {
	cursor: pointer;
	display: block;
	text-align: center;
	margin-top: 15px;
	font-size: 15px;
	font-weight: 400;
	color: white;
}

.profession-list li {
	display: none;
	text-align: center;
	transition: all 0.3s ease;
}

.profession-list li.hidden {
    display: none;
}

.profession-list li.visible {
	display: list-item;

	a:hover {
		color: white;
	}
}

.profession-list li.visible:hover {
	color: white;
}

.feedback {
	position: relative;
	margin: 0px auto;
}

.left_side {
	width: 260px;
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	margin-right: 15px;
}

.right_side {
	width: 180px;
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	margin-left: 10px;
}

.role_list {
	display: block;
	width: 100%;
	padding: 23px;
	color: black;
	position: relative;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.7);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	border-radius: 10px;

	a {
		color: black;
		text-decoration: underline;
	}

}

.feedback_block.active {
	display: block;
}

.feedback>* {
	width: 100%;
}

.name-block {
	gap: 20px;
}

.announcement_block {
	background-color: transparent;
	width: 100%;
	color: white;
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	gap: 10px;
	margin-left: auto;
	margin-right: auto;
	max-height: 290px;
	overflow-y: auto;
	padding-right: 20px;
}

.announcement_block::-webkit-scrollbar {
	width: 15px;
	border-radius: 20px;
	/* ширина scrollbar */
	background: rgba(255, 255, 255, 0.5);
}

.announcement_block::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0);
	/* цвет дорожки */
}

.announcement_block::-webkit-scrollbar-thumb {
	background-color: rgb(255, 255, 255);
	/* цвет плашки */
	border-radius: 20px;
	/* закругления плашки */

}

.announcement_block h2 {
	margin-top: 0;
	font-size: 25px;
	font-weight: bold;
	text-align: center;
}

.announcement_item {
	padding: 15px;
	background-color: transparent;
	border: 1px solid #ffffff;
	border-radius: 8px;
	cursor: pointer;
	color: white;
}


.announcement_item h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
}

.announcement_item p {
	font-size: 14px;
	line-height: 1.6;
	margin: 10px 0;
}

.announcement_item .date {
	font-size: 13px;
	text-align: right;
	font-style: italic;
	margin: 0;
}

.announcement_item .announcement_content {
	font-size: 17px;
	margin-top: 10px;
}

.announcement_item .announcement_title {
	font-weight: bold;
	font-size: 20px;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.4);
	-webkit-overflow-scrolling: touch;
	/* Для плавного скролла на iOS */
}

.modal-content {
	background-color: #fefefe;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.announce {
	display: block;
	position: relative;
	width: fit-content;
	margin: 0 auto;
	text-align: center;
}

.logo {
	display: block;
	width: 260px;
	height: fit-content;
}

.header-container {
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	gap: 55px;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0px;
	color: #fff;
}

.modal_block {
	display: none;
	position: fixed;
	background: rgba(0, 0, 0, 0.6);
	width: 100vw;
	height: 100vh;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: 9999;
}

.modal_block.open {
    display: block;
}

.write_us.active,
.reg.active,
.auth.active {
	display: flex;
	justify-content: center;
	align-items: center;
}

.register_block {
	background: white;
	height: fit-content;
	border-radius: 20px;
	padding: 15px;
	color: black;
	width: 730px;
}

.registerBlockHeader {
    text-align: center;
    font-weight: 400;
    width: 100%;
}

.registerBlockSubmitButton {
    display: flex;
    justify-content: center; /* выравнивание по центру */
    width: 100%;
}

.closeModuleButton {
    width: 100%;
    text-align: right;
}

.auth_block,
.feedback_block,
.modal-content {
	display: flex;
    position: fixed;
    flex-direction: column;
    background: white;
    height: fit-content;
    border-radius: 20px;
    padding: 20px;
    color: black;
    width: fit-content;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: 9999;
}

.register_block,
.auth_block,
.feedback_block,
.modal-content {

	input[type="text"],
	input[type="date"],
	input[type="password"],
	input[type="email"],
	textarea,
	select {
		background: transparent;
		-webkit-backdrop-filter: blur(0px);
		backdrop-filter: blur(0px);
		border-radius: 10px;
		border: 1px solid #B4B4B4;
		min-height: 35px;
		outline: none;
		width: 324px;
		font-size: 15px;
		color: black;
		padding: 13px 10px;
        margin: 10px;
	}

	input[type="text"]::placeholder,
	input[type="date"]::placeholder,
	select {
		font-size: 15px;
		color: #666666;
	}

	button {
		padding: 14px 77px;
		text-transform: uppercase;
		background: #F6F6F7;
		border: 1px solid black;
		border-radius: 10px;
		cursor: pointer;
		margin-top: 10px;
	}

	.close_modal {
		cursor: pointer;
		width: 20px;
	}

	h2 {
		margin-bottom: 17px;
	}


}

.oper_feedback:hover,
.register:hover,
.vacancies_btn:hover,
.save_changes_participant:hover {
	background: linear-gradient(90deg, #00A8FF 0%, #006599 50%, #00A8FF 100%);
	border: 1px solid transparent;
	color: white;
}


select {
	cursor: pointer;
	appearance: none;
	position: relative;
	background: url(./images/select_arrow.svg) no-repeat right;
	background-color: rgba(255, 255, 255, 0.3);
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
	border-radius: 10px;
	border: 1px solid #B4B4B4;
	min-height: 35px;
	outline: none;
	width: 324px;
	font-size: 15px;
	color: black;
	padding: 13px 10px;
}

.filmograph select {
	background-size: contain;
}

.register_block form,
.auth_block form {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	width: fit-content;
}

button[name="register"] {
	margin-top: 20px;
}

.header_title_search {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	justify-content: space-between;
	height: 157px;
}

.header_title {
	color: white;
	font-size: 15px;
	line-height: 24.6px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}

.search_block {
	width: 100%;
	position: relative;

	input {
		width: 100%;
		height: 45px;
		padding-left: 20px;
		color: white;
		font-size: 17px;
		font-weight: 400;
		font-family: "Roboto", serif;
	}

	input::placeholder {
		color: white;
		font-size: 17px;
		font-weight: 400;
		font-family: "Roboto", serif;
	}

	button {
		cursor: pointer;
		position: absolute;
		right: 0;
		top: 50%;
		translate: -20px -50%;
		margin: 0;
		width: fit-content;
		height: fit-content;
		background: none;
		border: none;
		outline: none;
	}
}

.logo a {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	font-weight: bold;
}

.user-menu {
	min-width: 180px;
	height: 144px;
	position: relative;
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	align-self: flex-end;
	align-items: center;
	gap: 10px;
	justify-content: space-between;

}

.projects {
	margin: 0 auto;
}

.register,
.oper_feedback,
.vacancies_btn,
.save_changes_participant,
.create_project_btn,
.add_vacancy,
.form-container button,
.submit-btn,
.tariffs_btn {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	color: black;
	font-size: 15px;
	width: 180px;
	padding: 8px 0;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid #FFFFFF;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	border-radius: 10px;
}

.save_changes_projects {
	position: sticky;
	top: 20px;
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	color: black;
	font-size: 15px;
	width: 100%;
	padding: 8px 20px;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid #FFFFFF;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	border-radius: 10px;
}


.user-avatar {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	cursor: pointer;
	object-fit: cover;
}

.profile-icon {
	font-size: 30px;
	color: #fff;
	cursor: pointer;
}

.dropdown-menu {
	position: absolute;
	top: 100px;
	right: 60px;
	background-color: #fff;
	color: #333;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	padding: 20px;
	width: 200px;
	z-index: 1000;
}

.dropdown-menu::before {
	content: '';
	display: block;
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #D9D9D9;
}

.dropdown-menu.hidden {
	display: none;
}

.dropdown-menu ul {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	-webkit-flex-direction: column;
	flex-direction: column;
	gap: 10px;
}

.dropdown-menu ul li {
	margin: 0;
}

.dropdown-menu ul li a {
	text-decoration: none;
	color: #333;
	font-size: 16px;
}

.dropdown-menu ul li a:hover {
	color: #000;
}

.login-link {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	color: #fff;
	text-decoration: none;
	font-size: 17px;
	cursor: pointer;
}

.create_project_btn {
	width: 245px;
}

.login-link:hover span {
	filter: drop-shadow(0 0 5px #00A8FF);
	color: #00A8FF;
}

.login-link:hover svg {
	filter: drop-shadow(0 0 5px #00A8FF);
}

.login-link:hover svg * {
	fill: #00A8FF;
}

.triangle {
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid white;
	/* Цвет треугольника */
	position: absolute;
	bottom: 100%;
	/* Позиционируем под кнопкой */
	right: 20px;
	/* Позиционируем справа */
	margin-left: -5px;
	/* Центрируем треугольник */
}

.highlight {
	background-color: yellow;
}

.form_announsments {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	max-width: 650px;
	margin: 50px auto;
}

.form_announsments label {
	font-size: 1.5rem;
	font-weight: 600;
}

.form_announsments button {
	padding: 8px 0;
	border-radius: 10px;
	border: 2px solid white;
	width: 250px;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	align-self: center;
	font-size: 15px;
	text-transform: uppercase;
}


.form_news {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	max-width: 650px;
	margin: 50px auto;
}

h2 {
	cursor: pointer;
}

.form_news label {
	font-size: 1.5rem;
	font-weight: 600;
}

.form_news button {
	padding: 8px 0;
	border-radius: 10px;
	border: 2px solid white;
	width: 250px;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	align-self: center;
	font-size: 15px;
	text-transform: uppercase;
}

.collapsible-header {
	cursor: pointer;
	padding: 10px 0;
	font-size: 25px;

}

.admin_page,
.style_page {
	margin-bottom: 40px;

	a {
		text-decoration: underline;
	}

	textarea {
		resize: none;
	}

	textarea::-webkit-scrollbar {
		width: 10px;
		border-radius: 20px;
		/* ширина scrollbar */
		background: rgba(255, 255, 255, 0.5);
	}

	textarea::-webkit-scrollbar-track {
		background: rgba(255, 255, 255, 0);
		/* цвет дорожки */
	}

	textarea::-webkit-scrollbar-thumb {
		background-color: rgb(255, 255, 255);
		/* цвет плашки */
		border-radius: 20px;
		/* закругления плашки */
	}

	table {
		border-spacing: 10px 0;
		/* Отступы между ячейками */
		width: fit-content;
	}

	h2 span img {
		vertical-align: middle;
	}

	.view_block {
		min-width: 50%;
		margin-bottom: 30px;
	}

	.uch_nab {
		display: -webkit-flex;
		/* Для старых версий Safari */
		display: flex;
		gap: 40px;
	}

	.participant_search {
		width: fit-content;
		padding: 8px 15px;
		background: rgba(255, 255, 255, 0.3);
		border-radius: 10px;
		color: #D7D6D6;
		font-size: 15px;
	}

	th {
		padding: 8px 15px;
		background: rgba(255, 255, 255, 0.3);
		border-radius: 10px;
		color: #D7D6D6;
		font-size: 15px;
	}

	th:first-child {
		padding: 8px 10px;
	}

	td {
		padding: 8px 10px;
		font-size: 15px;
	}

	.before_table {
		padding-right: 10px;
		max-height: 260px;
		overflow-y: scroll;
	}

	.collapsible-content {
		width: fit-content;
		padding: 10px;
		border: 1px solid white;
		border-radius: 10px;
	}

	.before_project_table {
		th {
			padding: 8px 15px;
		}

		max-height: 585px;

		img {
			object-fit: cover;
		}
	}

	.before_table::-webkit-scrollbar {
		width: 10px;
		border-radius: 20px;
		/* ширина scrollbar */
		background: rgba(255, 255, 255, 0.5);
	}

	.before_table::-webkit-scrollbar-track {
		background: rgba(255, 255, 255, 0);
		/* цвет дорожки */
	}

	.before_table::-webkit-scrollbar-thumb {
		background-color: rgb(255, 255, 255);
		/* цвет плашки */
		border-radius: 20px;
		/* закругления плашки */
	}

	#addProjectButton {
		margin: 20px 0;
		background: transparent;
		border: none;
		color: white;
		font-size: 20px;
		cursor: pointer;
	}

	.sidebar {
		display: -webkit-flex;
		/* Для старых версий Safari */
		display: flex;
		-webkit-flex-direction: column;
		flex-direction: column;
		gap: 10px;
		width: 260px;
		text-align: center;
	}

	/* Стили для формы */
	.form-container {
		width: 100%;
		margin: 20px 0;
		margin-top: 0;
		padding: 20px;
		border: 1px solid #ccc;
		border-radius: 5px;
		display: none;

		/* Скрыто по умолчанию */
		.create_project_studio {
			display: -webkit-flex;
			/* Для старых версий Safari */
			display: flex;
			-webkit-flex-wrap: wrap;
			flex-wrap: wrap;
			gap: 20px;
			width: 100%;

			input,
			select {
				border: none;
			}

			select {
				font-size: 13px;
			}

			input::placeholder,
			select {
				color: white;
			}

			>* {
				width: 48%;
				margin: 0;
			}

			button[name="add_project"] {
				margin: 0 auto;
			}

			ul {
				display: -webkit-flex;
				/* Для старых версий Safari */
				display: flex;
				-webkit-flex-direction: column;
				flex-direction: column;
				gap: 20px;
			}
		}
	}

	.form-container label {
		display: block;
		margin: 10px 0 5px;
	}

	.form-container input,
	.form-container select {
		width: 100%;
		padding: 8px;
		margin-bottom: 10px;
		border: 1px solid #ccc;
		border-radius: 4px;
	}

}

.left_side {
	width: 260px;
	min-height: 1px;
}

.search_page,
.studio_page {
	margin-bottom: 40px;

	table {
		border-spacing: 10px 0;
		/* Отступы между ячейками */
		-webkit-transform: translateX(-10px);
		transform: translateX(-10px)
	}

	.before_table {
		max-height: 240px;
	}


}

.studio_page {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	justify-content: space-between;
	position: relative;
	width: 1300px;

	.center_side {
		align-items: flex-start;
	}

	table {
		max-height: 250px;
		overflow-y: scroll;
	}

	table::-webkit-scrollbar {
		width: 10px;
		border-radius: 20px;
		/* ширина scrollbar */
		background: rgba(255, 255, 255, 0.5);
	}

	table::-webkit-scrollbar-track {
		background: rgba(255, 255, 255, 0);
		/* цвет дорожки */
	}

	table::-webkit-scrollbar-thumb {
		background-color: rgb(255, 255, 255);
		/* цвет плашки */
		border-radius: 20px;
		/* закругления плашки */
	}

	th,
	td {
		font-size: 13px;
	}

	button[name="edit_project"] {
		background: transparent;
		color: white;
		text-decoration: underline;
		border: none;
	}

	.add_vacancy:hover {
		color: white;
		background: linear-gradient(90deg, #00A8FF 0%, #006599 50%, #00A8FF 100%);
		border: 1px solid transparent;
	}

}

.roles_page {
	margin-bottom: 40px;

	a {
		color: black;
		text-decoration: underline;
	}

	a:hover {
		color: white;
		text-decoration: underline;
	}

	button[type="submit"],
	button[type="button"] {
		padding: 10px 15px;
		border-radius: 10px;
		font-size: 12px;
		color: black;
		cursor: pointer;
	}

	button[type="submit"] {
		background: rgba(255, 255, 255, 0.5);
		border: 1px solid rgba(255, 255, 255, 1);
		margin-right: 4px;
	}

	button[type="button"] {
		background: rgba(255, 255, 255, 0.5);
		border: 1px solid rgba(255, 255, 255, 1);
	}

	#filtersForm {
		display: -webkit-flex;
		/* Для старых версий Safari */
		display: flex;
		-webkit-flex-direction: column;
		flex-direction: column;
		gap: 10px;

		h1,
		h2,
		h3,
		h4 {
			margin: 0;
		}

		.buttons_filter {
			margin-top: 10px;
			display: -webkit-flex;
			/* Для старых версий Safari */
			display: flex;
		}
	}

	#filtersForm.hidden {
		display: none;
	}


}

.collapsible-content {
	display: none;
}

/* Админка */
.role_list {
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.7);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	color: black;
	padding: 23px 27px;

	a {
		color: black;
		text-decoration: underline;
	}
}

.sidebar {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	gap: 10px;
	width: 260px;
	text-align: center;
}

.flex_page {
	margin-bottom: 40px;
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	justify-content: space-between;
	position: relative;
}

.vacancies_center {
	align-items: flex-start;
	gap: 30px;
}

.add_new_vacancy {
	width: 100%;
	color: white;
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	position: relative;
	gap: 15px;

	select {
		color: white;
	}

	.checkbox-container {
		position: absolute;
		bottom: 0;
		right: 0;
		display: -webkit-flex;
		/* Для старых версий Safari */
		display: flex;
		align-items: center;
		gap: 10px;
		cursor: pointer;
	}

	/* Прячем стандартный чекбокс */
	.custom-checkbox {
		position: absolute;
		width: 32px;
		height: 32px;
		opacity: 0;
		cursor: pointer;
	}


	/* Стили для кастомного чекбокса (белый круг с бордером) */
	.custom-checkbox-label {
		width: 32px;
		height: 32px;
		display: -webkit-flex;
		/* Для старых версий Safari */
		display: flex;
		align-items: center;
		justify-content: center;
		border: 2px solid white;
		border-radius: 50%;
		transition: background 0.3s, border 0.3s;
		cursor: pointer;
		position: relative;
		background: transparent;
	}

	/* SVG-галочка по умолчанию скрыта */
	.checkbox-icon {
		width: 100%;
		height: 100%;
		scale: 1.1;
		position: absolute;
		opacity: 0;
		transition: opacity 0.3s;
		pointer-events: none;
		/* Чтобы SVG не мешал клику */
	}

	/* Делаем галочку "вырезанной" */
	.custom-checkbox:checked~.custom-checkbox-label .checkbox-icon {
		opacity: 1;
	}

	.submit-btn {
		position: absolute;
		right: 0;
		top: 0;
	}

	.submit-btn:hover {
		color: white;
		background: linear-gradient(90deg, #00A8FF 0%, #006599 50%, #00A8FF 100%);
		border: 1px solid transparent;
	}

}

.add_new_vacancy label {
	font-weight: bold;
	margin-bottom: 5px;
}

.checkbox-container input[type="checkbox"] {
	width: 20px;
	height: 20px;
}

.add_new_vacancy .checkbox-container label {
	margin: 0;
}


.form-group {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.with_textarea {
	align-items: flex-start;
}

.form-group label {
	flex: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
	flex: 2;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 100%;
}

.add_new_vacancy textarea {
	height: 100px;
	resize: vertical;
}

.form-dates {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	align-items: center;
	gap: 10px;
}

.form-dates input {
	width: 50%;
}

.checkbox-container {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
}

.director_name {
	width: 100%;
	padding: 8px 15px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 10px;
}

.new_vacancy {
	.center_side {
		width: 985px;
		align-items: flex-start;
	}

	.sidebar {
		text-align: center;
	}

	.form_left_vacancy {
		width: 750px;
		padding: 20px;
		color: white;
		border: 2px solid white;
		border-radius: 10px;
		background-color: rgba(255, 255, 255, 0.1);
		display: -webkit-flex;
		/* Для старых версий Safari */
		display: flex;
		-webkit-flex-direction: column;
		flex-direction: column;
		gap: 15px;
	}
}

.vacancy {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	width: 100%;
	-webkit-flex-direction: column;
	flex-direction: column;
	gap: 10px;
	color: black;

	h2 {
		background: rgba(255, 255, 255, 0.5);
		font-size: 25px;
		font-weight: 600;
		padding: 10px 20px;
		border-radius: 10px;
		margin-bottom: 0;
	}

	.vacancy_descr {
		padding: 20px;
		border-radius: 10px;
		font-size: 20px;
		background: rgba(255, 255, 255, 0.5);
	}

	a {
		color: black;
	}
}

.title_page {
	font-size: 40px;
	font-weight: 900;
	border-bottom: 2px solid white;
	padding-bottom: 10px;
	width: fit-content;
}

.block {
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 10px;
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.block input,
.block textarea,
.block select {
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.block input::placeholder,
.block textarea::placeholder,
.block select {
	color: white;
}

.block select {
	color: white;
	font-size: 13px;
}

.block textarea {
	height: 100%;
	resize: none;
}

.block h2 {
	font-size: 15px;
}

.profile-photo {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	width: 100%;
	justify-content: center;
}

.profile-photo img {
	width: 180px;
	height: 180px;
	object-fit: cover;
	border-radius: 10px;
}

.info-container {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	justify-content: space-between;
}

.participant_form_page {
	color: white;
}


.participant_form_page {

	input::placeholder,
	textarea::placeholder,
	select {
		color: white;
		background-color: rgba(255, 255, 255, 0.3);
	}
}

.profile-photo {
	label {
		width: 220px;
		height: 220px;
		background: rgba(255, 255, 255, 0.5);
		border-radius: 10px;
		display: -webkit-flex;
		/* Для старых версий Safari */
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

#profile_photo_preview {
	width: 180px;
	height: 180px;
	border: 1px solid black;
}


.row_blocks {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	width: 100%;
	justify-content: space-between;
	gap: 10px;
}

.column_blocks {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	gap: 10px;
}

.info-right {
	width: 67%;
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 10px;

	input,
	select {
		width: 48%;
	}

	label {
		display: -webkit-flex;
		/* Для старых версий Safari */
		display: flex;
		align-items: center;
		gap: 10px;
	}
}

.studio_profile_page {
	margin-bottom: 40px;
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	justify-content: space-between;
	gap: 10px;

	h2 {
		cursor: auto;
	}

	table {
		translate: -10px 0;
	}

	.center_side {
		align-items: flex-start;
	}
}

.labels_status {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	width: 47%;
	justify-content: space-between;
	margin-left: auto;
	align-items: center;
	margin-right: 10px;
}

.info-left {
	width: 32%;
	padding-right: 10px;
}

.projects_block {
	width: 750px;
	margin: 20px auto;
	translate: 43px 0;

	.projects_posts {
		display: -webkit-flex;
		/* Для старых версий Safari */
		display: flex;
		gap: 25px;

		ul {
			width: 60%;
			padding-right: 15px;
			max-height: 535px;
			overflow-y: scroll;
			display: -webkit-flex;
			/* Для старых версий Safari */
			display: flex;
			-webkit-flex-direction: column;
			flex-direction: column;
			gap: 20px;
		}

		ul::-webkit-scrollbar {
			width: 10px;
			border-radius: 20px;
			/* ширина scrollbar */
			background: rgba(255, 255, 255, 0.5);
		}

		ul::-webkit-scrollbar-track {
			background: rgba(255, 255, 255, 0);
			/* цвет дорожки */
		}

		ul::-webkit-scrollbar-thumb {
			background-color: rgb(255, 255, 255);
			/* цвет плашки */
			border-radius: 20px;
			/* закругления плашки */
		}

		li {
			display: -webkit-flex;
			/* Для старых версий Safari */
			display: flex;
			-webkit-flex-direction: column;
			flex-direction: column;
			gap: 5px;
			border: 1px solid white;
			border-radius: 10px;
			padding: 10px;
		}

		select {
			width: 100%;
			font-size: 13px;
		}
	}
}

.project_create_inputs {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;

	input,
	select {
		width: 48.5%;

	}
}


@media (width <=770px) {
	body {
		padding-left: 0;
	}

	.line_blocks {
		-webkit-flex-direction: column;
		flex-direction: column;
		align-items: center;
	}
}

.hidden {
	display: none;
}

.user_profile {
	margin-bottom: 40px;

	.user_block_title {
		text-align: center;
		width: 100%;

		h1 {
			font-size: 55px;
			text-transform: uppercase;
			font-weight: 800;
			margin-bottom: 0;
		}

		.user_block_title_descr {
			text-transform: uppercase;
			font-size: 30px;
			color: rgba(255, 255, 255, 0.6);
		}
	}

	.film_project_part {
		width: 100%;
		text-align: left;
		list-style-image: url(./images/list_circle.svg);

		h2 {
			background: rgba(255, 255, 255, 0.5);
			box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
			border-radius: 10px;
			padding: 8px;
			text-align: center;
			font-size: 25px;
			font-weight: 500;
			text-transform: uppercase;
			margin-bottom: 40px;
		}

		.project-item {
			list-style-position: inside;
			margin-bottom: 20px;

			p {
				padding-left: 55px;
				font-size: 15px;
				line-height: 120%;
			}

			.project_title {
				line-height: 120%;
				font-size: 20px;
				padding-left: 10px;
			}
		}
	}

	.user_block_offers {
		text-align: center;

		.offers_title {
			padding-top: 10px;
			padding-bottom: 20px;
			font-size: 17px;
		}

		p:not(.offers_title) {
			margin-bottom: 10px;
		}
	}

	.right_side {
		width: 370px;
	}

	.center_side {
		width: 560px;

		user_block {
			align-items: center;

		}
	}

	.user_block {
		background: rgba(255, 255, 255, 0.5);
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
		border-radius: 10px;
		padding: 20px;
		font-size: 17px;
		color: black;

		.user_right_info {
			font-size: 15px;

			strong {
				font-size: 15px;
			}
		}

		strong {
			font-size: 17px;
			font-weight: 600;
		}

		h3 {
			font-size: 17px;
			font-weight: 600;
			margin-bottom: 10px;
		}

		h2 {
			margin-bottom: 0;
		}

		li {
			font-size: 17px;
			font-weight: 400;
		}

		&.showreel {
			padding: 8px;
			width: 130px;
			font-size: 18px;
			font-weight: 400;
			text-align: center;
			margin-bottom: 0;
		}

		&.showreel+p a {
			text-decoration: underline;
			font-size: 18px;
		}
	}

	.user_block_flex {
		display: -webkit-flex;
		/* Для старых версий Safari */
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		justify-content: space-between;
		gap: 10px;
		align-items: center;
	}

	.profile-photo {
		max-width: 100%;
		height: auto;
		border-radius: 10px;
	}


	.flex-container {
		display: -webkit-flex;
		/* Для старых версий Safari */
		display: flex;
		align-items: center;
		gap: 20px;
	}

	.flex-container img {
		max-width: 160px;
		height: 160px;
		object-fit: cover;
	}

	.list_programm {
		margin-top: 10px;
		display: -webkit-flex;
		/* Для старых версий Safari */
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 15px;
		/* justify-content: space-between; */
	}

	ul {
		list-style-type: none;
		padding: 0;
		margin: 0;
		text-align: center;
	}

	ul li {
		margin-bottom: 0px;
	}

	ul h3:not(:first-of-type) {
		margin-top: 25px;
	}

	h1,
	h2 {
		margin-top: 0;
	}
}

.footer {
	position: relative;
	bottom: 0;
	margin-top: auto;
	padding: 20px;
	width: 1300px;
	padding: 20px;
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 10px 10px 0 0;

	.logo {
		display: none;
		width: 150px;
	}

	.docs_block {
		display: -webkit-flex;
		/* Для старых версий Safari */
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		gap: 20px;

		a {
			color: rgba(255, 255, 255, 0.796);
		}
	}

	.social {
		display: -webkit-flex;
		/* Для старых версий Safari */
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
		gap: 10px;
		align-items: center;
	}

	.tg {
		width: 40px;
	}
}

.existedEmailRedirections {
    color: #000;
	text-decoration: underline !important;
}

@media (max-width: 768px) {

	/* Общие стили для мобильной версии */
	body {
		padding: 0 10px;
		/* Добавляем отступы по бокам */
	}

    .auth_block, .feedback_block, .modal-content {
        border-radius: 10px;
    }

    .close_modal {
        margin: 10px 10px 0 0;
    }

    .register_block {
        width: 95%;
        padding: 0xp;
    }

    .register_block, .auth_block, .feedback_block, .modal-content {
        input[type="text"], input[type="date"], input[type="password"], input[type="email"], textarea, select {

            margin: 5px 0;
        }
    }



	.container {
		width: 100% !important;
		/* Контейнер занимает всю ширину */
		padding: 0 10px;
		/* Отступы внутри контейнера */
	}

	/* Шапка */
	.header-container {
		flex-direction: column !important;
		/* Всё в колонку */
		align-items: center !important;
		/* Центрируем элементы */
		gap: 15px !important;
		/* Отступы между элементами */
		padding: 15px 0 !important;
	}

	.header-container .logo {
		width: 150px !important;
		/* Логотип больше */
		height: auto !important;
	}

	.header-container .header_title_search {
		width: 100% !important;
		/* Поиск занимает всю ширину */
		margin: 0 !important;
		height: auto !important;
	}

	.header-container .header_title {
		display: none !important;
		/* Убираем текст в шапке */
	}

	.header-container .search_block input {
		width: 100% !important;
		padding: 10px 15px !important;
		font-size: 14px !important;
		/* Уменьшаем размер шрифта */
	}

	.header-container .user-menu {
		flex-direction: column-reverse !important;
		/* Кнопка над аватаркой */
		align-items: center !important;
		/* Центрируем аватарку и кнопку */
		gap: 10px !important;
		width: 100% !important;
		/* Занимает всю ширину */
		position: relative;
		/* Для позиционирования выпадающего меню */
	}

	.header-container .user-avatar {
		width: 90px !important;
		/* Аватарка остаётся прежнего размера */
		height: 90px !important;
		cursor: pointer;
		/* Указываем, что это кликабельный элемент */
	}

	.header-container .oper_feedback {
		width: 100% !important;
		/* Кнопка занимает всю ширину блока */
		padding: 8px 10px !important;
		font-size: 14px !important;
		/* Уменьшаем размер шрифта */
		white-space: nowrap !important;
		/* Текст в одну строку */
	}

	/* Выпадающее меню */
	.header-container .dropdown-menu {
		position: absolute !important;
		top: 100% !important;
		left: 50% !important;
		-webkit-transform: translateX(-50%) !important;
		transform: translateX(-50%) !important;
		width: 250px !important;
		margin-top: 10px !important;
		background-color: #fff !important;
		border: 1px solid #ccc !important;
		border-radius: 5px !important;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
		padding: 15px !important;
		z-index: 1000 !important;
	}

	/* Треугольник выпадающего меню */
	.header-container .triangle {
		position: absolute !important;
		top: -10px !important;
		/* Позиционируем над меню */
		left: 50% !important;
		/* Центрируем по горизонтали */
		-webkit-transform: translateX(-50%) !important;
		transform: translateX(-50%) !important;
		/* Центрируем по горизонтали */
	}

	/* Ссылки в выпадающем меню */
	.header-container .dropdown-menu ul {
		display: -webkit-flex;
		/* Для старых версий Safari */
		display: flex;
		-webkit-flex-direction: column;
		flex-direction: column;
		gap: 15px;
	}

	.header-container .dropdown-menu ul li {
		text-align: center;
		/* Центрируем текст */
	}

	.header-container .dropdown-menu ul li a {
		font-size: 18px !important;
		text-decoration: none;
		color: #333;
	}

	.header-container .dropdown-menu ul li a:hover {
		color: #00A8FF;
	}

	/* Основной контент */
	.index_page {
		flex-direction: column !important;
		gap: 15px !important;
	}

	.index_page .left_side {
		order: 2 !important;
		/* Перемещаем left_side после center_side */
	}

	.index_page .center_side {
		order: 1 !important;
		/* Центральный блок остаётся первым */
	}

	.index_page .right_side {
		order: 3 !important;
		/* Правый блок остаётся последним */
	}

	.index_page .left_side,
	.index_page .center_side,
	.index_page .right_side {
		width: 100% !important;
		margin: 0 !important;
	}

	.index_page .role_list {
		padding: 10px !important;
	}

	.index_page .profession-list {
		font-size: 14px !important;
	}

	.index_page .show-more-btn {
		font-size: 14px !important;
	}

	.index_page .main_title h1 {
		font-size: 24px !important;
		/* Уменьшаем заголовок */
	}

	.index_page .main_title h3 {
		font-size: 16px !important;
		/* Уменьшаем подзаголовок */
	}

	.index_page .announcement_block {
		max-height: none !important;
		padding-right: 0 !important;
	}

	.index_page .announcement_item {
		padding: 10px !important;
	}

	.index_page .announcement_item h3 {
		font-size: 18px !important;
		/* Уменьшаем заголовок новости */
	}

	.index_page .announcement_item p {
		font-size: 14px !important;
		/* Уменьшаем текст новости */
	}

	.index_page .announcement_item .date {
		font-size: 12px !important;
		/* Уменьшаем дату */
	}

	/* Футер */
	.footer {
		flex-direction: column !important;
		align-items: center !important;
		gap: 25px !important;
		padding: 26px !important;
		width: 100% !important;
	}

	.footer .docs_block {
		flex-direction: column !important;
		gap: 10px !important;
		text-align: center !important;
	}

	.footer .social {
		flex-direction: column !important;
		gap: 5px !important;
		text-align: center !important;
	}

	.footer .social p {
		margin: 0 !important;
	}

	.footer .social .tg {
		width: 30px !important;
	}

	/* Дополнительные стили для других блоков */
	.lk_page,
	.studio_page,
	.roles_page,
	.search_page {
		width: 100% !important;
		flex-direction: column !important;
		gap: 15px !important;

	}

	.lk_page .center_side,
	.studio_page .center_side,
	.roles_page .center_side,
	.search_page .center_side {
		width: 100% !important;
		align-items: center !important;
	}

	.lk_page .left_side,
	.studio_page .left_side,
	.roles_page .left_side,
	.search_page .left_side {
		width: 100% !important;
		margin: 0 !important;
	}

	.lk_page .right_side,
	.studio_page .right_side,
	.roles_page .right_side,
	.search_page .right_side {
		width: 100% !important;
		margin: 0 !important;
	}

	.projects_block {
		width: 100% !important;
		margin: 20px 0 !important;
		translate: 0 !important;
	}

	.projects_block .projects_posts ul {
		width: 100% !important;
		padding-right: 0 !important;
	}

	.projects_block .projects_posts li {
		width: 100% !important;
	}

	.projects_block .projects_posts select {
		width: 100% !important;
	}

	.project_create_inputs {
		flex-direction: column !important;
		gap: 10px !important;
	}

	.project_create_inputs input,
	.project_create_inputs select {
		width: 100% !important;
	}

}

@media (max-width: 768px) {

	/* Общие стили для мобильной версии страницы участника */
	.participant-page .container {
		width: 100% !important;
		padding: 0 10px;
	}

	.participant-page .lk_page {
		flex-direction: column !important;
		gap: 15px !important;
	}

	.participant-page .left_side,
	.participant-page .center_side,
	.participant-page .right_side {
		width: 100% !important;
		margin: 0 !important;
	}

	.participant-page .info-container {
		flex-direction: column !important;
		gap: 20px;
	}

	.participant-page .info-left,
	.participant-page .info-right {
		width: 100% !important;
	}

	.participant-page .info-right input,
	.participant-page .info-right select {
		width: 100% !important;
	}

	.participant-page .row_blocks {
		flex-direction: column !important;
	}

	.participant-page .column_blocks {
		width: 100% !important;
	}

	.participant-page .block {
		margin-bottom: 0px;
	}

	.participant-page .block h2 {
		font-size: 18px !important;
	}

	.participant-page .block input,
	.participant-page .block select,
	.participant-page .block textarea {
		width: 100% !important;
		font-size: 14px !important;
	}

	.participant-page .block textarea {
		height: 100px !important;
	}

	.participant-page .save_changes_participant {
		width: 100% !important;
		margin-top: 15px !important;
		margin-bottom: 15px !important;
	}

	.participant-page .projects_block {
		width: 100% !important;
		margin: 20px 0 !important;
		translate: 0 !important;
	}

	.participant-page .projects_posts ul {
		width: 100% !important;
		padding-right: 5px !important;
	}

	.participant-page .projects_posts li {
		width: 100% !important;
	}

	.participant-page .projects_posts select {
		width: 100% !important;
	}

	.participant-page .project_create_inputs {
		flex-direction: column !important;
		gap: 10px !important;
	}

	.participant-page .project_create_inputs input,
	.participant-page .project_create_inputs select {
		width: 100% !important;
	}

	.participant-page .save_changes_projects {
		width: 100% !important;
	}

	/* Жёсткая перестановка блоков с помощью order */
	.participant-page .center_side .block:nth-child(1) {
		order: 1;
		/* Основная информация */
	}

	.participant-page .left_side .block:nth-child(1) {
		order: 2;
		/* Статус */
	}

	.participant-page .left_side .block:nth-child(2) {
		order: 3;
		/* Личные качества */
	}

	.participant-page .left_side .block:nth-child(3) {
		order: 4;
		/* Навыки */
	}

	.participant-page .right_side .block:nth-child(1) {
		order: 5;
		/* Хобби */
	}

	.participant-page .right_side .block:nth-child(2) {
		order: 6;
		/* Владение программами */
	}

	.participant-page .center_side .block:nth-child(2) {
		order: 7;
		/* Дополнительно о себе */
	}

	.participant-page .center_side .block:nth-child(3) {
		order: 8;
		/* Шоурил */
	}

	.participant-page .center_side .block:nth-child(4) {
		order: 9;
		/* Создать проект */
	}

	.participant-page .center_side .block:nth-child(5) {
		order: 10;
		/* Фильмография */
	}

	/* Перемещение кнопки "Сохранить изменения" */
	.participant-page .right_side .block:nth-child(3) {
		order: 11;
		/* Кнопка "Сохранить изменения" */
	}

	.participant-page .labels_status {
		display: -webkit-flex;
		display: flex;
		justify-content: flex-start;
		width: 100%;
		gap: 20px;
		margin-right: 0 !important;
	}

	.info-right {
		label {
			display: -webkit-inline-flex;
			width: fit-content;
			display: inline-flex;
			align-items: center;
			gap: 10px;
		}
	}

	/* Стили для блока статуса */
	.participant-page .status_block label {
		display: -webkit-flex;
		/* Для старых версий Safari */
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.participant-page .status_block input[type="checkbox"] {
		vertical-align: middle;
		/* Выравниваем чекбокс по вертикали */
		width: 20px !important;
		height: 20px !important;
	}

	.participant-page .projects_block {
		.projects_posts {
			display: -webkit-flex;
			/* Для старых версий Safari */
			display: flex;
			gap: 25px;
			-webkit-flex-direction: column;
			flex-direction: column;
		}
	}

}


@media (max-width: 768px) {

	/* Общие стили для мобильной версии страницы вакансий */
	.vacancies_page .container {
		width: 100% !important;
		/* Контейнер занимает всю ширину */
		padding: 0 10px;
		/* Отступы внутри контейнера */
	}

	/* Центральный блок с вакансиями */
	.vacancies_page .vacancies_center {
		width: 100% !important;
		/* Центральный блок занимает всю ширину */
		padding: 0 10px;
		/* Отступы внутри блока */
	}

	.vacancies_page .vacancies_center .title_page {
		font-size: 28px !important;
		/* Уменьшаем размер заголовка */
		padding-bottom: 5px;
		/* Уменьшаем отступ под заголовком */
	}

	.vacancies_page .vacancy {
		width: 100% !important;
		/* Вакансия занимает всю ширину */
		margin-bottom: 20px;
		/* Отступ между вакансиями */
	}

	.vacancies_page .vacancy h2 {
		font-size: 20px !important;
		/* Уменьшаем размер заголовка вакансии */
		padding: 8px 15px !important;
		/* Уменьшаем отступы внутри заголовка */
	}

	.vacancies_page .vacancy .vacancy_descr {
		padding: 15px !important;
		/* Уменьшаем отступы внутри описания */
		font-size: 16px !important;
		/* Уменьшаем размер текста */
	}

	.vacancies_page .vacancy .vacancy_descr p {
		margin-bottom: 10px !important;
		/* Уменьшаем отступы между параграфами */
	}

	.vacancies_page .vacancy .vacancy_descr a {
		font-size: 16px !important;
		/* Уменьшаем размер ссылки */
	}

	/* Боковые блоки (левая и правая колонки) */
	.vacancies_page .left_side,
	.vacancies_page .right_side {
		display: none !important;
		/* Скрываем боковые колонки на мобильных устройствах */
	}
}

@media (max-width: 768px) {

	/* Общие стили для мобильной версии страницы поиска */
	.search_page {
		padding: 0 10px;
		/* Добавляем отступы по бокам */
	}

	.search_page h2 {
		font-size: 24px !important;
		/* Уменьшаем размер заголовка */
		margin-bottom: 20px !important;
		/* Уменьшаем отступ под заголовком */
	}

	.search_page h3 {
		font-size: 18px !important;
		/* Уменьшаем размер подзаголовков */
		margin-bottom: 10px !important;
		/* Уменьшаем отступ под подзаголовками */
	}

	/* Стили для списка должностей */
	.search_page ul {
		padding-left: 20px;
		/* Добавляем отступ для списка */
	}

	.search_page ul li {
		margin-bottom: 10px;
		/* Отступ между элементами списка */
	}

	.search_page ul li a {
		font-size: 16px;
		/* Уменьшаем размер текста ссылок */
	}

	/* Стили для участников */
	.participant_search {
		margin-bottom: 15px;
		/* Отступ между участниками */
	}

	.participant_search h4 a {
		font-size: 16px;
		/* Уменьшаем размер текста ссылок */
	}

	/* Стили для таблицы проектов */
	.table_search {
		width: calc(100% + 10px) !important;
		overflow-x: auto;
		/* Добавляем горизонтальную прокрутку для таблицы */
		display: block;
		/* Делаем таблицу блочным элементом */
	}

	.table_search th,
	.table_search td {
		font-size: 12px;
		/* Уменьшаем размер текста в таблице */
		padding: 8px;
		/* Уменьшаем отступы внутри ячеек */
	}

	.table_search td {
		font-size: 12px;
		/* Уменьшаем размер текста в таблице */
		padding: 0px;
		/* Уменьшаем отступы внутри ячеек */
		vertical-align: top;
		padding-top: 5px;
		text-align: center;
	}

	.table_search th {
		white-space: nowrap;
		/* Запрещаем перенос текста в заголовках */
	}

	.table_search td ul {
		padding-left: 0px;
		/* Добавляем отступ для списка участников */
	}

	.table_search td ul li {
		margin-bottom: 5px;
		/* Отступ между участниками */
	}

	.table_search td ul li strong {
		font-size: 12px;
		/* Уменьшаем размер текста ролей */
	}

	.table_search td ul li a {
		font-size: 14px;
		/* Уменьшаем размер текста ссылок */
	}

	/* Стили для сообщения "Ничего не найдено" */
	.search_page p {
		font-size: 16px;
		/* Уменьшаем размер текста */
		text-align: center;
		/* Центрируем текст */
	}
}

@media (max-width: 768px) {
	.user_profile {
		display: -webkit-flex;
		/* Для старых версий Safari */
		display: flex;
		-webkit-flex-direction: column;
		flex-direction: column;
		/* Изменяем направление на колонку */
		align-items: center;
		/* Центрируем элементы */
		padding: 0 10px;
		/* Добавляем отступы по бокам */
		gap: 15px;
	}

	.user_profile .new_container {
		width: 100%;
		display: -webkit-flex;
		/* Для старых версий Safari */
		display: flex;
		-webkit-flex-direction: column;
		flex-direction: column;
		gap: 20px;
	}

	.user_profile .left_side,
	.user_profile .center_side,
	.user_profile .right_side {
		width: 100% !important;
		margin: 0 !important;
	}

	.user_profile .user_block_title h1 {
		font-size: 32px !important;
		/* Уменьшаем размер заголовка */
		margin-bottom: 10px !important;
	}

	.user_profile .user_block_title .user_block_title_descr {
		font-size: 20px !important;
		/* Уменьшаем размер подзаголовка */
	}

	.user_profile .film_project_part h2 {
		font-size: 20px !important;
		/* Уменьшаем размер заголовка фильмографии */
		padding: 10px !important;
		margin-bottom: 20px !important;
	}

	.user_profile .film_project_part .project-item {
		margin-bottom: 15px !important;
	}

	.user_profile .film_project_part .project-item .project_title {
		font-size: 16px !important;
		/* Уменьшаем размер заголовка проекта */
	}

	.user_profile .film_project_part .project-item p {
		font-size: 14px !important;
		/* Уменьшаем размер текста проекта */
		padding-left: 20px !important;
	}

	.user_profile .user_block {
		padding: 15px !important;
		/* Уменьшаем отступы внутри блоков */
	}

	.user_profile .user_block h3 {
		font-size: 16px !important;
		/* Уменьшаем размер заголовков */
	}

	.user_profile .user_block li {
		font-size: 14px !important;
		/* Уменьшаем размер текста в списках */
	}

	.user_profile .user_block_offers .offers_title {
		font-size: 14px !important;
		/* Уменьшаем размер заголовка предложений */
	}

	.user_profile .user_block_offers p {
		font-size: 14px !important;
		/* Уменьшаем размер текста контактов */
	}

	.user_profile .right_side {
		width: 100% !important;
	}

	.user_profile .center_side {
		width: 100% !important;
	}

	.user_profile .flex-container {
		justify-content: center;
		align-items: center !important;
		gap: 25px !important;
	}

	.user_profile .flex-container img {
		max-width: 130px !important;
		height: 130px !important;
	}

	.user_profile .list_programm {
		gap: 10px !important;
		/* Уменьшаем отступы между программами */
	}

	.user_profile .list_programm li {
		font-size: 14px !important;
		/* Уменьшаем размер текста программ */
	}

	.user_profile .user_block.showreel {
		width: 100% !important;
		/* Шоурил занимает всю ширину */
		font-size: 16px !important;
	}

	.user_profile .user_block.showreel+p a {
		font-size: 16px !important;
		/* Уменьшаем размер ссылки на шоурил */
	}

	.user_profile .user_block_flex {
		flex-direction: column !important;
		/* Располагаем элементы в колонку */
		align-items: center !important;
		gap: 10px !important;
	}

	.user_profile .profile-photo img {
		width: 120px !important;
		/* Уменьшаем размер фото */
		height: 120px !important;
	}

	.user_profile .user_right_info {
		text-align: center !important;
		/* Центрируем текст */
	}

	.user_profile .user_right_info strong {
		font-size: 14px !important;
		/* Уменьшаем размер текста */
	}

	.user_profile .user_right_info p {
		font-size: 14px !important;
		/* Уменьшаем размер текста */
	}

	.user_profile .user_block h2 {
		font-size: 18px !important;
		/* Уменьшаем размер заголовков */
	}

	.user_profile .user_block p {
		font-size: 14px !important;
		/* Уменьшаем размер текста */
	}

	.user_profile .user_block ul {
		padding-left: 0px !important;
		/* Добавляем отступ для списков */
	}

	.user_profile .user_block ul li {
		margin-bottom: 5px !important;
		/* Уменьшаем отступ между элементами списка */
	}
}

@media (max-width: 768px) {

	.studio_profile_page .left_side,
	.studio_profile_page .right_side {
		display: none;
	}

	.studio_profile_page .center_side {
		width: 100%;

		h1 {
			font-size: 25px;
		}

		h2 {
			font-size: 20px;
		}
	}
}

@media (max-width: 768px) {
	.admin_page .container {
		width: 100% !important;
		padding: 0 10px;
	}

	.admin_page h1 {
		font-size: 24px !important;
		margin-bottom: 20px !important;
	}

	.admin_page .uch_nab {
		flex-direction: column !important;
		gap: 0px !important;
	}

	.admin_page .view_block {
		width: 100% !important;
		margin-bottom: 0px !important;
	}

	.admin_page .collapsible-header {
		font-size: 18px !important;
		padding: 10px !important;
		cursor: pointer;
		display: -webkit-flex;
		/* Для старых версий Safari */
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.admin_page .collapsible-header img {
		width: 16px !important;
		height: 16px !important;
	}

	.admin_page .collapsible-content {
		display: none;
		width: 100%;
		padding: 10px !important;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 10px;
		margin-top: 10px;
	}

	.admin_page .collapsible-content.active {
		display: block;
	}

	.admin_page .before_table {
		max-height: 300px !important;
		overflow-y: auto !important;
		padding-right: 10px !important;
	}

	.admin_page table {
		width: 100% !important;
		border-spacing: 5px !important;
	}

	.admin_page table th,
	.admin_page table td {
		font-size: 12px !important;
		padding: 8px !important;
		text-align: center !important;
	}

	.admin_page table th {
		background: rgba(255, 255, 255, 0.3) !important;
		border-radius: 5px !important;
	}

	.admin_page table td {
		background: rgba(255, 255, 255, 0.1) !important;
		border-radius: 5px !important;
	}

	.admin_page table img {
		width: 50px !important;
		height: 50px !important;
	}

	.admin_page .form_announsments,
	.admin_page .form_news {
		width: 100% !important;
		padding: 10px !important;
		flex-direction: column !important;
	}

	.admin_page .form_announsments label,
	.admin_page .form_news label {
		font-size: 14px !important;
		margin-bottom: 5px !important;
	}

	.admin_page .form_announsments input,
	.admin_page .form_news input,
	.admin_page .form_announsments textarea,
	.admin_page .form_news textarea {
		width: 100% !important;
		font-size: 14px !important;
		padding: 8px !important;
		margin-bottom: 10px !important;
	}

	.admin_page .form_announsments button,
	.admin_page .form_news button {
		width: 100% !important;
		padding: 10px !important;
		font-size: 14px !important;
	}

	.admin_page .hidden {
		display: none !important;
	}

	.admin_page .collapsible-content table {
		width: 100% !important;
	}

	.admin_page .collapsible-content table th,
	.admin_page .collapsible-content table td {
		font-size: 12px !important;
		padding: 8px !important;
		vertical-align: top;
	}

	.admin_page .collapsible-content table img {
		width: 50px !important;
		height: 50px !important;
	}

	.admin_page .collapsible-content table a {
		font-size: 12px !important;
	}

	.admin_page .create_announce,
	.admin_page .create_news {
		font-size: 20px;

		img {
			width: 20px;
		}
	}

	.admin_page .collapsible-content table td:nth-child(5),
	.admin_page .collapsible-content table td:nth-child(6) {
		/* display: none;  */
		white-space: nowrap;
	}

	.admin_page .collapsible-content table th:nth-child(5),
	.admin_page .collapsible-content table th:nth-child(6) {
		/* display: none;  */
		white-space: nowrap;
	}
}

@media (max-width: 768px) {

	.roles_page .participants-list {
		font-size: 12px;
	}

	.participants-names .participant-row {
		width: fit-content !important;
	}

	.roles_page h1 {
		font-size: 22px;
	}

	.roles_page #filtersContainer {
		background: rgba(255, 255, 255, 0.5);
		height: 45px;
		z-index: 2;
		padding: 10px;
		border-radius: 10px;
		width: auto;
		overflow: hidden;
		color: #fff;
		transition: all 0.1s ease-out;
	}

	.roles_page #filtersContainer.collapsed {
		background: rgba(255, 255, 255, 1);
		min-height: fit-content;
		width: max-content;
		position: absolute;
		top: 0;
		left: 0;
		color: #000;
	}

	.roles_page #filtersContainer h3 {
		margin-bottom: 20px;
		cursor: pointer;
		user-select: none;
		text-align: center;
	}

	#filtersForm {
		min-height: fit-content;
		background: rgba(255, 255, 255, 1);
		overflow: scroll;
	}

	.roles_page {

		button[type="submit"],
		button[type="button"] {
			border: 1px solid black;
		}

		.participants-names .participant-row {
			width: 100% !important;
		}
	}
}

@media (max-width: 768px) {
	.studio_page {
		.sidebar {
			margin: 0 auto;
		}

		.before_table {
			width: 100%;
			overflow: auto;
			-webkit-overflow-scrolling: touch;
			/* Для плавного скролла на iOS */
		}
	}
}


@media (max-width: 768px) {

	/* Стили для страницы добавления вакансии */
	.new_vacancy {
		flex-direction: column !important;
		/* Всё в колонку */
		gap: 15px !important;

		/* Отступы между элементами */
		.add_new_vacancy {
			flex-direction: column;
		}
	}

	.new_vacancy .left_side {
		width: 100% !important;
		/* Левая колонка занимает всю ширину */
		margin: 0 !important;
		/* Убираем отступы */
		align-items: center;
	}

	.new_vacancy .center_side {
		width: 100% !important;
		/* Центральная колонка занимает всю ширину */
		align-items: center !important;
		/* Центрируем элементы */
	}

	.new_vacancy .sidebar {
		text-align: center;
		/* Центрируем текст */
	}

	.new_vacancy .form_left_vacancy {
		width: 100% !important;
		/* Форма занимает всю ширину */
		padding: 15px !important;
		/* Уменьшаем отступы */
	}

	.new_vacancy .form-group {
		flex-direction: column !important;
		/* Элементы формы в колонку */
		gap: 10px !important;
		/* Отступы между элементами */
	}

	.new_vacancy .form-group label {
		width: 100% !important;
		/* Заголовки занимают всю ширину */
		text-align: left;
		/* Выравниваем текст по левому краю */
	}

	.new_vacancy .form-group input,
	.new_vacancy .form-group select,
	.new_vacancy .form-group textarea {
		width: 100% !important;
		/* Поля ввода занимают всю ширину */
	}

	.new_vacancy .form-dates {
		flex-direction: column !important;
		/* Даты в колонку */
		gap: 10px !important;
		/* Отступы между элементами */
	}

	.new_vacancy .form-dates input {
		width: 100% !important;
		/* Поля ввода дат занимают всю ширину */
	}

	.new_vacancy .checkbox-container {
		position: static !important;
		/* Убираем абсолютное позиционирование */
		margin-top: 15px;
		/* Отступ сверху */
	}

	.new_vacancy .submit-btn {
		position: static !important;
		/* Убираем абсолютное позиционирование */
		width: 100% !important;
		/* Кнопка занимает всю ширину */
		margin-top: 15px;
		/* Отступ сверху */
	}

	/* Стили для блока фильтров */
	.new_vacancy .roles_page #filtersContainer {
		width: 100% !important;
		/* Блок фильтров занимает всю ширину */
		position: static !important;
		/* Убираем абсолютное позиционирование */
		height: auto !important;
		/* Автоматическая высота */
		margin-bottom: 15px;
		/* Отступ снизу */
	}

	.new_vacancy .roles_page #filtersContainer.collapsed {
		height: auto !important;
		/* Автоматическая высота в свернутом состоянии */
	}

	.new_vacancy .roles_page #filtersForm {
		max-height: none !important;
		/* Убираем ограничение высоты */
		overflow: visible !important;
		/* Убираем скролл */
	}

	.new_vacancy .roles_page .participants-list {
		flex-direction: column !important;
		/* Участники в колонку */
		gap: 10px !important;
		/* Отступы между элементами */
	}

	.new_vacancy .roles_page .participant-row {
		width: 100% !important;
		/* Строки занимают всю ширину */
	}

	/* Стили для блока с результатами */
	.new_vacancy .results-container {
		width: 100% !important;
		/* Блок занимает всю ширину */
	}

	.new_vacancy .results-container h1 {
		font-size: 24px !important;
		/* Уменьшаем размер заголовка */
	}

	.new_vacancy .results-container .participants-list {
		flex-direction: column !important;
		/* Участники в колонку */
		gap: 10px !important;
		/* Отступы между элементами */
	}

	.new_vacancy .results-container .participants-names,
	.new_vacancy .results-container .participants-circles,
	.new_vacancy .results-container .participants-dates {
		width: 100% !important;
		/* Блоки занимают всю ширину */
	}

	.new_vacancy .results-container .participant-row {
		width: 100% !important;
		/* Строки занимают всю ширину */
	}

	/* Стили для блока с вакансиями */
	.new_vacancy .vacancies_center {
		width: 100% !important;
		/* Блок занимает всю ширину */
	}

	.new_vacancy .vacancies_center .title_page {
		font-size: 24px !important;
		/* Уменьшаем размер заголовка */
	}

	.new_vacancy .vacancies_center .vacancy {
		width: 100% !important;
		/* Вакансия занимает всю ширину */
	}

	.new_vacancy .vacancies_center .vacancy h2 {
		font-size: 20px !important;
		/* Уменьшаем размер заголовка вакансии */
	}

	.new_vacancy .vacancies_center .vacancy .vacancy_descr {
		font-size: 16px !important;
		/* Уменьшаем размер текста */
	}
}

@media (max-width: 768px) {
	.register_block form .form_fields {
		flex-direction: column !important;
		/* Все элементы в колонку */
		height: auto !important;
		/* Автоматическая высота */
		gap: 10px !important;
		/* Отступы между элементами */
	}

	.register_block form .form_fields input,
	.register_block form .form_fields select {
		width: 100% !important;
		/* Поля ввода занимают всю ширину */
	}

	.register_block form .form_fields [type="checkbox"] {
		width: 15px !important;
	}

	.register_block form .form_fields #company_field {
		width: 100% !important;
		/* Поле для названия компании занимает всю ширину */
	}

	.register_block form .terms-checkbox {
		width: 100% !important;
		position: static !important;
		margin: 10px 0 0 0;
	}

	.register_block form button[name="register"] {
		margin-top: 0px !important;
		/* Отступ для кнопки регистрации */
		width: 100% !important;
		/* Кнопка занимает всю ширину */
	}
}


.tariffs .center_side {
	align-items: flex-start;
}

.not_pay {
	font-size: 25px;
}

.tariffs_btn {
	text-decoration: none !important;
}


/* Стили для секции тарифов */
.tariff-section {
	color: white;
	margin-bottom: 40px;
	text-align: center;
}

.tariff-section h2 {
	font-size: 28px;

	margin-bottom: 10px;
}

.tariff-section p {
	font-size: 16px;

}

/* Стили для карточек тарифов */
.tariff-plans {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 40px;
	width: 100%;
}

.tariff-plan {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
	width: 270px;
	height: 208px;
	background: rgba(255, 255, 255, 0.3);
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.disc_old-price {
	display: -webkit-flex;
	/* Для старых версий Safari */
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.tariff-plan:hover {

	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.tariff-plan h3 {
	font-size: 24px;
	margin-bottom: 15px;
	font-size: 25px;
	color: black;
	font-weight: 400;
	margin-bottom: 15px;
}

.tariff-plan .price {
	position: relative;
	font-size: 28px;
	font-weight: 500;
	color: #FF0000;
	margin-bottom: 10px;
}

.tariff-plan .discount {
	font-size: 20px;
	background: linear-gradient(#7FD61D, #59B911);
	padding: 5px;
	border-radius: 5px;
	color: black;
	font-weight: bold;
	margin-bottom: 15px;
}

.tariff-plan .btn {
	padding: 10px 20px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid #FFFFFF;
	color: #323232;
	font-size: 25px;
	font-weight: 500;
	border-radius: 10px;
	margin-top: auto;
}

.tariff-plan .price::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-image: url('data:image/svg+xml;utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%0A%20%20%20%20%3Cline%20x1%3D%220%22%20y1%3D%22100%25%22%20x2%3D%22100%25%22%20y2%3D%220%22%20stroke%3D%22%23F00%22%20stroke-width%3D%222%22%2F%3E%0A%3C%2Fsvg%3E');
	background-size: cover;
}


.benefits-section {
	margin-bottom: 40px;
}

.benefits-section h2 {
	font-size: 24px;
	width: fit-content;
	text-transform: uppercase;
	padding: 5px 10px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 10px;
	margin-bottom: 15px;
}

.benefits-section ul {
	list-style-type: disc;
	margin-left: 20px;

}

.benefits-section ul li {
	margin-bottom: 10px;
}

.how-it-works-section {
	margin-bottom: 40px;
}

.how-it-works-section h2 {
	font-size: 24px;
	width: fit-content;
	text-transform: uppercase;
	padding: 5px 10px;
	background: rgba(255, 255, 255, 0.3);
	/* border: 1px solid white; */
	border-radius: 10px;
	margin-bottom: 15px;
}

.how-it-works-section ol {
	list-style-type: decimal;
	margin-left: 20px;
}

.how-it-works-section ol li {
	margin-bottom: 10px;
}

/* Стили для кнопки CTA */
.cta-section {
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 40px;
}

.cta-section p {
	font-size: 18px;
	margin-bottom: 5px;
}


/* Стили для ошибок */
.error-message {
	color: #ff4444;
	font-size: 14px;
	margin: 5px 0;
	padding: 8px 12px;
	border-radius: 4px;
	background-color: #fff5f5;
	border: 1px solid #ffcccc;
}

.general-error {
	margin-bottom: 15px;
	text-align: center;
}

.field-error {
	font-size: 12px;
	margin-top: 5px;
	padding: 5px 0;
	border: none;
	background: none;
}

.form-group {
	position: relative;
}

input.error {
	border-color: #ff4444 !important;
	background-color: #fff5f5;
}

/* Автофокус на поле с ошибкой */
input.error:first-of-type {
	animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4);
	}

	70% {
		box-shadow: 0 0 0 6px rgba(255, 68, 68, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(255, 68, 68, 0);
	}
}

/* Стили для модального окна уведомления */
.modal.feedback-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.feedback-modal .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.modal.feedback-modal .close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
    background: none;
    border: none;
}

.modal.feedback-modal .close-modal:hover {
    color: #000;
}

.modal.feedback-modal .modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.modal.feedback-modal .modal-body h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 24px;
}

.modal.feedback-modal .modal-body p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.5;
    font-size: 16px;
}

.modal.feedback-modal .modal-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    min-width: 100px;
}

.modal.feedback-modal .modal-btn:hover {
    background-color: #45a049;
}

.recoveryPasswordButton {
	margin: 10px 10px 0 5px;
	text-align: right;
}

.recoveryPasswordButton a {
	color: #000;
	font-size: 0.8em;
}

.restorePasswordForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.restorePasswordForm > div {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.restorePasswordForm h2 {
    margin-bottom: 30px;
	color: #000;
	font-weight: 400;
	text-align: center;
}

.restorePasswordForm form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.restorePasswordForm form div {
    text-align: center;
	color: #000;
}

.restorePasswordFormInput {
	margin-bottom: 20px;
}

.restorePasswordForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.restorePasswordForm input[type="text"],
.restorePasswordForm input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    box-sizing: border-box;
}

.restorePasswordFormSubmit {
    button {
        padding: 14px 77px;
        text-transform: uppercase;
        background: #F6F6F7;
        border: 1px solid black;
        border-radius: 10px;
        cursor: pointer;
    }
}

.restorePasswordFormSubmit div {
	margin: 10px 0;
}

.restorePasswordForm button:hover {
    background-color: #0056b3;
}

.restorePasswordFormSubmit button:hover {
	color: white;
	background: linear-gradient(90deg, #00A8FF 0%, #006599 50%, #00A8FF 100%);
	border: 1px solid transparent;
}

.restorePasswordFormLabes {
	color: #000;
}

.restorePasswordFormInput input {
        background: transparent;
        -webkit-backdrop-filter: blur(0px);
        backdrop-filter: blur(0px);
        border-radius: 10px;
        border: 1px solid #B4B4B4;
        min-height: 35px;
        outline: none;
        width: 324px;
        font-size: 15px;
        color: black;
        padding: 13px 10px;
        margin: 10px;
}

#save-password-btn {
	padding: 10px 70px;
	text-transform: uppercase;
	background: #F6F6F7;
	border: 1px solid black;
	border-radius: 10px;
	cursor: pointer;
}

#save-password-btn:hover {
	color: #fff;
	background: linear-gradient(90deg, #00A8FF 0%, #006599 50%, #00A8FF 100%);
	border: 1px solid transparent;
}

.final-success div {
	margin: 10px 0 25px 0;
}

.restorePasswordFormRedirectHomePage {
	padding: 25px 0 0 0;
}