:root {
    --aiesh-blue:#48a0f9;
    --aiesh-blue-dark:#4652FF;
}


body
{
	font-family: 'Ubuntu', sans-serif;
	text-align: center;
	/*height:  100%;*/
}

.full_size
{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}

nav a, a:hover , #links_bar a, a:hover, footer a, a:hover, .link_style_none a, a:hover
{
	color: inherit;
	text-decoration: inherit;
}

table
{
	margin-left: auto;
  	margin-right: auto;
  	text-align: center; 	
}

table td,th
{
	padding: 10px;
}


footer
{
	padding-top: 30px;
	padding-bottom: 30px;
	margin-top: 30px;
	background-color: darkblue;
	color: white;
}

.left
{
	text-align: left;
}
.center
{
	text-align: center;
}
.center-height-menu
{
	  align-items: center;
	  display: flex;
}
.vcenter
{
	vertical-align: middle;
}
.blink {
  animation: blinker 2s ease-in-out infinite;
}

@keyframes blinker {
  50% {
    opacity: 0.8;
  }
}

.navbar
{
	padding-bottom: 0px;
}

.nav-link
{
	font-size: 1.3rem;
	transition: 0.2s;
}

.nav-link:hover
{
	text-decoration: underline;
	font-size: 1.4rem;
	margin-bottom: -5px;
	transition: 0.2s;
}

.sub-menu:focus
{
	outline: inherit;
	background-color: inherit;
}

.nav-item
{
	margin-left: 10px;
	margin-right: 10px;
}

/*Afficher le menu au survol*/
.main-menu:hover .dropdown-main
{
	display: block;
}
@media screen and (max-width: 1199px)
{
	.main-menu:hover .dropdown-main
	{
		display: none !important;
	}
}

.dropdown-menu
{
	margin:  0px !important;
}

/*Afficher le sous-menu au survol*/
.dropdown-menu > li:hover > .submenu
{
	display: block;
}
/*Afficher le sous-menu à côté du menu*/
.dropdown-menu li
{
	position: relative;
}
.dropdown-item
{
	transition: 0.5s;
}
.dropdown-item:hover
{
	background-color: var(--aiesh-blue);
	color:  white;
	transition: 0.5s;
}
@media screen and (max-width: 1400px)
{
	.dropdown-left
	{
		left: -100% !important;
		right: 100% !important;
	}
}
.nav-item .submenu
{ 
	display: none;
	position: absolute;
	left:100%; top:-7px;
}

.title
{
	text-decoration: underline;
}

.title, a:hover
{
	text-decoration: none;
}


.background-blue
{
	background-color: var(--aiesh-blue-dark);
}

.background-image
{
	/*-webkit-filter: invert(100%);*/
	width: 100%;
	height: 100%;
	opacity: 30%;
	/*margin-left: -3rem;
	margin-right: -3rem;*/
	object-fit: cover;
}

.title-center-image
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: whitesmoke;
	border-radius: 20px;
	opacity: 90%;
	padding: 20px;
	border: 4px solid var(--aiesh-blue);
	width: 80%;
	
}

@media screen and (min-width: 1001px) {
  .title-center-image {
    font-size: 1.5vw;
  }
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 1000px) {
  .title-center-image {
    font-size: 3vw;
  }
}

.title-center-image:hover
{
/*	background-color: var(--aiesh-blue);*/
	transition: 0.2s;
/*	zoom: 101%;*/
	border: 5px ridge var(--aiesh-blue);
}
.title-center-image a:hover
{
	font-size: 2.1rem;
	color: var(--aiesh-blue);
	text-decoration: underline;
}

.box-lg
{
/*	position: relative;
	left: 50%;
	transform: translate(-50%, -30%);*/
/*	width: 60%;*/
	border: 1px solid darkgrey;
	border-radius: 10px;
	background-color: white;
	padding:  30px;
	color: black;
	/*transition:  0.1s;*/
	min-width: 250px;
	margin-top: 10px;
	transition: 0.1s;
}

.box-lg:hover
{
	box-shadow: 0px 2px 3px 3px grey;
/*	width:  60.1%;*/
/*	font-size: 101%;*/
	transition:  0.1s;
	zoom: 101%;
}


.box-sm
{
	border: 1px solid lightgrey;
	border-radius: 20px;
	margin-left:  30px;
	margin-right: 30px;
	min-height: 250px;
	text-align: center;
	transition: 0.1s;
	margin-top: 10px;
	min-width: 300px;
}

.box-sm:hover
{
	transition: 0.1s;
	border: 1px solid darkgrey;
	box-shadow: 0px 2px 10px 3px grey;
}

.zoom-hover:hover
{
	font-size: 110%;
	transition: 0.1;
}

.color-hover:hover
{
	background-color: #fafafa;
}

.font-color-hover:hover
{
	color: var(--aiesh-blue);
}
.font-underline-hover:hover
{
	text-decoration: underline;
}


.wrong-field
{
	background-color: lightcoral;
}

#dropdown-arrow
{
	text-align: right;
}

.card
{
	border: 1px solid grey;
	border-radius: 10px;
	box-shadow: 5px 5px 5px;
	margin:  10px;
	min-height: 200px;
	min-width: 300px;
	max-width: 300px;
}

.card:hover
{
	background-color: lightblue;
	box-shadow: 0px 0px 5px lightblue;
	border: none;
}

.card-title
{
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}

.card-img
{
	max-height: 80px;
	/*max-width: 80px;*/
	object-fit: contain;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}

/*.prosumer-bg
{
	background-image: url("/static/img/pv_background.jpg");
	background-position: center; 
	background-repeat: no-repeat;
	background-size: cover;
}*/

.wrong-index
{
	color: red;
	background: rgba(240, 128, 128, .5);
	border-radius: 10px;
	min-width: 80%;
}

.image-resize
{
	width: 100%;
}

.list-no-style
{
	list-style: none;
}

.map
{
	width: 100%;
	min-width: 200px;
	min-height: 500px;
}

.small_screen_show
{
	display: none;
}
.small_screen_hide
{
	display: initial;
}

@media screen and (max-width: 575px)
{
	.small_screen_show
	{
		display: initial;
	}
	.small_screen_hide
	{
		display: none;
	}

}

.separator
{
	 margin-top:5px;
	 margin-bottom:5px;
	 height:1px;
	 width:80%;
	 border-top:1px solid lightgray;
}

.btn_del
{
	border-radius: 100%;
	position: relative;
	left: -20px;
	vertical-align: top;
	top: -10px;
}
.btn_del:hover
{
	scale:  120%;
	transition: 0.1s;
	background-color: #ff4d29;
}

.photos_line
{
	display: inline;
	margin:  10px;
}


.video_card 
{
	margin: 10px 10px 40px 10px;
	border: 1px solid darkgrey;
	border-radius: 15px;
	padding: 10px;
}
.video_card video
{
	width: 100%;
	max-height: 400px;
	border-radius: 15px;
}

.pdf-doc
{
	height: 750px;
	width: 100%;
}

.row-no-margin
{
	margin: 0px !important;
}

.tag
{
	background-color: lightblue;
	padding: 5px;
	border-radius: 10px;
}

.flotte {
float:left;
}