/*--------------------------------------------------------------
 # Edit-knappen 
--------------------------------------------------------------*/
.post-edit-link {
  position: fixed;
  background-color: #ff93b3;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  right: 1.5rem;
  bottom: 1.5rem;
  font-size: 1rem;
  transition: background-color 0.25s;
  z-index: 2000;
}
.post-edit-link:hover {
  background-color: rgb(255, 96, 143.1111111111);
}
.post-edit-link:after {
  content: url(images/edit.svg);
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
}
