.b-comments__guest-view,
.b-comments__user-view {
    display: none;
    margin: 0 0 30px;
    padding: 0 0 30px;
    border-bottom: 1px solid #ccc;
}

.b-comments__title {
    margin: 0 0 20px;
    padding: 0 0 10px;
    font-weight: 400;
    font-size: 30px;
    line-height: 30px;
    font-family: 'futurafuturiscregular', sans-serif;
    color: #111;
    border-bottom: 1px solid #ccc;
}

.b-comments__auth-text {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 20px;
    font-family: Arial, sans-serif;
}

.b-comments__auth-text strong {
    font-weight: 700;
}

.b-comments__auth-text a {
    color: #e60024;
    text-decoration: none;
}

.b-comments__auth-text a:hover {
    color: inherit;
    text-decoration: none;
}

/* Auth Module */
.b-comments-auth-module {
    margin: 0 0 15px;
    padding: 10px 15px;
    max-width: 200px;
    text-align: center;
    background: #eee;
    border-top: 10px solid #999;
}

.b-comments-auth-module__title {
    margin: 0 0 15px;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
}

.b-comments-auth-module .eauth-service-link {
    width: 32px;
    height: 32px;
    padding: 0;
    text-indent: -9999px;
    overflow: hidden;
}

/* Media */
.b-comments-media {
    display: flex;
    flex-wrap: nowrap;
}

.b-comments-media__left {
    flex: 0 0 auto;
    margin: 0 10px 0 0;
}

.b-comments-media__right {
    flex: 1 1 auto;
}

/* User Avatar */
.b-comments-user-avatar {
    position: relative;
    max-width: 100%;
    width: 100px;
    height: auto;
    background: #eee;
    overflow: hidden;
    border-radius: 50%;
}

.b-comments-user-avatar:before {
    content: '';
    display: block;
    width: 100%;
    padding: 100% 0 0 0;
}

.b-comments-user-avatar__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.b-comments-user-avatar__img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    text-indent: -9999px;
}

/* Form */
.b-comments-form {
    display: flex;
    flex-direction: column;
    margin: 0 0 30px;
}

.b-comments-form textarea {
    display: block;
    width: 100%;
    min-height: 100px;
    margin: 0 0 10px;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1;
    color: #000;
    background: #fff;
    border: 1px solid #ccc;
    box-sizing: border-box;
    resize: vertical;
}

.b-comments-form button {
    align-self: flex-end;
    display: inline-block;
    min-width: 150px;
    height: 35px;
    padding: 0 15px;
    font-size: 12px;
    line-height: 35px;
    font-family: 'futurabookcregular', sans-serif;
    text-align: center;
    text-transform: uppercase;
    color: #898989;
    background: #ebebeb;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

.b-comments-form button:hover {
    color: #fff;
    background: #ca0f0a;
}

.b-comments-form__errors {
    color: #f00;
}

.b-comments-form__errors p {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 16px;
}

/* Comment */
.b-comments-comment {
    margin: 0 0 30px;
    padding: 0 0 30px;
    border-bottom: 1px solid #ccc;
}

.b-comments-comment__head {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 10px;
}

.b-comments-comment__body {
    margin: 0 0 10px;
}

.b-comments-comment__author-name {
    margin: 0 5px 0 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    font-family: Arial, sans-serif;
    color: #000;
}

.b-comments-comment__datetime {
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    font-family: Arial, sans-serif;
    color: #ccc;
}

.b-comments-comment__content {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    font-family: 'futurafuturiscregular', sans-serif;
    color: #000;
}

.b-comments-comment__foot {
    display: flex;
    justify-content: flex-end;
}

.b-comments-comment__delete-btn {
    font-size: 12px;
    line-height: 1;
    font-family: Arial, sans-serif;
    color: #ca0f0a;
    text-decoration: none;
}

.b-comments-comment__delete-btn:hover {
    text-decoration: underline;
}