

/* Start:/local/templates/custom/css/form.css?17507772695920*/
.form {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 50px 10px;
	background: linear-gradient(135deg, #111, #000, #111);
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.form_group-fields {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
	margin-bottom: 30px;
}

.form-control {
	position: relative;
	background-color: transparent !important;
	margin-bottom: 0;
}

.form-control label {
	display: flex !important;
	align-items: center;
	margin-bottom: 8px !important;
	line-height: 120%;
}

.form-control label svg {
	width: 16px;
	height: 16px;
	margin-right: 8px;
	fill: rgba(255, 255, 255, 0.5);
}

.form-control input,
.form-control select,
.form-control textarea {
	width: 100%;
	padding: 14px 16px 14px 40px !important;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(200, 200, 200, 0.1) !important;
	border-radius: 3px;
	color: #fff;
	font-size: 14px;
	transition: all 0.3s ease;
}

.form-control select,
.form-control textarea {
	height: 100px;
	min-height: 100px !important;
}

.form-control select {
	overflow-y: hidden;
	padding: 6px 5px;
}
.form-control select option {
	padding: 3px 5px;
}

.form-control .input-icon {
	position: absolute;
	left: 12px;
	top: 38px;
	width: 20px;
	height: 20px;
	fill: rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
}

.form-control input:focus,
.form-control textarea:focus {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
	outline: none;
}

.form-control input:focus + .input-icon {
	fill: rgba(255, 255, 255, 0.6);
}

/* Скрываем иконку при заполненном поле */
.form-control input:not(:placeholder-shown) + .input-icon {
	opacity: 0;
}

.form-control textarea {
	min-height: 120px;
	resize: vertical;
	padding-left: 16px;
}

.error_color {
	color: var(--error_color);
	margin-left: 4px;
}

.check-error,
.form-control label.error {
	color: var(--error_color) !important;
	font-size: 11px;
}
.check-error {
	margin-left: 15px;
}

.form-control label.error {
	display: block;
	position: absolute;
	top: 4px;
	right: 0;
	margin: 0 10px 6px;
}

input.error, textarea.error {
	border-color: var(--error_color);
}

.upload-container {
	margin-bottom: 30px;
}

.drop-multi-upload {
	background: rgba(255, 255, 255, 0.02);
	border: 2px dashed rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
}

.drop-multi-upload:hover {
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.03);
}

.drop-multi-upload label {
	display: block;
	margin-bottom: 15px;
	color: rgba(255, 255, 255, 0.7);
}

.drop-multi-upload .upload-icon {
	width: 40px;
	height: 40px;
	margin-bottom: 15px;
	fill: rgba(255, 255, 255, 0.5);
}

.upload-button {
	display: inline-flex;
	align-items: center;
	padding: 12px 24px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 10px 0;
}

.upload-button svg {
	width: 20px;
	height: 20px;
	margin-right: 8px;
	fill: currentColor;
}

.upload-button:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-1px);
}

.drop-multi-upload__label {
	display: block;
	margin-top: 10px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

.file-list {
	text-align: left;
	margin-top: 15px;
}

.file-list .file-item {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 6px;
	padding: 10px 16px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.file-list .file-item .file-name {
	flex: 1;
	margin-right: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: flex;
	align-items: center;
}

.file-list .file-item .file-name svg {
	width: 16px;
	height: 16px;
	margin-right: 8px;
	fill: rgba(255, 255, 255, 0.5);
}

.file-list .file-item .remove-file {
	color: #ff4d4d;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.file-list .file-item .remove-file svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.btn-wide {
	width: 100%;
	padding: 16px;
	background: linear-gradient(45deg, #1a1a1a, #333);
	border: none;
	border-radius: 8px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-wide svg {
	width: 20px;
	height: 20px;
	margin-right: 8px;
	fill: currentColor;
}

.btn-wide:hover {
	background: linear-gradient(45deg, #333, #1a1a1a);
	transform: translateY(-1px);
}

.error {
	border-color: color: var(--error_color) !important;
}

.thanks_block {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #1a1a1a;
	color: #fff;
	padding: 20px;
	z-index: 1000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	text-align: center;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
	display: none; /* Скрываем блок по умолчанию */
}

.thanks_block.show {
	transform: translateY(0);
	display: block;
}

/* снятие гораничения ширины надписи "Я согласен на обработку персональных данных" */
.auth-page .licence_block {
	width: auto !important;
}


@media (max-width: 767px) {
	.form {
		width: 100%;
		max-width: 100%;
		padding: 30px 20px !important;
	}
	.form-control {
		margin-bottom: 0 !important;
	}
	.form_group-fields {
		grid-template-columns: 1fr;
	}
	#main .onoff input[type="checkbox"] + label {
		display: block !important;
	}
}
/* End */
/* /local/templates/custom/css/form.css?17507772695920 */
