.OA_rwLoadingImage{
    font-size: 2rem;
    text-align: center;
    line-height: 2;
}
.OA_rwLoadingImage .fas{
    font-size: 36pt;
}
/*Header CSS*/
#OA_newReviewWidgetCompanyInfo{
    border-bottom: solid 2px #ccc;
    padding: 5px 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.OA_companyReviewName{
    font-size: 175%;
    text-align: center;
    font-weight: bold;
    width: 100%;
}
.OA_avgReviews{
    padding: 0 10px;
}
.OA_reviewAvgStars{
    color: #FDBB21;
    font-size: 150%;
}
.OA_reviewAvgNum{
  margin-left: 5px;
}
.OA_reviewCount{
    font-size: 75%;
}
/*Reviews default CSS*/
.OA_reviewContainer{
    padding: 10px;
    border-bottom: solid 1px #eee;
    margin-bottom: 15px;
}
.OA_reviewContainer:last-child{
    border-bottom: none;
}
.OA_reviewScore{
    color: #FDBB21;
}
.OA_reviewTitle{
    font-size: 125%;
}
.OA_reviewerName{
    font-weight: bold;
}
.OA_reviewTime{
    font-size: 80%;
}
.OA_readMoreLink{
    cursor: pointer;
    font-size: 70%;
}
.OA_reviewSource{
    text-align: right;
}
.OA_reviewSource img{
    max-width: 75px;
}

/*scrollBox CSS*/
.OA_gglReviewOverflow{
    overflow-y: scroll;
    margin: auto;
}

/*FlexBox CSS*/
.OA_gglReviewOverFlex{
    display: flex;
    flex-wrap: wrap;
}
.OA_reviewFlexBox{
    flex: 1 1 160px;
    padding: 10px;
    border: solid 1px #eee;
}
.OA_reviewFlexBox .OA_readMoreContainer{
    text-align: center;
    margin-top: 5px;
}

/*ReviewPage CSS*/
.OA_gglReviewPage{
    -webkit-columns: 3 300px;
    -moz-columns: 3 300px;
    columns: 3 300px;
}
.OA_gglReviewPageItems{
    padding: 4%;
    margin: 3%;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 2px 2px 7px rgba(0,0,0,.15);
    display: inline-block;
    width: 90%;
}
.OA_gglReviewPageItems .OA_readMoreContainer{
    text-align: center;
    margin-top: 5px;
}

.OA_reviewAvgStars{
    position: relative;
    display: inline-block;
    }
.OA_reviewAvgStars:before, .OA_reviewAvgStars:after, .OA_reviewScore span[data-rating]:before, .OA_reviewScore span[data-rating]:after{
    display: inline-block;
    }
.OA_reviewAvgStars:after{content: '\2606\2606\2606\2606\2606';}
.OA_reviewScore span[data-rating="1"]:before {content: '\2605';}
.OA_reviewScore span[data-rating="1"]:after {content: '\2606\2606\2606\2606';}
.OA_reviewScore span[data-rating="2"]:before {content: '\2605\2605';}
.OA_reviewScore span[data-rating="2"]:after {content: '\2606\2606\2606';}
.OA_reviewScore span[data-rating="3"]:before {content: '\2605\2605\2605';}
.OA_reviewScore span[data-rating="3"]:after {content: '\2606\2606';}
.OA_reviewScore span[data-rating="4"]:before {content: '\2605\2605\2605\2605';}
.OA_reviewScore span[data-rating="4"]:after {content: '\2606';}
.OA_reviewAvgStars:before, .OA_reviewScore span[data-rating="5"]:before {content: '\2605\2605\2605\2605\2605';}
.OA_reviewScore span[data-rating="5"]:after {display: none;}

.OA_reviewAvgStars:before{
    width: var(--starWidth);
    position: absolute;
    overflow: hidden;
    top: 0;
}