.multirating-wrapper {
    background: #1c1c1c;
    padding-top: 10px; /* Уменьшено */
    overflow: hidden;
    border-radius: 1px; /* Уменьшено */
    border: 1px solid #181818;
    position: relative;
}

.multirating-wrapper * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.multirating-items-wrapper {
    margin: 0 auto;
    max-width: 483px; /* Уменьшено на 30% */
    background: #2c2c2c;
    border-radius: 1px; /* Уменьшено */
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1); /* Уменьшено */
}

.multirating-items-wrapper:after {
    content: '';
    display: block;
    clear: both;
}

.multirating-error {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px; /* Уменьшено */
    width: 210px; /* Уменьшено на 30% */
    max-width: 100%;
    cursor: pointer;
}

.multirating-error-text {
    padding: 8px 10px; /* Уменьшено */
    background: #fff;
    border-radius: 0 1px 1px 0;
    border-left: 3px solid #f15941; /* Уменьшено */
    font: normal 8.4px/12.6px Verdana; /* Уменьшено */
    color: #333;
}

.multirating-item {
    position: relative;
    float: left;
    width: 161px; /* Уменьшено на 30% */
    padding: 7px 5px 7px 59px; /* Уменьшено */
    color: #ccc;
    transition: .4s;
    border-bottom: 1px solid #181818;
}

.multirating-item-rateval {
    position: relative;
    float: left;
    padding: 0;
    margin: 0 0 0 -51px; /* Уменьшено */
}

.multirating-item-rateval canvas {
    display: block;
}

.multirating-loading .multirating-items-wrapper {
    opacity: .7;
}

.multirating-loading .multirating-item-rateval:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .8) url(loading.gif) no-repeat 50% 50%;
    border-radius: 50%;
}

.multirating-item-title {
    display: block;
    font: normal 13.3px/28px 'Trebuchet MS', Arial; /* Уменьшено */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.multirating-item-rating {
    width: 98px; /* Уменьшено на 30% */
    height: 8px; /* Уменьшено */
    list-style: none;
    margin: 0;
    padding: 0;
}

.multirating-item-rating li {
    position: relative;
    float: left;
    width: 9.8px; /* Уменьшено */
    height: 8px; /* Уменьшено */
    text-indent: -10000px;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
}

.multirating-rated .multirating-item-rating li {
    cursor: default;
}

.multirating-item-rating li:after {
    content: '';
    display: block;
    position: relative;
    top: 0;
    left: 0;
    width: 7.7px; /* Уменьшено */
    height: 7.7px; /* Уменьшено */
    background: #101010;
    box-shadow: inset 0 0.7px 1.4px rgba(0, 0, 0, 0.3); /* Уменьшено */
    border-radius: 50%;
}

.multirating-item-rating li.multirating-rate-active:after {
    background: #fff;
}

div.multirating-itog {
    margin-top: 10px; /* Уменьшено */
    padding: 7px; /* Уменьшено */
    background: #2c2c2c;
    font: normal 14px/23.8px 'Trebuchet MS', Arial; /* Уменьшено */
    color: #aaa;
    text-align: center;
    border-top: 1px solid #000;
    font-variant: small-caps;
    border-radius: 1px; /* Уменьшено */
}

.multirating-itog-rateval {
    display: inline-block;
    padding: 0 7px; /* Уменьшено */
    margin: 0 3.5px; /* Уменьшено */
    background: #090909;
    color: #fff;
    font-weight: normal;
    border-radius: 1px; /* Уменьшено */
    box-shadow: inset 0 0.7px 2.8px rgba(0, 0, 0, .2); /* Уменьшено */
    text-shadow: 0 0.7px 1.4px rgba(0, 0, 0, 1); /* Уменьшено */
}

div.multirating-itog i {
    font-size: 9.8px; /* Уменьшено */
    color: #888;
}

/* История оценок */
.multirating-log {
    display: none;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -105px; /* Уменьшено */
    width: 210px; /* Уменьшено на 30% */
    border: 1px solid #d0d0d0;
    background: #fff;
    padding-bottom: 4.9px; /* Уменьшено */
    border-radius: 1px; /* Уменьшено */
    box-shadow: 0 0 0 4.2px rgba(0, 0, 0, .12); /* Уменьшено */
    font: normal 8.4px Verdana; /* Уменьшено */
    color: #404040;
}

@media screen and (max-width: 630px) {
    .multirating-items-wrapper {
        width: 370px; /* Увеличено для двух столбцов */
    }

    .multirating-item {
        width: 48%; /* Уменьшено для размещения двух элементов в строке */
        margin: 1%; /* Добавлены отступы для пространства между элементами */
        float: left; /* Выравнивание элементов в строку */
        box-sizing: border-box; /* Обеспечивает учет отступов в ширине */
    }

    .multirating-item-rateval {
        margin: 0 0 0 -50px; /* Скорректировано для адаптации к уменьшенной ширине */
    }

    .multirating-item-rating {
        width: 90px; /* Скорректировано для адаптации к уменьшенной ширине */
    }
}

