.reviews-popup {
  display: block;
  position: fixed;
  font-family: inherit;
  font-size: 14px;
  line-height: 22px;
  width: 100%;
  max-width: 350px;
  left: 25px;
  bottom: 25px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.97);
  color: inherit;
  text-decoration: none;
  /* background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(245,245,245,1) 100%); */
  /* background: linear-gradient(180deg, rgba(27, 126, 44, .10) 0%, rgba(255, 255, 255, 1) 75%); */
  user-select: none;
  opacity: 0;
  z-index: 98;
}

.reviews-popup,
.reviews-popup * {
  color: inherit;
  text-decoration: none;
}

.reviews-popup > div {
  display: flex;
  position: relative;
  text-align: left;
  padding: 10px;
  padding-bottom: 5px;
  width: 100%;
}

.reviews-popup > div > div {

}

.reviews-popup-image {
  width: 45px;
  max-width: 45px;
  margin-top: 10px;
  margin-right: 10px;
  text-align: center;
}

.reviews-popup-image img,
.reviews-popup-image div {
  display: inline-block;
  width: 45px;
  height: 45px;
  border-radius: 45px;
}

.reviews-popup-image div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: #e91e63;
}

.reviews-popup-header {
  display: flex;
  position: relative;
  width: 100%;
}

.reviews-popup-body {
  display: block;
  width: 100%;
}

.reviews-popup-header-name {
  display: flex;
  align-items: center;
  width: 63%;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
}

.reviews-popup-header-name svg {
  color: #00c307;
  fill: #00c307;
  margin-left: 5px;
  margin-bottom: -1px;
}

.reviews-popup-header-date {
  width: 37%;
  font-size: 90%;
  color: #999;
  text-align: right;
  white-space: nowrap;
}

.reviews-popup-excerpt {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
}

.reviews-popup-footer {
  display: flex;
  align-items: center;
}

.reviews-popup-footer-stars {
  fill: #ffaa00;
  color: #ffaa00;
  width: 50%;
}

.reviews-popup-footer-verified-status {
  display: flex;
  align-items: center;
  justify-content: end;
  font-size: 80%;
  text-align: right;
  text-transform: uppercase;
  color: #00c307;
  fill: #00c307;
  width: 50%;
}

.reviews-popup-footer-verified-status svg {
  margin-right: 0;
  margin-bottom: -3px;
}

.reviews-popup-close {
  position: absolute;
  top: -13px;
  left:-13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 25px;
  background-color: #fff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background 250ms;
  z-index: 99;
}

.reviews-popup-close span {
  display: inline-block;
  position: absolute;
  width: 13px;
  height: 1px;
  background-color: #999;
}

.reviews-popup-close:active span {
  background-color: #555;
}

.reviews-popup-close span:first-of-type {
  transform: rotate(-45deg);
}

.reviews-popup-close span:last-of-type {
  transform: rotate(45deg);
}

@media only screen and (max-width: 480px) {
  .reviews-popup {
    left: 15px;
    right: 15px;
    bottom: 15px;
    width: auto;
    max-width: none;
  }
}
