input[type=checkbox]{
	-webkit-appearance: checkbox;
}
input[type=radio]{
	-webkit-appearance: radio;
}
html,body{
	margin: 0;
	padding: 0;
    width: 100%;
    min-height: 100vh;
	-webkit-text-size-adjust:none;
}
*,::before,::after{
	-webkit-appearance: none;
	border-radius:0px;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important; 
    -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important; 
    outline: none !important;
    box-sizing:border-box;
	transition-property:none;
	transition-duration: .35s;
	transition-timing-function: ease-out;
}
img{
	max-width: 100%;
	height: auto;
}
#lng_chooser{
    display: flex;
}
.lng_chooser{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.lng_chooser svg{
    width: 32px;
    height: 24px;
    margin: 0 2px;
}
.lng_chooser svg *{
    transition-property: fill;
}
.lng_chooser:not(:hover):not(.lng_on)  svg *:not(.white_flag){
    fill:rgba(24,24,24,0.5);
    transition-property: fill;
}
.lng_chooser .lng_name{
    margin: 0 2px 0 0;
}
.no_wrap{
    white-space:nowrap;
}
.infos-green,.infos-red{
	display:block;
	float: left;
	width: 100%;
	margin:0 0 10px 0;
	padding:5px 10px;
	text-align: center;
	color:#ffffff;
	border-radius: 5px;
	list-style-type: none;
}
.infos-green{
	background-color:#007700;
}
.infos-red{
	background-color:#e2001a;
}
#fallback svg{
    min-width: 200px;
    min-height: 200px;
    fill:var(--color);
}
#error404_title h1{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#error404_title svg{
    min-width: 50px;
    min-height: 50px;
    margin-right:10px; 
    fill:var(--color);
}
.btn_add_to_home{
	display: none;
	position: fixed;
	z-index: 9999;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(var(--rgb),0.8);
}
.btn_add_to_home_in{
	position: fixed;
	top: 50%;
	left: 50%;
	max-width: 100%;
	width: 300px;
	padding: 10px;
	transform-origin: 50%,50%;
	transform: translate(-50%,-50%);
	background:#fff;
	border-radius: 5px;
}
.btn_add_to_home_in h1{
	display: flex;
	width: 100%;
	align-items: center;
	color:var(--color);
	font-size: 19px;
}
.btn_add_to_home_in h1 svg{
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	margin: 0 10px 0 0;
	fill:var(--color);
}
.btn_add_to_home_in p{
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
}
.btn_add_to_home_in p span{
	width: 49%;
	padding: 15px;
	background:var(--color);
	color:#fff;
	border-radius: 5px;
	text-transform: uppercase;
	text-align: center;
	transition-property: background;
}
.btn_add_to_home_in p span:active{
	background:var(--colorhover);
}