.fb-content{
	margin:20px 0;padding:0;width:100%;
	display: flex;display: -webkit-flex;
	flex-direction: column;-webkit-flex-direction:column;

}
#post-form{
	display: flex;display: -webkit-flex;width:100%;
	flex-direction: column;-webkit-flex-direction:column;
}
#post-form > div{
	display: flex;display: -webkit-flex;width:100%;
	justify-content: space-between;-webkit-justify-content:space-between;
	align-items: center;-webkit-align-items:center;
	margin:20px 0;
}
#post-form input,#post-form textarea{
	border:1px solid #ccc;text-indent: 2em;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
	color:#363636;padding:10px;
	-webkit-transition: border-color .4s;
	-moz-transition: border-color .4s;
	-ms-transition: border-color .4s;
	-o-transition: border-color .4s;
	transition: border-color .4s;
	outline: none;	
	
}
#post-form input:focus,#post-form textarea:focus{
	border-color:#088cfc;
	-webkit-box-shadow: 0 0 5px #088cfc;
	-moz-box-shadow: 0 0 5px #088cfc;
	-ms-box-shadow: 0 0 5px #088cfc;
	-o-box-shadow: 0 0 5px #088cfc;
	box-shadow: 0 0 5px #088cfc;
}
input[name='username']{ width:30%;background: url(../images/username.svg) no-repeat left;background-size:22px ;background-origin:content-box; }
input[name='telephone']{  width:30%;background: url(../images/telephone.svg) no-repeat left;background-size:18px ;background-origin:content-box; }
input[name='email']{  width:30%;background: url(../images/email.svg) no-repeat left;background-size:24px ;background-origin:content-box; }
textarea[name='content']{ 
	background: url(../images/content.svg) no-repeat;
	background-size:22px ;background-position: top left;
	background-origin:content-box;
	overflow-x: hidden;resize: none;
	overflow-y: auto;
}
#post-sub{
	font-size:.8rem;text-align: center;
	display: block;padding:5px 0;width:150px;
	background:#1c69cf;color:#f1f1f1;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	border-radius: 20px;
	margin:50px auto 20px auto;
	cursor: pointer;-webkit-cursor:pointer;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-ms-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	border:1px solid #1c69cf;
	outline: none;
}
#post-sub:hover{
	color:#1c69cf;background-color:white;
}

@media screen and (min-width: 300px) and (max-width: 768px){
	.fb-content p{ margin:0; }
	#post-form > div{
		flex-direction: column;-webkit-flex-direction:column;
		margin:20px 0 10px 0;
	}
	input[name='username']{ width:93%;margin-bottom: 10px; }
	input[name='telephone']{ width:93%;margin-bottom: 10px; }
	input[name='email']{ width:93%; }
	#post-sub{ margin:30px auto 20px auto; }
}