
/* Mon test des div */
.inputContainer{

	/*border: 1px solid #f00;*/
	width: 100%;
	/*vertical-align: top;*/
	/*height: 120px;*/
	/*min-height: 150px;*/
}

.inputContainerImage{
	position: relative;
	float: left;
	/*border: 1px solid #bbb;*/
	width: 40%;
	/*border-radius: 5px 5px;*/
	margin-right: 1%;
	/*height: 200px;*/
	box-shadow: 2px 2px 5px #555;
	background-color: #eee;
}


.inputContainerImage div:nth-child(1){
	/* le titre */
	/*border: 2px solid #f00;*/
	/*color: red;*/

	/*padding-left: 10px;*/
	font-style: italic;
	text-align: center;
	height: 30px;
	line-height: 30px;
}

.inputContainerImage div:nth-child(2){
	/* l'image */
	/*display: inline-block;
	text-align: center;*/

	/*transform: translateX(50%);*/

	/*border: 1px solid #ccc;*/
	/*color: green;*/
	margin: 0 10px;
	height: 120px;
	/*width: 120px;*/
}

.inputContainerImage div:nth-child(3){
	/* le bouton */
	/*border: 1px solid #666;*/
	/*color: blue;*/

	height: 30px;
	line-height: 30px;
	margin-bottom: 10px;
	margin-top: 10px;
	text-align: center;

	margin-left: 20%;
	margin-right: 20%;
	border-radius: 5px;
	background-color: #ddd;

}




.inputContainerTextarea{
	float: left;
	/*border: 2px solid #666;*/
	width: 59%;
}

.inputContainerTextarea div:nth-child(){
	/* le titre */
	/*border: 2px solid #f00;
	color: red;*/

	height: 30px;
	line-height: 30px;

}

.inputContainerTextarea >div:nth-child(1){
	/* le textarea */
	/*border: 2px solid #f00;*/
	/*color: green;*/

	height: 200px;
}

.inputContainerTextarea div:nth-child(2){
	/* le bouton */
	/*border: 2px solid #f00;
	color: blue;*/

	height: 30px;
	/*line-height: 30px;*/

}

.inputContainerTextarea textarea{
	width: 100%;
	height: 100%;
	resize: none;
}

.blogBtnSubmit{
	height: 100px;
	/*display: inline-block;*/
	/*border: 3px solid #f00;*/
	border-bottom: 3px solid #aaa;
	text-align: center;

	padding-top: 30px;
	/*margin-bottom: 20px;*/
}

.blogBtnSubmit button{
	display: inline-block;
}


/* BLOG */

.commentCreate{
	padding-bottom: 40px;
	max-width: 650px;
	/*margin: 0 auto;*/
}

.container_blog{
	position: relative;
	max-width: 650px;
	margin: 0 auto;
	/*margin-left: 250px;*/
	/*min-height: 400px;*/
	/*border: 1px solid #000;*/
}

.blog{
	color: #333;
	/* JAUNE */
	/*background-color: #F3F781;*/
	/*border-color: yellow;*/

	/* bleu pastel */
	background-color: #CEE3F6;
	border-color: #CEE3F6;

	border-radius: 0px 0px 0 0 !important;
}

#blogImagePreviewContainer{
	/*position: relative;*/
	/*border: 1px solid #000;*/
	/*margin: 0 50px;*/
	padding: 0;
}


.blogImagePreview{
	/*position: relative;*/
	/*float: left;
	margin-right: 20px;
	margin-left: -20px;*/
	border: 1px solid #fbb !important;
	/*width: 120px !important;
	height: 90px !important;*/
	transform: translateX(50%);
	width: 120px !important;
	height: 120px !important;

	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: 0.1s;
	-webkit-transition: 0.1s;

	/*overflow: visible !important;*/
}

.blogImagePreview:hover{
	background-size: 300px;

	/* Ne marche pas */
	overflow: visible !important;

	/*transition: 0.2s;*/

}



.blogImage{
	float: left;
	margin-right: 20px;
	margin-left: -20px;
	width: 120px;
	height: 120px;

	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: 0.1s;
	-webkit-transition: 0.1s;

}

/* personalisation du file input */
.label-file{
	color: #55f;
    /*font-weight: bold;*/
	cursor: pointer;
}

.label-file:hover{
	color: #00f;
}

.blogImageWarning{
	/*border: 1px solid #000;*/
	height: 120px !important;
	/*line-height: 60px !important;*/
	line-height: 1.3em !important;

	color: #666;

}

.blogImageWarning img{
	width: 10px;
	display: inline-block;
	/*width: 10px;*/
	/*height: 20px;*/
	/*background-image: url("public/images/system/retourner-fleche_318-1896.png");
	background-size: 5%;
	background-repeat: no-repeat;
	background-position: center;*/

/*border: 1px solid #000;*/




}


/* ROTATION IMAGE */





.rotation90{
	transform: rotate(90deg);
}

.prewiewRotation90{
	transform: rotate(90deg) translateY(-50%);
}

.rotation180{
	transform: rotate(180deg);
}

.prewiewRotation180{
	transform: rotate(180deg) translateX(-50%);
}

.rotation270{
	transform: rotate(270deg);
}

.prewiewRotation270{
	transform: rotate(270deg) translateY(50%);
}

.btnRotate{
	border: 1px solid #666;
	width: 30px;
	height: 30px !important;
	background-image: url("../images/system/retourner-fleche_318-1896.png");
	background-size: 75%;
	background-repeat: no-repeat;
	background-position: center;

	position: absolute;
	/*top: 70%;*/
	bottom: 10px;
	right: 10px;
	transition: 0.1s;
	border-radius: 5px;
	box-shadow: 1px 1px 3px #333
}

.btnRotate:hover{
	cursor: pointer;
	background-image: url("../images/system/retourner-fleche_318-1896-clair.png");
	background-color: #9af;
	box-shadow: 0 0 10px #33f;
}

.btnClean{
	border: 1px solid #666;
	padding-top: 4px;
	width: 30px;
	height: 30px !important;
	font-size: 10px;
	line-height: 10px;
	text-align: center;

	position: absolute;
	bottom: 10px;
	left: 10px;
	transition: 0.1s;
	border-radius: 5px;
	box-shadow: 1px 1px 3px #333
}

.btnClean:hover{
	cursor: pointer;
	background-color: #9af;
	box-shadow: 0 0 10px #33f;
}

.blogImageTrash{
	text-align: center;
}

.blogImageTrash:hover{
	/*cursor: pointer;*/
	/*background-color: #9af;*/
	background-color: #def;

	box-shadow: 0 0 10px #33f;
}

/* forme curseur sur liste images */

.blogImageTrash td:nth-child(1):hover{
	cursor: default;
}

.blogImageTrash td:nth-child(2):hover{
	cursor: pointer;
}

.blogImageTrash td:nth-child(3):hover{
	cursor: default;
}

.blogImageTrash td:nth-child(4):hover{
	cursor: default;
}

.blogImageTrash td:nth-child(5):hover{
	cursor: default;
}

.TrashClass:hover{
	cursor: pointer;
}



.blogImageClean{
	/*text-align: center;*/
	/*margin-top: 310px;*/
	max-width: 800px;
	margin: 40px auto;
}

.blogImageClean th{
	text-align: center;
	/*max-width: 800px;*/
}

#blogImagesClean{
	margin: 20px 0;
	background-color: #ddd !important;
}

.blogImageRapport{
	padding : 0 40px 20px 40px;
	/*border: 1px solid #000;*/
	/*margin-bottom: 20px;*/
	border-bottom: 3px solid #888;
}

.blogImagesTools{
	/*border: 1px solid #000;*/
	padding-top: 10px;
}

/* LIKE */

.blogLike{
	height: 22px;
	position: absolute;
	text-align: right;
	bottom: 5px;
	right: 20px;
	padding-right: 0px;
}

.blogLike form{
	display: inline-block;
}

.blogLike0 div:hover{
	color: #00f;
	cursor: pointer;
	background-color: #dee;
}



.blogPanelContent{
	position: relative;
	line-height: 1.3em;
    padding: 10px 2% 10px 5%;
    margin-bottom: 10px;
    border: 1px solid #68b;
    /*border-radius: 0 0 5px 5px;*/
    border-radius: 0 0 0px 0px;

    background-color: #fff;
    /*border: 1px solid #0f0;*/
    padding-bottom: 40px;
}

.btnLike{
	/*position: relative;*/
	margin: 0;
	background-color: #fff;
	height: 20px;
	display: inline-block;
	border: 1px solid #57f;
	padding: 0 10px;
	/*width: 90px;*/
	text-align: center;
	font-size: 12px;
	color: #79f;
	border-radius: 3px;
	/*height: 30px;*/
}

.btnLike:hover{
	color: #00f;
	cursor: pointer;
	background-color: #dee;
}

/* REPLY */

.replyContainer{
	/*border: 1px solid #000;*/
	padding: 10px;
	text-align: right;
	/*height: 200px;*/
}

.replyTextarea{
	/*border: 1px solid #000;*/
	display: inline-block;
	width: 500px;
	height: 200px;
	resize: none;

}





