/*
	GENERIC
		Normalize
 */
*,
*::before,
*::after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
img,
picture {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	// display: inline-block;
}
// picture {
// 	overflow: hidden;
// }
// picture > img {
// 	width: 100%;
// 	max-height: none;
// }
// .objectfit picture > img {
// 	width: 100%;
// 	max-height: 100%;
// 	object-fit: cover;
// 	object-position: 50% 50%;
// }
video {
	max-width: 100%;
	max-height: 100%;
}
button,
input,
optgroup,
select,
textarea {
	border: 0 none;
	border-radius: 0;
	-webkit-appearance: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
input[type=checkbox] {
	-webkit-appearance: checkbox;
}
input[type=radio] {
	-webkit-appearance: radio;
}
input:-webkit-autofill {
	-webkit-text-fill-color: black;
	-webkit-box-shadow: 0 0 0px 1000px white inset;
}
textarea {
	resize: vertical;
}
*:focus{
	outline: none;
}
.touchevents a[href^="tel:"] {
	text-decoration: underline !important;
}
p > a,
li > a {
	border-bottom: 1px solid inherit;
}
ol,
ul {
	padding: 0 0 0 1em;
	list-style: disc outside none;
}
nav ul {
	list-style: none inside none;
	margin: 0;
	padding: 0;
}
/* Both are required to set input file size */
input[type="file"] {
	width: 100%;
	max-width: 100%;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}
/* Prevent iOS text resize */
html {
	-webkit-text-size-adjust: 100%;
}
/* Text selection */
::-moz-selection {
	background: lightGrey;
	text-shadow: none;
}
::selection {
	background: lightGrey;
	text-shadow: none;
}
.clearfix::before,
.clearfix::after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}
/* Inline svg */
svg {
	background-color: transparent;
	fill: currentColor;
	max-width: 100%;
	max-height: 100%;
}
/* Phone links */
a[href^="tel:"] {
	color: currentColor;
	text-decoration: none !important;
}
.no-touchevents a[href^="tel:"] {
	color: inherit;
	cursor: default;
}