.movie_wrapper {
  max-width: 1000px;
  margin-inline: auto;
  margin-top: 25px;
}

.movie_wrapper .txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 10px;
}

.movie_wrapper .txt p {
  font-size: 1.1em;
}

.movie_wrapper .txt a {
  position: relative;
  font-size: 16px;
  padding: 12px 25px 12px 12px;
  color: #fff;
  background: #df4636;
  border-radius: 5px;
  transition: .4s;
  width: 200px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.movie_wrapper .txt a:hover {
  background: #69a7ae;
}

.movie_wrapper .txt a:before {
  font-family: 'FontAwesome';
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 7%;
  content: '\f138';
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
}

.movie_wrapper ul {
  margin-top: 30px;
}

.movie_wrapper ul li {
  display: flex;
  gap: 15px;
  line-height: 1;
  padding-left: 10px;
}

.movie_wrapper ul li span {
  color: #999;
}

.movie_wrapper ul li+li {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #ddd;
}

@media only screen and (max-width: 1079px) {
  .movie_wrapper .txt p {
    font-size: .9em;
  }
  .movie_wrapper ul li {
    font-size: .9em;
  }
}

@media only screen and (max-width: 767px) {
  .movie_wrapper {
    margin-top: 0;
  }

  .movie_wrapper .txt {
    display: block;
    margin-bottom: 20px;
  }
  .movie_wrapper .txt p {
    font-size: 1.1em;
  }

  .movie_wrapper .txt a {
    display: block;
    margin-inline: auto;
    width: 160px;
    margin-top: 10px;
    font-size: 14px;
  }

  .movie_wrapper ul {
    margin-top: 30px;
  }

  .movie_wrapper ul li {
    display: flex;
    gap: 15px;
    line-height: 1;
    padding-left: 10px;
    font-size: 1.1em;
  }

  .movie_wrapper ul li span {
    color: #999;
  }

  .movie_wrapper ul li+li {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
  }
}