/*================================================
FL Feedback Area CSS
=================================================*/
.fl-feedback-box {
  z-index: 1;
  padding: 30px;
  position: relative;
  margin-bottom: 30px;
  border-radius: 10px;
  background-color: #f9f9f9;
}

.fl-feedback-box .rating {
  margin-bottom: 10px;
}

.fl-feedback-box .rating i {
  color: #FE824C;
  font-size: 18px;
  line-height: 1;
}

.fl-feedback-box p {
  font-size: 17px;
}

.fl-feedback-box .client-info {
  margin-top: 25px;
}

.fl-feedback-box .client-info img {
  border: 3px solid #063903;
  width: 58px !important;
  border-radius: 50%;
  border-top: none;
  height: 58px;
}

.fl-feedback-box .client-info .title {
  margin-left: 15px;
}

.fl-feedback-box .client-info .title h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

.fl-feedback-box .client-info .title span {
  display: block;
  font-size: 14.5px;
  color: var(--paragraphColor);
}

.fl-feedback-box::before {
  position: absolute;
  content: "\ee32";
  line-height: 1;
  opacity: .07;
  bottom: 10px;
  right: 50px;
  z-index: -1;
  font-family: 'boxicons';
  font-size: 100px;
}

.fl-feedback-slides.owl-theme .owl-dots {
  margin-top: 10px !important;
}

.fl-feedback-slides.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 0 4px;
  border-radius: 50%;
  background: #F2E5DE;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.fl-feedback-slides.owl-theme .owl-dots .owl-dot:last-child {
  margin-right: 0;
}

.fl-feedback-slides.owl-theme .owl-dots .owl-dot:first-child {
  margin-left: 0;
}

.fl-feedback-slides.owl-theme .owl-dots .owl-dot:hover span, .fl-feedback-slides.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--mainColor);
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
    .fl-feedback-box {
        padding: 20px 15px;
        text-align: center;
    }
    .fl-feedback-box .rating {
        margin-bottom: 8px;
    }
    .fl-feedback-box .rating i {
        font-size: 15px;
    }
    .fl-feedback-box p {
        font-size: 14px;
    }
    .fl-feedback-box .client-info {
        margin-top: 15px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .fl-feedback-box .client-info img {
        margin-right: 7px;
    }
    .fl-feedback-box .client-info .title {
        text-align: start;
        margin-left: 7px;
    }
    .fl-feedback-box .client-info .title h3 {
        font-size: 16px;
    }
    .fl-feedback-box::before {
        font-size: 50px;
        bottom: 68px;
        right: 15px;
    }
    .fl-feedback-slides.owl-theme .owl-dots {
        margin-top: 0 !important;
    }
}