  
  .googleRating {
    
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    
    padding: 1rem;
    
    border-top: 0.2rem solid #34a853;
    border-radius: 0.5rem;
    
    background-color: #ffffff;
    box-shadow: 0 0 0.25rem 0 rgba(0, 0, 0, 0.2);
  }
  
  .googleRating > img {
    
    height: 4rem;
  }
  
  .googleRating h3 {
    
    font-size: 0.8rem;
    
    margin: 0;
    color: #777777;
  }
  
  .googleRating .starsContainer {
    
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .googleRating .starsContainer > span {
    
    font-family: "MEDIUM";
    font-size: 1.5rem;
    
    font-weight: bold;
    color: #fea500;
  }
  
  .googleRating .starsContainer > div {
    
    display: flex;
  }
    
  .starIcon::after {
    
    content: "";
    
    display: block;
    
    height: var(--default-line-height-rem);         /* madhësia e pseudo-elementit */
    aspect-ratio: 1;
    
    mask-image: var(--icon-star);
    mask-size: var(--default-line-height-rem);      /* madhësia e imazhit */
    mask-position: center center;
    mask-repeat: no-repeat;
    
    background-color: #fea500;
  }
    
  .googleRating a {
    
    font-family: "REGULAR";
    font-size: 0.8rem;
    
    color: #777777;
    text-decoration: none;
  }
  
  .googleRating a:hover {
    
    text-decoration: underline;
  }
  