.my-rating-page .my-rating-container {
    padding: 1.25rem;
    border-radius: 0.75rem;
    background-color: #e4f1ef;
}

.my-rating-page .my-rating-filter {
    padding-bottom: 1.25rem;
}

.my-rating-page .my-rating-filter .form-label {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.my-rating-page .my-rating-filter .form-control {
    min-height: 2.75rem;
    border-color: #d6e2e1;
    border-radius: 0.5rem;
    background-color: #fff;
}

.my-rating-page .my-rating-filter .form-control:focus {
    border-color: #23a2a4;
    box-shadow: 0 0 0 0.2rem rgba(35, 162, 164, 0.15);
}

.my-rating-page .total-rating-box {
    display: grid;
    min-height: 10rem;
    height: 100%;
    padding: 1.25rem;
    place-items: center;
    border-radius: 0.75rem;
    background-color: #fff;
    text-align: center;
}

.my-rating-page .total-rating-box article {
    width: 100%;
}

.my-rating-page .total-rating-box h3 {
    margin: 0;
    padding: 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.my-rating-page .total-rating-box p {
    margin: 0;
    font-size: 1rem;
}

.my-rating-page .rating-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    direction: ltr;
}

.my-rating-page .rating-tag i {
    color: #23a2a4;
    font-size: 1rem;
}

.my-rating-page .rating-tag b {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.my-rating-page .total-rating-box .rating-tag {
    margin: 0.5rem 0;
    padding: 0.35rem 0.75rem;
    border: 1px solid #eee;
    border-radius: 100rem;
}

.my-rating-page .total-rating-box .rating-tag i,
.my-rating-page .total-rating-box .rating-tag b {
    font-size: 1.2rem;
}

.my-rating-page .total-rating-box .rating-tag b {
    color: #23a2a4;
}

.my-rating-page .comments-list-container {
    min-height: 10rem;
    padding: 0.9375rem;
    border-radius: 0.75rem;
    background-color: #fff;
}

.my-rating-page .comments-list-container > p:only-child {
    margin: 0;
    padding: 3rem 1rem;
    color: #667575;
    text-align: center;
}

.my-rating-page .comment-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin: 1.25rem 0;
}

.my-rating-page .comment-item:first-child {
    margin-top: 0;
}

.my-rating-page .comment-item:last-child {
    margin-bottom: 0;
}

.my-rating-page .comment-item > img {
    width: 2.5rem;
    height: 2.5rem;
    flex: 0 0 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.my-rating-page .comment-item figcaption {
    width: 100%;
    min-width: 0;
    padding: 1.5625rem;
    border-radius: 0.625rem;
    background-color: #e4f1ef;
}

.my-rating-page .comment-item h3 {
    margin-bottom: 0.25rem;
    padding-inline-end: 5.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.my-rating-page .comment-item .orgName {
    display: block;
    padding-inline-end: 5.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.my-rating-page .comment-item .Comment {
    margin: 0;
    padding: 0.625rem 0;
    color: #444;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.my-rating-page .comment-item .CommentDate {
    color: #667575;
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 700;
}

.my-rating-page .comment-item .rating-tag {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    margin: 0;
    padding: 0.25rem 0.75rem;
    border-radius: 100rem;
    background-color: #fff;
}

@media (min-width: 768px) {
    .my-rating-page .comments-list-container {
        padding: 2.5rem;
        box-shadow: 0 0.25rem 1.875rem rgba(0, 0, 0, 0.1);
    }
}

@media (min-width: 1366px) {
    .my-rating-page .my-rating-container {
        padding: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .my-rating-page .my-rating-container,
    .my-rating-page .comments-list-container {
        padding: 1rem;
    }

    .my-rating-page .comment-item {
        gap: 0;
        margin: 0 0 0.75rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .my-rating-page .comment-item:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .my-rating-page .comment-item > img {
        display: none;
    }

    .my-rating-page .comment-item figcaption {
        padding: 1rem;
    }

    .my-rating-page .comment-item h3,
    .my-rating-page .comment-item .orgName {
        padding-inline-end: 0;
    }

    .my-rating-page .comment-item .rating-tag {
        position: static;
        width: max-content;
        margin: 0.75rem 0 0;
    }
}
