﻿.b-opinion {
    text-align: left;
    margin-bottom: 3em;
}
    .opinion__head {
        margin-bottom: 1em;
    }
        .opinion__head-aside {
            display: inline-block;
        }
            .opinion__rating {
                display: inline-block;
                font-size: 1.5em;
                padding: 0.25em;

                background: #464646;
                color: #fff;

                cursor: default;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
            }

            .opinion__rating_good {
                background: #80b932;
            }

            .opinion__rating_medium {
                background: #ffad00;
            }

            .opinion__rating_bad {
                background: #c01e01;
            }

        .opinion__head-main {
            display: inline-block;
        }

            .opinion__author {
                font-size: 1.2em;
            }

            .opinion__vacation-time {
                font-size: 0.8em;
            }

    .opinion__body {
        
    }
        .opinion__text {
            transition: all 0.3s 0.01s ease;
            height: auto;
        }
        .opinion__text_reduced {
            max-height: 12em;
            overflow: hidden;
            position: relative;
        }
        .opinion__text_reduced:after {
            content: '';
        }
        .opinion__text-extend {
            text-align: right;
            position: absolute;
            width: 100%;
            background: #fff;
            height: 3em;
            right: 0;
            bottom: 0;
        }
            .opinion__text-extend-link {
                color: #0099d2;
                border-bottom: 1px dotted #0099d2;
                cursor: pointer;
                font-style: italic;
            }
            .opinion__text-extend-link:hover {
                border-bottom: 0;
            }