.testimonial-popup {
  position: fixed;
  top: 1000; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-popup-inner {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.testimonial-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 25px;
  background: none;
  border: none;
  cursor: pointer;
}

.testimonial-popup-inner input[type="text"],
.testimonial-popup-inner textarea,
.testimonial-popup-inner select {
  width: 100%;
  margin-bottom: 15px;
  padding: 8px;
}

.testimonial-popup-inner input[type="submit"] {
  background: #2b6cb0;
  color: #fff;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.testimonial-success {
  color: green;
  margin-top: 10px;
}
