@charset "UTF-8";
@import url(/css/mtshared.css);
.carouselNav {
  position: relative;
  height: 50px;
  background: #ffffff;
  overflow: hidden;
}
.carouselNav__listWrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.carouselNav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  padding: 0 2.5rem;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  overflow-x: scroll;
  word-spacing: 0;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  background: #ffffff;
  text-align: center;
}
.carouselNav__listItem {
  display: inline-block;
  height: 50px;
}
.carouselNav__listItem span {
  display: none;
}
.carouselNav__listItem:not(:last-child) {
  position: relative;
}
.carouselNav__listItem:not(:last-child):after {
  position: absolute;
  top: 15%;
  content: '|';
}
@media (max-width: 1023px) {
  .carouselNav__listItem:not(:last-child):after {
    top: 30%;
  }
}
.carouselNav__listItem a {
  font-size: 16px;
}
.carouselNav__listItem:not(:last-child) a {
  margin-right: 1rem;
}
.carouselNav__listItem:not(:first-child) {
  padding-left: 1rem;
}
.carouselNav a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  color: #000;
  text-decoration: none;
}
.carouselNav--move {
  transition: left 0.5s;
}
.carouselNav__prev, .carouselNav__next {
  position: absolute;
  top: 0;
  font-size: 0;
  text-decoration: none;
  color: #000;
  height: 50px;
  width: 2rem;
}
.carouselNav__prev:before, .carouselNav__next:before {
  display: inline-block;
  font-family: "MtShared";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 25px;
  line-height: 50px;
}
.carouselNav__prev {
  left: 0;
  padding-left: 0.25rem;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, #dedede 100%);
}
.carouselNav__prev:before {
  content: "";
  right: 0;
}
.carouselNav--first .carouselNav__prev {
  display: none;
}
.carouselNav__next {
  right: 0;
  text-align: right;
  padding-right: 0.25rem;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #dedede 100%);
}
.carouselNav__next:before {
  content: "";
}
.carouselNav--last .carouselNav__next {
  display: none;
}
