

/* KOMMENTARE */
.comments-app{
  margin: 50px auto;
  padding: 0 50px;
  width: 100%;
}

.comments{  }

.comment-form,
.comment{
  margin-bottom: 20px;
  position: relative;
  z-index: 0;
}

.comment-form .comment-avatar,
.comment .comment-avatar{
  border: 2px solid #72c3bf;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
  height: 80px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 80px;
  background-color: #91d0cd;
}

.comment-form .comment-avatar img,
.comment .comment-avatar img{
  display: block;
  height: auto;
  width: 100%;
}

.comment .comment-box{
  background-color: #91d0cd;
  border-radius: 4px;
  box-shadow: 1px 1px 1px #rgba(0,0,0,0.75);
  margin-left: 100px;
  min-height: 60px;
  position: relative;
  padding: 10px;
  border: 1px solid #72c3bf;
}

.comment .comment-box.cmdark {
  background-color: #91d0cd;
}

.comment .comment-box.cmlight {
  background-color: #6dc1bd;
}

.comment .comment-box:before,
.comment .comment-box:after,
.comment .comment-box.cmdark:before,
.comment .comment-box.cmdark:after{
  border-width: 10px 10px 10px 0;
  border-style: solid;
  border-color: transparent #91d0cd;
  content: "";
  left: -10px;
  position: absolute;
  top: 25px;
}

.comment .comment-box:before,
.comment .comment-box:after,
.comment .comment-box.cmlight:before,
.comment .comment-box.cmlight:after{
  border-width: 10px 10px 10px 0;
  border-style: solid;
  border-color: transparent #6dc1bd;
  content: "";
  left: -10px;
  position: absolute;
  top: 25px;
}

.comment .comment-box:before{
  border-color: transparent rgba(0, 0, 0, .5);
   top: 27px;
}

.comment .comment-text{
  color: #000000;
  font-size: 15px;
  margin-bottom: 25px;
}

.comment .comment-footer{
  color: #555f77;
  font-size: 13px;
}

.comment .comment-footer:after{
  content: "";
  display: table;
  clear: both;
}

.comment .comment-footer a{
  color: #555f77;
  text-decoration: none;

  -webkit-transition: 350ms color;
  -moz-transition: 350ms color;
  -ms-transition: 350ms color;
  -o-transition: 350ms color;
  transition: 350ms color;
}

.comment .comment-footer a:hover{
  color: #000000;
  text-decoration: underline;
}

.comment .comment-info{
  float: left;
  width: calc(100% - 300px);
}

.comment .comment-author{ }
.comment .comment-date{ }

.comment .comment-date:before{
  content: "•";
  margin: 0 5px 0 1px;
}

.comment-actions{
  float: left;
  text-align: right;
  width: 300px;
}
