/***** Testimonials *****/
#main #testimonials-list {
  margin: 40px 0;
}
#main #testimonials-list .testimonial {
  padding: 20px;
  line-height: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.2s linear;
}
#main #testimonials-list .testimonial:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}
#main #testimonials-list .testimonial .testimonial-logo {
  position: relative;
  display: block;
  overflow: hidden;
  width: 120px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  border-radius: 8px;
}
#main #testimonials-list .testimonial .testimonial-title {
  font-family: "Shabnam-Bold-FD", Tahoma, monospace;
  font-size: 14pt;
  color: #0069ff;
  line-height: 40px;
  margin: 10px 0;
}
#main #testimonials-list .testimonial .testimonial-content {
  font-size: 10pt;
}
#main #testimonials-list .testimonial .testimonial-url {
  font-size: 11pt;
  font-family: "Shabnam", Tahoma, monospace;
  direction: ltr;
  text-align: left;
}
#main #testimonials-list .testimonial .testimonial-url > a {
  position: relative;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #1fc198;
  padding-left: 25px;
  background-repeat: no-repeat;
  background-position: left 4px;
  background-size: 20px;
  background-image: url("/asset/img/icon/external-link.svg");
  transition: all 0.2s linear;
}
#main #testimonials-list .testimonial .testimonial-url > a:hover, #main #testimonials-list .testimonial .testimonial-url > a:active, #main #testimonials-list .testimonial .testimonial-url > a:focus {
  color: #0069ff;
}

/***** Night Mode *****/
body.night-mode #main #testimonials-list .testimonial {
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.1);
}
body.night-mode #main #testimonials-list .testimonial:hover {
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.4);
}
