textarea#commentaire
{
	/*
	min-width: 500px;
	max-width: 80%;
	*/
	max-width: 100%;
	height: 22em;
}

/***************************************************************************************/
/* Media queries */

/***************************************************************************************/
/** DESKTOP SCREEN, default **/

textarea#commentaire
{
	min-width: 500px;
}

/***************************************************************************************/
/** WIDE SCREEN **/
@media screen and (min-width: 1280px)
{

}

/***************************************************************************************/
/** TABLET **/
@media screen and (max-width: 768px)
{
	textarea#commentaire
	{
		min-width: 200px;
	}
}

/***************************************************************************************/
/** MOBILE **/
@media screen and (max-width: 480px)
{
	textarea#commentaire
	{
		min-width: 100%;
	}
}