.star-rating {
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  align-items: center;
}
.rating {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: flex-start;
}

.avarageStars {
    display: flex;
    align-items: center;
    height: 25px;
    gap: 1px;
}

.star {
    width: 20px;
    height: 22px;
    background-size: cover;
    display: inline-block;
    cursor: pointer;
}

.starFull {
    background-image: url('/Customizing/global/plugins/Services/COPage/PageComponent/UxTemplates/classes/Collection/CollectionItemVariable/StarRating/src/img/star-full-a.svg');
}

.starFullWithDot {
    background-image: url('/Customizing/global/plugins/Services/COPage/PageComponent/UxTemplates/classes/Collection/CollectionItemVariable/StarRating/src/img/star-full-b.svg');
}

.starHalf {
    background-image: url('/Customizing/global/plugins/Services/COPage/PageComponent/UxTemplates/classes/Collection/CollectionItemVariable/StarRating/src/img/star-half-a.svg');
}

.starHalfWithDot {
    background-image: url('/Customizing/global/plugins/Services/COPage/PageComponent/UxTemplates/classes/Collection/CollectionItemVariable/StarRating/src/img/star-half-b.svg');
}

.starEmpty {
    background-image: url('/Customizing/global/plugins/Services/COPage/PageComponent/UxTemplates/classes/Collection/CollectionItemVariable/StarRating/src/img/star-outline-a.svg');
}

.starEmptyWithDot {
    background-image: url('/Customizing/global/plugins/Services/COPage/PageComponent/UxTemplates/classes/Collection/CollectionItemVariable/StarRating/src/img/star-outline-b.svg');
}

.rating-box {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: black;
    padding: 10px 20px;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    width: 100%;
    margin-top: 0;
    box-sizing: border-box;
    min-width: fit-content;
    text-align: center;
}
.star-container {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
.rating-box-header {
  width: 100%;
}
.starRating {
    width: 20px;
    height: 22px;
    background-size: cover;
    display: inline-block;
    cursor: pointer;
}
.remove-link {
    font-size: 10px;
    display: none;
    margin-top: 15px;
}
.number-of-rating {
    font-weight: bold;
    font-size: 10px;
    padding: 0 4px;
    border: 1px solid #888;
    border-radius: 5px;
    height: fit-content;
}
