.rating {
  align-items: center;
  background-color: #7209b7;
  border-radius: 50%;
  color: var(--white);
  display: none;
  height: 180px;
  justify-content: center;
  position: absolute;
  right: 25px;
  text-align: center;
  top: 270px;
  width: 180px;
  outline: 5px solid rgba(114, 9, 183, 0.2);
}

@media (min-width: 1200px) {
  .rating {
    display: flex;
  }
}

.rating::before,
.rating::after {
  background-color: #6909b3;
  border-radius: 50%;
  content: "";
  height: 80%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.rating::after {
  background-color: #5f09af;
  border-radius: 50%;
  height: 60%;
  width: 60%;
}

.rating-wrap {
  position: relative;
  z-index: 1;
}
