/* CAROUSEL STARTS */
.customer-feedback .owl-item img {
    width: 85px !important;
    height: 85px;
}

.feedback-slider-item {
    /*
    position: relative;
    padding: 60px;
    margin-top: -40px;
    */

    display: flex;
    margin: 10px;
    align-items: center;
    justify-content: center;
    background-color: #F3F9FD;
}

.feedback-slider-item-center {
    /*
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -40%;
    transform: translate(-50%, -50%);
    */
}

.customer-quote {
    margin-top: 15px;
    margin-bottom: 25px;
    margin-left: 15px;
    margin-right: 15px;
    font-size: 16px;
    font-weight: 500;
}

.customer-name {
    font-size: 14px;
}

.feedback-slider-item p {
    line-height: 1.875;
}

.customer-rating {
    background-color: white;
    color: rgba(1, 1, 1, 0.702);
    font-weight: 700;
    position: absolute;
    width: 47px;
    height: 47px;
    line-height: 44px;
    font-size: 15px;
    right: 0;
    top: 77px;
    text-indent: -3px;
}

.thumb-prev .customer-rating {
    top: -20px;
    left: 0;
    right: auto;
}

.thumb-next .customer-rating {
    top: -20px;
    right: 0;
}

.customer-rating i {
    color: rgb(251, 90, 13);
    position: absolute;
    top: 10px;
    right: 5px;
    font-weight: 600;
    font-size: 12px;
}

/* GREY BACKGROUND COLOR OF THE ACTIVE SLIDER */
.feedback-slider-item:after {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    top: 0px;
    /*
    background-color: #F3F9FD;
    */
    z-index: -1;

    text-align: center;
    padding: inherit;
}

.thumb-prev, .thumb-next {
    position: absolute;
    z-index: 99;
    top: 45%;
    width: 98px;
    height: 98px;
    left: -90px;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.thumb-next {
    left: auto;
    right: -90px;
}

.feedback-slider-thumb img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.feedback-slider-thumb:hover {
    opacity: .8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.customer-feedback .owl-nav [class*="owl-"] {
    position: relative;
    display: inline-block;
    /*
    bottom: 45px;
    */
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.customer-feedback .owl-nav i {
    width: 50px;
    /* background-color: white; */
    /* color: rgb(24 212 190); */
    color: black;
    /* font-size: 24px; */
    font-size: 30px;
    line-height: 50px;
    /* padding-right: 0px; */
    /* margin-top: 70px; */
}

.customer-feedback .owl-prev {
    left: -15px;
}

.customer-feedback .owl-prev:hover {
    left: -20px;
}

.customer-feedback .owl-next {
    right: -15px;
}

.customer-feedback .owl-next:hover {
    right: -20px;
}

