/* Wrapper for review stars, Text, # of reviews at the top of the product page*/
/* Not to be confused with the review section at the bottom of the page */
span.reviews {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-height: 60px;
}

/* Wrapper for Review Score, Count */
.rating-score-and-count-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns the score and count to the left */
    justify-content: center;
    margin-top: 13px;
    margin-left: 11px;
    height: auto;
    max-height: 100%;
}

/* Review Score ex. '5.0 Stars' */
.reviews .rating-score {    
    display: flex;
    height: auto;
    font-size: clamp(16.5px, 3vw, 18.5px);
    margin-top: -2px;
    margin-bottom: -10px; /* Adjusts the space between the score and the count */
    max-height: 30px;
    color: black;
}

/* Review Count ex. '[10 Reviews]' */
.reviews .rating-count {
    height: auto;
    font-size: clamp(10px, 1.8vw, 11px);
    font-weight: 600;
    padding: 0;
    color: #4F4F4F;
    max-height: 30px;
}
/* At <1200 px wide, center the Reviews section, as the pricing moves below it in a column.   */
@media (max-width: 1200px) {
    .reviews {
        justify-content: center;
    }
}
/* Review Score when there's < 6 reviews */
.review-count-below-threshold {
    align-self: center;
    margin-left: 6px;
    margin-top: 8px;
    font-weight: 500;
    font-size: clamp(13px, 2.8vw, 16px);
}
/* Review Stars when there's < 6 reviews - unlike the other stars, this uses a custom image */
.reviews .empty-review-stars {
    aspect-ratio: 1/1;
    margin-right: 4px;
    width: 30px;
}
/* Container for stars */
.reviews a {
    display: flex;
    align-items: center;
    text-decoration: none !important;
}
.reviews a:hover {
    color: #455A64
}
.reviews .card {
    border-radius: 5px;
    background-color: #fff;
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px
}
.reviews .row
{
    margin: 0;
}
/* Individual star */
.reviews .fa-star
{
    color: #CFD8DC;
    font-size: 35px; /* Increasing this increases the star's size */
}
.reviews .review-form
{
    width: 100%;
}
.reviews .rating-box {
    width: 130px;
    height: 130px;
    margin-right: auto;
    margin-left: auto;
    background-color: #FBC02D;
    color: #fff
}
.reviews .rating-label {
    font-weight: bold
}
.reviews .rating-bar {
    width: 300px;
    padding: 8px;
    border-radius: 5px
}
.reviews .bar-container {
    width: 100%;
    background-color: #f1f1f1;
    text-align: center;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    margin-bottom: 5px
}
.reviews .bar-5 {
    width: 70%;
    height: 13px;
    background-color: #FBC02D;
    border-radius: 20px
}
.reviews .bar-4 {
    width: 30%;
    height: 13px;
    background-color: #FBC02D;
    border-radius: 20px
}
.reviews .bar-3 {
    width: 20%;
    height: 13px;
    background-color: #FBC02D;
    border-radius: 20px
}
.reviews .bar-2 {
    width: 10%;
    height: 13px;
    background-color: #FBC02D;
    border-radius: 20px
}
.reviews .bar-1 {
    width: 0%;
    height: 13px;
    background-color: #FBC02D;
    border-radius: 20px
}
.reviews td {
    padding-bottom: 10px
}
.reviews .star-active {
    color: #FBC02D;
    margin-top: 10px;
    margin-right: 5px;
    margin-bottom: 10px
}
.reviews .alert-success
{
    width: 100%;
}
.reviews .star-active:hover {
    color: #F9A825;
    cursor: pointer
}
.reviews .star-inactive {
    color: #CFD8DC;
    margin-top: 10px;
    margin-bottom: 10px
}
.reviews .blue-text {
    color: #0091EA
}
.reviews .content {
    font-size: 18px
}
.reviews .profile-pic {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    margin-right: 30px
}
.reviews .pic {
    width: 80px;
    height: 80px;
    margin-right: 10px
}
.reviews .vote {
    cursor: pointer
}
.reviews .toggle-button {
  display: inline-block;
  vertical-align: middle;
}
.reviews .toggle-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
  background-color: #ddd;
  position: relative;
  height: 26px;
  width: 50px;
}
.reviews .toggle-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}
.reviews .toggle-switch {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: all 0.3s ease-in 0s;
}
.reviews .toggle-checkbox {
  display: none;
}
.reviews .toggle-checkbox:checked + .toggle-label .toggle-inner {
  margin-left: 0%;
}
.reviews .toggle-checkbox:checked + .toggle-label .toggle-switch {
  left: 28px;
}
.reviews .card {
    border-radius: 5px;
    background-color: #fff;
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 15px;
    padding-top: 20px;
    padding-bottom: 30px;
}
.reviews .fa-star-half-o
{
    color: #FBC02D;
    font-size: 35px; /* Changed to match increased size from rework, formerly 28px */
}
.reviews .fa-star-o
{
    color: #FBC02D;
    font-size: 35px; /* Changed to match increased size from rework, formerly 28px */
}
.error-message {
    color: red;
    font-weight: 700;
}
button#submit-review {
    font-size: 18px;
    background-color: #006EFA;
    border: 1px solid #006EFA;
}