.review-container {
  max-width: 1300px;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

.review-area {
  margin-top: 64px;
  margin-bottom: 64px;
}

.card-for-review {
  display: flex;
  gap: 30px;
  /* background-color:#FAFBFC; */
  padding: 24px;
}
/* .card-for-review .image-area{
    display: flex;
    justify-content: center;
} */
.card-for-review .image-area img {
  width: 100%;
}

.image-text h5 {
  font-weight: bold;
  font-size: 24px;
  text-transform: uppercase;
}
.image-text p {
  line-height: 2rem;
  font-size: 16px;
}

.rating-area {
  display: flex;
  gap: 18px;
}
.rating-head {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rating-head h6 {
  font-size: 16px;
}

.rating {
  display: block;
  direction: rtl;
  unicode-bidi: bidi-override;
  text-align: left;
}
.rating .star {
  display: none;
}
.rating label {
  color: lightgray;
  display: inline-block;
  font-size: 22pt;
  margin: 0 -2px;
  transition: transform 0.15s ease;
}
.rating label:hover {
  transform: scale(1.35, 1.35);
}
.rating label:hover,
.rating label:hover ~ label {
  color: orange;
}
.rating .star:checked ~ label {
  color: orange;
}

.comment-area {
  padding-top: 16px;
}
.comment-area h6 {
  font-size: 16px;
  padding-bottom: 8px;
}

.comment-area textarea {
  border-radius: 4px;
  padding: 16px;
}

.btn-group .btn {
  background: lightgray;

  margin-bottom: 16px;
}
.form-select {
  display: block;
  width: 400px !important;
  background-image: none !important;
  padding: 0 !important;
}

input[type="button"] {
  background-color: #8c59c8;
  border: 1px solid transparent;
  color: #fff;
  border-radius: 5px;
  padding: 10px 40px;
  font-size: 16px;
  white-space: nowrap;
  /* width: 100%; */
}

@media only screen and (max-width: 768px) {
  .card-for-review {
    flex-direction: column;
  }
  .form-select {
    width: 330px !important;
  }
  .comment-area textarea {
    width: 330px !important;
  }
}
