.pre-header {
	background-color: #A67F5E;
	color: #fff;
	font-size: 13px;
	padding: 12px;
	position: fixed;
	top: 0;
	width: 100%;
	left: 0;
	right: 0;
	z-index: 999;
}
.pre-header__in {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
	font-size: 16px;
}
.pre-header__welcome {
	color: #fff;
}
.pre-header__logout {
	color: #fff;
	text-decoration: underline;
	transition: opacity .2s;
}
.pre-header__logout:hover {
	color: #fff;
	opacity: .75;
}

header.user-logged {
		top: 44px;
}

/* Login Modal */
.login-modal {
	padding: 0.5rem;
}
.login-modal__title {
	font-size: 1.25rem;
}
.login-modal__body {
	padding-top: 0.5rem;
}
.login-modal__register-link {
	margin-top: 1.25rem;
	font-size: 14px;
	text-align: center;
}
.login-modal__register-link a {
	color: #A67F5E;
	text-decoration: underline;
}
.login-modal__register-link a:hover {
	opacity: .75;
}

/* Download form */
.download_form .section_in.user-logged {
		max-width: 1024px;
		min-height: 40vh;
		display: flex;
		align-items: center;
		margin:  0 auto;
		justify-content: center;
}

/* Materials — pulsanti disabilitati per utenti non loggati */
.btn--disabled,
.btn_v2--disabled {
	opacity: .5;
	pointer-events: none;
	cursor: default;
}
.materials-login-link {
	color: #A67F5E;
	text-decoration: underline;
	font-size: 16px;
}
.materials-login-link:hover {
	opacity: .75;
	color: #A67F5E;
}

.login-modal__title, .login-modal__register-link {
		font-size: 16px;
}

/* Allinea input[type=text] e input[type=password] allo stile di tel/email Gravity Forms */
.gform_wrapper.gravity-theme input[type=text],
.gform_wrapper.gravity-theme input[type=password] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-clip: padding-box;
	background-color: transparent;
	border: none;
	-webkit-box-shadow: inset 0 -1px 0 0 #000;
	box-shadow: inset 0 -1px 0 0 #000;
	color: #000;
	display: block;
	font-family: GT-Sectra, sans-serif;
	font-size: 1.6rem !important;
	font-weight: 300;
	padding: 8px 0 !important;
	-webkit-transition: -webkit-box-shadow .3s ease;
	transition: -webkit-box-shadow .3s ease;
	transition: box-shadow .3s ease;
	transition: box-shadow .3s ease, -webkit-box-shadow .3s ease;
	width: 100%;
}