/*
.categoryNav
---------------------------*/
.categoryNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
}
.categoryNav p {
  position: relative;
  font-size: 16px;
}
.categoryNav p.current a {
  font-weight: 700;
  color: #1D2088;
}
.categoryNav p + p:after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: #333;
  margin: auto;
}
.categoryNav a {
  display: block;
  padding: 10px 5vw;
  transition: all 0.3s ease-out;
}
.categoryNav a:hover {
  font-weight: 700;
  color: #1D2088;
}
@media (min-width: 1000px) {
  .categoryNav {
    padding-bottom: 60px;
  }
  .categoryNav p {
    font-size: 18px;
  }
  .categoryNav a {
    padding: 15px 25px;
  }
}
@media (max-width: 350px) {
  .categoryNav p {
    font-size: 14px;
  }
}

/*# sourceMappingURL=movie.css.map */