/* SmartExcel — модальное окно «Забрать бесплатно».
   Цвета продублированы из style.css темы (раздел 4 файла передачи дела),
   т.к. плагин не должен зависеть от переменных темы. */
.sefree-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 30, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100000;
	padding: 16px;
}
.sefree-overlay[hidden] {
	display: none;
}
body.sefree-locked {
	overflow: hidden;
}
.sefree-box {
	position: relative;
	background: #fff;
	border-radius: 12px;
	max-width: 400px;
	width: 100%;
	padding: 28px 24px 24px;
	box-shadow: 0 20px 60px rgba(0, 30, 0, 0.25);
	font-family: 'Golos Text', -apple-system, sans-serif;
	color: #001e00;
}
.sefree-close {
	position: absolute;
	top: 10px;
	right: 12px;
	border: none;
	background: none;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	color: #6b7a6b;
}
.sefree-title {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 700;
	color: #123f36;
}
.sefree-label {
	display: block;
	font-size: 13px;
	color: #6b7a6b;
	margin-bottom: 4px;
}
.sefree-input {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	border: 1px solid #e4e5e2;
	border-radius: 8px;
	font-size: 15px;
	margin-bottom: 14px;
}
.sefree-input:focus {
	outline: 2px solid #14a800;
	outline-offset: 1px;
}
.sefree-agree {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	color: #6b7a6b;
	margin-bottom: 16px;
	cursor: pointer;
}
.sefree-agree input {
	margin-top: 3px;
	flex: none;
}
.sefree-agree a {
	color: #108a00;
	text-decoration: underline;
}
.sefree-msg {
	font-size: 13px;
	margin: -8px 0 14px;
}
.sefree-msg-error {
	color: #c0392b;
}
.sefree-submit {
	display: inline-block;
	width: 100%;
	text-align: center;
	background: #14a800;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	box-sizing: border-box;
}
.sefree-submit:hover {
	background: #108a00;
}
.sefree-submit:disabled {
	opacity: 0.6;
	cursor: default;
}
.sefree-success {
	margin-top: 16px;
	text-align: center;
}
.sefree-success p {
	margin: 0 0 14px;
	color: #123f36;
}
