@import 'rating.css';

.kfx-google-reviews-container {
  position: fixed;
  top: 300px;
  z-index: 10;
  display: flex;
  transition: all ease 0.4s;
}
.kfx-google-reviews-container.left {
  left: -290px;
}
.kfx-google-reviews-container.right {
  right: -290px;
  flex-direction: row-reverse;
}
.kfx-google-reviews-container.left.expanded {
  left: 0;
}
.kfx-google-reviews-container.right.expanded {
  right: 0;
}
.kfx-google-reviews-container .kfx-google-reviews {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: 290px;
}
.kfx-google-reviews-container .kfx-google-reviews .rate {
  font-weight: bold;
}
.kfx-google-reviews-container .kfx-google-reviews img {
  max-width: 200px;
}
.kfx-google-reviews-container .kfx-google-reviews a {
  padding: 10px 0;
  color: #000;
  font-size: 24px;
  font-weight: bold;
}
.kfx-google-reviews-container .google-logo {
  display: flex;
  height: 90px;
  width: 40px;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.kfx-google-reviews-container.left .google-logo {
  border-left: 1px solid rgba(0, 0, 0, 0.364);
}
.kfx-google-reviews-container.right .google-logo {
  border-right: 1px solid rgba(0, 0, 0, 0.364);
}
.kfx-google-reviews-container .google-logo img {
  transform: rotate(270deg);
  object-fit: contain;
  max-width: 75px;
}
