#bottom_menu_container
{
	width : 100%;
	margin : 0px;
	padding : 0px;
	height : 50px;
	display : flex;
	align-items : center;
	justify-content : center;
	background-color : rgb(230, 231, 232);
	margin-bottom : 10px;
}

#bottom_menu
{
	width : 80%;
	margin : 0px;
	padding : 0px;
	height : 100%;
	display : flex;
	align-items : center;
	justify-content : left;
}

@media screen and (max-width: 1024px)
{
	#bottom_menu
	{
		width : 100%;
	}
}

#bottom_menu ul
{
	list-style-type : none;
	margin : 0px;
	padding : 0px;
	width : 100%;
	height : 100%;
	display : flex;
	align-items : center;
	justify-content : left;
}

#bottom_menu li
{
	display : inline-block;
	height : 100%;

}

#bottom_menu li a
{
	display : inline-block;
	text-decoration : none;
	color : #454545;
	width : calc(100% - 30px);
	height : 100%;
	font-size : 14px;
	line-height : 50px;
	padding-left : 15px;
	padding-right : 15px;
	transition-property: background-color; /* Active la transition sur background-color */
    transition-duration: 0.8s; /* La transition dure 1s */
}

#bottom_menu li a:hover
{
	background-color : #1c7ed6;
	color : white;
	transition-property: background-color; /* Active la transition sur background-color */
    transition-duration: 0.8s; /* La transition dure 1s */
}

#home_button
{
	width : 50px!important;
	padding : 0px!important;
	background-image : url('../common/images/home.png');
	background-repeat : no-repeat;
	background-position : center center;
}

.selected_item
{
	background-color : #1c7ed6;
	color : white!important;
}

#bottom_menu form
{
	height : 100%;
	display : flex;
	align-items : center;
	justify-content : right;
}

@media screen and (max-width: 1024px)
{
	#bottom_menu form
	{
		display : none;
	}
}

#search_bar
{
	height : 26px;
	width : 180px;
	border : 1px solid #1c7ed6;
	padding-left : 10px;
	padding-right : 10px;
}