.m1-find-vehicle-by-type {
  display: block;
  overflow: hidden;
  padding-top: 20px;
  position: relative;
}
  .m1-find-vehicle-by-type:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -20px;
    border-style: solid;
    border-width: 10px 20px 0 20px;
    border-color: #004391 transparent transparent transparent;
  }
.m1-find-vehicle-by-type .title {
  color: #000;
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  margin: 0;
  font-weight: bold;
}

.m1-find-vehicle-by-type .listScrollWrapper {
  overflow: hidden;
}

.m1-find-vehicle-by-type .cselist {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  display: flex;
}

.m1-find-vehicle-by-type .left-sizer {
  vertical-align: top;
  flex-shrink: 0;
  flex-grow: 0;
}

.m1-find-vehicle-by-type .item {
  width: 22%;
  position: relative;
  vertical-align: top;
  cursor: pointer;
  flex-shrink: 0;
  flex-grow: 0;
  -webkit-transform-origin: 50% 25%;
  transform-origin: 50% 25%;
}
  .m1-find-vehicle-by-type .item-image {
    display: block;
    width: 100%;
  }

  .m1-find-vehicle-by-type .item-description {
    font-size: 18px;
    line-height: 1;
    font-family: sans-serif;
    text-align: center;
    display: block;
    color: #000;
  }
  .m1-find-vehicle-by-type .current .item-description {
    color: #004391;
  }

@media screen and (max-width: 767px) {
  .m1-find-vehicle-by-type {
    display: none!important;
  }
}