/*
↗
codesandbox color #151515
*/

*
{
	margin:0;
	padding:0;
}

html, body
{
	scroll-behavior: smooth;  /*effet smooth sur toutes les ancres*/
	box-sizing:border-box;
}

body
{
	text-decoration:none;
	background-color:#111111;
	box-sizing: border-box;
	width:100%;
	font-family: 'Nunito',sans-serif;
	display: flex;
	justify-content: center;
	border-bottom: 5px solid #cc6200;
}

.innerbox
{
	width:700px;
	box-sizing: border-box;
}

.header
{
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	padding:20px;
	margin-top:50px;
}

.header h2
{
	font-family: 'Nunito',sans-serif;
	font-weight:800;
	font-size:40px;
	color:white;
}

.header h3
{
	font-family: 'Nunito',sans-serif;
	font-weight:600;
	font-size:20px;
	color:grey;
}

.sectiontitle
{
	width: 100%;
	text-align: left;
	margin-bottom: 10px;
	box-sizing: border-box;
}

.sectiontitle h2
{
	color: white;
    font-family: 'Work Sans',sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 5px;
	display: flex;
	align-items: center;
}

.sectiontitle h2 img
{
	width:20px;
	margin-right:5px;
}

.totaltaux
{
	width:100%;
	box-sizing: border-box;
	margin-top: 50px;
	padding:20px;
}

.totaltauxjauge
{
	width: 100%;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    background-color: #111111;
    position: relative;
    margin-bottom: 10px;
}

.totaltauxjaugebar
{
	height: 100%;
    width: 0%;
    box-sizing: border-box;
    background-color: #0088cc;
}

.totaltauxjaugebar h2
{
	position: absolute;
	width:100%;
	height:100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color:white;
	font-size:20px;
	font-weight:400;
	opacity: 0.8;
	font-family: 'Work Sans',sans-serif;
}

.listbox
{
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    overflow-x: auto;
}

.listbox table
{
    width: 100%;
	max-width: 100%;
    background-color: #252525;
    border-collapse: collapse;
	color:white;
	overflow: hidden;
	border-radius:10px;
	border:1px solid #515151;
	box-sizing: border-box;
	font-family: 'Work Sans';
}

.listbox th, td
{
    padding: 10px;
	padding-left:12px;
	padding-right:12px;
    border: 1px solid #515151;
    text-align: left;
	font-weight:500;
	font-size:15px;
	box-sizing: border-box;
	text-align: center;
}

.listbox th
{
	background-color: #cc6200;
    color: white;
    border-color: rgb(255 255 255 / 25%);
    font-weight: 500;
}

.listbox td img
{
	width: 20px;
    display: inline-block;
    filter: invert(1);
    margin-right: 5px;
	box-sizing: border-box;
	user-select: none;
	vertical-align: middle;
}

.sourcebox
{
	width: 100%;
	box-sizing: border-box;
	padding:20px;
}

.source
{
	width: 100%;
	height:100px;
	box-sizing: border-box;
	border-radius:10px;
	background-color: #252525;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:20px;
}

.source a
{
	text-decoration: none;
	box-sizing: border-box;
	height:100%;
}

.source img
{
	height:100%;
	user-select: none;
	pointer-events: none;
}


.meteofiablefooter
{
	width: 100%;
	margin-top: 30px;
	box-sizing: border-box;
	text-align: center;
	padding:20px;
}

.meteofiablefooter p
{
	color:grey;
	font-size:14px;
	font-family: 'Work Sans',sans-serif;
	font-weight:400;
	margin-bottom: 5px;
}


.footerbox
{
	width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 20px;
    /* padding-top: 50px; */
    /* padding-bottom: 50px; */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background-color: #262626;
    border-radius: 15px 15px 0px 0px;
}

.footer
{
    width: 800px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap:30px;
}

.footerelement img
{
    width:150px;
    box-sizing: border-box;
    user-select: none;
    pointer-events: none;
    margin-bottom: 10px;
}

.footerelement p
{
	font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: grey;
    margin-top: 5px;
}

.footerelement h2
{
	font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #dadada;
    margin-bottom: 10px;
}

.footerelement a
{
	font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: grey;
    text-decoration: none;
    display: flex;
    margin-bottom: 10px;
}

.footerelement a:hover
{
    text-decoration: underline;
}

.footerelementlogo h2
{
	font-family: 'Zilla Slab', sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: #f2f2f2;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin: 0;
}

.footerelementlogo h2 img
{
	width: 20px;
    user-select: none;
    pointer-events: none;
	margin:0;
    margin-right: 5px;
}


@media screen and (max-width: 700px) {
	.innerbox {
	  width: 100%;
	}
	.listbox td img{
		margin-right: 0;
		margin-bottom: 5px;
	}
	.listbox td img:last-child{
		margin-bottom: 0;
	}
	.footer
    {
        width: 100%;
        grid-template-columns: 1fr;
        text-align: center;
    }
	.footerelementlogo h2
	{
		justify-content: center;
	}
    .footerelement a
    {
        justify-content: center;
    }
  }