/*
 * Thrive Testimonials styles
 */

#testimonial-wrap {
  text-align: center;
}

.testimonial {
  display: none;
  opacity: 0;
}

.current-slide {
  display: block;
  opacity: 1;
  animation: fadeInOut 1s;
}

.name {
  margin-bottom: 0;
}

.client-title {
  margin-top: 0;
}

@keyframes fadeInOut {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slider-nav {
  width: 100%;
  margin: 25px 0 0;
  padding: 0;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  justify-content: center;
  -webkit-justify-content: center;
  list-style-type: none;
}

.slider-nav .dot {
  width: 25px;
  height: 25px;
  margin-left: 5px;
  margin-right: 5px;
  border-width: 2px;
  border-style: solid;
  border-color: #000;
  border-radius: 50%;
  cursor: pointer;
  transition: .3s ease;
}

.current-dot {
  background-color: #000;
}

.testimonials-widget {
  position: relative;
  padding: 5px 25px;
  text-align: center;
  font-style: italic;
  color: #FFF;
  background-color: #6D6E71;
}

.testimonials-widget::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1;
  width: 70px;
  height: 70px;
  background: url(../images/open-quote.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.testimonials-widget::after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 1;
  width: 70px;
  height: 70px;
  background: url(../images/close-quote.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.testimonials-widget .name-title {
  margin-bottom: 1em;
}
