.commentsWidget * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

.commentsWidget {
    position: fixed;
    bottom: 0;
    right: 50px;
}

.commentsWidget_item {
    display: block;
    text-decoration: none;
    margin-bottom:-150px;
    cursor: pointer;
    max-width:375px;
    width:100%;
    padding: 13px 24px;
    background: #fff;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.32);
    border-radius: 12px 12px 0px 0px;
}

.commentsWidget_item-header {
    display: flex;
    align-items: center;
}

.commentsWidget_item-user {
    display: flex;
}

.commentsWidget_item-user img {
    width: 40;
    height: 40px;
}

.commentsWidget_item-username {
    padding-left: 8px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 135%;
    /* identical to box height, or 22px */
    color: #000000;

}

.commentsWidget_item-username span {
    display: block;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 135%;
    /* or 16px */
    color: #B1B1B1;
}
.commentsWidget_item-content{
    padding-top:4px;
    font-family: 'Montserrat';
font-style: italic;
font-weight: 400;
font-size: 16px;
line-height: 135%;
color: #000000;
}
.commentsWidget_item-rating{
    display: flex;
    padding-left:24px;
}
.commentsWidget_item-rating .star{
    display: block;
    position: relative;
    width:18px;
    height: 17px;
    background: bottom center / cover url(../img/widget/star.png) no-repeat;
    
}
.commentsWidget_item-rating .star:not(:last-child){
     margin-right:6px;
}
.commentsWidget_item-rating#rate4 .star:last-child{
    background: bottom center / cover url(../img/widget/star_grey.png) no-repeat;
}
.commentsWidget_item-rating#rate4_5 .star:last-child{
    background: bottom center / cover url(../img/widget/star_half.png) no-repeat;
}
.commentWidget_close{
    position: absolute;
    right:7px;
    top:7px;
    width: 18px;
    height: 18px;
    transform: rotate(45deg);
    cursor: pointer;
}
.commentWidget_close:before, .commentWidget_close:after{
    content: '';
    display: block;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    background: #8ECDE1;
}
.commentWidget_close:before{
    width:2px;
    height: 100%;
}
.commentWidget_close:after{
    height: 2px;
    width:100%;
}
@media (max-width:767px){
    .commentsWidget{
        right:10px;
    }
}
@media (max-width:450px){
    .commentsWidget_item{
        max-width: 100%;
    }
    .commentsWidget{
        width:100%;
        right:0px;
        left:0px;
    }
}