@charset "utf-8";

/* RESET CSS
============================== */
*{
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
html, body, div, span,
header, footer, section, article, aside, menu, nav,
h1, h2, h3, h4, h5, h6,
p, ol, ul, li, a, strong, b, i, s, address, sub, sup,
form, label,
iframe, embed, audio{
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
input,
button,
select{
	width: fit-content;
	width: -moz-fit-content;
	margin: 0;
	padding: 0;
	display: inline-block;
	font-family: 'MessinaSans', Helvetica, Arial, sans-serif;
	font-size: var(--fm);
	font-weight: 400;
	line-height: inherit;
	color: inherit;
	background: none;
	background-color: transparent;
	border: none;
	-webkit-border-radius: 0;
		-moz-border-radius: 0;
			  border-radius: 0;
	-webkit-appearance: none;
		-moz-appearance: none;
			  appearance: none;
}
input{
	-webkit-user-select: text;
		-moz-user-select: text;
		 -ms-user-select: text;
			  user-select: text;
}
input[type="checkbox"],
button,
select{
	cursor: pointer;
}
input:disabled,
button:disabled,
select:disabled{
	color: var(--cdisabled);
	pointer-events: none;
	opacity: 1;
}
label{
	cursor: text;
}
::-webkit-input-placeholder,
::placeholder{
	font-family: inherit;
	line-height: inherit !important;
	color: #8f8f8f;
	opacity: 1;
}
.desktop :hover::-webkit-input-placeholder,
.desktop :hover::placeholder,
.mobile :active::-webkit-input-placeholder,
.mobile :active::placeholder{
	color: var(--ctext);
}
.desktop :not(:hover)::-webkit-input-placeholder,
.desktop :not(:hover)::placeholder{
	transition: color .3s ease;
}
/* ::-webkit-scrollbar{
	display: none;
} */
:focus{
	outline: none !important;
}
:focus::-ms-value{
	color: inherit;
	background-color: none;
}
::-moz-focus-inner{
	border: none !important;
}
