/*
  google review begin
 */

.ng-reviews-container {
    display: flex;
    padding: 15px;
}

/* summary begin */
.ng-reviews-summary {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 10px;
    width: 190px;
    min-width: 190px;
}

.ng-review-summary-title {
    font-size: 22px;
}

.ng-review-summary-avg {
    font-size: 40px;
    font-weight: bold;
    color: #cc3333;
    line-height: 1.1;
}

.ng-review-summary-stars-container {
    display: inline-block;
}

.ng-review-summary-stars-outer {
    position: relative;
    display: inline-block;
    font-family: 'Font Awesome 5 Free';
    color: #ccc;
}

.ng-review-summary-stars-outer::before {
    content: "\f005  \f005  \f005  \f005  \f005";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ccc;
}

.ng-review-summary-stars-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    color: #f80;
}

.ng-review-summary-stars-inner::before {
    content: "\f005  \f005  \f005  \f005  \f005";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #FBBC04;
}

.ng-review-summary-stars-outer::before, .ng-review-summary-stars-inner::before {
    font-size: 13px;
}
/* summary end */


/* cards begin */
.ng-review-card-container {
    display: flex;
    overflow-x: auto;
    gap: 10px;
}

.ng-google-review-card {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin: 5px 5px 15px;
    padding: 5px;
    width: 300px;
    min-width: 300px;
}

.ng-review-card-header {
    display: flex;
    gap: 10px;
    padding: 5px;
}

.ng-review-card-header::after {
    content: "";
    width: 25px;
    height: 25px;
    background-image: url("https://cdn.myshoptet.com/usr/www.ng-pedikura.cz/user/documents/upload/images/graphics/google-icon.svg");
    background-repeat: no-repeat;
}

/* reservio begin */
.ng-review-card-header-reservio {
    display: flex;
    gap: 10px;
    padding: 5px;
}

.ng-review-card-header-reservio::after {
    content: "";
    width: 55px;
    height: 55px;
    background-image: url("https://cdn.myshoptet.com/usr/www.ng-pedikura.cz/user/documents/upload/images/graphics/reservio-icon.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.ng-review-card-user-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.user-icon-reservio {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}
/* reservio end */

.ng-review-card-details {
    flex-grow: 1;
}

.ng-review-card-username {
    font-size: 14px;
    font-weight: bold;
}

.ng-review-card-date {
    font-size: small;
}

.ng-review-card-body {
    padding: 5px;

}

.ng-review-card-stars {
    font-size: 13px;
}

.fa-google {
    background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.ng-review-card-text {
    font-size: 14px;
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.ng-review-star-checked {
    color: #FBBC04;
}
/* cards end */



/* Mobile */
@media (max-width: 767px) {
    .ng-reviews-container {
        flex-direction: column;
    }

    .ng-reviews-summary {
        width: 100%;
    }
}

