#content.comments_page {
    min-height: calc(100vh - 4.75rem);
}

.comments_page #comments {
    padding-top: 0;
    min-height: calc(100vh - 4.75rem);
}

.comments_page .section_header {
    background-image: url(/images/fotoalbum.jpg);
    padding-top: 9.625rem;
    max-width: 100vw;
}

.comments_page #comments .section_header h3:before {
    content: "";
    width: 4.375rem;
    height: .25rem;
    bottom: -.9375rem;
}

.comments_page .comments_content {
    padding-top: 2.8125rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comments_content_button {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comments_content_button .button_secondary {
    width: 33.33333%;
}

.comments_content_items {
    padding-top: 1.875rem;
}

.comments_item {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    margin: 0 0 1.25rem;
    border: 1px solid #ccc;
}

.comments_item.answer_item {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    margin: 1.25rem 0 0 ;
    border: 1px solid #ccc;
}

.comments_item_header {
    display: flex;
    align-items: center;
    font-size: .875rem;
    text-transform: uppercase;
}

.comments_item_icon {
    background: #ccc;
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
    border-radius: 50%;
    margin-right: .625rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comments_item_author {
    color: #333;
    font-weight: 700;
    margin-right: .625rem;
}

.comments_item_date {
    color: #888;
    font-weight: 400;
    padding-right: .3125rem;
}

.comments_item_text {
    color: #555;
    font-weight: 400;
    padding-left: 50px;
    padding-top: 1rem;
    line-height: 1.5625rem;
    text-align: start;
    word-wrap: break-word;
}

.comments_item_footer {
    color: #3066be;
    cursor: pointer;
    font-size: 13px;
    padding-left: 50px;
    padding-top: 1rem;
}

.modal_form.comments_form {
    display: none;
    width: 100%;
    background-color: #eaeaea;
}

.modal_form.comments_form input, .modal_form.comments_form textarea {
    background-color: #fff;
}

.modal_form.comments_form .form_block:first-child {
    margin-bottom: 1rem;
}

.modal_form.comments_form .form_buttons {
    padding: 15px;
}

.modal_form.comments_form .form_button.button_secondary {
    width: auto;
    padding: .9375rem;
}

.modal_form.comments_form.show {
    display: flex;
    margin-top: 1.5rem;
}