body.no-scroll {
  overflow: hidden;
}

.reviews-container {
  max-width: 1370px;
  width: 100%;
  margin: 100px auto;
}

.owl-carousel2 .owl-next {
  right: -65px;
}

@media (max-width: 1250px) {
  .owl-carousel2 .owl-next {
    right: -34px;
  }

  .owl-carousel2 .owl-next .nav-right-slider {
    width: 50px;
    height: 50px;
  }
}

.owl-carousel2 .owl-prev {
  left: -65px;
}

@media (max-width: 1250px) {
  .owl-carousel2 .owl-prev {
    left: -34px;
  }

  .owl-carousel2 .owl-prev .nav-left-slider {
    width: 50px;
    height: 50px;
  }
}

.review,
.review-special {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 8px;
  height: 255px;
  width: 100%;
  cursor: pointer;
}

.review::after,
.review-special::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 16px;
  background-image: url('../img/google_g.svg');
  background-size: contain;
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
}

.review .review-box,
.review-special .review-box {
  display: flex;
}

.review .review-box img,
.review-special .review-box img {
  width: 48px !important;
  height: 48px;
  margin-bottom: 8px;
}

.review .review-user,
.review-special .review-user {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.review .review-user .name,
.review-special .review-user .name {
  font-weight: bold;
  font-size: 15px;
  color: #333;
}

.review .review-user .date,
.review-special .review-user .date {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

.review p,
.review-special p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.review p.empty,
.review-special p.empty {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(85, 85, 85, 0.75);
}

.rating {
  display: inline-block;
  font-size: 25px;
  color: #f4c150;
  margin-bottom: 8px;
}

.rating.rating-1::before {
  content: "★☆☆☆☆";
}

.rating.rating-2::before {
  content: "★★☆☆☆";
}

.rating.rating-3::before {
  content: "★★★☆☆";
}

.rating.rating-4::before {
  content: "★★★★☆";
}

.rating.rating-5::before {
  content: "★★★★★";
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.modal-opinions {
  background-color: #fff;
  max-width: 500px;
  width: 90%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
}

.modal-opinions .review-special {
  margin: 0;
  height: auto;
  padding-bottom: 30px;
}

.modal-opinions .review-special::after {
  right: 0;
  left: 50%;
  transform: translateX(-50%);
  top: inherit;
  bottom: 5px;
}

.modal-opinions .review-special p {
  display: block;
  text-align: left;
}

.modal-opinions .review-special .date {
  text-align: left;
}

.modal-opinions .modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
}