#devis_popup_container
{
	width : 100%;
	height : 100%;
	background-image : url('../common/images/bg_alpha.png');
	background-size : cover;
	position : fixed;
	top : 0px;
	left : 0px;
	display : none;
	min-width : 1024px;
	flex-direction : column;
	align-items : center;
	justify-content : center;
	font-family: "Calibri", "Georgia", "Arial", serif;
	display : hidden;
}

#devis_popup
{
	width : 450px;
	background-color : #D3D3D3;
	display : flex;
	flex-direction : column;
	box-shadow : 0px 0px 5px 5px #D3D3D3;
	padding : 0px;
	flex-direction : column;
}

#devis_img
{
	width : calc(100% - 20px);
	padding : 10px;
	padding-bottom : 0px;
	padding-top : 0px;
	margin : 0px;
	display : none;
}

#devis_img img
{
	width : 100%;
	height : auto;
	margin : 0px;
}

#devis_popup h1
{
	width : calc(100% - 20px);
	margin : 0px;
	padding : 0px;
	padding-bottom : 10px;
	text-align : center;
	background-color : var(--main_blue);
	color : white;
	text-shadow: black 0.1em 0.1em 0.2em;
	font-size : 1.5em;
	text-align : center;
	margin : auto;
	
}

#close_devis_icon
{
	display : inline-block;
	text-align : right;
	padding : 0px;
	margin : 0px;
	margin-left : calc(100% - 30px);
	width : 25px;
	height : 25px;
	cursor : pointer;
	z-index : 999999999;
}

#devis_popup form
{
	display : flex;
	justify-content : center;
	margin : 0px;
	padding : 10px;
	height : 100%;
	min-height : 250px;
	flex-direction : column;
	background-color : white;
	padding-top : 20px;
	width : calc(100% - 42px);
	margin-left : 10px;
	border : 1px solid var(--main_blue);
	margin-bottom : 10px;
}

#devis_popup form table
{
	width : 100%;
	border-collapse : collapse;
}

#devis_popup form table tr td
{
	padding-top : 3px;
	padding-bottom : 3px;
}

.tab_left_col
{
	width : 50%;
}

#devis_popup input[type="text"]
{
	width : calc(100% - 6px);
}

#devis_popup input[type="email"]
{
	width : calc(100% - 6px);
}

#devis_popup input[type="tel"]
{
	width : calc(100% - 6px);
}

#devis_popup select
{
	width : 100%;
}

#cancel_devis, #submit_devis
{
	display : block;
	margin : auto;
	margin-top : 10px;
}