/*Layouts css goes here*/
.rating-row {
  border: 1px solid #e74c3c;
  margin: .2em;
  border-radius: 4px;
}

@media only screen and (min-width: 1190px) {
  .rating-row {
    max-height: 178px;
  }
}

.rating-row .col-sm-3 {
  margin: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em !important;
  border-right: 1px solid #e74c3c;
  background: #131617;
}

.rating-row .col-sm-9 {
  padding: 1em !important;
  border-radius: 3px;
}

.rating {
  height: 7rem;
  width: 7rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  overflow: hidden;
  color: white;
  background: #2980b9;
  font-size: calc(7rem / 4);
  line-height: 1;
}
.rating span {
  position: relative;
  display: flex;
  font-weight: bold;
  z-index: 2;
}

.rating::after {
  content: "";
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  left: 0.7rem;
  background: #0b0d0e;
  border-radius: inherit;
  z-index: 1;
}
.rating::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  left: 0.7rem;
  border-radius: inherit;
  box-shadow: 0 0 0 1rem #cccccc;
  z-index: -1;
}

.rating span small {
  font-size: 0.5em;
  font-weight: 900;
  align-self: center;
}

.rating.good {
  background: #27ae60;
}
.rating.meh {
  background: #f1c40f;
}
.rating.bad {
  background: #e74c3c;
}