/**
 * @file
 * Visual styles for comment in Corporate+.
 */
/*Comment*/
.comment {
  margin: 0 0 40px 0;
  position: relative;
}
.comment header {
  position: absolute;
  top: 0;
  left: 0;
  width: 55px;
  height: 55px;
}
.comment .field--name-user-picture a {
  display: block;
}
.comment .profile .field--name-user-picture {
  float: none;
  margin-right: 0;
}
.comment .profile .field--name-user-picture img {
  border-radius: 100%;
}
.comment header + .comment__content-container {
  padding-left: 75px;
}
.comment__content {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #c2c2c2;
  padding-bottom: 5px;
}
.comment h3.title {
  margin: 0 0 5px 0;
  font-size: 16px;
}
.comment h3.title a {
  color: #2a2a2a;
}
.comment .field--name-comment-body {
  padding-bottom: 20px;
}
.comment__meta {
  font-size: 12px;
  color:#898989;
}
.comment__meta .username {
  text-transform: capitalize;
}
.comment__meta .username:hover,
.comment__meta .username:focus {
  text-decoration: underline;
}
.field--name-comment-body {
  font-size: 15px;
  line-height: 1.5;
}
.comment ul.links.inline {
  margin-right: -5px;
  margin-left: -5px;
  display: block;
  padding: 0;
  text-align: right;
}
.comment ul.links li {
  font-size: 12px;
}
.comment ul.links li a {
  background: transparent;
  font-size: 12px;
  padding: 0 2px;
  margin: 0;
  font-weight: 300;
  display: inline;
  min-width: 0;
  text-align: left;
  border: none;
  color: #363636;
  text-transform: none;
  text-decoration: none;
  box-shadow: none;
}
.user-logged-in .comment ul.links li a {
  padding: 0 5px;
}
.comment ul.links li a:hover {
  background: transparent;
}
.comment ul.links li a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: relative;
  padding: 0 5px 0 0;
}
.comment ul.links li.comment-delete a:before {
  content: "\f1f8";
  top: -1px;
}
.comment ul.links li.comment-edit a:before {
  content: "\f303";
}
.comment ul.links li.comment-reply a:before {
  content: "\f122";
}
.new-indicator {
  position: absolute;
  top: -25px;
}
.indented {
  margin-left: 75px;
}
@media (min-width: 768px) {
  .comment__links {
    text-align: right;
    display: inline-block;
    float: right;
  }
}
@media (max-width:767px) {
  .indented {
    margin-left: 65px;
  }
  .comment header {
    position: static;
    margin-bottom: 10px;
  }
  .comment header + .comment__content-container {
    padding-left: 0;
  }
  .comment__meta {
    margin-bottom: 10px;
  }
}
@media (max-width:575px) {
  .indented {
    margin-left: 30px;
  }
}
