<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.discussions-vk {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 15px;

    background: #edeef0;
}

.comment {
    display: flex;
    flex-direction: row;

    width: 100%;
    padding: 10px 25px;
    border-radius: 2px;

    box-shadow: 0 1px 0 0 #d7d8db, 0 0 0 1px #e3e4e8;
    margin: 10px 0;
    background: #fff;
}

.comment__column-1 {
    padding-top: 8px;
}

.comment__logo {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.comment__online {
    padding-top: 5px;
    font-size: 12.5px;
    margin-top: 5px;
    line-height: 18px;
    color: #939393;
    text-align: center;
}

.comment__column-2 {
    flex-basis: calc(100% - 130px);
    padding-left: 30px;
    position: relative;
}

.comment__logo-image {
    display: block;
    max-width: 100%;

    height: auto;
    border-radius: 50%;

    opacity: .9;

    transition: opacity .3s;
}

.comment__logo-image:hover {
    opacity: 1;
}

.comment__header {
    display: flex;
}

.comment__group-title {
    font-size: 13px;
    line-height: 16px;
    font-weight: 700;
    color: #42648b !important;
    text-decoration: none;
    text-align: left !important;
}

.comment__group-title:hover,
.comment__group-title:active,
.comment__group-title:focus {
    text-decoration: underline;
}

.comment__text-link {
    font-size: 13px;
    line-height: 19px;
    font-weight: 100;
    color: #2a5885;
    text-decoration: none;
}

.comment__text-link:hover,
.comment__text-link:active,
.comment__text-link:focus {
    text-decoration: underline;
}

.comment__comment-date {
    cursor: pointer;
    font-size: 13px;
    line-height: 16px;
    color: #939393 !important;
    margin: 0 0 0 5px;
    text-decoration: none;
    text-align: left !important;
}

.comment__comment-date:hover {
    text-decoration: underline;
}

.comment__text-title,
.comment__original-link {
    font-size: 13px;
    line-height: 19px;
    color: #000 !important;
    text-align: left !important;
}

.comment__text-title {
    margin-bottom: 20px;
}

.comment__original-link {
    color: #42648b;
    padding-bottom: 20px;
    font-weight: 700;
}

.comment__like {
    position: absolute;
    right: 0;
    bottom: 5px;
    display: flex;
    align-items: center;
}

.comment__like-number {
    margin: 0 0 0 4px;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #2a5885;
    font-size: 11.5px;
    line-height: 10px;
}

.comment__image-box {
    margin-bottom: 30px;
}

@media screen and (max-width: 830px) {
    .comment__header {
        flex-direction: column;
    }

    .comment__logo {
        width: 80px;
        height: 80px;
    }

    .comment__column-2 {
        flex-basis: calc(100% - 100px);
        padding-left: 30px;
    }

    .comment__image {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .comment__comment-date {
        margin: 0;
    }
}

@media screen and (max-width: 414px) {
    .comment__logo {
        width: 60px;
        height: 60px;
    }

    .comment {
        padding: 10px 15px;
    }

    .comment__column-2 {
        flex-basis: calc(100% - 80px);
        padding-left: 20px;
    }
}
</pre></body></html>