.starWrapper {
    width: 100%;
    height: 50px;
    padding: 12px 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    line-height: 20px;
}

.starWrapper-left {
    width: 100%;
    height: 50px;
    padding: 12px 0px;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    line-height: 20px;
}

.starWrapper-left img {
    position: inherit !important;
}
.ratingStar {
    margin-right: 5px;
}

.rating {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #D12C35;
}

.rating-background {
    display: flex;
    color: #63666A;
    position: relative;
    gap: 2px
}

.rating-foreground {
    display: flex;
    color: #D12C35;
    overflow: hidden;
    position: absolute;
    top: 0;
    gap: 2px
}

.numOfRatings {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #D12C35;
}

.rating-page__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    gap: 24px;
}

.rating__page_congratulations {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    gap: 40px;
}

.rating-page__title {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #63666A;
}

.rating-page__thumbnail_container {
    width: 256px;
    height: 256px;
    border-radius: 8px;
}

.rating-page__thumbnail_img {
    object-fit: contain;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.rating-page__model {
    max-width: 544px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.rating-page__model_title {
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    color: #2C2D2E;
}

.rating-page__model_description {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #3B3E42;
}

.rating-page__stars {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    gap: 8px;
    width: 176px;
    height: 72px;
}

.rating-page__stars_input {
    width: 32px;
    height: 32px;
    background-image: url("/wp-content/plugins/rating/includes/icons/grade.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.rating-page__stars_input:focus ~ .rating-page__stars_input,
.rating-page__stars_input:hover ~ .rating-page__stars_input,
.rating-page__stars_input:focus,
.rating-page__stars_input:hover {
    background-image: url("/wp-content/plugins/rating/includes/icons/star.svg");
}
input[type=radio]:checked ~ .rating-page__stars_input {
    background-image: url("/wp-content/plugins/rating/includes/icons/star.svg");
}

.rating-list-page__stars {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    gap: 8px;
    width: 176px;
    height: 72px;
}

.rating-list-page__stars_input {
    width: 32px;
    height: 32px;
    background-image: url("/wp-content/plugins/rating/includes/icons/grade.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.rating-list-page__stars_value .red-star {
    height: 14px;
    width: 16px;
    background-image: url(/wp-content/plugins/rating/includes/icons/star.svg);
    background-size: cover;
}

.rating-list-page__stars_value .empty-star {
    height: 14px;
    width: 16px;
    background-image: url("/wp-content/plugins/rating/includes/icons/grade.svg");
    background-size: cover;
}

.rating-page__stars_description {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #97999B;
}

.rating-page__buttons {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    height: 48px;
}

.rating-page__buttons .btn {
    display: inline-block;
    border-radius: 4px;
    font-size: 16px;
    line-height: 22px;
    text-decoration: none;
    padding: 12px 16px 12px 48px;
    font-weight: 500;
    height: auto;
    text-transform: none;
}

.rating-page__buttons .btn.btn-cancel,
.rating-page__buttons .btn.btn-cancel:hover {
    background-image: url("/wp-content/plugins/rating/includes/icons/cross.svg");
    background-repeat: no-repeat;
    background-position: center left 16px;
}

.rating-page__buttons .btn.btn-submit,
.rating-page__buttons .btn.btn-submit:hover {
    background-image: url("/wp-content/plugins/rating/includes/icons/check.svg");
    background-repeat: no-repeat;
    background-position: center left 16px;
}

.rating-page__buttons .btn.btn-submit.btn-red,
.rating-page__buttons .btn.btn-submit.btn-red:hover {
    background-image: url("/wp-content/plugins/rating/includes/icons/check_red.svg");
}

.modal-body.rating-page__modal {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 64px;
    gap: 24px;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #EEEEEF;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
}

.rating-page__modal_title {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #2C2D2E;
}

.rating-page__modal_buttons {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    height: 32px;
}

.rating-page__modal_buttons .btn-small {
    min-width: auto;
}

.rating__page_congratulations_header {
    width: 80px;
    height: 80px;
    background-image: url("/wp-content/plugins/rating/includes/icons/check_circle.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.rating__page_congratulations_description {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 16px;
    max-width: 544px;
}

.rating__page_congratulations_description_title {
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    color: #2C2D2E;
}

.rating__page_congratulations_description_sub {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #63666A;
    max-width: 414px;
}
.review-list {
    color: #313335;
}
.review-list h3 {
    margin-bottom: 40px;
}

.review-list p{
    margin: 0;
}
.review-list .time{
    margin:10px 0 40px 0;
    color: #63666A;
    font-size: 14px;
    line-height: 20px;
}

.review-list .comment {
    margin-top: 10px;
    color: #63666A;
    font-size: 14px;
    line-height: 20px;
}

.bars-section nobr{
    margin-left: 15px;
}
.bars-section {
    padding: 0;
    color: #63666A;
}

.bars {
    margin: 5px -20px 5px 0 !important;
    color: #63666A;
}


.bars .col {
    height: 20px;
    padding: 0;
}

.bars .col.red {
    background: #E4002B;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.bars .col.grey {
    background: #E5E5E6;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.bars .col.star-mark {
    max-width: 15%;
    padding: 0;
}

.bars .col.percentage {
    max-width: 10%;
    padding: 0 0 0 10px;
}
.bars-empty {
    color: #96999C;
}
.bars-section h3{
    font-size: 20px;
    line-height:28px;
}
.bars-star-section{
    margin-bottom: 20px;
}

.bars-star-section .red-star {
    height: 14px;
    width: 16px;
    background-image: url(/wp-content/plugins/rating/includes/icons/star.svg);
    background-size: cover;
}

.bars-star-section .empty-star {
    height: 14px;
    width: 16px;
    background-image: url("/wp-content/plugins/rating/includes/icons/grade.svg");
    background-size: cover;
}

.clear-margin{
    margin: 0 !important;
}

.ratings-total{
    color: #96999C;
    line-height: 16px;
    font-size: 12px;
    margin-bottom: 10px;
}

input.invalid {
    border-color: red !important;

}

textarea.invalid {
    border-color: red !important;
}

li.pagination-button {
    cursor: pointer !important;
}

li.pagination-button.disabled {
    cursor: default !important;
}

li.pagination-button span {
    margin: 0 5px;
    color: #313335;
    border: 0;
    border-radius: 4px;
}

li.pagination-button span.page-link:hover {
    background: #E5E5E6;
    color: #313335;
}

li.pagination-button.disabled span.page-link {
    background: white;
    color: #96999C;
}

li.pagination-button.active span.page-link {
    background: #E4002B;
    color: white;
}