.veh-VehicleGroups {
  padding-bottom: 25px;
}
@media screen and (min-width: 600px) {
  .veh-VehicleGroups {
    padding-bottom: 50px;
  }
}

.veh-VehicleGroups_Inner {
  max-width: 1500px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (min-width: 600px) {
  .veh-VehicleGroups_Inner {
    padding-right: 50px;
    padding-left: 50px;
  }
}

.veh-VehicleGroups_Items {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -25px;
  margin-bottom: -25px;
}
@media screen and (min-width: 600px) {
  .veh-VehicleGroups_Items {
    margin-right: -40px;
    margin-bottom: -40px;
  }
}

.veh-VehicleGroups_Item {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 25px);
          flex: 0 0 calc(50% - 25px);
  width: calc(50% - 25px);
  margin-right: 25px;
  margin-bottom: 25px;
}
@media screen and (min-width: 600px) {
  .veh-VehicleGroups_Item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 40px);
            flex: 0 0 calc(50% - 40px);
    width: calc(50% - 40px);
    margin-right: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 900px) {
  .veh-VehicleGroups_Item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(((1 / 3) * 100%) - 40px);
            flex: 0 0 calc(((1 / 3) * 100%) - 40px);
    width: calc(((1 / 3) * 100%) - 40px);
  }
}
@media screen and (min-width: 1440px) {
  .veh-VehicleGroups_Item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(25% - 40px);
            flex: 0 0 calc(25% - 40px);
    width: calc(25% - 40px);
  }
}

.veh-VehicleGroup_Tile {
  position: relative;
  padding-bottom: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
}
.veh-VehicleGroup_Tile::after {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 40px solid #f7f7f7;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.veh-VehicleGroup_Tile-active::after {
  opacity: 1;
  visibility: visible;
}

.veh-VehicleGroup_TileContent {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 10px;
  width: 100%;
}

.veh-VehicleGroup_Image {
  position: relative;
  padding-bottom: 75%;
}
.veh-VehicleGroup_Image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

h3.veh-VehicleGroup_Title {
  margin-top: 5%;
  margin-bottom: 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-size: 14px;
}
@media screen and (min-width: 600px) {
  h3.veh-VehicleGroup_Title {
    font-size: 22px;
  }
}
.veh-VehicleGroup_Tile-active h3.veh-VehicleGroup_Title {
  color: #8ec543;
}

.veh-Results {
  width: calc(100% + 50px);
  display: none;
  margin-right: 25px;
  margin-bottom: 25px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: relative;
}
@supports (display: grid) {
  .veh-Results {
    margin-left: -25px;
    margin-right: 0;
  }
}
@media screen and (min-width: 600px) {
  .veh-Results {
    width: calc(100% + 80px);
    margin-right: 40px;
    margin-bottom: 40px;
  }
  @supports (display: grid) {
    .veh-Results {
      margin-left: -50px;
      margin-right: -10px;
    }
  }
}

.veh-Results_Inner {
  background-color: #f7f7f7;
  padding: 25px 0 25px 25px;
}
@supports (display: grid) {
  .veh-Results_Inner {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (min-width: 600px) {
  .veh-Results_Inner {
    padding: 40px 0 40px 40px;
  }
  @supports (display: grid) {
    .veh-Results_Inner {
      padding-right: 50px;
      padding-left: 50px;
    }
  }
}

@media screen and (min-width: 900px) {
  .veh-Results_Body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.veh-Vehicle_Tiles {
  margin: 0;
  padding: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -25px;
  margin-right: -25px;
}
@supports (display: grid) {
  .veh-Vehicle_Tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
    margin: 0 auto;
    max-width: 1440px;
  }
}
@media screen and (min-width: 600px) {
  .veh-Vehicle_Tiles {
    margin-bottom: -40px;
    margin-right: -40px;
  }
  @supports (display: grid) {
    .veh-Vehicle_Tiles {
      grid-gap: 40px;
      margin-bottom: 0;
      margin-right: 0;
    }
  }
}
@supports (display: grid) {
  @media screen and (min-width: 900px) {
    .veh-Vehicle_Tiles {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  @media screen and (min-width: 1440px) {
    .veh-Vehicle_Tiles {
      grid-template-columns: repeat(5, 1fr);
    }
  }
}

.veh-Vehicle_Tile {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  margin-right: 25px;
  margin-bottom: 25px;
  text-align: center;
  background: #fff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 25px);
          flex: 0 0 calc(50% - 25px);
  padding-bottom: calc(50% - 25px);
}
@supports (display: grid) {
  .veh-Vehicle_Tile {
    padding-bottom: 100%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 600px) {
  .veh-Vehicle_Tile {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 40px);
            flex: 0 0 calc(50% - 40px);
    padding-bottom: calc(50% - 40px);
    margin-right: 40px;
    margin-bottom: 40px;
  }
  @supports (display: grid) {
    .veh-Vehicle_Tile {
      padding-bottom: 100%;
      margin-bottom: 0;
    }
  }
}
@media screen and (min-width: 900px) {
  .veh-Vehicle_Tile {
    padding-bottom: calc(25% - 40px);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(25% - 40px);
            flex: 0 0 calc(25% - 40px);
  }
  @supports (display: grid) {
    .veh-Vehicle_Tile {
      padding-bottom: 100%;
    }
  }
}
@media screen and (min-width: 1440px) {
  .veh-Vehicle_Tile {
    padding-bottom: calc(20% - 40px);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(20% - 40px);
            flex: 0 0 calc(20% - 40px);
  }
  @supports (display: grid) {
    .veh-Vehicle_Tile {
      padding-bottom: 100%;
    }
  }
}

.veh-Vehicle_Tile-CTA {
  background: none;
}
@supports (display: grid) {
  .veh-Vehicle_Tile-CTA {
    grid-column: 2;
    grid-row: 1;
  }
  @media screen and (min-width: 900px) {
    .veh-Vehicle_Tile-CTA {
      grid-column: 4;
    }
  }
  @media screen and (min-width: 1440px) {
    .veh-Vehicle_Tile-CTA {
      grid-column: 5;
    }
  }
}

.veh-Vehicle_TileContent {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 10px;
  width: 100%;
}

.veh-Vehicle_Tile-CTA .veh-Vehicle_TileContent {
  padding-bottom: 10%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.veh-Vehicle_Image {
  position: relative;
  padding-bottom: 75%;
}
.veh-Vehicle_Image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

h4.veh-Vehicle_Title {
  margin-top: 5%;
  margin-bottom: 0;
  font-size: 14px;
}

.veh-Vehicle_Tile-CTA h4.veh-Vehicle_Title {
  color: #8ec543;
  font-size: 14px;
}
@media screen and (min-width: 600px) {
  .veh-Vehicle_Tile-CTA h4.veh-Vehicle_Title {
    font-size: 22px;
  }
}

.veh-Vehicle_Tile-CTA p.veh-Vehicle_Text {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 14px;
}
@media screen and (min-width: 600px) {
  .veh-Vehicle_Tile-CTA p.veh-Vehicle_Text {
    font-size: 22px;
  }
}

.veh-Vehicle_Button {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  color: #fff;
  padding: 12px 24px;
  margin: 12px 0;
  border: 0;
  border-radius: 5px;
  -webkit-transition: background-color 0.35s ease-in-out;
  transition: background-color 0.35s ease-in-out;
  background-color: #8ec543;
}
.veh-Vehicle_Button:hover {
  background-color: #81b638;
}
@media screen and (max-width: 600px) {
  .veh-Vehicle_Button {
    padding: 12px;
    font-size: 14px;
  }
}

.veh-Results_Footer {
  padding-top: 20px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .veh-Results_Footer {
    padding-top: 35px;
  }
}
.veh-Results_Footer p {
  margin-bottom: 0;
  font-size: 14px;
}
@media screen and (min-width: 600px) {
  .veh-Results_Footer p {
    font-size: 16px;
  }
}

/*# sourceMappingURL=block-vehicle-blocks.css.map */