@import url("https://fonts.googleapis.com/css?family=Fira+Sans");
html, body {
  background-color: #e1e8ee;
  margin: 0px;
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.post {
	margin: 0 auto;
	width: 100%;
	max-width: 800px;
	font-size: 20px;
	border-radius: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	color: white;
}
.meinkonto {
	margin: 0 auto;
	width: 100%;
	max-width: 800px;
	font-size: 20px;
	border-width: 2px;
	border-color: black;
	border-radius: 10px;
	border-style: solid;
	margin-top: 10px;
	margin-bottom: 10px;
	color: black;
	text-align: left;
}
.bars {
	width: 20px;
	height: 20px;
	background-image: url("/jodel/images/menu.png");
	background-size: contain;
	background-repeat: no-repeat;
}
.posttext {
	text-align: left;
	vertical-align: top;
	white-space: pre-line;
	padding-right: 20px;
}
.vote-up{
	width: 30px;
	height: 30px;
	background-image: url("/jodel/images/up.png");
	background-size: contain;
	background-repeat: no-repeat;
}
.vote-up-clicked{
	width: 30px;
	height: 30px;
	background-image: url("/jodel/images/up_clicked.png");
	background-size: contain;
	background-repeat: no-repeat;
}
.vote-up-clicked-full{
	width: 30px;
	height: 30px;
	background-image: url("/jodel/images/up_clicked_full.png");
	background-size: contain;
	background-repeat: no-repeat;
}
.vote-down{
	width: 30px;
	height: 30px;
	background-image: url("/jodel/images/down.png");
	background-size: contain;
	background-repeat: no-repeat;
}
.vote-down-clicked{
	width: 30px;
	height: 30px;
	background-image: url("/jodel/images/down_clicked.png");
	background-size: contain;
	background-repeat: no-repeat;
}
.vote-down-clicked-full{
	width: 30px;
	height: 30px;
	background-image: url("/jodel/images/down_clicked_full.png");
	background-size: contain;
	background-repeat: no-repeat;
}
.edit{
	width: 30px;
	height: 30px;
	background-image: url("/jodel/images/pencil.png");
	background-size: contain;
	background-repeat: no-repeat;
	margin-bottom: 5px;
}
.delete{
	width: 30px;
	height: 30px;
	background-image: url("/jodel/images/trash.png");
	background-size: contain;
	background-repeat: no-repeat;
	margin-bottom: 10px;
}
.post-btn {
  background-color: rgba(0, 0, 0, 0.4);
  color: rgba(256, 256, 256, 0.7);
  border: 0;
  border-radius: 15px;
  display: block;
  margin-top: 5px;
  padding: 15px 45px;
  width: 100%;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
}
.post-btn:hover {
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.8);
}
.textedit {
	width: 100%;
}
.shownot {
	display: none;
}