.requierd-border {
    border-color: #ea5455 !important;
}
.requierd-color {
    color: #ea5455 !important;
}

.comments-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.comments-section h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.comments-list {
    list-style: none;
    padding: 0;
}

.comment-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: bold;
    color: #2c3e50;
}

.comment-date {
    font-size: 0.9em;
    color: #999;
}

.comment-body {
    padding: 10px;
    background-color: #fff;
    border-radius: 4px;
    color: #555;
}

.comment-replies {
    margin-top: 15px;
    padding-left: 20px;
    border-left: 2px solid #e0e0e0;
}

.reply-item {
    margin-top: 10px;
}

.reply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #666;
}

.reply-body {
    padding: 8px;
    background-color: #f1f1f1;
    border-radius: 4px;
    color: #444;
}

#add_comment_box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px 0;
}

.alert-box-bg {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
}

.alert-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.inp,
.inpt {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 14px;
}

.inpt.textaria {
    min-height: 165px;
}

.btnSendclass {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s;
}

.btnSendclass:hover {
    background-color: #0056b3;
}

#replier {
    background-color: #e8e7ec;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
}
.commentMessage{
    display: none;
    font-size: 14px;
    line-height: 22px;
    margin: 10px;
}

.commentSuccess {
    color: #0db723;
    display: inline-block;
}

.commentError {
    color: #ed1212;
    display: inline-block;
}