@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200&display=swap");
:root {
  --martinique:#323357;
  --mariner:#2A5BDA;
  --bright-sun:#FCCC4D;
  --zircon: #F5F8FF;
  --black:#000000;
  --white:#ffffff;
  --mercury:#E5E5E5;
  --comet: #595B71;
}

*, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.star_sprite {
  background-image: url("../../images/bu/svgimg-rating.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100px;
  height: 24px;
  top: -3px;
  margin-right: 15px;
  position: relative;
}
.star_sprite.starblank {
  background-position: 0px -208px;
}
.star_sprite.star0 {
  background-position: 0px -208px;
}
.star_sprite.star05 {
  background-position: 0px -187px;
}
.star_sprite.star1 {
  background-position: 0px -165px;
}
.star_sprite.star15 {
  background-position: 0px -144px;
}
.star_sprite.star2 {
  background-position: 0px -121px;
}
.star_sprite.star25 {
  background-position: 0px -100px;
}
.star_sprite.star3 {
  background-position: 0px -79px;
}
.star_sprite.star35 {
  background-position: 0px -58px;
}
.star_sprite.star4 {
  background-position: 0px -36px;
}
.star_sprite.star45 {
  background-position: 0px -14px;
}
.star_sprite.star5 {
  background-position: 0 8px;
}

.profilerating {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin: 10px 0 0px;
}
.profilerating .heading {
  display: flex;
  margin: 10px 0px 30px;
  justify-content: space-between;
}
@media (max-width: 568px) {
  .profilerating .heading {
    margin: 10px 0px 30px;
  }
}
.profilerating .heading .title {
  font-size: 24px;
  line-height: 32px;
}
@media (max-width: 568px) {
  .profilerating .heading .title {
    font-size: 18px;
    line-height: 24px;
  }
}
.profilerating .heading .link {
  font-size: 14px;
  font-weight: 600;
  color: #2549A1;
  transition: all 0.2s ease-in;
}
.profilerating .heading .link:hover {
  text-decoration: underline;
}
.profilerating .heading .link.mobile {
  display: none;
}
@media (max-width: 568px) {
  .profilerating .heading .link.mobile {
    display: block;
    width: 90px;
  }
  .profilerating .heading .link.desktop {
    display: none;
  }
}

.overallrating {
  display: flex;
  flex-direction: row;
  margin: 0 0 20px 0;
}
.overallrating .overall-rating {
  width: 200px;
  display: flex;
  justify-content: left;
  padding-left: 10px;
  flex-direction: column;
  border-right: 1px solid #f1f1f1;
  margin-right: 25px;
}
@media (max-width: 568px) {
  .overallrating .overall-rating {
    width: 160px;
  }
  .overallrating .overall-rating .totalreview {
    font-size: 14px;
  }
}
@media (max-width: 440px) {
  .overallrating .overall-rating {
    width: 120px;
  }
  .overallrating .overall-rating .totalreview {
    font-size: 12px;
  }
}
.overallrating .overall-rating .rating_fig {
  font-size: 40px;
  font-weight: 700;
}
.overallrating .overall-rating .rating_fig span {
  font-size: 20px;
  font-weight: 400;
}

.viewall_button {
  text-align: center;
  display: block;
}
.viewall_button > a {
  display: none;
}
.viewall_button .allreveiws_count {
  font-size: 14px;
  font-weight: 600;
  color: #0065FF;
  margin: 20px 0;
  transition: all 0.2s ease-in;
}
.viewall_button .button {
  cursor: pointer;
  border: 1px solid #2549A1;
  border-radius: 8px;
  color: #2549A1;
  display: block;
  text-align: center;
  padding: 14px;
  max-width: 300px;
  margin: 30px auto 0;
}
@media (max-width: 1024px) {
  .viewall_button > a {
    display: block;
  }
  .viewall_button > a .allreveiws_count {
    margin: 10px 0 0;
  }
  .viewall_button .button {
    cursor: pointer;
    background: #3965FB;
    border-radius: 8px;
    margin-bottom: 20px;
  }
}

.ratings {
  display: flex;
  align-items: center;
  grid-gap: 1.2rem;
}

.ratings img {
  width: 3.2rem;
  height: 3.2rem;
}

.card-rating-text {
  font-size: 1.6rem;
  color: var(--martinique);
  font-weight: 400;
}

.rating-count {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--comet);
}

.rating-percents {
  display: flex;
  width: 280px;
  flex-direction: column;
}
@media (max-width: 568px) {
  .rating-percents {
    width: 180px;
  }
}

.rating-percent {
  display: flex;
  justify-content: space-between;
}

.rating-no {
  font-size: 12px;
  font-weight: 500;
  color: #253858;
  width: 30px;
}
.rating-no label {
  color: #FFAB00;
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
}
.rating-no label::before {
  font-size: 20px;
  font-family: FontAwesome;
  display: inline-block;
  content: "\f005";
  line-height: 20px;
}

.rating-progress {
  margin: 0;
  background-color: var(--zircon);
  border-radius: 20px;
  width: 160px;
  height: 2px;
  position: relative;
  top: 8px;
  left: -10px;
}
@media (max-width: 568px) {
  .rating-progress {
    width: 40%;
  }
}

.rating-progress .progressbar {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--bright-sun);
  border-radius: 1.8rem;
}

.rating-percent:nth-child(1) .rating-progress .progressbar {
  width: 84%;
}

.rating-percent:nth-child(2) .rating-progress .progressbar {
  width: 18%;
}

.rating-percent:nth-child(3) .rating-progress .progressbar {
  width: 8%;
}

.rating-percent:nth-child(4) .rating-progress .progressbar {
  width: 4%;
}

.rating-percent:nth-child(5) .rating-progress .progressbar {
  width: 2%;
}

.rating-percent-no {
  font-size: 12px;
  color: var(--martinique);
  font-weight: 500;
  width: 60px;
  line-height: initial;
}

.fade {
  transition: opacity 0.15s linear;
}
.fade:not(.show) {
  opacity: 0;
}

.tab-content .tab-pane {
  display: none;
}

.tab-content .tab-pane.active {
  display: block;
}

.articlelisting-tabs {
  display: flex;
  list-style: none;
  border-bottom: 1px solid #ccc;
}
.articlelisting-tabs .nav-link {
  color: #253858;
  box-shadow: none;
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-right: 30px;
  padding: 15px 0;
  margin-top: 10px;
  position: relative;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.articlelisting-tabs .nav-link::before {
  content: "";
  width: 100%;
  height: 3px;
  bottom: -1px;
  position: absolute;
}
.articlelisting-tabs .nav-link.active:before {
  background-color: #253858;
}

.panel_review_list {
  position: relative;
}
.panel_review_list .slide-list-item {
  background: rgba(222, 235, 255, 0.4);
  border-radius: 16px;
  box-shadow: none;
  width: 280px;
  height: 300px !important;
  margin: 8px;
}
.panel_review_list .slide-list-item .receive_rating {
  padding: 10px;
  display: flex;
  font-weight: 600;
  font-size: 14px;
  align-items: center;
  position: relative;
}
.panel_review_list .slide-list-item .receive_rating .datatime {
  font-size: 12px;
  font-weight: 400;
  position: absolute;
  right: 15px;
}
.panel_review_list .slide-list-item .content {
  padding: 0 10px 15px;
  height: 240px;
  position: relative;
}
.panel_review_list .slide-list-item .content .heading {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  margin: 0px;
}
.panel_review_list .slide-list-item .content .heading.center {
  justify-content: center;
}
.panel_review_list .slide-list-item .content .bodytext {
  font-size: 14px;
  line-height: 24px;
  display: block;
  margin-top: 10px;
  height: 175px;
  overflow: hidden;
  overflow-y: scroll;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.panel_review_list .slide-list-item .content .bodytext::-webkit-scrollbar {
  width: 1px;
}
.panel_review_list .slide-list-item .content .bodytext::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.panel_review_list .slide-list-item .content .bodytext::-webkit-scrollbar-thumb {
  background: #888;
}
.panel_review_list .slide-list-item .content .bodytext::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.panel_review_list .slide-list-item .content .bodytext .link {
  color: #0164ff;
  font-weight: 500;
  cursor: pointer;
}
.panel_review_list .slide-list-item .content .views {
  font-size: 12px;
  display: block;
  justify-content: space-between;
  position: absolute;
  width: 90%;
  box-sizing: content-box;
  bottom: 0;
  margin: 0px auto;
  text-align: center;
}
.panel_review_list .slide-list-item .content .views span {
  padding-left: 20px;
  display: inline-block;
  position: relative;
  color: #97a0af;
}
.panel_review_list .slide-list-item .content .views span:before {
  content: "";
  background: url("../../images/bu/fireinsurance-icon-sprite.svg") no-repeat 0 0;
  position: absolute;
  width: 16px;
  height: 20px;
  top: 1px;
  left: 0;
}

.wrap-modal-slider {
  padding: 0 30px;
  opacity: 0;
  transition: all 0.3s;
}

.wrap-modal-slider.open {
  opacity: 1;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  display: block;
  width: 26px;
  height: 26px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  outline: none;
  background: transparent;
  top: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.slick-prev {
  left: calc(100% - 65px);
  top: -25px;
}

.slick-prev:before {
  content: "";
  width: 10px;
  height: 10px;
  border: solid #5e6c84;
  border-width: 0 2px 2px 0;
  transform: rotate(135deg);
  display: inline-block;
  position: absolute;
  right: 5px;
  top: 7px;
  opacity: 1;
}

.slick-next {
  right: 0;
  top: -25px;
}

.slick-next:before {
  content: "";
  width: 10px;
  height: 10px;
  border: solid #5e6c84;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg);
  display: inline-block;
  position: absolute;
  right: 7px;
  top: 7px;
  opacity: 1;
}

/****** Style Star Rating Widget *****/
.rating {
  border: none;
  display: inline-block;
}

.rating > input {
  display: none;
}

.rating > label:before {
  margin: 5px;
  font-size: 1.25em;
  font-family: FontAwesome;
  display: inline-block;
  content: "\f005";
}

.rating > .half:before {
  content: "\f089";
  position: absolute;
}

.rating > label {
  color: #ddd;
  float: right;
}

.rating > input:checked ~ label,
.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
  color: #FFD700;
}

.rating > input:checked + label:hover,
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label,
.rating > input:checked ~ label:hover ~ label {
  color: #FFED85;
}

.withbg {
  background: rgb(222, 235, 255);
  background: linear-gradient(180deg, rgba(222, 235, 255, 0.4) 0%, rgb(222, 235, 255) 70%, rgb(255, 255, 255) 70%);
  position: relative;
}
.withbg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  background: url(../../images/bu/sme/reviewbg.svg) repeat-x;
  top: 90px;
}
@media (max-width: 740px) {
  .withbg::before {
    display: none;
  }
}
.withbg.invert_rating {
  position: relative;
}
.withbg.invert_rating .overallrating {
  position: relative;
  margin: 20px auto;
  text-align: center;
}
.withbg.invert_rating .panel_review_list .slick-prev, .withbg.invert_rating .panel_review_list .slick-next {
  top: 50%;
  transform: translate(0px, -50%);
  background: #fff;
}
.withbg.invert_rating .panel_review_list .slide-list-item {
  background: #FFFFFF;
  box-shadow: 0px 6px 16px rgba(52, 105, 203, 0.16);
  border-radius: 16px;
  margin: 12px;
}
.withbg.invert_rating .panel_review_list .slick-next {
  right: -50px;
}
.withbg.invert_rating .panel_review_list .slick-prev {
  left: -50px;
}
.withbg.invert_rating .viewall_button {
  display: block;
  text-align: center;
}
.withbg.invert_rating .viewall_button a:first-child {
  display: none;
}
.withbg.invert_rating .viewall_button .button {
  width: 200px;
  padding: 15px;
  display: inline-block;
  border-radius: 8px;
  background: #fff;
  border: 1px solid;
  margin-top: 15px;
}

@-webkit-keyframes growProgressBar {
  0%, 33% {
    --pgPercentage: 0;
  }
  100% {
    --pgPercentage: var(--value);
  }
}

@keyframes growProgressBar {
  0%, 33% {
    --pgPercentage: 0;
  }
  100% {
    --pgPercentage: var(--value);
  }
}
@property --pgPercentage {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}
.firereviewrating .overallrating .overall-rating {
  justify-content: center;
  text-align: center;
}
.firereviewrating .rating_fig {
  background: none;
  box-shadow: none;
  color: #253858;
  width: 110px;
  height: 40px;
  border-radius: 0;
}

.rating_fig {
  --size: 8rem;
  --fg: #2549A1;
  --bg: #fff;
  margin: 0px auto;
  --pgPercentage: var(--value);
  -webkit-animation: growProgressBar 3s 1 forwards;
          animation: growProgressBar 3s 1 forwards;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(closest-side, white 94%, transparent 0 99.9%, white 0), conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
  font-family: Helvetica, Arial, sans-serif;
  font-size: calc(var(--size) / 5);
  color: var(--fg);
  position: relative;
  box-shadow: 1px 1px 10px #acccf7;
}
.rating_fig .ratingmsg {
  font-size: 44px;
  font-weight: 400;
  position: absolute;
}
.rating_fig .ratingmsg + div {
  font-size: 12px;
  position: absolute;
  bottom: 25px;
  color: #9e9d9d;
  font-weight: 400;
}
.rating_fig + .totalreview {
  font-size: 12px;
  display: block;
  margin: 10px 0 0;
  font-weight: 500;
  color: #656464;
}
@media (max-width: 440px) {
  .rating_fig {
    --size: 5rem;
  }
  .rating_fig .ratingmsg {
    font-size: 26px;
    font-weight: 600;
  }
  .rating_fig .ratingmsg + div {
    bottom: 12px;
  }
  .rating_fig .totalreview {
    font-size: 12px;
  }
}

.rating_fig::before {
  counter-reset: percentage var(--value);
  content: counter(percentage) "%";
  display: none;
}/*# sourceMappingURL=review-inner-for-common_v8.css.map */