.comments hr{
    margin-bottom:20px;
}
.comments__items{
    display:flex;
    flex-direction: column;
    gap:15px;
}
.comment__author{
    font-weight: bold;
    margin:0;
}

.comment__author, .comment__content, .comment__addtime{
    font-size:16px;
    line-height:26px;
}

.comment{
    padding:15px;
    border-radius: 15px;
    background-color: #f5f7fa;
}
.comment__content{
    margin-bottom:0;
}
.author-flex{
    display:flex;
    flex-direction: row;
    gap:15px;
}
.comment__photo{
    display:flex;
    justify-content: center;
    align-items: center;
    max-width: 50px;
    border-radius:50%;
    overflow: hidden;
    height: 100%;
}
.comment__photo img{
    object-fit: cover;
}
.comments__form{
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    margin: 10px auto;
    width: 100%;
    background: #E8EAF6;
    border: 1px solid #d4d6e0;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.14902) 0px 1px 1px 0px, rgba(0, 0, 0, 0.09804) 0px 1px 2px 0px;
    letter-spacing: -0.2px;
}
.comments__form-fields{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:10px;
    width: 100%;
}

.comments__items-element .comment{
    width:100%;
}

.comments__form-fields h3{
    padding:0;
}

.comments__form-comment, .comments__form-name{
    width:100%;
}
.comments__form-comment{
    padding: 12px 10px 12px 12px;
}
.comments__form-submit{
    max-width: 250px;
    background-image: linear-gradient(to top, #d8b81b, #fff080);
    color: #544c4c;
    text-shadow: 0 0 4px #e3c72e;
    letter-spacing: 1px;
    font-size:14px!important;
    margin:0 auto!important;
}

.errors-list{
    max-width: 100%;
    width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #ff454530;
    padding: 10px;
    margin-bottom: 30px;
}