.local-comments{
    border-radius: 16px;
    box-shadow: 0 3px 10px 0 rgba(0,0,0,0.15);
    padding: 20px;
    margin: 50px 10px;
    position: relative;
    overflow: hidden;
}
.local-comments-title{
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2em;
}
.local-comments-form input[type="text"],
.local-comments-form input[type="tel"],
.local-comments-form textarea{
    display: block;
    border: 1px solid #dddddd;
    border-radius: 4px;
    background: #fafafa;
    font-size: 17px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px 15px;
    width: 100%;
}

.comments-form_author{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.comments-form_author>img{
    max-width: 60px;
    flex-shrink: 0;
    opacity: 0.8;
    transition: all ease .3s;
}
.comments-form_author>img:hover{
    transform: scale(1.05);
    opacity: 1;
}
.comments-form_bottom{
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}
.comments-form_bottom>img{
    max-width: 32px;
    transition: all ease-in-out .3s;
    opacity: 0.5;
}
.comments-form_bottom>img:hover{
    opacity: 1;
    transform: scale(1.05);
}
.comments-form_btn{
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    border: none;
    box-shadow: none;
    background: rgb(33 94 231);
    border-radius: 4px;
    color: #fff;
    padding: 12px 15px;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.3em;
    transition: all ease-in-out .3s;
}
.comments-form_btn:hover{
    background: rgb(48, 108, 247);
}
.comments-form_btn:active{
    background: rgb(24, 75, 196);
    top: 2px;
}
.local-load-img{
    cursor: pointer;
}
.local-comments-error{
    max-width: 90%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    background-color: red;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3em;
    text-align: center;
    padding: 10px 15px;
    border-radius: 0 0 10px 10px;
    transition: all ease-in-out .3s;
}
.local-comments-error.active{
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
    transform: translateX(-50%) translateY(-0%);
}