@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,700);

/* Rules for sizing the material icon. */
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }

body {
	font-family: Roboto, Arial, sans-serif;
	background: #78B7E1;
	color: rgba(0,0,0,0.87);
	box-sizing: border-box;
}

#chat_container {
	max-width: 800px;
	min-height: 400px;
	margin: auto;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
	border-radius: 2px;
	background: rgba(0,0,0,0.1);
	padding: 16px 24px;
}

#chat_container .chat_title {
	margin: 40px auto;
	max-width: 360px;
	text-align: center;
}
#chat_header {
}

#chat_username {
	float: left;
}
#chat_logoff {
	float: right;
}
#chat_main-content {
	clear: both;
}
#chat_newpost {
	margin: 10px auto;
	min-width: 51%;
    max-width: 70%;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
    border-radius: 2px;
    background: white;
    padding: 16px 24px;
}
#chat_newpost-message {
	width: 100%;
}
.chat-button {
    background: #3f51b5;
    border: none;
    border-radius: 2px;
    color: #ffffff;
    position: relative;
    height: 36px;
	margin: 12px 0px;
    min-width: 64px;
    padding: 0 16px;
    display: inline-block;
    font-family: "Roboto","Helvetica","Arial",sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0;
    overflow: hidden;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
    outline: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    line-height: 36px;
    vertical-align: middle;
}
.chat-button--fab {
    border-radius: 50%;
    font-size: 24px;
    height: 40px;
    margin: auto;
    min-width: 40px;
    width: 40px;
    padding: 0;
    overflow: hidden;
    background: #ff4081;
    color: #fff;
    box-shadow: 0 1px 1.5px 0 rgba(0,0,0,.12), 0 1px 1px 0 rgba(0,0,0,.24);
    position: relative;
    line-height: normal;
}
.chat_posts {
    margin: 10px auto;
	overflow: auto;
}
.chat_post {
	min-width: 51%;
	max-width: 70%;
	margin: 10px auto;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
	border-radius: 2px;
	background: rgba(255,255,255,0.5);
	padding: 16px 24px;
	float:left;
}
.chat_post-author {
	float: left;
}
.chat_post-date {
	float: right;
}
.chat_post-message {
	margin: 0px;
	border-top: 1px rgba(0,0,0,0.5) solid;
	clear: both;
}
.chat_post-message textarea {
	width: 100%;
	height: 100%;
	max-width: 400px;
	max-height: 100px;
}
.chat_post.my_post {
	background: rgba(0,0,0,0.25);
	float:right;
}
.snackbar_container {
    position: fixed;
    bottom: 50px;
    left: 0px;
    width: 100%;
    background: none;
}
.snackbar {
	width: 50%;
	max-width: 300px;
	margin: auto;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
	border-radius: 2px;
	background: #888888;
	padding: 16px 24px;
	cursor: default;
}
.snackbar-title {
}
.snackbar-texte {
}

.error {
	background: #ff2020 !important;
}

.hidden {
	display: none;
}
.clearfix {
  clear: both;
  display: block;
}
[v-cloak] {
  display: none;
}