#reviews .reviews {
    position: relative;
}
#reviews .reviews .item {
    margin: 10px 0;
    background-color: white;
    padding: 25px 24px 15px 24px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    border: solid 1px #eee;
}
#reviews .reviews .item > div {
    height: 100%;
    overflow: hidden;
}
#reviews .reviews .item .date {
    color: #999;
    display: block;
}
#reviews .reviews .item .desc,
#reviews .reviews .item p {
    margin: 10px 0px 10px 0px;
    font-size: 14px;
    font-style: italic;
    line-height: 20px;
}
#reviews .reviews .item .name {
    color: #777;
    font-weight: bold;
    font-size: 18px;
    margin: 0 10px 0 0;
    display: inline-block;
}
#reviews .reviews .item .city {
    margin: 3px 0px 0px 0px;
    font-size: 14px;
}
#reviews .reviews .item .stars {
    position: absolute;
    top: 20px;
    right: 15px;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #efefef;
    font-size: 24px;
    font-weight: 700;
    color: #E8AB5B;
    text-align: left;
    padding: 0 7px;
    line-height: 48px;
    vertical-align: middle;
}
#reviews .reviews .item .stars:after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 24px;
    height: 24px;
    top: 11px;
    right: 6px;
    background-image: url('../img/star.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
#reviews .review-btn-row {
    padding: 20px 0;
}
#reviews .review-btn-row .skew-btn {
    margin: 20px 0;
}
.rating-wrapper .rating {
    display: inline-block;
    width: 250px;
    height: 50px;
    position: relative;
}
.rating-wrapper .rating i {
    display: inline-block;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1;
    position: absolute;
}
.rating-wrapper .rating i:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.rating-wrapper .rating i:hover:before,
.rating-wrapper .rating i.active:before {
    background-image: url('../img/star.svg');
}
.rating-wrapper .rating i:hover:after,
.rating-wrapper .rating i.active:after {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    background-image: url('../img/star-hover.svg');
}
.rating-wrapper .rating i:nth-child(1) {
    z-index: 5;
    left: 0;
}
.rating-wrapper .rating i:nth-child(2) {
    z-index: 4;
    left: 50px;
}
.rating-wrapper .rating i:nth-child(3) {
    z-index: 3;
    left: 100px;
}
.rating-wrapper .rating i:nth-child(4) {
    z-index: 2;
    left: 150px;
}
.rating-wrapper .rating i:nth-child(5) {
    z-index: 1;
    left: 200px;
}
.rating-wrapper .rating i:nth-child(1):hover:before,
.rating-wrapper .rating i:nth-child(1).active:before {
    width: 50px;
    left: 0;
}
.rating-wrapper .rating i:nth-child(2):hover:before,
.rating-wrapper .rating i:nth-child(2).active:before {
    width: 100px;
    left: -50px;
}
.rating-wrapper .rating i:nth-child(3):hover:before,
.rating-wrapper .rating i:nth-child(3).active:before {
    width: 150px;
    left: -100px;
}
.rating-wrapper .rating i:nth-child(4):hover:before,
.rating-wrapper .rating i:nth-child(4).active:before {
    width: 200px;
    left: -150px;
}
.rating-wrapper .rating i:nth-child(5):hover:before,
.rating-wrapper .rating i:nth-child(5).active:before {
    width: 250px;
    left: -200px;
}
.rating-wrapper .rating:before {
    content: '';
    display: inline-block;
    width: 250px;
    height: 50px;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url('../img/star-gray.svg');
}
.rating-wrapper label {
    line-height: 55px;
    vertical-align: top;
    display: inline-block;
    margin: 0 20px 0 0;
}

@media only screen and (max-width: 1200px) {
    #reviews .reviews .item {
        width: 100%;
        padding-bottom: 20px;
    }
}
@media only screen and (max-width: 500px) {
    #reviews .reviews .item {
        height: auto;
    }
}