@charset "UTF-8";

.rating-block {
  margin: 0 0 80px;
  font-size: 15px;
  line-height: 20px;
  position: relative;
}
.rating-block:last-child {
  margin-bottom: 0;
}
.rating-block .item {
  position: relative;
  z-index: 0;
/*  background: #F8F8F8 url(//technicalcity.b-cdn.net/images/bg_rating.png);*/
  background-color: #F8F8F8;
  
  border-radius: 6px;
  overflow: hidden;
  padding: 16px 16px 14px 18px;
  margin-bottom: 12px;
}
.rating-block .item:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #F8F8F8;
  content: "";
}
.rating-block .item .rating {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(216, 221, 223, 0.6);
  border-radius: 6px;
  overflow: hidden;
  height: 14px;
}
.rating-block .item .rating:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  content: "";
  background: #0D9E6E;
  background: -webkit-gradient(linear, left top, right top, from(#09C400), color-stop(266.44%, #0D9E6E));
  background: linear-gradient(90deg, #09C400 0%, #0D9E6E 266.44%);
  border-radius: 6px;
  width: var(--width);
}
.rating-block .item.current .rating:after {
  background: -webkit-gradient(linear, left top, right top, from(#0053EF), to(#2EAAFF));
  background: linear-gradient(90deg, #0053EF 0%, #2EAAFF 100%);
}
/*
.rating-block .item.current .heading .title {
  color: #0076FF;
}
*/
.rating-block .item.current .heading .avarage {
  color: #0076FF;
}
.rating-block .item .heading {
  padding-bottom: 12px;
  font-size: 15px;
  line-height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.rating-block .item .heading .title {
  color: #000;
}
.rating-block .item .heading .title a {
  color: #0076FF;
  text-decoration: none;
}
.rating-block .item .heading .title a:hover {
  text-decoration: underline;
}
.rating-block .item .heading .title span {
  color: #000;
  font-weight: 600;
}
.rating-block .item .heading .avarage {
  font-style: normal;
  font-weight: bold;
  color: #000;
}
.rating-block a.link {
  margin-top: 20px;
  display: inline-block;
  vertical-align: top;
  font-weight: 600;
  color: #0076FF;
}
.rating-block.large .item {
  height: 62px;
/*  background: #E7E8E8 url(//technicalcity.b-cdn.net/images/bg_rating_dark.png);*/
  background: #E7E8E8;
}
.rating-block.large .item:before {
  background: #E7E8E8;
}
.rating-block.large .item:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #E7E8E8;
  content: "";
  z-index: 1;
}
.rating-block.large .item .rating {
  background: none;
  top: 0;
  height: auto;
  z-index: 2;
}
.rating-block.large .item .rating:after {
  background: linear-gradient(80.93deg, #09C400 6.88%, #0D9E6E 106.08%);
}
.rating-block.large .item .heading {
  position: relative;
  z-index: 3;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0;
}
.rating-block.large .item .heading i {
  font-size: 12px;
}
.rating-block.large .item .heading .avarage {
  color: #959EA3;
}

