.rightContainer {
    display: flex;
    flex-direction: column;
}
/*
.ratingContainer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: #4da318;
    position: absolute;
    right: 10px;
    top: 5px;
    border-radius: 3px;
    padding: 0px 5px;
}

.ratingContainer span.ratingPercentage {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.ratingContainer .thumbs-up-icon {
    margin-right: 3px;
    color: #fff!important;
    font-size:12px;
}

.performerItem {
    position: relative;
    width: 20%;
    padding: 0 5px;
    display: flex;
    flex-direction: column;
    transition: transform .2s;
}

.performerItem:hover {
    transform: scale(1.05);
    z-index: 999;
}

.performerItem img {
    width: 100%;
}

.performerItem a {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.performerItem .performerInfo {
    padding: 10px;
    text-align: center;
    background-color: #111;
}

.performerItem .performerInfo span {
    color: #ccc;
}

.performerItem .performerInfo h3 {
    display: block;
    font-family: 'Open Sans';
    font-size: 13px;
    line-height: 20px;
    color: #fff;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 0;
}

@media (max-width: 1023px) {
    .performerItem {
        width: 33.33%;
    }
}

@media (max-width: 899px) {
    .performerItem {
        width: 50%;
    }
}

@media (max-width: 479px) {
    .performerItem {
        width: 100%;
    }
}



body.vrpa .performerItem .performerInfo h2,
body.vrpa .rightContainer .ratingContainer span.ratingPercentage {
    color: #000;
}
*/