
.popup-card{
  position: fixed;
  bottom: 5%;
  z-index: 10;
  width: 160px;
  max-width: 160px;
  border-radius: 8px; 
  background: white;
  border: 1px solid #dedede;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.17);
  /* animation: slideInLeft 0.5s ease-out forwards; */
}

.popup-card-content{
  width: 100%;
  padding: 2px 10px 10px 10px;
  text-align: center; 
  cursor: pointer;
}

.popup-img{
  width: 100%; 
  height: 140px;
  object-fit:cover;
  object-position:top; 
}

.popup-video{
  height: 100%;
  width: 100%;
  object-fit:cover;
  object-position:top;
}

.popup-video-content {
  width: 100%; 
  height: 140px;
  position: relative;
  cursor: pointer;
}

.popup-video-btn {
  all: unset;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup-star-div{
  line-height: 1;
  margin: 10px 0px;
}

.popup-reviewDescription {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  font-family: inherit;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 10px 0px;
}

.close-btn {
  cursor: pointer;
  font-size: 20px;
  border-radius: 99%;
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -10px;
  right: -10px;
  background: white;
  box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.1);
  border: none;
  /* animation: slideInTop 0.5s ease-out forwards; */
}

.close-btn.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInTop {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 520px) {
  .popup-card{
    width: 140px;
    max-width: 140px;
  }
  .popup-star-div svg{
    height: 20px;
    width: 20px;
  }
}
