.protected-download-form-modal {
	display: none;
	inset: 0;
	position: fixed;
	padding: 60px 20px 20px;
	overflow: auto;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.65);
}

.protected-download-form-modal.visible {
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 767px), (max-height: 900px) {
	.protected-download-form-modal.visible {
		align-items: flex-start;
	}
}

.close-protected-download-form-modal {
	background: none;
	border: 0;
	cursor: pointer;
	display: inline-flex;
	padding: 5px;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	margin-left: auto;
}

.protected-download-form {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: #fff;
	width: 100%;
	max-width: 600px;
	padding: 25px !important;
}

.protected-download-form .message {
	font-weight: 600;
	display: none;
	color: green;
}

.protected-download-form .local-data-message {
	font-size: 15px;
	line-height: 1.3;
	font-weight: 600;
	display: none;
}

.protected-download-form .save-data-checkbox-wrap,
.protected-download-form .privacy-checkbox-wrap {
	display: grid;
	align-items: flex-start;
	grid-template-columns: auto 1fr;
	gap: 15px;
	font-size: 17px;
	line-height: 1.3;
}

.protected-download-form label {
	display: block;
	margin-bottom: 25px;
	width: 100%;
}
.protected-download-form input[type="text"],
.protected-download-form input[type="email"] {
	margin-top: 5px;
	width: 100%;
	border-radius: 5px;
}

.protected-download-form .invalid {
	border: 1px solid red;
}

.toggle-protected-download-form,
.submit-download-form {
	transition: 0.3s;
	display: inline-block;
	border: 0;
}

.submit-download-form:disabled {
	cursor: not-allowed;
	opacity: 0.25;
	background: #4f5f73;
}

.submit-download-form::before {
	content: none;
}
