/*--------------------------------------------------------------
# Star Ratings
--------------------------------------------------------------*/
div.stars {
    width: 270px;
    display: inline-block;
}
.mt-200 {
    margin-top: 200px;
}
input.star {
    display: none;
}
label.star {
    float: right;
    padding: 10px;
    font-size: 36px;
    color: #1771bc;
    transition: all .2s;
}
input.star:checked~label.star:before {
    content: '\f005';
    color: #FD4;
    transition: all .25s;
}
input.star-5:checked~label.star:before {
    color: #FE7;
    text-shadow: 0 0 20px #952;
}
input.star-1:checked~label.star:before {
    color: #F62;
}
label.star:hover {
    transform: rotate(-15deg) scale(1.3);
}
label.star:before {
    content: '\f006';
    font-family: FontAwesome;
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
    padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}
.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px 30px 30px 60px;
    margin: 30px 15px;
    min-height: 200px;
    box-shadow: 0px 2px 12px rgba(44, 73, 100, 0.08);
    position: relative;
    background: #fff;
}
.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 10px;
    border: 6px solid #fff;
    position: absolute;
    left: -45px;
}
.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}
.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #badaf7;
    font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}
.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
}
.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #1977cc;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #1977cc;
}
@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }
    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }
    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }
    .testimonials .testimonial-item .testimonial-img {
        position: static;
        left: auto;
    }
}
/*--------------------------------------------------------------
# Chosen Multiselect
--------------------------------------------------------------*/
.anchor {
    color: inherit;
    position: relative;
}
div.side-by-side {
    width: 100%;
    margin-bottom: 1em;
}
div.side-by-side>div {
    float: left;
    width: 49%;
}
div.side-by-side>div>em {
    margin-bottom: 10px;
    display: block;
}
.clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}
.select,
.chosen-select,
.chosen-select-no-single,
.chosen-select-no-results,
.chosen-select-deselect,
.chosen-select-rtl,
.chosen-select-width {
    width: 350px;
}
.jquery-version-refer {
    margin-top: 40px;
    font-style: italic;
}
/*--------------------------------------------------------------
# Rating Header
--------------------------------------------------------------*/
.rateDesc {
    font-size: 25px;
    font-weight: bold;
}