html {
	box-sizing: border-box;
}

*{
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #ffffff;
	color:$color__tchatbooster_bleuf;
	@include font-size(1.125); // 20
	font-family: $font__main;
	font-weight: 300;
	font-optical-sizing: auto;

	@media screen and (max-width: $max_size_big_tablette){
		@include font-size(1);
	}
}


h1,h2, h3{
	font-family:$font__title;
}

hr {
	background-color: $color__background-hr;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

@import "lists";

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

@import "tables";


a, div, input {
    -webkit-tap-highlight-color: transparent;
 }

