.comment {
  border-radius: 3px;
  border: 2px solid var(--main-book-color);
  margin-bottom: 15px;
}

.comment:last-child {
  /*margin-bottom: 0;*/
}

.comment-content-container {
  /*border: 2px solid var(--main-book-color);*/
}

.comment-content {
  box-sizing: border-box;
  min-height: 60px;
  /*max-height: 200px;*/
  outline: 0;
  overflow-y: auto;
  padding: 10px;
  font-size: 14px;
  font-family: 'OpenSans';
}

.comment-actionbar {
  position: relative;
  background-color: var(--main-book-color);
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  text-align: right;
  padding-top: 2px;
  padding-bottom: 2px;
}

.comment.selected .comment-actionbar {
  background-color: var(--main-book-sel-color);
}

.comment-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  height: 30px;
  outline: 0;
  width: 30px;
  vertical-align: bottom;
  color: white;
  font-size: 18px;
  font-family: 'OpenSans';
}

.comment-icon {
  position: absolute;
  top: 4px;
  left: 8px;

  display: inline-block;
  height: 26px;
  width: 24px;
  background-image: url('../img/comments/comment_icon.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;

}

.comment-button-selected {
  /*background-color: #F0F0F0;*/
}

.comment-read-more {
  cursor: pointer;
  font-family: 'OpenSans';
  font-weight: 400;
  font-size: 14px;
  color: var(--main-book-color);
}

.comment .button-wrapper {
  text-align: right;
  padding-right: 10px;
  padding-bottom: 10px;
}

.comment .button-wrapper button {
  background-color: transparent;
  border: 2px solid var(--main-book-color);
  color: var(--main-book-color);
  border-radius: 3px;
  font-family: 'OpenSans';
  font-weight: 400;
  font-size: 14px;
  padding: 5px 0;
  width: 90px;
  cursor: pointer;
}

/* Iconos barra */
.edit-comment {
  display: inline-block;
  height: 26px;
  width: 18px;
  background-image: url('../img/comments/comment_tool_edit.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}

.delete-comment {
  display: inline-block;
  height: 26px;
  width: 15px;
  background-image: url('../img/comments/comment_tool_delete.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}