/* Стили для модалки отправки работы */

#modal-request .modal__content {
	max-width: 800px;
}

/* Нативный input file скрыт: выбор файла через label и drag-and-drop на зоне */
#modal-request #file-input-container {
	position: relative;
}

#modal-request #modal-file {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

#modal-request .modal__action-button {
	width: fit-content;
	background: var(--highlight-color);
	color: var(--accent-color);
}

@media screen and (max-width: 550px) {
	#modal-request .modal__action-button {
		width: 100%;
	}
}

