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

body {
	font-family: "TikTok Sans", sans-serif;
	background: #F3F4F6;
	color: #1C293B;
}

input:focus,
select:focus {
	outline: none;
}

.container {
	width: 100%;
	max-width: 1740px;
	padding: 0 90px;
	margin: 0 auto;
}

.header {
	padding: 12px 0;
	border-bottom: 1px solid #E5E7EB;
}

.header .container {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
	justify-content: space-between;
	width: 100%;
}

.logo-link {
	display: flex;
}

.logo {
	width: auto;
	max-width: 416px;
}

.auth-form-wrapper {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	padding: 24px;
	gap: 20px;
	border-radius: 40px;
	margin: 63px auto 0 auto;
	width: 1154px;
	background: #fff;
}

.auth-bg {
	min-width: 520px;
	width: 520px;
	height: 100%;
	min-height: 772px;
	object-fit: cover;
	display: block;
}

.auth-form {
	padding: 48px 24px;
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 16px;
}

.auth-header {
	text-align: center;
}

.auth-header h3 {
	text-align: center;
	font-weight: 500;
	font-size: 32px;
	line-height: 90%;
	letter-spacing: -4%;
	margin-bottom: 8px;
}

.auth-desc {
	font-weight: 400;
	font-size: 16px;
	line-height: 21px;
	letter-spacing: -2%;
	text-align: center;
}

.tabs {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	padding: 4px;
	border-radius: 12px;
	background: #E5E7EB;
	width: 100%;
}

.tabs .tab {
	width: 100%;
	padding: 12px;
	color: #384252;
	text-align: center;
	border: none;
	background: none;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -2%;
	cursor: pointer;
	border-radius: 8px;
}

.tabs .tab.active,
.tabs .tab:hover {
	background: #fff;
}

.one-form {
	display: none;
}

.one-form.active {
	display: block;
	width: 100%;
}

.one-form form {
	display: flex;
	align-items: stretch;
	flex-direction: column;
	gap: 16px;
}

.form-row label {
	color: #11181C;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -2%;
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 12px;
}

.form-row label:after {
	content: '*';
	color: #E5484D;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: -0.6%;
	margin-left: 2px;
}

.form-row input {
	width: 100%;
	background: #fff;
	padding: 16px;
	border-radius: 8px;
	border: 1px solid #D0D5DC;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	letter-spacing: -2%;
	color: #11181C;
}

.one-form button[type="submit"] {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	height: 60px;
	padding: 24px;
	width: 100%;
	border-radius: 8px;
	background: linear-gradient(89.5deg, #AFC5D4 0.43%, #124970 122.29%);
	color: #fff;
	border: none;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	text-align: center;
	margin-top: 16px;
	cursor: pointer;
}

.one-form button[type="submit"]:hover {
	opacity: 0.85;
}

.error {
	color: red;
}

.success {
	color: green;
}

.user-info {
	padding: 10px 8px;
	background: #fff;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	border-radius: 8px;
}

.user-info-avatar {
	width: 32px;
	height: 32px;
	line-height: 32px;
	border-radius: 50%;
	color: #fff;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0px;
	text-align: center;
	vertical-align: middle;
	background: #124970;
}

.user-info-name {
	max-width: 80px;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #4B5563;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	letter-spacing: -4%;
	margin-right: 14px;
}

.logout-btn {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: #fff;
	border: 1px solid #D7DBDF;
	border-radius: 4px;
}

.logout-btn:hover {
	opacity: 0.85;
}

.logout-btn img {
	width: 16px;
	height: 16px;
	object-fit: contain;
	margin: auto;
	display: block;
}

.breadcrumbs {
	margin: 24px 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 3px;
}

.breadcrumbs a,
.breadcrumbs span {
	color: #1C293B;
	opacity: 0.4;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
}

.loader {
	border: 3px solid #f3f3f3;
	border-top: 3px solid #1a73e8;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	margin: 0 auto 10px auto;
}

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

.admin-block-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.filter {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 19px;
}

.filter h3 {
	font-weight: 500;
	font-size: 32px;
	line-height: 29px;
	letter-spacing: -4%;
	background: linear-gradient(102.03deg, #232F40 50.02%, #5C7AA6 98.49%);
	background-clip: text;
	color: transparent;
}

.types-filter {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	padding: 4px;
	border-radius: 12px;
	background: #E5E7EB;
	width: fit-content;
}

.one-type {
	width: fit-content;
	padding: 12px 16px;
	color: #384252;
	text-align: center;
	border: none;
	background: none;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -2%;
	cursor: pointer;
	border-radius: 8px;
}

.one-type.selected,
.one-type:hover {
	background: #fff;
}

.search-box {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;
	position: relative;
}

.search-box input[type="text"] {
	border: 1px solid #E5E7EB;
	background: #FFFFFF;
	border-radius: 8px;
	padding: 12px 16px 12px 44px;
	position: relative;
	height: 48px;
}

.search-box:before {
	content: '';
	width: 16px;
	height: 16px;
	background: url('img/search.svg') center center / contain no-repeat;
	position: absolute;
	left: 16px;
	z-index: 1;
}

.add-user-btn {
	padding: 14px 12px;
	background: #124970;
	border-radius: 8px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 6px;
	height: 48px;
	border: none;
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: -2%;
	cursor: pointer;
}

.add-user-btn:hover {
	background: #0E3A5A;
}

.add-user-btn:before {
	content: '';
	background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMjAnIGhlaWdodD0nMjAnIHZpZXdCb3g9JzAgMCAyMCAyMCcgZmlsbD0nbm9uZScgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48cGF0aCBmaWxsLXJ1bGU9J2V2ZW5vZGQnIGNsaXAtcnVsZT0nZXZlbm9kZCcgZD0nTTEwLjAwMDIgMy4zMzMzNEMxMC40NjA0IDMuMzMzMzQgMTAuODMzNSAzLjcwNjQ0IDEwLjgzMzUgNC4xNjY2OFY5LjE2NjY4SDE1LjgzMzVDMTYuMjkzNyA5LjE2NjY4IDE2LjY2NjggOS41Mzk3NyAxNi42NjY4IDEwQzE2LjY2NjggMTAuNDYwMiAxNi4yOTM3IDEwLjgzMzMgMTUuODMzNSAxMC44MzMzSDEwLjgzMzVWMTUuODMzM0MxMC44MzM1IDE2LjI5MzYgMTAuNDYwNCAxNi42NjY3IDEwLjAwMDIgMTYuNjY2N0M5LjUzOTkzIDE2LjY2NjcgOS4xNjY4MyAxNi4yOTM2IDkuMTY2ODMgMTUuODMzM1YxMC44MzMzSDQuMTY2ODNDMy43MDY1OSAxMC44MzMzIDMuMzMzNSAxMC40NjAyIDMuMzMzNSAxMEMzLjMzMzUgOS41Mzk3NyAzLjcwNjU5IDkuMTY2NjggNC4xNjY4MyA5LjE2NjY4SDkuMTY2ODNWNC4xNjY2OEM5LjE2NjgzIDMuNzA2NDQgOS41Mzk5MyAzLjMzMzM0IDEwLjAwMDIgMy4zMzMzNFonIGZpbGw9J3doaXRlJy8+PC9zdmc+") center center / contain no-repeat;
	width: 20px;
	min-width: 20px;
	height: 20px;
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	overflow-y: scroll;
}

.modal-content {
	background: white;
	margin: auto;
	padding: 35px 32px;
	width: 600px;
	border-radius: 16px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.modal-content h3 {
	color: #11181C;
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	letter-spacing: -2%;
	margin-bottom: 12px;
}

.upload-area {
	border: 2px dashed #ddd;
	padding: 20px;
	text-align: center;
	margin-top: 20px;
}

.progress-bar {
	width: 100%;
	height: 20px;
	background: #f0f0f0;
	border-radius: 10px;
	overflow: hidden;
	margin-top: 10px;
}

.progress {
	width: 0%;
	height: 100%;
	background: #27ae60;
	transition: width 0.3s;
}

.cancel-upload {
	background: #e74c3c;
	color: white;
	border: none;
	padding: 5px 10px;
	border-radius: 3px;
	cursor: pointer;
	margin-top: 10px;
}

#userForm {
	padding-top: 12px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 16px;
}

#userForm .form-row label {
	display: block;
	margin-bottom: 12px;
	color: #11181C;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -1.1%;
}

#userForm .form-row input, 
#userForm .form-row select {
	padding: 12px 16px;
	background: #fff;
	border: 1px solid #D7DBDF;
	border-radius: 6px;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -1.1%;
	vertical-align: middle;
	width: 100%;
}

.form-buttons {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	padding-top: 12px;
}

.form-buttons button {
	padding: 10px 12px;
	border-radius: 8px;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: -1%;
	box-sizing: border-box;
	border: none;
	cursor: pointer;
}

.form-buttons button:hover {
	opacity: 0.85;
}

.form-buttons button[type="submit"] {
	background: linear-gradient(89.5deg, #AFC5D4 0.43%, #124970 122.29%);
	color: #fff;
}

.form-buttons button[type="button"] {
	border: 1px solid #D7DBDF;
	background: none;
	color: #687076;
}

.alert {
	position: fixed;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	width: 456px;
	min-width: 456px;
	min-height: 59px;
	background: #fff;
	padding: 16px 20px;
	border-radius: 10px;
	padding-right: 70px;
	box-shadow: 0px 8px 18px 0px rgba(0, 0, 0, 0.149);
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	vertical-align: middle;
	display: none;
}

.alert:after {
	content: '';
	width: 24px;
	min-width: 24px;
	height: 24px;
	background: url('img/close.svg') center center / contain no-repeat;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 16px;
}

.alert.alert-success {
	border-left: 4px solid #30A46C;
}

.alert.alert-error {
	border-left: 4px solid #a42f2f;
}

.alert.alert-success:before {
	width: 16px;
	min-width: 16px;
	height: 16px;
	content: '';
	background: url('img/check-circle-solid.svg') center center / contain no-repeat;
}

.users-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 12px 20px;
}

.one-user {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
	background: #fff;
	border-radius: 16px;
	padding: 16px;
	position: relative;
}

.one-user:hover {
	box-shadow: 0px 12px 24px 0px rgba(56, 66, 82, 0.149);
}

.one-user:hover .one-user-btns {
	display: flex;
}

.one-user-btns {
	display: none;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	position: absolute;
	right: 16px;
	top: 16px;
}

.one-user-btns button {
	width: 32px;
	min-width: 32px;
	height: 32px;
	background: none;
	border: 1px solid #D7DBDF;
	text-align: center;
	display: block;
	border-radius: 6px;
	cursor: pointer;
}

.one-user-btns button img {
	width: 16px;
	height: 16px;
	margin: auto;
	line-height: 16px;
	display: block;
}

.one-user-btns button:hover {
	opacity: 0.85;
}

.one-user-tags {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	margin-bottom: 4px;
}

.one-user-id {
	background: #124970;
	border-radius: 4px;
	padding: 4px 6px;
	color: #fff;
	font-weight: 500;
	font-size: 12px;
	line-height: 12px;
}

.one-user-category {
	background: #E5E7EB;
	border-radius: 4px;
	padding: 4px 6px;
	color: #4B5563;
	font-weight: 400;
	font-size: 12px;
	line-height: 12px;
}

.one-user-name {
	color: #384252;
	font-weight: 500;
	font-size: 20px;
	line-height: 22px;
	cursor: pointer;
}

.one-user-data span {
	color: #6B7280;
	font-weight: 400;
	font-size: 14px;
	line-height: 14px;
	display: inline-block;
}

span.delimeter {
	width: 14px;
	height: 14px;
	line-height: 14px;
	display: inline-block;
	background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nNCcgaGVpZ2h0PSc0JyB2aWV3Qm94PScwIDAgNCA0JyBmaWxsPSdub25lJyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnPjxjaXJjbGUgY3g9JzInIGN5PScyJyByPScyJyBmaWxsPScjOUNBM0IwJy8+PC9zdmc+") center center / 4px 4px no-repeat;
	margin: 0 4px;
	position: relative;
	top: 3px;
}

.confirm-delete-modal {
	max-width: 400px;
	width: 100%;
	text-align: left;
	padding: 32px !important;
}

.confirm-delete-header {
	margin-bottom: 12px;
}

.confirm-delete-title {
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: #384252;
	margin: 3px 0;
}

.confirm-delete-description {
	padding: 0 14px 10px 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: #384252;
}

.confirm-delete-buttons {
	display: flex;
	flex-direction: row;
	gap: 8px;
	margin-top: 12px;
}

.confirm-delete-btn {
	padding: 10px 12px;
	border-radius: 8px;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	width: fit-content;
}

.confirm-delete-yes {
	background: #D52A2A;
	color: white;
}

.confirm-delete-yes:hover {
	opacity: 0.85;
}

.confirm-delete-no {
	background: #fff;
	color: #687076;
	border: 1px solid #D7DBDF;
}

.confirm-delete-no:hover {
	opacity: 0.85;
}

.user-card-header {
	padding: 24px;
	background: #fff;
	border-radius: 24px;
	position: relative;
	margin-bottom: 8px;
}

.user-card-info {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
}

.user-card-info .one-user-name {
	cursor: default;
	font-size: 32px;
	line-height: 35px;
	background: linear-gradient(102.03deg, #232F40 50.02%, #5C7AA6 98.49%);
	color: transparent;
	background-clip: text;
}

.user-card-buttons {
	position: absolute;
	right: 20px;
	bottom: 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.user-card-buttons button {
	display: flex;
	flex-direction: row;
	align-items: center;
	height: 48px;
	padding: 0 12px;
	gap: 6px;
	border: 1px solid #E5E7EB;
	background: none;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	vertical-align: middle;
	border-radius: 8px;
	cursor: pointer;
}

.user-card-buttons button img {
	width: 20px;
	min-width: 20px;
	height: 20px;
}

.user-card-buttons button:hover {
	opacity: 0.7;
}

.user-card-buttons .delete-btn {
	color: #D52A2A;
}

.user-card-buttons .upload-btn {
	background: #F3F4F6;
	position: relative;
	margin-left: 25px;
}

.user-card-buttons .upload-btn:before {
	content: '';
	width: 1px;
	height: 48px;
	background: #E5E7EB;
	position: absolute;
	left: -18px;
	top: 0;
}

.upload-progress-modal {
	max-width: 456px;
	width: 100%;
	padding: 20px 24px !important;
	position: fixed !important;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%) !important;
	top: auto !important;
	right: auto !important;
	background: #fff !important;
	border-radius: 10px !important;
	box-shadow: 0px 8px 18px 0px rgba(0, 0, 0, 0.149);
	display: none;
	z-index: 2;
}

.upload-progress-modal.active {
	display: block;
}

.upload-progress-close {
	background: none;
	border: none;
	cursor: pointer;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.5;
	transition: 0.3s;
	padding: 0;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
}

.upload-progress-close:hover {
	opacity: 1;
}

.upload-progress-modal-content {
	width: calc(100% - 52px);
	position: relative;
	padding-left: 44px;
}

.upload-progress-modal-content:before {
	content: '';
	width: 32px;
	height: 32px;
	position: absolute;
	left: 0px;
	top: 4px;
	background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMzInIGhlaWdodD0nMzInIHZpZXdCb3g9JzAgMCAzMiAzMicgZmlsbD0nbm9uZScgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48cmVjdCB3aWR0aD0nMzInIGhlaWdodD0nMzInIHJ4PSc4JyBmaWxsPScjMTI0OTcwJy8+PHBhdGggZmlsbC1ydWxlPSdldmVub2RkJyBjbGlwLXJ1bGU9J2V2ZW5vZGQnIGQ9J00xNCAyMkMxMC42ODYzIDIyIDggMTkuMzEzNyA4IDE2QzggMTIuNjg2MyAxMC42ODYzIDEwIDE0IDEwQzE1Ljc4OTEgMTAgMTcuMzk1NCAxMC43ODMxIDE4LjQ5NDcgMTIuMDI1MkMxOC42NjA4IDEyLjAwODUgMTguODI5NCAxMiAxOSAxMkMyMS43NjE0IDEyIDI0IDE0LjIzODYgMjQgMTdDMjQgMTkuNzYxNCAyMS43NjE0IDIyIDE5IDIySDE0Wk0xMi44NjE5IDE3LjEzODFDMTMuMTIyMyAxNy4zOTg0IDEzLjU0NDQgMTcuMzk4NCAxMy44MDQ3IDE3LjEzODFMMTUuMzMzMyAxNS42MDk1TDE1LjMzMzMgMTkuMzMzM0MxNS4zMzMzIDE5LjcwMTUgMTUuNjMxOCAyMCAxNiAyMEMxNi4zNjgyIDIwIDE2LjY2NjcgMTkuNzAxNSAxNi42NjY3IDE5LjMzMzNMMTYuNjY2NyAxNS42MDk1TDE4LjE5NTMgMTcuMTM4MUMxOC40NTU2IDE3LjM5ODQgMTguODc3NyAxNy4zOTg0IDE5LjEzODEgMTcuMTM4MUMxOS4zOTg0IDE2Ljg3NzcgMTkuMzk4NCAxNi40NTU2IDE5LjEzODEgMTYuMTk1M0wxNi40NzE0IDEzLjUyODZDMTYuMjExMSAxMy4yNjgyIDE1Ljc4ODkgMTMuMjY4MiAxNS41Mjg2IDEzLjUyODZMMTIuODYxOSAxNi4xOTUzQzEyLjYwMTYgMTYuNDU1NiAxMi42MDE2IDE2Ljg3NzcgMTIuODYxOSAxNy4xMzgxWicgZmlsbD0nd2hpdGUnLz48L3N2Zz4=") center center / contain no-repeat;
}

.upload-progress-file {
	color: #11181C;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
}

.upload-progress-file-info {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
	color: #6B7280;
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
	vertical-align: middle;
	margin-bottom: 10px;
}

.upload-progress-bar-wrapper {
	width: 100%;
	height: 6px;
	background: #E5E7EB;
	border-radius: 4px;
	overflow: hidden;
}

.upload-progress-bar {
	width: 0%;
	height: 100%;
	background: #124970;
	border-radius: 4px;
	transition: width 0.3s ease;
}

.confirm-cancel-modal .confirm-delete-title {
	font-size: 18px;
}

.confirm-cancel-modal .confirm-delete-description {
	font-size: 14px;
	color: #6B7280;
	margin-top: 4px;
}

.user-files {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	justify-content: start;
	gap: 20px;
	padding: 24px;
	background: #fff;
	border-radius: 24px;
	margin-bottom: 24px;
}

@media (min-width: 1600px) { 
	.user-files {
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	}
}

.file-item-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 16px 24px 16px 16px;
	border-radius: 16px;
	transition: all 0.3s ease;
	position: relative;
	text-decoration: none;
	cursor: pointer;
}

.file-item-card:hover {
	background: #F3F4F6;
}

.file-icon-wrapper {
	width: 100%;
	height: 273px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.file-icon {
	width: 91px;
	height: 112px;
	object-fit: contain;
}

.file-name-card {
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	color: #384252;
	margin-bottom: 16px;
	word-break: break-all;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.file-meta-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
}

.file-date-card {
	font-weight: 400;
	font-size: 14px;
	color: #6B7280;
	line-height: 14px;
	position: relative;
	padding-right: 18px;
}

.file-date-card:after {
	content: '';
	display: block;
	width: 4px;
	height: 4px;
	right: 5px;
	top: 5px;
	background: #9CA3B0;
	border-radius: 50%;
	position: absolute;
}

.file-size-card {
	font-weight: 400;
	font-size: 14px;
	color: #6B7280;
	line-height: 14px;
}

.file-actions-card {
	gap: 8px;
	width: fit-content;
	justify-content: center;
	position: absolute;
	right: 16px;
	top: 16px;
	display: none;
}

.file-item-card:hover .file-actions-card {
	display: flex;
}

.download-btn {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 6px;
	border: 1px solid #D0D5DC;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	text-decoration: none;
}

.download-btn:hover {
	opacity: 0.85;
}

.download-btn img {
	width: 16px;
	height: 16px;
}

.delete-file-btn {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FEF2F2;
	border: 1px solid #FECACA;
	border-radius: 6px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.delete-file-btn:hover {
	background: #FEE2E2;
}

.delete-file-btn img {
	width: 16px;
	height: 16px;
}

.no-files {
	grid-column: 1 / -1;
	text-align: center;
	padding: 40px;
	color: #6B7280;
	background: #F9FAFB;
	border-radius: 12px;
	font-size: 16px;
}

.cabinet-title {
	color: #0F1E2D;
	font-weight: 500;
	font-size: 32px;
	line-height: 32px;
	vertical-align: middle;
	margin-bottom: 24px;
}

.pdf-wrapper {
	display: flex;
	gap: 20px;
	margin-bottom: 24px;
	min-height: 600px;
}

.pdf-sidebar {
	width: 419px;
	flex-shrink: 0;
	padding: 24px;
	border-radius: 16px;
	background: #fff;
}

.pdf-file-name {
	font-weight: 500;
	font-size: 32px;
	line-height: 33px;
	background: linear-gradient(102.03deg, #232F40 50.02%, #5C7AA6 98.49%);
	color: transparent;
	background-clip: text;
	word-break: break-word;
	margin-bottom: 16px;
}

.pdf-file-meta {
	display: flex;
	flex-direction: row;
	gap: 4px;
	margin-bottom: 16px;
}

.pdf-file-meta-item {
	color: #6B7280;
	font-size: 14px;
	line-height: 14px;
}

.pdf-file-meta .delimeter {
	top: 0;
}

.pdf-download-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 6px 10px;
	background: none;
	color: #687076;
	border-radius: 4px;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	border: 1px solid #D0D5DC;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	width: fit-content;
}

.pdf-download-btn:hover {
	opacity: 0.85;
}

.pdf-download-btn img {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.pdf-viewer-main {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	background: #E5E7EB;
	border-radius: 16px;
}

.pdf-viewer-toolbar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	background: #fff;
	border-radius: 16px 16px 0 0;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.pdf-toolbar-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid #D7DBDF;
	border-radius: 6px;
	background: #fff;
	color: #1C293B;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
}

.pdf-toolbar-btn:hover {
	background: #F3F4F6;
}

.pdf-toolbar-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.pdf-toolbar-btn svg {
	width: 16px;
	height: 16px;
}

.pdf-toolbar-divider {
	width: 1px;
	height: 28px;
	background: #D7DBDF;
	margin: 0 4px;
}

.pdf-toolbar-page-info {
	font-size: 14px;
	color: #6B7280;
	min-width: 100px;
	text-align: center;
}

.pdf-toolbar-zoom {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-left: auto;
}

.pdf-toolbar-zoom-level {
	font-size: 14px;
	color: #1C293B;
	min-width: 48px;
	text-align: center;
}

#pdf-container {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	background: #E5E7EB;
	border-radius: 0 0 16px 16px;
	padding: 20px;
	min-height: 500px;
	overflow: auto;
}

#pdf-container canvas {
	max-width: 100%;
	height: auto;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	border-radius: 4px;
	background: white;
}

.pdf-loading {
	text-align: center;
	padding: 80px 20px;
	color: #6B7280;
	font-size: 16px;
}

.pdf-loading .loader {
	margin: 0 auto 20px auto;
}

.pdf-error {
	text-align: center;
	padding: 80px 20px;
	color: #E5484D;
	font-size: 16px;
}

.pdf-error .error-icon {
	font-size: 48px;
	margin-bottom: 16px;
	display: block;
}

@media (max-width: 992px) {
	.pdf-wrapper {
		flex-direction: column;
		padding: 20px;
	}
	
	.pdf-sidebar {
		width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		padding: 16px;
		gap: 12px;
	}
	
	.pdf-file-icon {
		width: 56px;
		height: 68px;
	}
	
	.pdf-file-info {
		flex: 1;
		min-width: 200px;
	}
	
	.pdf-file-name {
		font-size: 16px;
		line-height: 23px;
	}
	
	.pdf-download-btn {
		width: auto;
		padding: 10px 16px;
		margin-top: 0;
	}
	
	.pdf-viewer-main {
		min-height: 400px;
	}
}

@media (max-width: 768px) {	
	.pdf-sidebar {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.pdf-file-icon {
		width: 48px;
		height: 58px;
	}
	
	.pdf-download-btn {
		width: 100%;
		justify-content: center;
	}
	
	.pdf-viewer-toolbar {
		padding: 6px 10px;
		gap: 4px;
	}
	
	.pdf-toolbar-btn {
		width: 32px;
		height: 32px;
	}
	
	.pdf-toolbar-page-info {
		font-size: 12px;
		min-width: 80px;
	}
	
	#pdf-container {
		padding: 12px;
		min-height: 300px;
	}
}

@media (max-width: 480px) {
	.pdf-toolbar-zoom {
		margin-left: 0;
	}
	
	.pdf-toolbar-btn {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}
	
	.pdf-toolbar-btn svg {
		width: 14px;
		height: 14px;
	}
}

@media (max-width: 1200px) {
	.container {
		padding: 0 40px;
	}
	.users-list {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}
	.user-files {
		grid-template-columns: 1fr 1fr 1fr 1fr;
		gap: 16px;
		padding: 20px;
	}
	.auth-form-wrapper {
		width: 90%;
		max-width: 900px;
		flex-direction: column;
		align-items: center;
	}
	.auth-bg {
		min-width: 100%;
		width: 100%;
		min-height: 300px;
		height: auto;
		max-height: 400px;
		object-fit: cover;
	}
	.auth-form {
		width: 100%;
		padding: 32px 20px;
	}
	.modal-content {
		width: 90%;
		max-width: 500px;
		padding: 30px 24px;
	}
}

@media (max-width: 992px) {
	.container {
		padding: 0 30px;
	}
	.admin-block-header {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}
	.filter {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}
	.filter h3 {
		font-size: 28px;
	}
	.types-filter {
		width: 100%;
		flex-wrap: wrap;
	}
	.one-type {
		flex: 1;
		min-width: calc(50% - 4px);
		text-align: center;
		padding: 10px 12px;
		font-size: 14px;
	}
	.search-box {
		width: 100%;
	}
	.search-box input[type="text"] {
		flex: 1;
	}
	.user-files {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 16px;
		padding: 20px;
	}
	.user-card-header {
		padding: 20px;
	}
	.user-card-buttons {
		position: static;
		flex-wrap: wrap;
		margin-top: 16px;
		justify-content: flex-start;
	}
	.user-card-buttons button {
		font-size: 13px;
		padding: 0 10px;
		height: 40px;
	}
	.user-card-buttons .upload-btn {
		margin-left: 0;
	}
	.user-card-buttons .upload-btn:before {
		display: none;
	}
	.user-card-info .one-user-name {
		font-size: 28px;
		line-height: 32px;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 16px;
	}
	.header .container {
		flex-wrap: wrap;
		gap: 12px;
	}
	.logo {
		max-width: 200px;
		height: auto;
	}
	.user-info {
		padding: 6px 8px;
		gap: 6px;
	}
	.user-info-name {
		max-width: 60px;
		font-size: 12px;
		margin-right: 8px;
	}
	.breadcrumbs {
		margin: 16px 0;
	}
	.breadcrumbs a,
	.breadcrumbs span {
		font-size: 12px;
	}
	.users-list {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.one-user {
		padding: 14px;
	}
	.one-user-name {
		font-size: 18px;
		line-height: 20px;
	}
	.one-user-data span {
		font-size: 12px;
	}
	.user-files {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
		padding: 16px;
	}
	.file-item-card {
		padding: 12px 12px 12px 12px;
	}
	.file-icon-wrapper {
		height: 140px;
	}
	.file-icon {
		width: 60px;
		height: 74px;
	}
	.file-name-card {
		font-size: 13px;
		line-height: 16px;
		margin-bottom: 8px;
		-webkit-line-clamp: 2;
	}
	.file-date-card {
		font-size: 11px;
		padding-right: 14px;
	}
	.file-date-card:after {
		right: 4px;
		top: 4px;
	}
	.file-size-card {
		font-size: 11px;
	}
	.file-actions-card {
		right: 8px;
		top: 8px;
		gap: 4px;
	}
	.download-btn {
		width: 28px;
		height: 28px;
	}
	.download-btn img {
		width: 14px;
		height: 14px;
	}
	.delete-file-btn {
		width: 28px;
		height: 28px;
	}
	.delete-file-btn img {
		width: 14px;
		height: 14px;
	}
	.user-card-header {
		padding: 16px;
	}
	.user-card-info .one-user-name {
		font-size: 24px;
		line-height: 28px;
	}
	.user-card-buttons {
		flex-wrap: wrap;
		gap: 6px;
	}
	.user-card-buttons button {
		font-size: 12px;
		padding: 0 10px;
		height: 36px;
		gap: 4px;
	}
	.user-card-buttons button img {
		width: 16px;
		min-width: 16px;
		height: 16px;
	}
	.auth-form-wrapper {
		padding: 16px;
		border-radius: 24px;
		margin: 32px auto 0 auto;
	}
	.auth-bg {
		min-height: 200px;
		max-height: 250px;
	}
	.auth-form {
		padding: 24px 16px;
	}
	.auth-header h3 {
		font-size: 24px;
	}
	.auth-desc {
		font-size: 14px;
	}
	.modal-content {
		width: 95%;
		padding: 24px 16px;
	}
	.modal-content h3 {
		font-size: 18px;
	}
	#userForm .form-row label {
		font-size: 14px;
		margin-bottom: 8px;
	}
	#userForm .form-row input,
	#userForm .form-row select {
		padding: 10px 12px;
		font-size: 14px;
	}
	.form-buttons button {
		padding: 8px 12px;
		font-size: 13px;
	}
	.alert {
		width: 90%;
		min-width: unset;
		padding: 14px 16px;
		padding-right: 56px;
		font-size: 13px;
		min-height: 50px;
		bottom: 12px;
	}
	.upload-progress-modal {
		width: 90%;
		min-width: unset;
		padding: 16px 20px !important;
		bottom: 12px;
	}
	.upload-progress-modal-content {
		width: calc(100% - 40px);
		padding-left: 36px;
	}
	.upload-progress-modal-content:before {
		width: 24px;
		height: 24px;
		top: 2px;
	}
	.upload-progress-file {
		font-size: 13px;
	}
	.upload-progress-file-info {
		font-size: 11px;
	}
	.confirm-delete-modal {
		max-width: 95%;
		padding: 24px !important;
	}
	.confirm-delete-title {
		font-size: 17px;
	}
	.confirm-delete-description {
		font-size: 14px;
	}
	.confirm-delete-btn {
		padding: 8px 12px;
		font-size: 13px;
	}
	.cabinet-title {
		font-size: 24px;
		line-height: 28px;
		margin-bottom: 16px;
	}
	.add-user-btn {
		padding: 10px 12px;
		height: 40px;
		font-size: 13px;
	}
	.add-user-btn:before {
		width: 16px;
		min-width: 16px;
		height: 16px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 12px;
	}
	.logo {
		max-width: 140px;
	}
	.user-info-avatar {
		width: 28px;
		height: 28px;
		line-height: 28px;
		font-size: 10px;
	}
	.user-info-name {
		max-width: 50px;
		font-size: 11px;
	}
	.logout-btn {
		width: 28px;
		height: 28px;
	}
	.logout-btn img {
		width: 14px;
		height: 14px;
	}
	.filter h3 {
		font-size: 22px;
	}
	.one-type {
		font-size: 12px;
		padding: 8px 10px;
		min-width: calc(50% - 4px);
	}
	.search-box input[type="text"] {
		height: 40px;
		padding: 8px 12px 8px 36px;
		font-size: 13px;
	}
	.search-box:before {
		width: 14px;
		height: 14px;
		left: 12px;
	}
	.user-files {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
		padding: 12px;
	}
	.file-icon-wrapper {
		height: 100px;
	}
	.file-icon {
		width: 48px;
		height: 60px;
	}
	.file-name-card {
		font-size: 12px;
		line-height: 14px;
		margin-bottom: 6px;
	}
	.file-date-card {
		font-size: 10px;
		padding-right: 12px;
	}
	.file-date-card:after {
		width: 3px;
		height: 3px;
		right: 3px;
		top: 3px;
	}
	.file-size-card {
		font-size: 10px;
	}
	.file-item-card {
		padding: 8px 8px 8px 8px;
	}
	.file-actions-card {
		right: 4px;
		top: 4px;
		gap: 3px;
	}
	.download-btn {
		width: 24px;
		height: 24px;
	}
	.download-btn img {
		width: 12px;
		height: 12px;
	}
	.delete-file-btn {
		width: 24px;
		height: 24px;
	}
	.delete-file-btn img {
		width: 12px;
		height: 12px;
	}
	.user-card-header {
		padding: 12px;
	}
	.user-card-info .one-user-name {
		font-size: 20px;
		line-height: 24px;
	}
	.user-card-buttons button {
		font-size: 11px;
		padding: 0 8px;
		height: 32px;
	}
	.user-card-buttons button img {
		width: 14px;
		min-width: 14px;
		height: 14px;
	}
	.one-user-tags {
		gap: 4px;
	}
	.one-user-id {
		font-size: 10px;
		padding: 3px 5px;
	}
	.one-user-category {
		font-size: 10px;
		padding: 3px 5px;
	}
	.one-user-name {
		font-size: 16px;
		line-height: 18px;
	}
	.one-user-data span {
		font-size: 11px;
	}
	.one-user-data span.delimeter {
		width: 10px;
		height: 10px;
		top: 2px;
	}
	.auth-form-wrapper {
		padding: 12px;
		border-radius: 16px;
		margin: 20px auto 0 auto;
	}
	.auth-bg {
		min-height: 150px;
		max-height: 180px;
	}
	.auth-form {
		padding: 16px 12px;
	}
	.auth-header h3 {
		font-size: 20px;
	}
	.auth-desc {
		font-size: 13px;
	}
	.form-row label {
		font-size: 13px;
		margin-bottom: 6px;
	}
	.form-row input {
		padding: 10px 12px;
		font-size: 14px;
	}
	.one-form button[type="submit"] {
		height: 48px;
		padding: 16px;
		font-size: 14px;
		margin-top: 12px;
	}
	.modal-content {
		padding: 20px 14px;
	}
	#userForm .form-row input,
	#userForm .form-row select {
		padding: 8px 10px;
		font-size: 13px;
	}
	#userForm .form-row label {
		font-size: 13px;
		margin-bottom: 6px;
	}
	.confirm-delete-modal {
		padding: 20px !important;
	}
	.confirm-delete-title {
		font-size: 16px;
	}
	.confirm-delete-description {
		font-size: 13px;
	}
	.confirm-delete-btn {
		padding: 6px 10px;
		font-size: 12px;
	}
	.alert {
		padding: 12px 14px;
		padding-right: 48px;
		font-size: 12px;
		min-height: 44px;
		bottom: 10px;
	}
	.upload-progress-modal {
		padding: 14px 16px !important;
	}
	.upload-progress-modal-content {
		padding-left: 32px;
	}
	.upload-progress-modal-content:before {
		width: 20px;
		height: 20px;
		top: 0;
	}
	.upload-progress-file {
		font-size: 12px;
	}
	.upload-progress-file-info {
		font-size: 10px;
	}
	.upload-progress-close {
		width: 20px;
		height: 20px;
		right: 12px;
	}
	.upload-progress-close svg {
		width: 14px;
		height: 14px;
	}
	.tabs .tab {
		font-size: 13px;
		padding: 10px;
	}
	.no-files {
		padding: 24px;
		font-size: 14px;
	}
}

@media (max-width: 360px) {
	.user-files {
		grid-template-columns: 1fr 1fr;
		gap: 6px;
		padding: 8px;
	}
	.file-icon-wrapper {
		height: 80px;
	}
	.file-icon {
		width: 40px;
		height: 50px;
	}
	.file-name-card {
		font-size: 10px;
		line-height: 12px;
	}
	.file-date-card {
		font-size: 9px;
		padding-right: 10px;
	}
	.file-size-card {
		font-size: 9px;
	}
	.one-user {
		padding: 10px;
	}
	.one-user-name {
		font-size: 14px;
	}
	.user-card-info .one-user-name {
		font-size: 18px;
		line-height: 22px;
	}
	.user-card-buttons button {
		font-size: 10px;
		padding: 0 6px;
		height: 28px;
	}
	.user-card-buttons button img {
		width: 12px;
		min-width: 12px;
		height: 12px;
	}
}

@media (max-width: 768px) {
	.mobile-menu-btn {
		display: block;
	}
	.header .container {
		flex-wrap: wrap;
	}
	.user-info {
		margin-left: auto;
	}
}

@media (max-width: 768px) {
	.one-user-btns button,
	.user-card-buttons button,
	.download-btn,
	.delete-file-btn,
	.add-user-btn {
		min-height: 44px;
		min-width: 44px;
	}
	.one-user:hover {
		box-shadow: none;
	}
	.one-user:active {
		box-shadow: 0px 12px 24px 0px rgba(56, 66, 82, 0.149);
	}
	.file-item-card:hover {
		background: transparent;
	}
	.file-item-card:active {
		background: #F3F4F6;
	}
	.file-item-card:hover .file-actions-card {
		display: none;
	}
	.file-item-card:active .file-actions-card {
		display: flex;
	}
	.one-type:hover {
		background: none;
	}
	.one-type.selected {
		background: #fff;
	}
	* {
		-webkit-tap-highlight-color: transparent;
	}
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}