<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.ds-sticky-cta {
  display: block;
  width: 100%;
  position: relative;
}
.ds-sticky-cta--fixed {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  transition: top 0.5s ease-in-out;
  left: 0;
  top: -100px;
  position: fixed;
  z-index: 900;
}
.ds-sticky-cta--not-shown {
  max-height: 0px;
  overflow: hidden;
  transition: top 0.5s ease-in-out;
}
.ds-sticky-cta--shown {
  top: 0;
}
.ds-sticky-cta a {
  display: block;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 22px;
  padding: 12px 0;
  font-weight: bold;
  text-transform: uppercase;
}
.ds-sticky-cta a &gt; span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  float: none;
  margin: 0 7px;
  line-height: 26px;
}
.ds-sticky-cta a .textbuttonIcon {
  display: none;
}
.ds-sticky-cta a .textbuttonContent:after {
  content: "";
  position: absolute;
  width: 0;
  left: 0;
  right: 0;
  height: 0;
  transition: all 0.1s ease-in-out;
  bottom: 0;
  margin: auto;
  border-top: 2px solid currentColor;
}
.ds-sticky-cta a .textbuttonArrow {
  animation: stickyWiggle 1.5s linear infinite;
}
.ds-sticky-cta a[title="Get A Quote"] .showroom-detail__action-text:before {
  content: '\f0e5';
  font-family: FontAwesome;
  font-weight: normal;
  opacity: .4;
  padding-right: .5em;
}

@keyframes stickyWiggle {
  0%,
  100% {
    left: 0px;
  }
  50% {
    left: 5px;
  }
}
.ds-sticky-cta a:hover .textbuttonContent:after,
.ds-sticky-cta a:active .textbuttonContent:after,
.ds-sticky-cta a:focus .textbuttonContent:after {
  width: 100%;
}
</pre></body></html>