.rating > div {
  display: flex;
  justify-content: center;
  background-color: #111;
  width: 199px;
  padding: 5px;
  border: 1px solid #2e3335;
  border-radius: 9px;
}

.tra:nth-child(1) {
  font-size: small;
  color: #747474;
}

.tra {
  color: #777;
  text-align: center;
  height: 23.5%;
  font-size: x-small;
}

.nra {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 85%;
  margin: auto;
  color: #555;
  border-right: 1px solid #222;
  border-left: 1px solid #222;
  font-size: 24px;
  font-weight: 700;
}

.dlike {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
}

.dlike_but {
  color: #555;
  font-size: 33px;
  cursor: pointer;
}

.min {
  opacity: 0;
  position: absolute;
  margin-left: -17px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

.like {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
}

.info {
  width: 60%;
}

.dlike {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
}

.tra:nth-child(3) {
  color: #a9a9a9;
  font-size: x-small;
}

.like_but {
  color: #555;
  cursor: pointer;
  font-size: 33px;
}

.fill {
  color: teal;
  transition: color 0.5s ease-out;
}

.fil {
  transition: color 0.5s ease-out;
  color: #ff7800;
}

.plu {
  opacity: 0;
  position: absolute;
  margin-left: -21px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

.foff {
  animation-name: fade-out-bottom;
  animation-duration: 3s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}

@keyframes fade-out-bottom {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
}

.ffoff {
  animation-name: fade-out-top;
  animation-duration: 3s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}

@keyframes fade-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
}

