.google-popup-tab {
    position: fixed;
    display: flex;
    align-items: center;
    bottom: 20px;
    left: 15px;
    background-color: #ffffff;
    box-shadow: 2px 2px 4px 2px rgb(0 0 0 / 10%);
    padding: 20px 16px 16px 16px;
    z-index: 99;
    transition: 0.35s;
    width: max-content;
    cursor: pointer;
    transition-delay: 0s;
    height: max-content;
    border-left: 6px solid #bad432;
}

.google-popup-tab img {
  /* height: 45px; */
  transition: 0.3s;
  transition-delay: 0.2s;
}

.google-popup-tab.google-popup-active {
  /* box-shadow: 0px -3px 4px 2px rgb(0 0 0 /10%);
  bottom: 0;
  left: 0;
  width: 333px;
  max-width: 100%;
  transition: 0.15s;
  transition-delay: 0.35s;
  cursor: unset; */
  display: none;
}

.google-popup-rating {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  width: 100%;
  transition: 0.3s;
  transition-delay: 0.2s;
}

.google-popup-gr {
  font-weight: 500;
  color: var(--primary);
  transition: 0.3s;
  transition-delay: 0.2s;
}

.google-popup-or,
.google-review-sc-rating {
  font-size: 20px;
  color: orange;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  transition: 0.3s;
  transition-delay: 0.2s;
}

.google-popup-or .fa-star,
.google-popup-or .fa-star-half-stroke,
.google-review-sc-rating .fa-star {
  font-size: 14px;
  font-weight: 900 !important;
  transition: 0.3s;
  transition-delay: 0.2s;
}


.google-popup-total,
.google-popup-more {
  font-size: 13px;
  font-weight: 300;
  transition: 0.3s;
  transition-delay: 0.2s;
}

.google-popup-count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-wrap: nowrap;
  transition: 0.3s;
  transition-delay: 0.2s;
}

.google-popup-close {
  position: sticky;
  padding: 12px;
  font-size: 17px;
  cursor: pointer;
  color: var(--primary);
  /* width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition-delay: 0s; */
  transition: 0s;
  background: var(--medium-grey);
  display: flex;
  justify-content: flex-end;
  box-shadow: 0px 3px 4px 2px rgb(0 0 0 /10%);
  top: 0;
}

.google-popup-see-reviews {
  position: sticky;
  padding: 12px;
  font-size: 14px;
  color: var(--primary);
  background: var(--medium-grey);
  display: flex;
  justify-content: center;
  box-shadow: 0px -3px 4px 2px rgb(0 0 0 /10%);
  bottom: 0;
  text-align: center;
}

.google-popup-see-reviews a {
  cursor: pointer;
}

.google-popup-more {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition-delay: 0s;
  transition: 0s;
}

.art-google-review-open .google-popup-close,
.google-popup-active .google-popup-more {
  height: auto;
  width: auto;
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
  transition-delay: 0.5s;
}

.google-popup-hide {
  position: absolute;
  top: -30px;
  right: -30px;
  border-radius: 100%;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.15);
  background: whitesmoke;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0;
  overflow: hidden;
  width: 0;
  opacity: 0;
  transition: 0.25s;
  margin: 20px;
}

/* media 767 */

@media screen and (max-width: 767px){
  .google-popup-hide {
    width: 20px;
    height: 20px;
    opacity: 1;
    left: 32px;
    top: -20px;    
  }
  .google-popup-hide i.far.fa-times {
    font-size: 14px;
}
}



.google-popup-hide.google-popup-hide-active {
  width: 20px;
  height: 20px;
  opacity: 1;
}

.google-popup-active .google-popup-hide {
  display: none;
}

.art-google-review {
  background: white;
  width: 340px;
  max-width: 100%;
  position: fixed;
  left: 0;
  height: 100vh;
  box-shadow: 6px 0px 15px 0px rgb(0 0 0 / 25%);
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 14px;
  transform: translateX(-360px);
  transition: 0.5s;
  transition-timing-function: ease-in;
  overflow-y: auto;
  z-index: 99;
  top: 0;
}

.art-google-review.art-google-review-open {
  transform: translateX(0px);
}

.art-google-review-content {
  gap: 12px;
  display: flex;
  flex-direction: column;
  padding: 0px 15px;
  margin-top: 20px;
}

.art-google-review-single, .art-google-review-single p {
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 1.75;
  text-align: left !important;
}

.art-google-review::-webkit-scrollbar {
  width: 6px; /* Set the width of the scrollbar */
  margin-left: 12px;
}

.art-google-review::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Set the background color of the track */
}

.art-google-review::-webkit-scrollbar-thumb {
  background-color: #d7d7d7; /* Set the color of the scrollbar thumb */
  border-radius: 4px; /* Set the border radius of the thumb */
}

.art-google-review .fa-star {
  color: orange;
  font-weight: 900 !important;
}

.art-google-review-company {
  display: flex;
  margin-bottom: 8px;
  align-items: flex-start;
}

.art-google-review-image {
  /* height: 40px; */
  margin-right: 8px;
}

.art-google-review-title {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-top: -4px; 
}

.art-google-review-rating {
  margin-top: -4px;
}

.google-review-sc {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.google-review-sc img {
  height: 40px;
}

.art-review-logos {
  position: absolute;
  top: 0px;
  transform: translateY(-16px);
  display: flex;
  gap: 6px;
}
.art-review-logos img {
  height: 28px;
}
.google-popup-mobile-image img {
  display: none;  
}

@media (max-width: 767px) {
  .google-popup-mobile .art-review-logos {
    top: 4px;
    display: none;
  }
  .google-popup-mobile {
    /* transform: rotate(90deg); */
    bottom: 75px;
    /* left: -58px; */
    padding: 0px;
    /* width: 150px; */
    /* height: 35px; */
    left: 0;
    border: none;
    background: transparent;
    box-shadow: none;    
  }
  .google-popup-mobile .google-popup-gr,
  .google-popup-mobile .google-popup-count,
  .google-popup-mobile .google-popup-total {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    /* transition: 0.3s; */
    /* transition-delay: 1.2s; */
  }
  .google-popup-or,
  .google-review-sc-rating {
    justify-content: center;
  }
  .google-popup-mobile.google-popup-tab .art-review-logos img {
    max-height: 20px;
  }
  .google-popup-mobile .google-popup-or {
    font-size: 18px;
    /* transition: 0.3s;
    transition-delay: 0.2s; */
  }
  .google-popup-mobile .google-popup-or .fa-star {
    font-size: 12px;
    /* transition: 0.3s;
    transition-delay: 0.2s; */
  }
  .google-popup-rating {
    display: none;
  }
  .google-popup-mobile-image img {
    display: block;
  }
  .google-popup-mobile-image img {
    width: 100%;
    height: auto;
    max-width: 84px;
  }
}
