/* -------------------- Header & Navbar ---------------------- */

/*-- Navbar --*/
.header .navbar-nav .nav-link {
  text-transform: uppercase;
  font-size: 0.85rem !important;
}

.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
  color: var(--header-navigationbartext);
}

header .navbar .dropdown-item {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: normal !important;
}

/*-- Header --*/

.cw-header {
  padding-bottom: 1rem;
  /* display: flex; */
  /* flex-direction: column-reverse; */
}

.header .cw-header :focus {
  box-shadow: none;
}

.header li.nav-item.active a {
  background-color: transparent !important;
}

.header .cw-header-logo img {
  width: 250px;
  position: relative;
  padding: 10px;
  z-index: 1;
}

.cw-header-contact {
  font-size: 0.9rem;
  background-color: var(--color-theme-primary);
  color: var(--header-text);
}

.cw-header-contact a {
  color: inherit;
}

.cw-header-contact a:hover {
  opacity: 0.85;
}

.cw-header-contact .fa {
  display: inline-block;
  vertical-align: middle;
  padding-right: 0.25rem;
  color: var(--color-theme-highlight);
}

.cw-header .cw-address:before {
  font-family: FontAwesome;
  vertical-align: middle;
  content: "\f3c5";
  padding-right: 0.5rem;
  color: var(--color-theme-highlight);
}

.cw-header .cw-phone:before {
  font-family: FontAwesome;
  vertical-align: middle;
  content: "\f2a0";
  padding-right: 0.5rem;
  color: var(--color-theme-highlight);
}

.cw-header .cw-socials a {
  font-size: 1.3rem;
  padding: 1px 0.5rem;
}

@media (min-width: 992px) {
  .cw-header {
    padding: 0;
  }

  .cw-socials {
    margin-left: 10px;
  }

  .cw-header .cw-header-logo {
    position: absolute;
    z-index: 1040;
    top: 0px;
    left: 0;
  }

  .cw-header-logo::before {
    content: "";
    position: absolute;
    width: 122%;
    height: 110%;
    background: var(--color-theme-primary);
    left: -10%;
    transform: skew(-38deg, 0deg);
  }

  .cw-header-logo::after {
    content: "";
    position: absolute;
    width: 83%;
    height: 120%;
    background: var(--color-theme-highlight);
    left: 0;
    top: 0;
    z-index: -2;
    transform: skew(-56deg, 0deg);
  }

  nav.navbar .container {
    min-height: 77px;
  }

  .header.has-cart .collapse.justify-content-center,
  .header .navbar-collapse.justify-content-center {
    -webkit-box-pack: flex-end !important;
    -ms-flex-pack: flex-end !important;
    justify-content: flex-end !important;
  }

  .header .navbar-nav:not(.navbar-cart) {
    /* set pixels to logo width (or more) */
    max-width: calc(100% - 240px);
    justify-content: center;
  }
}

@media (min-width: 1200px) {
  .header .cw-header-logo img {
    width: 390px;
  }
}

.header .navbar,
.header .navbar.bg-primary {
  background-color: linear-gradient(#111, #333, #111) !important;
  background-image: url("https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/BD4701E38DE04D26DC648E767EB38C9C.png") !important;
  position: relative;
}

/* nav.navbar.navbar-expand-lg.navbar-dark.bg-primary::before {
  content: "";
  position: absolute;
  background-image: linear-gradient(
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
} */

.title + .text {
  margin-top: 0;
}

section:not(.page-home) .title {
  position: relative;
  margin-bottom: 2.5rem;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/0D809B399A10C5DE0BC929F83851290A.jpg)
      no-repeat center;
  background-size: cover;
  text-align: center;
}

section:not(.page-home) .title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0/58%);
}

section:not(.page-home) .title .title-heading {
  position: relative;
  z-index: 1;
  margin: auto;
  padding: 2rem 0;
  color: white;
  text-shadow: 0 0 4px black;
}

section:not(.page-home) .title h1 {
  font-size: 2rem;
}

section:not(.page-home) .form {
  padding-top: 1rem;
}

.employees-email {
  font-size: 0.85rem;
}

@media (min-width: 992px) {
  section:not(.page-home) .title .title-heading {
    padding: 3.5rem 0;
  }

  section:not(.page-home) .title h1 {
    font-size: 2.5rem;
  }
}

/* ----- Hero ------*/
/*-- Hero Carousel --*/
.cw-heroCarousel {
  overflow: hidden;
}

.cw-heroCarousel .carousel-item {
  height: 345px;
  background-position: center;
  background-size: cover;
}

.cw-heroCarousel .carousel-item:nth-of-type(odd) {
  -o-animation: zoomin 30s 1;
  -moz-animation: zoomin 30s 1;
  -webkit-animation: zoomin 30s 1;
  animation: zoomin 30s 1;
}

.cw-heroCarousel .carousel-item:nth-of-type(even) {
  -o-animation: zoomout 30s 1;
  -moz-animation: zoomout 30s 1;
  -webkit-animation: zoomout 30s 1;
  animation: zoomout 30s 1;
}

@keyframes zoomin {
  0% {
    -webkit-transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.25);
  }
}

@keyframes zoomout {
  0% {
    -webkit-transform: scale(1.25);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

.cw-heroCaption {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  left: unset;
  padding: 0;
}

.cw-heroCaption h1 {
  width: 100%;
  margin: 0;
  padding: 1rem;
  background: rgb(0 0 0 / 66%);
  margin: 0;
  font-size: 1.5rem;
}

.cw-heroCaption h1 .cw-smaller {
  font-size: 80%;
  display: inline-block;
}

.cw-heroCarousel .carousel-indicators {
  max-height: 100%;
  display: flex;
  flex-flow: column wrap-reverse;
  justify-content: center;
  align-items: center;
  right: 0;
  left: unset;
  top: 0;
  right: 0;
  margin: 0;
}

.cw-heroCarousel .carousel-indicators [data-bs-target] {
  opacity: 1;
  display: block;
  position: relative;
  width: 25px;
  height: 25px;
  margin: 0.35rem 0rem 0.35rem 0.35rem;
  background: var(--color-theme-secondary);
  border-radius: 0;
  text-indent: 0;
}

.cw-heroCarousel .carousel-indicators [data-bs-target]:after {
  content: "\f06e";
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  font-family: FontAwesome;
  color: #666;
}

.cw-heroCarousel .carousel-indicators [data-bs-target].active {
  opacity: 0.5;
  background: var(--color-theme-primary);
}

.cw-heroCarousel .carousel-indicators [data-bs-target].active:after {
  color: var(--color-theme-highlight);
}

.cw-heroSocial {
  display: none;
}

@media (min-width: 400px) {
  .cw-heroCaption h1 {
    width: auto;
  }

  .cw-heroCaption h1:before {
    content: "";
    position: absolute;
    left: -62px;
    top: 0;
    border-top: 84px solid transparent;
    border-bottom: 0 solid transparent;
    border-right: 62px solid rgb(0 0 0 / 66%);
  }
}

@media (min-width: 768px) {
  .cw-heroCarousel .carousel-item {
    height: 580px;
  }

  .cw-heroCarousel .carousel-item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+50,0.5+100 */
    background: -moz-linear-gradient(
      45deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 0.5) 100%
    );
    /* FF3.6-15 */
    background: -webkit-linear-gradient(
      45deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 0.5) 100%
    );
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(
      45deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 0.5) 100%
    );
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
  }

  .cw-heroCaption .cw-location {
    font-size: 80%;
  }

  .cw-heroCaption h1 {
    max-width: 730px;
    padding: 1.5rem 3rem;
    font-size: 2rem;
  }

  .cw-heroCaption h1:before {
    left: -104px;
    border-top: 128px solid transparent;
    border-bottom: 0 solid transparent;
    border-right: 104px solid rgb(0 0 0 / 66%);
  }

  .cw-heroSocial {
    display: block;
    position: absolute;
    left: 4%;
    bottom: 0;
    z-index: 2;
  }

  .cw-heroSocial a {
    display: inline-block;
    width: 50px;
    height: 45px;
    margin: 0 0.5rem;
    padding: 10px;
    background: var(--color-theme-secondary);
  }

  .cw-heroSocial .fa {
    font-size: 25px;
    color: var(--color-theme-highlight);
  }

  .cw-heroSocial a:hover {
    background: var(--color-theme-primary);
  }

  .cw-heroSocial a:hover .fa {
    color: var(--color-theme-highlight);
  }
}

@media (min-width: 992px) {
  .cw-heroCarousel .carousel-item {
    height: 675px;
  }

  .cw-heroCaption h1:before {
    left: -136px;
    border-top: 133px solid transparent;
    border-bottom: 0 solid transparent;
    border-right: 136px solid rgb(0 0 0 / 66%);
  }
}

section.inventory-search-module .form__wrapper {
  background-color: var(--color-theme-highlight) !important;
  border: 1px solid var(--color-theme-background) !important;
}

section.inventory-search-module label {
  color: #000;
}

.inventory-search-module {
  background-color: #303130;
  margin: 0 !important;
  padding: 2rem 0;
}

.page-home section.creditQualifyBanner.my-3 {
  background: transparent;
  margin: 0 !important;
  padding: 2rem 0;
}

/* ------ Welcome Section -----*/

.cw-body {
}

.cw-welcome {
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 5px #000;
  position: relative;
}

.cw-welcome h5 {
  color: var(--color-theme-highlight);
  font-size: 1.6em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.cw-welcome p {
  color: #fff;
  font-size: 0.8rem;
}

.cw-welcome p a {
  color: var(--color-theme-highlight) !important;
  font-weight: 600;
}

.cw-welcome p a:hover {
  color: #999999 !important;
}

@media (min-width: 992px) {
  .cw-welcome img {
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  }

  .cw-welcome::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 44%;
    width: 40px;
    height: 240px;
    background: #f4d812;
    z-index: 1;
    transform: skew(-24deg, 0deg);
  }
}

.btn-highlight {
  background: var(--color-theme-highlight);
  font-weight: 800;
}

.btn-highlight:hover {
  background: var(--color-theme-secondary);
  border: 1px solid var(--color-theme-highlight);
  color: #fff !important;
}

/* ------ Finance Module ------*/
.cw-parallax {
  margin-bottom: 0.5rem;
  padding: 28rem 0 0;
  background: url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/6924331923962EBF6FA75FC547C11FA6.jpg)
    center;
  background-size: cover;
  overflow: hidden;
}

.cw-parallax:after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: -moz-linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
  background: -webkit-linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
  background: linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}

.cw-parallaxText {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 1.5rem 1rem;
  background: rgba(0, 0, 0, 0.64);
}

.cw-parallaxText h3 {
  margin: 0;
  font-size: 1.5rem;
}

.cw-parallax h5 {
  position: absolute;
  z-index: 2;
  top: 4rem;
  left: 1.5rem;
  font-size: 1.5rem;
  text-shadow: 0 0 20px #000;
  font-style: normal;
}

.cw-parallax h5 span {
  display: block;
  font-size: 60%;
}

@media (min-width: 400px) {
  .cw-parallaxText {
    width: auto;
  }

  .cw-parallaxText:before {
    content: "";
    position: absolute;
    right: -63px;
    top: 0;
    border-top: 61px solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 63px solid rgb(12 27 51/64%);
  }
}

@media (min-width: 768px) {
  .cw-parallaxText {
    max-width: 500px;
    padding: 2rem 3rem;
  }

  .cw-parallaxText h3 {
    font-size: 1.75rem;
  }

  .cw-parallaxText:before {
    right: -104px;
    border-top: 210px solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 104px solid rgb(12 27 51/64%);
  }

  .cw-parallax .cw-btnSmall {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 1.5rem;
    padding: 0.5rem 0.85rem;
    font-size: 1.25rem;
  }

  .cw-parallax h5 {
    top: 15%;
    left: 3.25rem;
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  .cw-parallax {
    padding: 27rem 0 0;
    background-attachment: fixed;
  }

  .cw-parallaxText {
    max-width: 600px;
  }

  .cw-parallaxText h3 {
    font-size: 2.25rem;
  }

  .cw-parallaxText:before {
    right: -137px;
    border-top: 192px solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 137px solid rgba(0, 0, 0, 0.64);
  }

  .cw-parallax h5 {
    top: 20%;
    font-size: 2.75rem;
  }
}

/* -------- Testimonials ---------*/
.cw-testimonials {
  position: relative;
  padding: 4rem 0;
  text-align: center;
  background: transparent;
}

.cw-testimonials .container,
.cw-testimonials h3 {
  position: relative;
  z-index: 2;
}

.cw-testimonials h3 {
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: var(--color-theme-text);
}

.cw-testimonials .card {
  position: relative;
  padding: 1.25rem 1rem 0;
  font-size: 0.85rem;
  border: 1px solid #333;
  background: #111;
  text-align: left;
}

.cw-testimonials .fas {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  color: var(--color-theme-highlight);
  font-size: 22px;
}

.cw-testimonials .card-text {
  margin-bottom: 0.25rem;
  font-style: italic;
}

.cw-testimonials .card-title {
  float: right;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: right;
  text-transform: none;
}

.cw-testimonials .btn {
  border-radius: 50%;
  padding: 5px 11px;
  background: var(--color-theme-secondary);
  color: #fff;
}

@media (min-width: 992px) {
  .cw-testimonials h3 {
    font-size: 2.5rem;
  }

  .cw-testimonials .card {
    font-size: 0.95rem;
  }
}

/* ------ Popular Vehicles Section -----*/

.popular-vehicles-sections {
  padding: 4rem 1rem;
}

/* ----- Footer ----*/

.cw-footer {
  padding: 4rem 0;
  background: #111;
  background-size: cover;
  color: #fff;
  text-align: left;
}

.cw-footer iframe {
  width: 100%;
}

.cw-footer a {
  color: inherit;
}

.cw-footer a:hover {
  color: var(--color-theme-highlight);
}

.cw-footer .cw-footer-social a {
  font-size: 1.5rem;
  display: inline-block;
  margin: 2px 0.5rem;
}

.cw-footer .cw-address,
.cw-footer .cw-phone {
  position: relative;
  line-height: 1.35;
  font-size: 1.1rem;
}

.cw-footerMenu a {
  display: block;
  margin-bottom: 0.65rem;
  font-weight: 700;
}

.cw-footerMenu a:hover,
.cw-social a:hover,
.cw-footer .cw-phone:hover {
  /* color: #fff */
}

.cw-footer h5 {
  margin-bottom: 1rem;
  /* color: #fff; */
}

/* .cw-social a {
	display: inline-block;
	margin: 0 .5rem 0 0
} */

/* .cw-social i {
	font-size: 25px
} */

.footer {
  padding-top: 0;
}

footer > .container {
  display: none;
}

.creditQualifyPage {
  padding: 3rem 0;
}

/* -------------------- SRP Inventory page ---------------------- */
.inventory .inventory-cta .btn:not(.btn-pre-qualified):hover {
  color: var(--color-theme-primary) !important;
  background-color: var(--color-theme-highlight) !important;
}

.inventorydetails .vdp-module-canvas-razor-wrapper .btn:focus,
.inventorydetails .vdp-module-canvas-razor-wrapper button:focus {
  border-color: currentColor;
}

.inventorydetails .vdp-module-canvas-razor-wrapper .btn:focus,
.inventorydetails .vdp-module-canvas-razor-wrapper button:focus {
  -webkit-box-shadow: 0 0 0 0.1rem var(--color-theme-highlight);
  box-shadow: 0 0 0 0.1rem var(--color-theme-highlight);
}

/* -------------------- SECTIONTITLE ---------------------- */

.businessinfo .btn-primary:hover {
  background-color: var(--color-theme-highlight) !important;
  border-color: var(--color-theme-highlight) !important;
  color: var(--color-theme-primary) !important;
}

.form .btn-primary:hover {
  background-color: var(--color-theme-highlight) !important;
  border-color: var(--color-theme-highlight) !important;
  color: var(--color-theme-primary) !important;
}

.page-inventory-details .btn-primary:hover {
  background-color: var(--color-theme-highlight) !important;
  border-color: var(--color-theme-highlight) !important;
  color: var(--color-theme-primary) !important;
}

.btn-primary:hover {
  background-color: var(--color-theme-highlight) !important;
  border-color: var(--color-theme-highlight) !important;
  color: var(--color-theme-primary) !important;
}

.inventorydetails .vdp__title__mod .veh__price[VehicleHeadingWidgetCssScope] {
  color: var(--color-theme-highlight);
}

.inventorydetails .vdp-module-canvas-razor-wrapper .btn-link {
  color: var(--color-theme-highlight);
}

/* -------------------- Color Fixes for VDP ---------------------- */

/* hardcoded backgrounds in modals and sections switched to transparent so hopefully site text comes through */
.inventorydetails
  .vdp__veh__info__mod
  .veh__info__item:nth-child(even)[VehicleInfoWidgetCssScope] {
  background: rgba(150, 150, 150, 0.1);
}

.inventorydetails .vdp__message__mod.module .vdp__message__wrapper {
  background-color: transparent;
}

/* Financing button and most modal buttons */
.inventorydetails .vdp-module-canvas-razor-wrapper .btn-secondary,
.inventorydetails .vdp-module-canvas-razor-wrapper .btn-secondary:focus {
  background-color: var(--color-theme-primary);
  color: var(--color-theme-text-btn);
  border-color: var(--color-theme-primary);
}

.inventorydetails .vdp-module-canvas-razor-wrapper .btn-secondary:hover,
.inventorydetails .vdp-module-canvas-razor-wrapper .btn-secondary:hover:focus,
.inventorydetails
  .vdp-module-canvas-razor-wrapper
  .btn-secondary:not([disabled]):not(.disabled).active,
.inventorydetails
  .vdp-module-canvas-razor-wrapper
  .btn-secondary:not([disabled]):not(.disabled):active,
.inventorydetails
  .vdp-module-canvas-razor-wrapper
  .show
  > .btn-secondary.dropdown-toggle {
  background-color: var(--color-theme-secondary);
  color: var(--color-theme-text-btn);
  border-color: var(--color-theme-secondary);
}

.inventorydetails .vdp-module-canvas-razor-wrapper .btn-secondary:before {
  background: var(--color-theme-secondary);
}

/* loan calc buttons and "Request more pictures" button in modal */
.inventorydetails .vdp-module-canvas-razor-wrapper .btn-outline-secondary {
  border-color: var(--color-theme-primary);
  color: var(--color-theme-primary);
  background-color: var(--color-theme-text-btn);
}

.inventorydetails .vdp-module-canvas-razor-wrapper .btn-outline-secondary:hover,
.inventorydetails
  .vdp-module-canvas-razor-wrapper
  .btn-outline-secondary:hover:focus,
.inventorydetails
  .vdp-module-canvas-razor-wrapper
  .btn-outline-secondary:not([disabled]):not(.disabled).active,
.inventorydetails
  .vdp-module-canvas-razor-wrapper
  .btn-outline-secondary:not([disabled]):not(.disabled):active,
.inventorydetails
  .vdp-module-canvas-razor-wrapper
  .show
  > .btn-outline-secondary.dropdown-toggle {
  background-color: var(--color-theme-secondary);
  color: var(--color-theme-text-btn);
}

.inventorydetails
  .vdp-module-canvas-razor-wrapper
  .btn-outline-secondary:before {
  background: var(--color-theme-secondary);
}

.inventorydetails
  .vdp-module-canvas-razor-wrapper
  .btn-check:active
  + .btn-outline-secondary,
.inventorydetails
  .vdp-module-canvas-razor-wrapper
  .btn-check:checked
  + .btn-outline-secondary,
.inventorydetails
  .vdp-module-canvas-razor-wrapper
  .btn-outline-secondary.active,
.inventorydetails
  .vdp-module-canvas-razor-wrapper
  .btn-outline-secondary.dropdown-toggle.show,
.inventorydetails
  .vdp-module-canvas-razor-wrapper
  .btn-outline-secondary:active {
  color: var(--color-theme-text-btn);
  background-color: var(--color-theme-primary);
  border-color: var(--color-theme-primary);
}

/* ---------------------------------------------- */
.inventory-search-module {
  background: transparent !important;
}
.page-home {
  background-color: #111;
  background-image: url("https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/BD4701E38DE04D26DC648E767EB38C9C.png");
}
/* ----------------------------------------------- */
.inventoryslideshow {
  background: transparent !important;
}
.popular-vehicles-sections {
  background: transparent !important;
}

/* --------------------------------------------------------------------------------------- */
/* Financing Loan Calculator */
.cw-loan-calculator {
  padding: 10px;
  margin-bottom: 8em;
  margin-top: 2em;
}

.cw-loan-calculator .cw-flex-row {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;

  padding: 5px 5px;
}

.cw-loan-calculator .cw-inputbox {
  flex-grow: 1;
  padding: 0 1px;
}

.cw-loan-calculator input {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42857;
  width: 100%;
  height: 50px;
  margin: 3px auto;
  padding: 6px 12px;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 2px;
  background-color: #fff;
  background-image: none;
}

.cw-loan-calculator input::-webkit-input-placeholder {
  font-weight: 200;
  font-style: italic;
  color: #ccc;
}

.cw-loan-calculator input:-ms-input-placeholder {
  font-weight: 200;
  font-style: italic;
  color: #ccc;
}

.cw-loan-calculator input::placeholder {
  font-weight: 200;
  font-style: italic;
  color: #ccc;
}

.cw-loan-calculator .cw-button-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 6px;
}

.cw-loan-calculator input#cw-btn-calc {
  width: 100%;
  height: 50px;
  background-color: var(--color-theme-primary);
  color: var(--color-theme-text-btn);
}
.cw-loan-calculator input#cw-btn-calc:hover {
  background-color: var(--color-theme-highlight);
}

.cw-loan-calculator .cw-payment-box {
  font-size: 16px;
  font-weight: bold;
  padding: 8px 10px 10px;
  text-align: center;
  border-radius: 2px;
  background-color: #fff;
  color: #000;
  margin: 5px 5px;
}

.cw-loan-calculator .cw-payment-box > div {
  display: inline-block;
}

.cw-loan-calculator #cwID-div-pmt {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-left: 5px;
}

.cw-loan-calculator #cw-txt-interest-rate {
  position: relative;
}

.cw-loan-calculator .cw-full-error {
  background-color: #cf2141;
  color: #fff;
  display: block;
  margin: 1px 5px;
  padding: 6px 8px 6px 13px;
  font-size: 14px;
  font-weight: 700;
  /* font-family: "Helvetica Neue", Arial, sans-serif; */
}

.cw-loan-calculator .cw-hide {
  display: none;
}

@media (min-width: 768px) {
  .cw-loan-calculator .cw-flex-row {
    flex-flow: row nowrap;
  }

  .cw-loan-calculator .cw-inputbox {
    margin-right: 6px;
  }
}

@media (min-width: 992px) {
  .cw-loan-calculator input {
    margin-bottom: 0em;
  }

  .cw-loan-calculator h5 {
    font-size: 14px;
    text-align: left;
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .cw-loan-calculator h5 {
    font-size: 16px;
  }
}
/* -------------------------------------------------------------------------------------------------- */
.inventorydetails,
.sitemap,
.termsandconditions {
  margin-top: 8em;
}
section:not(.page-home) .title {
  padding-top: 5em;
}
    /* -------------------------------------------------------------------------------------------------- */
@media (min-width: 992px) {
  .header .dropdown-menu,
  .footer .dropdown-menu {
    /* make navbar dropdowns right aligned so they don't go off page when navbar is right aligned */
    left: unset !important;
    right: 0;
  }
}
