/**
 * DBS Slate Front Page Stylesheet
 * DBS>Interactive
 *
 * This stylesheet will only be loaded on the front page.
 */
/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/**
 * Global Mixins
 * DBS>Interactive
 */
/**
 * Helpful mixin for font size scaling.
 *
 * Decimal values should not be used here!
 * The results will not be what you'd expect.
 *
 * @usage
 * 		@include font-scale(-1) - smaller
 * 		@include font-scale(0) = 1em (.8em in mobile)
 * 		@include font-scale(1) - larger
 * 			etc...
 */
/**
 * Fixes clear bug in certain situations
 *
 * @group layout
 * @link http://fuseinteractive.ca/blog/understanding-humble-clearfix#.VJ853sAEo Understanding the humble clearfix
 * @example scss - Usage
 *   @extend clearFix; // That's It!
 */
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

/**
 * An easy way to truncate text with an ellipsis. Requires the element to be block or inline-block.
 *
 * @group Typography
 * @link http://web-design-weekly.com/2013/05/12/handy-sass-mixins/ Handy Sass Mixins
 * @example scss - Usage
 *   .text-truncate {
 *	  @extend text-truncate;
 *   }
 */
/**
 * Hide On Breakpoint
 *
 * @param {Variable} $bp - Breakpoint variable, ie $largeScreen
 * @param {String} $determinate ('min') - Whether it is max-width or min-width based
 * @group General
 * @link https://github.com/GumbyFramework/Gumby/blob/master/sass/functions/_visibility.scss Gumby Framework
 * @example scss - Basic Usage
 *   .class{
 *	  @include hideOn($largeScreen);
 *   }
 *
 * @example scss - Reversed Determinate
 *   @include hideOn($baby, 'max');
 */
/**
 * Show On Breakpoint
 *
 * @param {Variable} $bp - Breakpoint variable, ie $largeScreen
 * @param {String} $determinate ('min') - Whether it is max-width or min-width based
 * @group General
 * @link https://github.com/GumbyFramework/Gumby/blob/master/sass/functions/_visibility.scss Gumby Framework
 * @example scss - Basic Usage
 *   .class{
 *	  @include showOn($largeScreen);
 *   }
 *
 * @example scss - Reversed Determinate
 *   @include showOn($baby, 'max');
 */
/**
 * Size mixin - Sets width and height.
 *
 * When only one argument is specified, both the height and width are set to the same value.
 *
 * @param width - required
 * @param height
 */
/**
 * REFLEX ISH GRID
 */
/**
 * Exponent function
 *
 * NOTE: This does NOT work for decimal values
 *
 *   @see: https://css-tricks.com/snippets/sass/power-function/
 */
/**
 * Object Fit
 *
 * If a browser supports object-fit it will use it with the params
 * given. Otherwise it will fall back on a more basic image centering method.
 *
 * @param size - required (cover, contain, auto, etc.)
 * @param position - required (center, left, right, top, bottom right, etc.)
 */
/**
 * Aspect Ratio
 *
 * Used to create a padding box that an image/video can be placed in.
 *
 * Example @include aspect-ratio(16, 9);
 */
/**
 * Slate Layout Mixins
 * DBS>Interactive
 */
/**
 * Default responsive padding mixin for layout content
 */
/**
 * Default responsive margin mixin for layout content
 */
/**
 * Used for mimicking the vertical space provided by the default-margin mixin, but
 * with padding for colored background layouts.
 */
/**
 * Mixin to keep space (either margin or padding) between cells consistent
 *
 * It takes 2 arguments:
 * 		@param $space_property = { 'margin'|'padding' }
 * 		@param $reverse = { true|false }
 */
/**
 * Responsive layout mixin to constrain a width to containSize.
 */
/**
 * Theme Variables - colors, font sizes, breakpoint etc.
 * All the variables will goes here based on project tech specification
 * DBS>Interactive
 */
/**
 * Fonts
 */
/**
 * Type style definitions
 */
/*
*
**SCSS
COMPONENTS LAYOUT ATTACHMENTS SLIDER
*
*/
.attachment-slider .attachment-slider__heading {
  max-width: 24em;
  margin-bottom: 2em;
}
.attachment-slider__cell {
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
  margin-right: 1em;
  text-align: center;
  overflow: hidden;
  width: 30%;
  text-align: center;
  height: 0;
  overflow: hidden;
  padding-bottom: 30%;
  position: relative;
}
@media screen and (max-width: 47.999em) {
  .attachment-slider__cell {
    padding-bottom: 100%;
    width: 80%;
  }
}
.attachment-slider__cell-text {
  padding: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
}
.attachment-slider__cell-image {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 90%;
  width: 100%;
}
.attachment-slider__cell-image img {
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 90%;
  width: 90%;
}
@supports (object-fit: contain) {
  .attachment-slider__cell-image img {
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}
.attachment-slider__cell:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.19) 100%);
  z-index: 15;
}
.attachment-slider .flickity-viewport {
  overflow: visible;
  width: 100%;
}
.attachment-slider .flickity-enabled {
  box-shadow: none !important;
}
@media screen and (min-width: 48em) {
  .attachment-slider .flickity-button {
    background-color: #00D0FF;
    top: -4.5rem;
    transform: none;
  }
  .attachment-slider .flickity-button.previous {
    left: auto;
    right: 5rem;
  }
  .attachment-slider .flickity-button .flickity-button-icon {
    fill: #ffffff;
  }
}

.cards__heading {
  margin: 0 auto 3rem;
  max-width: 42rem;
}
.cards__item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}
.cards__item p:not(:last-child), .cards__item h1:not(:last-child), .cards__item h2:not(:last-child), .cards__item h3:not(:last-child), .cards__item h4:not(:last-child), .cards__item h5:not(:last-child), .cards__item h6:not(:last-child) {
  margin-bottom: .75rem;
}
@media screen and (min-width: 48em) {
  .cards__item {
    margin-bottom: 0;
  }
  .cards__wrapper {
    display: grid;
    grid-template-rows: auto;
    gap: 1.5rem;
  }
  .cards__wrapper.two-across, .cards__wrapper.four-across {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards__wrapper.three-across {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards.no-card-background .cards__wrapper {
    gap: 3rem;
  }
}
@media screen and (min-width: 62em) {
  .cards__wrapper.four-across {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dealer-map__top {
  background: #003c71;
  max-width: 32rem;
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  position: relative;
}
.dealer-map__top::after {
  background: #003c71;
  content: '';
  height: 100%;
  position: absolute;
  top: 0;
  right: 100%;
  width: 100vw;
}
.dealer-map__main {
  background: linear-gradient(180deg, #003c71 0%, #3472A8 100%, #275B87 100%), linear-gradient(17deg, #003c71 -43.69%, #3472A8 101.73%), #003c71;
  padding-bottom: 3rem;
  padding-top: 3rem;
}
.dealer-map__main-left {
  margin-bottom: 3rem;
}
.dealer-map__card {
  background: #ffffff;
  padding: 1.5rem;
}
.dealer-map__card:first-child {
  margin-bottom: 1.5rem;
}
.dealer-map__search {
  position: relative;
}
.dealer-map__search-input {
  border-radius: 6.341px;
  border: 1px solid #E9E9E9;
  box-shadow: 0px 0px 12.683px 0px rgba(0, 0, 0, 0.15);
  height: 4rem;
  width: 100%;
}
.dealer-map__search-button {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath fill='%23fff' d='M12.5 1.3q2.3 0 4.4 0.9t3.6 2.4 2.4 3.6 0.9 4.4q0 2-0.6 3.8t-1.8 3.3l7.1 7.1q0.4 0.4 0.4 0.9 0 0.5-0.4 0.9t-0.9 0.4q-0.5 0-0.9-0.4l-7.1-7.1q-1.5 1.2-3.3 1.8t-3.8 0.6q-2.3 0-4.4-0.9t-3.6-2.4-2.4-3.6-0.9-4.4 0.9-4.4 2.4-3.6 3.6-2.4 4.4-0.9zM12.5 3.8q-1.8 0-3.4 0.7t-2.8 1.9-1.9 2.8-0.7 3.4 0.7 3.4 1.9 2.8 2.8 1.9 3.4 0.7 3.4-0.7 2.8-1.9 1.9-2.8 0.7-3.4-0.7-3.4-1.9-2.8-2.8-1.9-3.4-0.7z'/%3E%3C/svg%3E") no-repeat center !important;
  background-color: #009EC2 !important;
  background-repeat: no-repeat  !important;
  background-size: 1.35em  !important;
  border: 1px solid #009EC2;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 4rem;
}
.dealer-map.bg-light {
  background-color: #003c71;
  padding: 0;
}
.dealer-map.bg-light .dealer-map__main {
  padding-top: 0;
}
@media screen and (max-width: 47.999em) {
  .dealer-map .dealer-map__search .search-form__form {
    border-top: none;
    margin-top: 1.5rem;
    padding: 0;
  }
  .dealer-map .dealer-map__search-button {
    border-radius: 6.341px;
    height: 2.5rem;
    position: static;
    width: 100%;
  }
}
@media screen and (min-width: 48em) {
  .dealer-map__main-left {
    margin-bottom: 0;
    padding-right: 3rem;
    width: 40%;
  }
  .dealer-map__main-right {
    width: 60%;
  }
}
@media screen and (min-width: 62em) {
  .dealer-map.bg-light .dealer-map__main-right {
    position: relative;
    top: -6em;
  }
}

.featured-blogs__heading {
  margin-bottom: 3rem;
  text-align: center;
}
.featured-blogs__image {
  height: 0;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
  padding-bottom: calc(100% * 2 / 3);
  position: relative;
}
.featured-blogs__image img {
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@supports (object-fit: contain) {
  .featured-blogs__image img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
.featured-blogs__post {
  border-radius: 1rem;
  width: 100%;
}
.featured-blogs__posts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.featured-blogs__text {
  background-color: #e5e5e5;
  border-radius: 0 0 1rem 1rem;
  padding: 1.5rem;
  position: relative;
}
.featured-blogs__text a {
  text-decoration: none;
}
.featured-blogs__text h2 {
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 48em) {
  .featured-blogs__post {
    display: flex;
    flex-direction: column;
    width: calc(50% - 0.75rem);
  }
  .featured-blogs__text {
    height: 100%;
  }
}
@media screen and (min-width: 62em) {
  .featured-blogs__post {
    width: calc(25% - 1.5rem);
  }
  .featured-blogs__posts {
    gap: 2rem;
  }
}

/**
 * Full Width Flex Layout
 * DBS>Interactive
 *
 * This layout takes up the full width of the browser and may have a background image.
 */
.image-feature {
  position: relative;
}
.image-feature__image {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.image-feature__image img {
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@supports (object-fit: contain) {
  .image-feature__image img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
.image-feature__image:before {
  background: linear-gradient(90deg, #070707 0%, rgba(0, 60, 113, 0) 250%);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  mix-blend-mode: multiply;
  z-index: 2;
}
.image-feature .contain {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.image-feature .main-description {
  color: #ffffff;
  z-index: 10;
  padding: 5em 1.5rem;
  max-width: 30em;
  position: relative;
  z-index: 3;
}
.image-feature .tooltip {
  position: absolute;
  color: #ffffff;
  z-index: 10;
  top: 40%;
  left: 60%;
  width: 20em;
  font-size: 0.9em;
  line-height: 125%;
  padding: 1em;
  border-left: 3px solid #00D0FF;
  background: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.4) 100%);
  transform: translate(0, -100%);
}
.image-feature .tooltip::before {
  border-left: 3px solid #00D0FF;
  content: '';
  height: 5rem;
  position: absolute;
  top: 99%;
  left: -3px;
}
@media screen and (min-width: 48em) {
  .image-feature__image::before {
    background: linear-gradient(90deg, #070707 0%, rgba(0, 60, 113, 0) 96.03%);
  }
  .image-feature .main-description {
    padding: 9rem 1.5rem;
  }
  .image-feature.pull-up {
    margin-bottom: -17.25em !important;
  }
  .image-feature.pull-up .main-description {
    padding-bottom: 25rem;
  }
  .image-feature.pull-up + .layout {
    position: relative;
    z-index: 5;
  }
}

.search-layout__heading {
  margin-bottom: 2rem;
  text-align: center;
}
.search-layout__search {
  margin: 0 auto;
  max-width: 30rem;
  position: relative;
}
.search-layout__field {
  border-radius: 6.341px;
  border: 1px solid #EDEDED;
  box-shadow: 0px 0px 12.683px 0px rgba(0, 0, 0, 0.15);
  height: 4rem;
  width: 100%;
}
.search-layout__button {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath fill='%23007D99' d='M12.5 1.3q2.3 0 4.4 0.9t3.6 2.4 2.4 3.6 0.9 4.4q0 2-0.6 3.8t-1.8 3.3l7.1 7.1q0.4 0.4 0.4 0.9 0 0.5-0.4 0.9t-0.9 0.4q-0.5 0-0.9-0.4l-7.1-7.1q-1.5 1.2-3.3 1.8t-3.8 0.6q-2.3 0-4.4-0.9t-3.6-2.4-2.4-3.6-0.9-4.4 0.9-4.4 2.4-3.6 3.6-2.4 4.4-0.9zM12.5 3.8q-1.8 0-3.4 0.7t-2.8 1.9-1.9 2.8-0.7 3.4 0.7 3.4 1.9 2.8 2.8 1.9 3.4 0.7 3.4-0.7 2.8-1.9 1.9-2.8 0.7-3.4-0.7-3.4-1.9-2.8-2.8-1.9-3.4-0.7z'/%3E%3C/svg%3E") no-repeat center;
  background-repeat: no-repeat;
  background-size: 1.35em;
  border: none;
  border-left: 1px solid #EDEDED;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 4rem;
}

.testimonials {
  padding-bottom: 3rem;
  padding-top: 3rem;
  background: #EFF3F5;
}
@media screen and (min-width: 48em) {
  .testimonials {
    padding-bottom: 4.5rem;
    padding-top: 4.5rem;
  }
}
.testimonials.bg-white {
  background: #ffffff;
}
.testimonials__slides {
  box-shadow: none !important;
}
.testimonials__wrapper {
  padding: 1.5rem;
  width: 100%;
  text-decoration: none;
  font-weight: normal;
}
.testimonials__author span {
  opacity: .75;
}
.testimonials__body {
  padding-bottom: 3rem;
}
.testimonials .flickity-button.previous {
  left: 0;
}
.testimonials .flickity-button.next {
  right: 0;
}
.testimonials.attachment-page-testimonials {
  padding: 3em 0 2em 0;
}
.testimonials.attachment-page-testimonials .testimonials__body {
  font-size: 16px;
  padding-bottom: 2em;
}
.testimonials.attachment-page-testimonials h2 {
  font-size: 1.5625em;
  margin-bottom: 10px;
}

.admin {
  opacity: .75;
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  transition: opacity .25s;
}
.admin.active, .admin:hover, .admin:focus {
  opacity: 1;
}
.admin.active .admin__links {
  opacity: 1;
  transition: opacity .25s 0s, visibility 0s .0s;
  visibility: visible;
}
.admin__toggle {
  appearance: none;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 1rem -0.5rem rgba(0, 0, 0, 0.75);
  height: 4rem;
  position: relative;
  width: 4rem;
}
.admin__toggle img {
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 75%;
  left: 55%;
  width: 75%;
}
@supports (object-fit: contain) {
  .admin__toggle img {
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}
.admin__links {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 0 1rem -0.5rem rgba(0, 0, 0, 0.75);
  opacity: 0;
  padding: 1rem 1.5rem;
  position: absolute;
  bottom: 4.5rem;
  right: 0;
  transition: opacity .25s 0s, visibility 0s .25s;
  visibility: hidden;
}
.admin__links ul {
  list-style: none;
  margin: 0;
  text-align: right;
  padding: 0;
}
.admin__links ul li {
  margin-bottom: .5rem;
}
.admin__links ul li:last-child {
  margin-bottom: 0;
}
.admin__links ul li a {
  display: block;
  text-decoration: none;
}
.admin__links ul li a:after {
  background: #000000;
  content: '';
  display: block;
  height: 1px;
  position: relative;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0 100%;
  transition: transform .25s ease-in-out;
}
.admin__links ul li a:hover, .admin__links ul li a:focus {
  text-decoration: none;
}
.admin__links ul li a:hover:after, .admin__links ul li a:focus:after {
  transform: scaleX(1);
  transform-origin: 100% 0;
}

/**
 * DBS Chevron Styles
 * DBS>Interactive
 */
#dbs-chev {
  position: relative;
}
#dbs-chev svg {
  height: 2rem;
  max-width: 1rem;
}
#dbs-chev strong {
  font-size: 0.64em;
  float: right;
  font-weight: normal;
  text-align: center;
  width: 15em;
}
@media (min-width: 48em) {
  #dbs-chev strong {
    font-size: 0.8em;
  }
}
@media screen and (min-width: 48em) {
  #dbs-chev strong {
    width: 21em;
  }
}
#dbs-chev .text {
  background: #000000;
  max-width: 0;
  overflow: hidden;
  padding: .25em 0;
  position: absolute;
  right: 2em;
  top: 1px;
  transition: all .5s ease-out;
}
#dbs-chev.hover span, #dbs-chev:hover span, #dbs-chev:focus span {
  max-width: 23em;
}

/**
 * Footer styles
 * DBS>Interactive
 *
 * Classname Structure
 *
 * The rational was to avoid using elements in the stylesheet and to limit nesting.
 *
 * 		site-footer - the footer element
 *
 * 			site-footer__navigation - footer menu
 * 				footer-menu__item - footer menu item
 *
 * 			site-footer__credits - copyright info container
 *
 * 			site-footer__copyright - copyright statement
 *
 */
.site-footer {
  overflow: hidden;
  clear: both;
  margin-top: auto;
}
.site-footer__container {
  padding: 3rem 1.5rem 0;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer a {
  font-family: "Barlow Condensed", "Helvetica", sans-serif;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}
.site-footer .site-footer__logo img {
  display: block;
  max-width: 10em;
  padding-bottom: 1em;
}
.site-footer__content {
  display: inline-block;
}
.site-footer__business ul, .site-footer__business li {
  display: block;
}
.site-footer__business ul a, .site-footer__business li a {
  display: inline-block;
}
.site-footer__business ul a:after, .site-footer__business li a:after {
  background: #ffffff;
  content: '';
  display: block;
  height: 1px;
  position: relative;
  top: 0;
  transform: scaleX(0);
  transform-origin: 100% 0;
  transition: transform .25s ease-in-out;
}
.site-footer__business ul a:hover, .site-footer__business ul a:focus, .site-footer__business li a:hover, .site-footer__business li a:focus {
  text-decoration: none;
}
.site-footer__business ul a:hover:after, .site-footer__business ul a:focus:after, .site-footer__business li a:hover:after, .site-footer__business li a:focus:after {
  transform: scaleX(1);
  transform-origin: 0 100%;
}
.site-footer__navigation .footer-menu__item a {
  display: block;
  font-weight: 400;
  padding: .25rem 0;
}
.site-footer__navigation .footer-menu__item a:after {
  background: #ffffff;
  content: '';
  display: block;
  height: 1px;
  position: relative;
  top: 3px;
  transform: scaleX(0);
  transform-origin: 100% 0;
  transition: transform .25s ease-in-out;
}
.site-footer__navigation .footer-menu__item a:hover, .site-footer__navigation .footer-menu__item a:focus {
  text-decoration: none;
}
.site-footer__navigation .footer-menu__item a:hover:after, .site-footer__navigation .footer-menu__item a:focus:after {
  transform: scaleX(1);
  transform-origin: 0 100%;
}
.site-footer__navigation .footer-menu__item.toplevel {
  margin-bottom: 1rem;
}
.site-footer__navigation .footer-menu__item.toplevel > a {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
}
.site-footer__navigation li {
  display: block;
}
.site-footer .social-media {
  margin: 1em 0;
}
.site-footer .social-media__link {
  display: inline-block;
  margin-right: 1.25rem;
}
.site-footer .social-media__link.twitter a {
  width: 1.4em;
}
.site-footer .social-media a {
  display: block;
  width: 1.75em;
}
.site-footer__credits {
  font-family: "Barlow Condensed", "Helvetica", sans-serif;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1em 0;
  position: relative;
  width: 100%;
}
.site-footer__credits::before {
  border-top: 1px solid #ffffff;
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}
.site-footer__credits .legal-footer {
  display: inline-block;
}
.site-footer__credits .legal-footer ul, .site-footer__credits .legal-footer li {
  display: inline-block;
}
.site-footer__credits .legal-footer .legal-menu__item:not(:first-child) {
  border-left: 1px solid #ffffff;
  margin-left: .5rem;
  padding-left: .75rem;
}
.site-footer__credits .legal-footer .legal-menu__item a {
  font-weight: 400;
}
.site-footer__credits .legal-footer .legal-menu__item a:after {
  background: #ffffff;
  content: '';
  display: block;
  height: 1px;
  position: relative;
  top: 3px;
  transform: scaleX(0);
  transform-origin: 100% 0;
  transition: transform .25s ease-in-out;
}
.site-footer__credits .legal-footer .legal-menu__item a:hover, .site-footer__credits .legal-footer .legal-menu__item a:focus {
  text-decoration: none;
}
.site-footer__credits .legal-footer .legal-menu__item a:hover:after, .site-footer__credits .legal-footer .legal-menu__item a:focus:after {
  transform: scaleX(1);
  transform-origin: 0 100%;
}
@media screen and (max-width: 47.999em) {
  .site-footer__navigation .footer-menu__submenu {
    display: none;
  }
  .site-footer__navigation .menu > .footer-menu__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: .75rem;
    padding-bottom: .75rem;
  }
  .site-footer__navigation .menu > .footer-menu__item:last-child {
    border-bottom: none;
  }
  .site-footer__navigation .footer-menu__item {
    position: relative;
  }
  .site-footer__navigation .footer-menu__item.open .footer-menu__submenu {
    display: block;
  }
  .site-footer__navigation .footer-menu__item .footer-menu__submenu {
    margin-top: .75rem;
    padding-left: 1.5rem;
  }
  .site-footer__navigation .footer-menu__item .footer-menu__submenu .footer-menu__item {
    margin-bottom: .75rem;
  }
  .site-footer__navigation .submenu-toggle {
    background: none !important;
    top: -.75rem;
  }
  .site-footer__navigation .submenu-toggle svg path {
    fill: #ffffff;
  }
  .site-footer__credits {
    margin-top: 3rem;
  }
  .site-footer__credits div:last-child {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 48em) {
  .site-footer__navigation > ul {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
  }
  .site-footer__navigation .footer-menu__item.toplevel {
    padding-right: 1.5rem;
  }
}

@media screen and (max-width: 61.999em) {
  .site-footer__main .site-footer__navigation {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 48em) {
  .site-footer__main .site-footer__navigation > ul {
    align-items: start;
    margin-top: 0;
  }
  .site-footer__main .site-footer__navigation > ul > .footer-menu__item > a {
    font-weight: bold;
    text-transform: uppercase;
  }
}
@media screen and (min-width: 62em) {
  .site-footer__main {
    display: flex;
  }
  .site-footer__main .site-footer__content {
    width: 30%;
  }
  .site-footer__main .site-footer__navigation {
    width: 70%;
  }
  .site-footer__main .site-footer__navigation > ul {
    justify-content: space-evenly;
  }
}

/**
 * Form Styles
 * DBS>Interactive
 */
.form {
  /**
  * Field Widths/Wrapping
  */
}
.form ul {
  list-style: none;
  padding: 0;
}
.form label, .form legend {
  font-weight: bold;
}
.form__field {
  margin-bottom: 1em;
}
.form .error-text {
  border-bottom: 0.1em solid #dadada;
  color: #dadada;
  padding-bottom: 1em;
}
@media screen and (min-width: 48em) {
  .form {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -.75rem;
  }
  .form__field-wrapper {
    padding: 0 .75rem;
    width: 100%;
  }
  .form__field-wrapper.width-25 {
    width: 25%;
  }
  .form__field-wrapper.width-33 {
    width: 33.33%;
  }
  .form__field-wrapper.width-50 {
    width: 50%;
  }
  .form__field-wrapper.width-66 {
    width: 66.66%;
  }
  .form__field-wrapper.width-75 {
    width: 75%;
  }
  .form .button {
    margin-left: .75rem;
  }
}

fieldset > label.gfield_label_before_complex,
fieldset legend.gfield_label_before_complex,
.hidden_label > label.gfield_label_before_complex,
.hidden_label legend.gfield_label_before_complex,
.hide-label > label.gfield_label_before_complex,
.hide-label legend.gfield_label_before_complex {
  display: none;
}
fieldset > label, fieldset legend,
.hidden_label > label,
.hidden_label legend,
.hide-label > label,
.hide-label legend {
  height: 1px;
  width: 1px;
  border: 0;
  clip: rect(0 0 0 0);
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

/**
 * Input Field Styles
 */
textarea {
  min-height: 5em;
}

input[type=radio] {
  margin-right: .5em;
}

select {
  min-width: 25%;
  margin: 0;
}

textarea,
input[type=text]:not([id=search-input]),
input[type=email],
input[type=date],
input[type=number],
input[type=time],
input[type=week],
input[type=month],
input[type=tel],
input[type=search],
input[type=url],
input[type=password],
.gfield select,
select {
  display: block;
  border: 1px solid #E9E9E9;
  margin: .333em 0;
  max-width: 100%;
  padding: .666em;
  width: 100%;
}

fieldset {
  border: none;
  margin-bottom: 3rem;
  padding: 0 !important;
}

label.freeform-label,
.freeform-input,
.freeform-row label {
  font-family: "Montserrat", "Verdana", "Helvetica", sans-serif !important;
}

/**
 * Validation and error message styling
 */
.error-text {
  color: red;
}

/**
 * Animated Form Label
 *
 * Class must be added in the GForms admin
 */
.animate-label {
  position: relative;
}
.animate-label .ginput_complex > span {
  height: 100%;
  width: 100%;
  display: inline-block;
  position: relative;
}
.gform_validation_error .animate-label label, .gform_validation_error .animate-label legend, .animate-label .ginput_complex > span.active label, .animate-label .ginput_complex > span.active legend {
  transform: translateY(-2.25rem) scale(0.75);
}
.animate-label .ginput_complex.gfield_error label {
  transform: translateY(-2.25rem) scale(0.75);
}
.animate-label label, .animate-label legend {
  background: white;
  padding: 0 .25rem;
  position: absolute;
  top: 50%;
  left: .5rem;
  transition: .2s ease-in-out;
  transform: translateY(-50%);
  transform-origin: left;
}
.animate-label.select-field select {
  font-weight: 700;
  padding: 1.5rem .75rem;
}
.animate-label.text-area label {
  top: .5rem;
  transform: none;
}
.animate-label.text-area textarea {
  max-height: 12rem;
  padding-top: 3rem;
}
.animate-label.text-area.gfield_error label, .animate-label.text-area.gfield_error legend {
  transform: none;
}
.gform_validation_error .animate-label label, .gform_validation_error .animate-label legend, .animate-label.active label, .animate-label.active legend {
  transform: translateY(-2.25rem) scale(0.75);
}

.customer-login .form {
  margin: 0 auto;
  max-width: 35rem;
}
.customer-login .field {
  margin-bottom: 1rem;
  width: 100%;
}
.customer-login__links {
  text-align: center;
}
.customer-login__links .button {
  margin: 0;
  width: 100%;
}

.parts-register-signin .form {
  display: block;
  margin: 0;
}
.parts-register-signin .form .button {
  margin-top: 1rem;
}

.edit-address hr {
  margin: 1.5rem 0;
}

/**
 * DBS Slate Stylesheet
 * DBS>Interactive
 */
.dealer-listings__cta {
  background: linear-gradient(180deg, #003C71 0%, #3472A8 100%), #023E73;
  padding: 1.5rem;
}
@media screen and (min-width: 48em) {
  .dealer-listings__main {
    padding-right: 3rem;
    width: 65%;
  }
  .dealer-listings__cta {
    width: 35%;
  }
}

.incidents__header {
  margin-bottom: 1.5rem;
}
.incidents__header .button {
  border: 1px solid #003c71;
  font-family: "Barlow Condensed", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: .75px;
  padding-left: 1.5rem;
  padding-right: 4.5rem;
  text-transform: uppercase;
  position: relative;
}
.incidents__header .button::after, .incidents__header .button::before {
  height: 1.75rem;
  width: 1.75rem;
  background-image: url("/icons/arrow-right-circled.svg");
}
@media screen and (min-width: 48em) {
  .incidents__header h2 {
    margin-bottom: 0;
  }
  .incidents .my-orders__table-wrapper {
    overflow-x: scroll;
  }
  .incidents .my-orders__table-wrapper table td,
  .incidents .my-orders__table-wrapper table th {
    min-width: 200px;
  }
}

.my-orders,
.incidents {
  padding-bottom: 3rem;
  padding-top: 3rem;
  background: #EFF3F5;
}
@media screen and (min-width: 48em) {
  .my-orders,
  .incidents {
    padding-bottom: 4.5rem;
    padding-top: 4.5rem;
  }
}
.my-orders__tabs,
.incidents__tabs {
  background: linear-gradient(270deg, #003C71 0%, #3472A8 100%), #2ABEC5;
  display: flex;
}
.my-orders__tabs .my-orders__tab,
.incidents__tabs .my-orders__tab {
  border: none;
  background: transparent;
  color: #ffffff;
  flex: 1;
  padding: 1.5rem;
}
.my-orders__tabs .my-orders__tab:nth-child(2),
.incidents__tabs .my-orders__tab:nth-child(2) {
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.my-orders__tabs .my-orders__tab.active,
.incidents__tabs .my-orders__tab.active {
  background: #ffffff;
  color: #003c71;
}
.my-orders .filters,
.incidents .filters {
  list-style: none;
  padding-left: 0;
}
.my-orders .filters label,
.incidents .filters label {
  font-weight: 500;
}
.my-orders__panel,
.incidents__panel {
  background-color: #ffffff;
  opacity: 0;
  padding: 1.5rem;
  position: absolute;
  visibility: hidden;
}
.my-orders__panel.active,
.incidents__panel.active {
  opacity: 1;
  position: static;
  visibility: visible;
}
.my-orders table,
.incidents table {
  border-collapse: collapse;
  width: 100%;
}
.my-orders table thead tr:last-child,
.incidents table thead tr:last-child {
  background: #F0F3F5;
  vertical-align: bottom;
}
.my-orders table thead tr:first-child,
.incidents table thead tr:first-child {
  background: #003c71;
  color: #ffffff;
}
.my-orders table thead tr:first-child th:last-child,
.incidents table thead tr:first-child th:last-child {
  text-align: right;
}
.my-orders table td, .my-orders table th,
.incidents table td,
.incidents table th {
  padding: .75rem;
  text-align: left;
}
.my-orders table tbody tr,
.incidents table tbody tr {
  background: #f9f9f9;
}
.my-orders table tbody tr.status-C,
.incidents table tbody tr.status-C {
  display: none;
}
.my-orders table tbody tr:nth-child(even),
.incidents table tbody tr:nth-child(even) {
  background: #f1f1f1;
}
.my-orders table tbody td:not(:last-child),
.incidents table tbody td:not(:last-child) {
  border-right: 1px solid rgba(135, 135, 135, 0.6);
}
.my-orders__table-wrapper:not(:last-child),
.incidents__table-wrapper:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 47.999em) {
  .my-orders .contain,
  .incidents .contain {
    padding: 0;
  }
  .my-orders__tabs,
  .incidents__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .my-orders__tab,
  .incidents__tab {
    flex: 0 0 auto;
  }
  .my-orders__table-wrapper,
  .incidents__table-wrapper {
    overflow-x: scroll;
  }
  .my-orders table td,
  .my-orders table th,
  .incidents table td,
  .incidents table th {
    min-width: 200px;
  }
}
@media screen and (min-width: 48em) {
  .my-orders__panel.claims .my-orders__table-wrapper,
  .incidents__panel.claims .my-orders__table-wrapper {
    overflow-x: scroll;
  }
  .my-orders__panel.claims .my-orders__table-wrapper table td,
  .my-orders__panel.claims .my-orders__table-wrapper table th,
  .incidents__panel.claims .my-orders__table-wrapper table td,
  .incidents__panel.claims .my-orders__table-wrapper table th {
    min-width: 200px;
  }
}

.custom-pagination {
  justify-content: flex-end;
  margin-top: 25px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.custom-pagination a {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.custom-pagination a.active {
  background-color: #003c71;
  border-color: #003c71;
  color: #ffffff;
}

.incidents {
  background: white;
}
.incidents .contain {
  padding: 0 1.5rem;
}

.shipments-table h3 {
  margin: 0;
}
.shipments-table ul {
  padding: 0;
  list-style: none;
}

/**
 * Collapsible Layout
 * DBS>Interactive
 */
.layout-collapsible {
  margin: 3rem auto;
}
@media screen and (min-width: 48em) {
  .layout-collapsible {
    margin: 4.5rem auto;
  }
}
.layout-collapsible .collapsibles-wrapper {
  border: 1px solid #dadada;
  border-radius: 12px;
  overflow: hidden;
}
.layout-collapsible .collapsible-row {
  overflow: hidden;
  border-top: 1px solid #ffffff;
}
.layout-collapsible .collapsible-row:first-of-type {
  border: none;
}
.layout-collapsible .collapsible-row:last-of-type .collapsible-row-content .rich-text {
  border-bottom: none;
}
.layout-collapsible .collapsible-row:last-of-type .collapsible-row-header {
  border-bottom: none;
}
.layout-collapsible .collapsible-row__header {
  background: #ffffff;
  border: none;
  border-bottom: 1px solid #dadada;
  color: #2d2d2d;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0;
  margin-top: 0 !important;
  padding: 1.25rem 4rem 1.25rem 1rem;
  position: relative;
  text-align: left;
  transition: background .25s;
  width: 100%;
  white-space: initial;
}
.layout-collapsible .collapsible-row__header:hover {
  background: #F0F3F5;
}
.layout-collapsible .collapsible-row__header strong {
  color: #003c71;
}
.layout-collapsible .collapsible-row__header:after {
  background: url("/icons/collapsible-open.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: '';
  display: block;
  height: 1.75rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  transition: transform .25s;
  transform: translate(0, -50%) scale(0.8);
  width: 1.75rem;
}
.layout-collapsible .collapsible-row__header.active:after {
  background-image: url("/icons/collapsible-close.svg");
}
.layout-collapsible .collapsible-row__content--wrapper {
  height: 0;
  overflow: hidden;
  transition: height .3s ease-in-out 0s;
}
.layout-collapsible .collapsible-row__content--wrapper .collapsible-row__content {
  border-bottom: 1px solid #dadada;
  padding: 2rem;
}
.layout-collapsible .collapsible-section {
  margin: 3rem auto;
}
@media screen and (min-width: 48em) {
  .layout-collapsible .collapsible-section {
    margin: 4.5rem auto;
  }
}
.layout-collapsible .collapsible-section:first-child {
  margin-top: 0;
}

.dealer-portal .site-header__container {
  max-width: none;
}

.dealer-page {
  border-top: 1px solid #dadada;
}
.dealer-page__sidebar {
  background: #f9f9f9;
}
.dealer-page__sidebar .sidebar-menu .menu {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin: 0;
  padding: 0;
}
.dealer-page__sidebar .sidebar-menu .menu__item {
  border-bottom: 1px solid #dadada;
  margin: 0;
  width: 100%;
}
.dealer-page__sidebar .sidebar-menu .menu__item:last-child {
  border: none;
}
.dealer-page__sidebar .sidebar-menu .menu__item a {
  background: #f9f9f9;
  display: block;
  padding: 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .25s;
}
.dealer-page__sidebar .sidebar-menu .menu__item a.is-active, .dealer-page__sidebar .sidebar-menu .menu__item a:hover, .dealer-page__sidebar .sidebar-menu .menu__item a:focus {
  background: #e5e5e5;
}
.dealer-page .download-pricing {
  background: linear-gradient(270deg, #003C71 0%, #3472A8 100%), #2ABEC5;
  margin: 1.5rem;
  padding: 1.5rem;
  position: relative;
  width: calc(100% - 3rem);
}
.dealer-page .download-pricing a {
  line-height: 1;
  margin-bottom: 0;
  padding-right: 1rem;
  text-decoration: none;
}
.dealer-page .download-pricing img {
  display: block;
  height: auto;
  margin-left: auto;
  width: 2.25rem;
}
@media screen and (min-width: 48em) {
  .dealer-page__body {
    width: 70%;
  }
  .dealer-page__sidebar {
    position: relative;
    width: 30%;
  }
  .dealer-page__sidebar::after {
    background-color: #f9f9f9;
    content: '';
    height: 100vh;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }
  .dealer-page__sidebar .sidebar-menu .menu__item a {
    font-size: 1.35rem;
  }
}

.alert-banner {
  background: linear-gradient(270deg, #003C71 0%, #3472A8 100%), #2ABEC5;
  display: none;
  padding: 1.5rem;
  position: relative;
}
.alert-banner p {
  max-width: 44rem;
}
.alert-banner__close {
  appearance: none;
  background: url("/icons/close-symbol-white.svg") no-repeat center;
  background-size: 1.5rem;
  border: none;
  height: 3rem;
  padding: 0;
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 3rem;
}
.alert-banner__close:hover, .alert-banner__close:focus {
  background: url("/icons/close-symbol-white.svg") no-repeat center;
  background-size: 1.5rem;
}

.dealer-login .contain {
  max-width: 40rem;
}
.dealer-login form label {
  font-weight: 700;
}
.dealer-login__field {
  margin-bottom: .75rem;
}

.dealers-contact__search {
  border-bottom: 1px solid #F0F3F5;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}
.dealers-contact .search-layout__search {
  max-width: none;
}
.dealers-contact__row {
  margin-bottom: 1.5rem;
}
.dealers-contact__row:not(:first-child) {
  display: none;
}
.dealers-contact__row:last-child {
  margin-bottom: 0;
}
.dealers-contact__row h2, .dealers-contact__row p {
  margin-bottom: .5rem;
}
.dealers-contact__row.open {
  display: flex !important;
}
.dealers-contact__row p {
  font-size: .85rem;
}
.dealers-contact__row a {
  font-weight: 400;
  text-decoration: none;
}
.dealers-contact__row a:hover, .dealers-contact__row a:focus {
  text-decoration: underline;
}
.dealers-contact__row-avatar {
  background: #F0F3F5;
  border-radius: 50%;
  display: none;
  height: 6rem;
  margin-right: 1.5rem;
  min-width: 6rem;
  overflow: hidden;
  position: relative;
  width: 6rem;
}
.dealers-contact__row-avatar img {
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 60% !important;
}
@supports (object-fit: contain) {
  .dealers-contact__row-avatar img {
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}
.dealers-contact__row-name, .dealers-contact__row-phone, .dealers-contact__row-email {
  background-position: left;
  background-repeat: no-repeat;
  background-size: 1.2rem;
  padding-left: 2rem;
}
.dealers-contact__row-name {
  background-image: url("/icons/name.svg");
}
.dealers-contact__row-phone {
  background-image: url("/icons/phone.svg");
}
.dealers-contact__row-email {
  background-image: url("/icons/email.svg");
}
.dealers-contact__expand.non-button {
  border-bottom: 1px solid #009EC2;
  color: #009EC2;
  display: block;
  margin-left: auto;
  margin-right: 1.5rem;
  position: relative;
}
.dealers-contact__expand.non-button::after {
  background: url("/icons/caret-down-teal.svg") no-repeat center;
  background-size: 1rem;
  content: '';
  height: 1rem;
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
}
.dealers-contact__expand.non-button.open::after {
  transform: translateY(-50%) rotate(180deg);
}
.dealers-contact__expand.non-button .more-contacts {
  display: inline-block;
}
.dealers-contact__expand.non-button .less-contacts {
  display: none;
}
.dealers-contact__expand.non-button.open .more-contacts {
  display: none;
}
.dealers-contact__expand.non-button.open .less-contacts {
  display: inline-block;
}
@media screen and (min-width: 48em) {
  .dealers-contact__row p {
    font-size: 1rem;
  }
  .dealers-contact__row-avatar {
    display: block;
  }
  .dealers-contact__search {
    align-self: flex-start;
    margin-bottom: 0;
    padding-bottom: 3rem;
    width: 40%;
  }
  .dealers-contact__contacts {
    padding-left: 3rem;
    width: 60%;
  }
}
@media screen and (min-width: 62em) {
  .dealers-contact__contacts {
    padding-left: 4.5rem;
  }
}

.manual-list {
  list-style: none;
  padding-left: 0;
}
.manual-list li {
  margin-bottom: .5rem;
}

.gateway-payment-form button {
  margin-top: 1rem;
}

/*.gateway-payment-form + div button {
display: none;
}*/
@media screen and (min-width: 78em) {
  nav > .menu > .menu__item:first-child > ul.menu__submenu {
    width: 75em;
  }

  .menu__submenu .menu__item a {
    padding: 0.75em 0.5em 0.75em 3.25em;
  }

  .menu__submenu .menu__item a:before {
    display: block;
    position: absolute;
    left: 0.75em;
    top: 0.25em;
    font-size: 1.75em;
    opacity: .35;
  }
}
.category-header__image img {
  opacity: 0;
}

/* Don't remove this yet! It got taken out and broke some product styling */
.button,
body button.button,
body button {
  background-color: #003c71;
  border: 1px solid #003c71;
  color: #fff;
  display: inline-block;
  padding: 1em 2.5em;
  text-decoration: none;
  transition: .25s;
  -webkit-appearance: none;
  white-space: nowrap;
  font-weight: 700;
  border-radius: 0;
  border-left: 4px solid #00d0ff;
  line-height: 1em;
}

/*
Don't remove this yet either. It also caused product grid breakage.

PRODUCT PAGES
*/
.product-pagination__links > a,
.product-pagination__links > span {
  padding: 1em;
  border: 1px solid #ccc;
}

@media screen and (min-width: 62em) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.products-grid .grid {
  display: flex;
}

.products-grid .grid input[type=number] {
  margin-right: 1em;
  width: 4em;
}

.products-grid .m-4 a {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: "Barlow Condensed",Helvetica,sans-serif;
  text-decoration: none;
}

.appearance-none {
  display: none;
}

/*
CART
*/
.font-bold {
  font-weight: bold;
}

.pr-2 {
  padding-right: 1em;
}

.page-contact .layout.two-columns .contain {
  align-items: flex-start;
}

.prod-db {
  color: blue;
}

/*  Stuart section */
.search-form__button--search:hover {
  border-left: 1px solid #333;
}

.search-form__button--search {
  height: 3.18rem;
  top: 0rem;
  width: 3rem;
}

.search-form__field:focus {
  outline: none;
  box-shadow: none;
}

.search-form__container:focus-within {
  border: 1px solid #333;
}

.category-grid__item {
  text-transform: uppercase;
}

@media screen and (max-width: 61.999em) {
  .attachment-header__content-sub a {
    float: inherit !important;
  }

  .site-header__navigation > nav.main-menu > ul > li:first-child > ul > li > a {
    padding-left: 3rem;
  }
}
.attachment-header__images-button {
  background-color: #fff;
  border: 1px solid rgba(175, 175, 175, 0.5);
  opacity: 0.8;
}

.attachment-header__images-button.active {
  border: 1px solid #003c71;
  cursor: pointer;
  opacity: 1;
}

.attachment-header__images-main a {
  cursor: zoom-in;
}

/* end Stuart section */
p.international-order-info {
  padding: 25px;
  background: #F0F3F5;
  border-radius: 5px;
  margin-bottom: 20px;
}

.attachment-page.rental-recommended .attachment-header__content .eyebrow ~ h1::after,
.attachment-page.rental-recommended .attachment-header__content .eyebrow ~ h2::after,
.attachment-page.rental-recommended .attachment-header__content .eyebrow ~ h3::after,
.attachment-page.rental-recommended .attachment-header__content .eyebrow ~ h4::after,
.attachment-page.rental-recommended .attachment-header__content .eyebrow ~ h5::after,
.attachment-page.rental-recommended .attachment-header__content .eyebrow ~ h6::after {
  content: "Rental Recommended";
  background: #6b6b6b;
  display: block;
  border-radius: 4px;
  padding: 5px;
  color: #ffffff;
  font-size: 18px;
  margin-top: 10px;
  width: 165px;
  text-align: center;
}

ul.checkout-step-nav {
  list-style: none;
  text-align: center;
  padding: 0;
}
ul.checkout-step-nav li {
  display: inline-block;
  margin: 0 5px;
}
ul.checkout-step-nav li a {
  background: #F0F3F5;
  display: inline-block;
  padding: 5px;
  border-radius: 50%;
  text-decoration: none;
  width: 36px;
}
ul.checkout-step-nav li a:focus {
  box-shadow: none;
}
ul.checkout-step-nav li.active a {
  background-color: #003c71;
  color: #ffffff;
}

.text-video .align-video-left .two-columns__left, .videos .align-video-left .two-columns__left {
  order: 2;
}
@media screen and (max-width: 47.999em) {
  .text-video .align-video-left .two-columns__right, .videos .align-video-left .two-columns__right {
    margin-bottom: 1.5rem;
  }
}
.text-video .embed-youtube-video, .videos .embed-youtube-video {
  display: block;
  height: 310px;
  position: relative;
  background-size: cover;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .text-video .embed-youtube-video, .videos .embed-youtube-video {
    height: 56vw;
    max-height: 350px;
  }
}
.text-video .embed-youtube-video svg, .videos .embed-youtube-video svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
}

.download-document {
  margin-left: 22px;
  margin-bottom: 25px;
  display: inline-block;
}

#product-registration-page .aic-tab {
  align-items: normal;
}
#product-registration-page .two-columns__left, #product-registration-page .two-columns__right {
  padding: 20px;
  border: 2px solid #dbdade;
  border-radius: 23px;
}
#product-registration-page .two-columns__left a, #product-registration-page .two-columns__right a {
  display: block;
  text-decoration: none;
  box-shadow: none;
}
#product-registration-page .two-columns__left h1 a, #product-registration-page .two-columns__right h1 a {
  color: #003c71;
}

.slow-shipping-response {
  display: none;
  font-weight: bold;
  margin-top: 15px;
  padding: 15px;
  background: #ffc107;
  border-radius: 5px;
  margin-bottom: 20px;
}

table.table-responsive .mobile {
  display: none;
}

.table-responsive {
  overflow: auto;
}

.table-condensed select {
  display: inline-block;
}

.date-range {
  max-width: 400px;
  margin-bottom: 30px;
}

#warrantyFormContainer .freeform-row .freeform-input.valid {
  font-weight: bold;
  border: 2px solid green;
  box-shadow: none;
}
#warrantyFormContainer .freeform-row .freeform-input.valid:focus {
  border: 2px solid green !important;
}
#warrantyFormContainer .freeform-row .freeform-input.valid ~ label {
  background: transparent;
}

.layout-ultra-narrow .contain {
  max-width: 41rem;
  padding: 0 1.5rem;
}
.layout-ultra-narrow .search-form {
  margin-left: 0;
}
.layout-ultra-narrow .search-form__container {
  position: relative;
  left: auto;
  width: 100%;
}

.below-404-page .search-form {
  margin-left: auto;
  margin-right: auto;
  max-width: 41rem;
}
.below-404-page .search-form__container {
  position: relative;
  left: auto;
  width: 100%;
}

.below-search-page .contain {
  max-width: 35rem;
  padding: 0;
}
.below-search-page .contain .search-form {
  margin-left: 0;
}

.dealer-header .main-menu, .dealer-header .download-pricing {
  display: none;
}
@media screen and (max-width: 62em) {
  .dealer-header .main-menu {
    display: block;
  }
  .dealer-header .download-pricing {
    display: flex;
  }
  .dealer-header .secondary-menu .menu__item {
    display: inline-block;
  }
  .dealer-header .secondary-menu__phone {
    margin-left: 1.5rem;
  }
  .dealer-header .download-pricing {
    background: linear-gradient(270deg, #003C71 0%, #3472A8 100%), #2ABEC5;
    margin: 5px 1.5rem 1.5rem 1.5rem;
    padding: 10px;
    position: relative;
    width: calc(100% - 3rem);
  }
  .dealer-header .download-pricing a {
    line-height: 1;
    margin-bottom: 0;
    padding-right: 1rem;
    text-decoration: none;
  }
  .dealer-header .download-pricing img {
    display: block;
    height: auto;
    margin-left: auto;
    width: 2.25rem;
  }
}

.checkout-address hr {
  margin: 20px 0;
}
.checkout-address .all-addresses {
  display: none;
}
.checkout-address .outline {
  border: 1px solid #2d2d2d;
  padding: 20px;
  margin-bottom: 10px;
}
.checkout-address .address-radios {
  padding: 10px;
}
.checkout-address .primary-etc {
  padding-left: 28px;
}
.checkout-address .selected-address {
  position: relative;
  padding-right: 35px;
  cursor: pointer;
}
.checkout-address .selected-address .selected-address-val {
  display: inline-block;
}
.checkout-address .selected-address .down-arrow {
  width: 25px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.checkout-address .selected-address .down-arrow.invert svg {
  transform: rotate(180deg);
}
.checkout-address .selected-address .down-arrow svg {
  width: 25px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.layout.account .selected-address {
  display: none;
}

.layout.account .address-select.js-address-select {
  margin-bottom: 10px;
}

.layout.account .address-radios {
  margin-bottom: 20px;
}

.js-address-fieldset.BillingAddress {
  margin-top: 35px;
}

@media screen and (max-width: 62em) {
  .dealer-page__sidebar {
    display: none;
  }

  .dealer-page__body {
    width: 100%;
  }

  .site-header__navigation .secondary-menu .menu__item {
    display: inline-block;
  }

  .site-header__navigation .secondary-menu .menu__item a {
    color: #007d99;
    padding: 10px 25px;
    margin-bottom: 5px;
  }

  table.table-responsive {
    min-width: 300px;
    width: 100%;
    border-top: 5px solid #003c71;
  }
  table.table-responsive tr, table.table-responsive tbody {
    display: block;
  }
  table.table-responsive tr {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  table.table-responsive .shipment-details b {
    display: inline-block;
    width: 160px;
    min-width: 160px;
    font-size: 15px;
  }
  table.table-responsive.radio-table tr {
    padding-left: 30px;
    position: relative;
  }
  table.table-responsive.radio-table td:first-child {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    display: inline-block;
  }
  table.table-responsive.radio-table td > :not(.mobile) {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  table.table-responsive .mobile {
    display: inline-block;
    width: 160px;
    min-width: 160px;
    vertical-align: middle;
    font-weight: bold;
    font-size: 15px;
  }
  table.table-responsive thead {
    display: none;
  }
  table.table-responsive td {
    display: flex;
    text-align: left;
    padding: 3px;
    border: 0 !important;
  }
  table.table-responsive td.v-middle {
    align-items: center;
  }
}
#broom-wafers-page .variant-select {
  margin-bottom: 15px;
}

#broom-wafers-page .variant-select-label {
  font-weight: 500;
}

#broom-wafers-page #resetFilters {
  cursor: pointer;
  color: #1A3E6F;
  font-weight: 500;
}

#broom-wafers-page option[disabled] {
  display: none;
}

.my-orders__table-wrapper .shipping-info-title {
  display: none;
}

.my-orders__table.table-responsive {
  border-left: 2px solid #003c71;
  border-right: 2px solid #003c71;
}

@media screen and (max-width: 62em) {
  .my-orders__table-wrapper, .incidents__table-wrapper {
    overflow: hidden;
  }

  .my-orders__table.table-responsive thead {
    display: block;
  }
  .my-orders__table.table-responsive th {
    display: none;
  }
  .my-orders__table.table-responsive .dh {
    display: none;
  }
  .my-orders__table.table-responsive th.dnh {
    display: flex;
    text-align: left;
    padding: 3px .75rem;
    border: 0 !important;
  }
  .my-orders__table.table-responsive td {
    padding: 3px .75rem;
  }
  .my-orders__table.table-responsive .ordr-status {
    width: 105px !important;
    max-width: 105px;
    min-width: 100px;
  }
  .my-orders__table.table-responsive .fw {
    width: 100%;
  }
  .my-orders__table.table-responsive .hw {
    display: inline-block !important;
    width: calc(100% - 110px);
  }
  .my-orders__table.table-responsive th.total-price {
    text-align: left;
  }
  .my-orders__table.table-responsive .shipping-info-title a {
    text-decoration: none;
  }
  .my-orders__table.table-responsive .shipping-info-title a.clicked svg {
    transform: rotate(180deg);
  }
  .my-orders__table.table-responsive .shipping-info-title a svg {
    max-width: 18px;
    vertical-align: middle;
    margin-top: -3px;
  }
}

/*# sourceMappingURL=style-front-page.css.map */
