#comment-dropdown{
    display: none;
}
#load-more-comments{
    display: none;
}
.notification-bell {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.notify-badge {
    position: absolute;
    top: -10px;
    right: -8px;
    background: #d91b5c;
    color: white;
    font-size: 12px;
    padding: 1px 7px;
    border-radius: 50%;
}
.bell-icon{
    width: 20px;
    height: 20px;
    font-size: 20px;
}
.comment-dropdown{
    position: absolute;
    top: 35px;
    right: 0;
    background: #fff;
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 6px;
    padding: 20px;
    display: none;
}
#load-more-comment {
    padding: 5px 20px;
    margin: 5px auto 0 auto;
    cursor: pointer;
    background: #d91b5c;
    border: 1px solid #d91b5c;
    color: #fff;
    border: none;
    border-radius: 20px;
    display: none;
}
.center{
    text-align: center;
}
#latest-comments{
    list-style: none;
    padding: 10px;
    margin: 0;
}
#latest-comments li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    color: #222;
}
#latest-comments li a {
    color: #222;
}
#latest-comments li.read-comment, 
#latest-comments li.read-comment a {
    color: gray;
}
#latest-comments li:last-child {
    border-bottom: none;
}
.lp-single-course .lp-single-course-main__left .comments-area{
    display: none;
}