.movie-content {
  display: flex;
  max-width: 785px;
  margin: 0 auto;
  padding: 0 24px;
}
.movie-sidebar {
  max-width: 220px;
  margin-right: 45px;
}
.movie-cover {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}
.movie-navigation {
  margin-top: 20px;
  text-align: center;
}
.movie-link {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.movie-share-list {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
}
.movie-share-list li {
  margin: 0 8px;
}
.movie-info {
  width: 100%;
  flex: 1;
}
.movie-title {
  margin: 0 0 20px;
  font-weight: bold;
  font-size: 60px;
}
.movie-title span {
  font-size: 30px;
}
.movie-title img {
  margin-right: 10px;
  padding-top: 7px;
}
.movie-result-description {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.4;
}
.movie-result-description-passed span {
  color: #4393a1;
}
.movie-result-description-no-passed span {
  color: #de6262;
}
.movie-why {
  padding: 0;
  list-style-type: none;
}
.movie-why li {
  margin-bottom: 10px;
}
.movie-why li:last-child {
  margin-bottom: 0;
}
.movie-why span,
.movie-result-rating {
  display: inline-block;
  width: 28px;
  height: 28px;
  padding: 6px 0;
  margin-right: 10px;
  color: #fff;
  text-align: center;
  line-height: 1;
  background-color: #000;
  border-radius: 50%;
}
.movie-why li:nth-child(1) span,
.movie-result-rating-0 {
  background-color: rgba(222, 98, 98, 0.5);
}
.movie-why li:nth-child(2) span,
.movie-result-rating-1 {
  background-color: rgba(222, 98, 98, 0.7);
}
.movie-why li:nth-child(3) span,
.movie-result-rating-2 {
  background-color: rgba(222, 98, 98, 1);
}
.movie-why li:nth-child(4) span,
.movie-result-rating-3 {
  background-color: #4393a1;
}

.movie-content-not-found {
  text-align: center;
}

@media screen and (max-width: 800px) {
  .movie-content {
    flex-direction: column;
    align-items: center;
  }
  .movie-sidebar {
    order: 2;
    margin-right: 0;
    margin-top: 20px;
  }
  .movie-info {
    order: 1;
  }
  .movie-title {
    text-align: center;
    font-size: 40px;
  }
  .movie-title img {
    display: block;
    margin: 0 auto 15px;
    padding-top: 0;
  }
  .movie-why li {
    font-size: 14px;
  }
  .movie-why span {
    margin-right: 5px;
  }
}
