body { background-color:whitesmoke;}

@font-face {
	font-family: 'SweetAdmin';
	src: url('SweetAdmin.ttf') format('truetype');
}

.bg {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-repeat:no-repeat;
	background-size:100%;
	background: #f2f2f2; /* Old browsers */
	background: -moz-linear-gradient(top, #f2f2f2 0%, #f2f2f2 50%, #cceeff 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #f2f2f2 0%,#f2f2f2 50%,#cceeff 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #f2f2f2 0%,#f2f2f2 50%,#cceeff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#cceeff',GradientType=0 ); /* IE6-9 */
}

.fbot_mssg {
	font-size: 1.2em;
	font-family: 'SweetAdmin';
	display:block;
	margin-bottom: 15px; 
	opacity: 1;
	-moz-animation: appear 0.5s ease; /* Mozilla */
	-webkit-animation: appear 0.5s ease; /* Safari 4.0 - 8.0 */
	animation: appear 0.5s ease;
	background-color:white;
	border-radius:10px;
	box-shadow:0 0 3px black;
	padding:10px;
}
.fbot_mssg::after {
    content: "";
    clear: both;
    display: table;
}

.fbot_mssg > img {
	border-radius: 25px;
	background-color: lightblue;
	width: 96px;
}

.fbot_mssg > h1 {
	font-size: 1em;
}
.fbot_mssg p {
	margin-bottom:5px;
	margin-top:0;
	line-height: 1em;
	font-size: 1.2em;
	word-wrap: break-word;
}

@-webkit-keyframes appear { 0% {opacity: 0;} 100% {opacity: 1;} }
@keyframes appear { 0% {opacity: 0;} 100% {opacity: 1;} }

.fbot_mssg.bot {
	text-align:left;
}

.fbot_mssg.bot > img {
	margin-right:15px;
	float:left;
	/* background-color:lightgreen; */
}

.fbot_mssg.bot > h1 {
	color: gold;
}

.fbot_mssg.bot p {
	margin-left:111px;
	color: dimgrey;
}

.fbot_mssg.user {
	text-align:right;
}

.fbot_mssg.user > img {
	margin-left:15px;
	float:right;
	/* background-color:lightgreen; */
}

.fbot_mssg.user > h1 {
	color: yellow;
}

.fbot_mssg.user p {
	margin-right:111px;
	color: dimgrey;
}


.fbot_log p {
	display:block;
	margin: 15px auto ;
	padding:5px;
	color: white;
	font-style:italic;
	font-size: 1.2em;
	text-align: center;
	text-wrap: wrap;
	background-color: grey;
	border-radius:15px;
	box-shadow:0 0 3px white;
	-moz-animation: appear 0.5s ease; /* Mozilla */
	-webkit-animation: appear 0.5s ease; /* Safari 4.0 - 8.0 */
	animation: appear 0.5s ease;
}

.fbot_writing {
	position:fixed;
	width: 96px;
	margin-left:-48px;
	opacity: 0.8;
	bottom:116px;
	animation: fullRotate 1s cubic-bezier(.39,-0.29,.6,1.42) infinite;
}

@keyframes fullRotate {
    from {
	-ms-transform: rotate(0deg); /* IE 9 */
    -webkit-transform: rotate(0deg); /* Chrome, Safari, Opera */
    transform: rotate(0deg);}
    to {
	-ms-transform: rotate(360deg); /* IE 9 */
    -webkit-transform: rotate(360deg); /* Chrome, Safari, Opera */
    transform: rotate(360deg);}
}

#fbotsend { text-align:center; border-radius:10px; width:80%;margin:auto;}

#fbotsend:hover {
	background-color: yellow;
	cursor: pointer;
}

#fbotsend:active {
	background-color: goldenrod;
}

#fbotinput {
	position:fixed;
	background-color: whitesmoke;
	box-shadow: 0 0 3px grey;
	bottom:10px;
	left:10%;
	width:80%;
	padding: 5px;
	text-align:center;
	border-radius:30px;
}

#fbotinput textarea {
	resize: none;
	overflow-y: auto;
	background-color:white;
	color: black;
	display: inline;
	margin: auto 0;
	font-family: 'SweetAdmin';
	font-size: 18px;
	appearance: none;
	border: 2px solid lightgrey;
	box-shadow: none;
	padding:10px;
	width:80%;
	border-radius:15px;
}

#fbotinput textarea:focus { outline: none; }

#fleurbot { overflow-y: hidden; }

#fbotmessages {
	text-align:center;
	position:absolute;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 5px 5px 0 5px;
	padding-bottom:116px;
	left:0;
	right:0;
	top: 5px;
}