@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);
.rating { 
  border: none;
}

.rating > input { display: none; } 
.rating > label:before { 
  margin: 5px;
  font-size: 1.25em;
  font-family: FontAwesome;
  display: inline-block;
  content: "\f005";
}

.rating > .half:before { 
  content: "\f089";
  position: absolute;
}

.rating > label { 
  color: #ddd; 
 float: right; 
}

/***** CSS Magic to Highlight Stars on Hover *****/

.rating > input:checked ~ label, /* show gold star when clicked */
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label { color: #FFD700;  } /* hover previous stars in list */

.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label { color: #FFED85;  } 

.review-row img {
    max-width: 100px !important;
    margin: 0 15px;
}

.review-row span {
    text-transform: uppercase;
    color: black;
    font-size: 27px;
    font-weight: 500;
}

.review-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 15px 0;
}

.review-container.text-center {
    max-width: 300px;
    margin: 0 auto;
}

.carousel__viewport {
    display: none;
}

div#reviewBox{
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

a#reviewSubmit {
    background: #e6080c;
    color: white;
    padding: 7px 30px;
    border-radius: 5px;
}

#reviewBox h2 {
    font-size: 30px;
    margin: 0;
}

html {
    background: white;
}

fieldset.rating {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    margin: 20px;
}