* {
	margin: 0;
	padding: 0;
}

:root {
  --color-background-menu: #BEF56E;
  --color-background-body: #e9f7f3;
  --color-background-page: white;
  --color-background-header: #012a3e;
  --color-text: #2a2a2a;
  
 
}

body {
	line-height: 1.3em;
	font-size: 12pt;
	color:  var(--color-text);
	clear: both;
	background: var(--color-background-body);
	height: 100vh;
	display: grid;
	grid-template-rows: auto 1fr auto;
	overflow: scroll;
}

body,input {
	font-family: "Open Sans", sans-serif;
}

br.clearfix {
	clear: both;
}

a {
	text-decoration: none;
}

h1,h2,h3,h4 {
	font-weight: normal;
	font-family: "Open Sans", sans-serif;
	color: var(--color-text);
	margin-bottom: 1em;
}

h1 {
	font-size: 1.75em;
	text-align: center;
}

h2  {
	font-weight: bold;
	font-style: italic;
	font-size: 1.5em;
	margin-top: 0.5em;
	margin-bottom: 0.8em;
	margin-left: 1em;
}

h3 {
	font-weight: bold;
	font-size: 1.4em;
	margin-top: 0.5em;
	margin-bottom: 0.8em;
	margin-left: 1em;
}

h4 {
	font-style: italic;
	font-size: 1.1em;
	margin-top: 1em;
	margin-bottom: 0.2em;
	margin-left: 1em;
}

p {
	margin-bottom: 0.6em;
}

.container {
  display: flex;
}

.page {
	background: var(--color-background-page);
	width: 100%;
	max-width: 480px;
	position: relative;
	overflow: auto;
	background-color: white;
	margin: 0 auto 0 auto;
}

.content {
	padding: 2px 4px;
	overflow: auto;
}

.header {
	background: var(--color-background-header);
}

.logo-text {
	
}

.avatar {
	width: 48px;
	height: 48px;
	border-radius: 24px;
}

.avatar-mini {
	width: 18px;
	height: 18px;
	border-radius: 12px;
	margin-right: 6px;
}

.rent-table {
	margin: 5px 10px 10px 10px;
	border: 3px solid;
	border-radius: 6px;
	display: flex;
	height: 60px;
	box-shadow: inset 0px 10px 20px 2px rgba(0, 0, 0, 0.25);
}

.rent-table:hover {
	background: lightgreen;
}

.rent-table-div {
	border-radius: 10px; 
}

.rent-table-pic {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	height: 64px;
}

.rent-table-text {
	font-size: 28px;
	text-align: center;
	padding-top: 20px;
	padding-left: 10px;
}

.button-regular {
	font-size: 18px;
}

.button-regular {
	border: 1px solid;
	background: transparent;
	cursor:pointer;
	margin-left: 6px;
	padding: 0 2px 0 2px;
}

.button-regular:hover {
	background: lightgreen;
}

select {
	margin: 4px;
	font-size: 18px;
	background-color: lightgreen;
	border: 1px solid;
}

@media (min-width: 240px){
	.header {
		height: 64px;
		display: flex;
		justify-content: space-between;
		position: relative;
	}
	
	.footer {
		display: none;
	}
	.wrapper {
		width: 100%;
		display: flex;
		position: relative;
		margin: 0 auto 0 auto;
		overflow: hidden;
	}	
	.logo {
		display: flex;
	}
	.icon-image {
		margin-right: 6px;
	}
	.logo-image {
		margin-left: 15px;
	}
	.logo-text {
		margin-top: 20px;
		margin-left:12px;
		font-size: 28px;
		color: white;
	}
	
   .mobile-nav {
		background: var(--color-background-menu);
		margin-top: auto;
		height: 48px;
		width: 100%;
		display: flex;
		justify-content: space-around;
	}
	
	.bloc-icon {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0 5px;
	}
	.bloc-icon-active {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0 5px;
		background-color: var(--color-secondsub);
	}

}

