﻿/* ===========================================================
red: #ffcc01 - yellow: #c4ac20
=========================================================== */
/* ===========================================================
01.      Reset
02.      Body Styles
03.      Header Structure
04.      Typography
05.      Links / Buttons
06.      Site Structure
07.      Footer Structure
08.      Form Structure
08.01   Form Base Styles
08.02   Captcha
09.      Classes
10.      Inventory Styles
11.      Responsive Styles
=========================================================== */
/* ===========================================================
01. Reset
=========================================================== */
/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
}

td,
th {
  padding: 0;
}

td:not([align]),
th:not([align]) {
  text-align: inherit;
}

html {
  background-color: white;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  min-width: 300px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
  display: block;
}

a:link,
a:visited,
a:active {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
  align-self: center;
  flex-shrink: 0;
}

/* ===========================================================
02. Body Styles
=========================================================== */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 1rem;
  /* font-size: 1.6rem; */
}

html {
  overflow-x: hidden;
  /* font-size: 62.5% !important; */
  font-size: 100%;
}

/* ===========================================================
03. Header Structure
=========================================================== */

.mobile-menu-nav-icon {
  display: none;
}

header {
  padding-top: 20px;
  background: #000;
  transition: top 0.4s ease-in-out;
  position: relative;
  z-index: 10;
  width: 100%;
  -webkit-box-shadow: 0px 9px 26px -7px rgba(0, 0, 0, 0.57);
  -moz-box-shadow: 0px 9px 26px -7px rgba(0, 0, 0, 0.57);
  box-shadow: 0px 9px 26px -7px rgba(0, 0, 0, 0.57);
}

header .wrapper {
  flex-direction: column;
  align-items: flex-start;
}

.header-logo {
  display: flex;
  justify-content: center;
}

.logo-mobile {
  display: none;
}

.header-logo img {
  padding: 10px 0;
  max-width: 250px;
  height: auto;
  box-sizing: border-box;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.header-logo a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.header-bottom {
  width: 100%;
  position: relative;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* ===========================================================
04. Typography
=========================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  letter-spacing: -.1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  /* margin-bottom: 2.0rem; */
}

h1 {
  font-weight: 700;
  font-style: normal;
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.25;
}

h3 {
  font-size: 1.6rem;
  font-weight: 700;
}

h4 {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -.08rem;
  line-height: 1.35;
}

h5 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.05rem;
  line-height: 1.5;
}

h6 {
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.4;
  letter-spacing: 0;
}

/* .heading-small {
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1rem;
} */

strong,
p b,
.bold {
  font-weight: 700;
}

p,
.body-link,
.body-link-light,
.phone {
  font-size: 1rem;
}

p {
  line-height: 2;
  font-weight: 400;
  color: #7e7f7f;
  margin-bottom: 2.5rem;
}

.small {
  font-size: 0.8rem;
}

.large {
  font-size: 1.2rem;
  font-weight: 500;
}

/* ===========================================================
05. Links / Buttons
=========================================================== */
a {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bttn-base,
.bttn-small {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  white-space: nowrap;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  cursor: pointer;
  box-sizing: border-box !important;
}

.bttn-base {
  transition: 0.3s !important;
  height: 50px;
  padding: 0 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none !important;
}

.bttn-yellow {
  color: #000 !important;
  background: #ffcc01;
}

.bttn-yellow:hover {
  background: #e8b105;
}

.bttn-white {
  background: #fff;
  color: #000;
}

.bttn-white:hover {
  background: #adadad;
}

.bttn-full {
  width: 100%;
}

.bttn-base i {
  margin-left: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bttn-arrow i {
  margin: 0 0 0 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bttn-arrow:hover i {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
}

.phone,
.block {
  display: block;
}

.body-link {
  font-weight: 700;
  font-style: normal;
  white-space: nowrap;
}

.body-link-light {
  font-weight: 400;
  font-style: normal;
}

.body-link span {
  font-weight: 400;
}

.body-link i {
  margin-right: 7px;
  font-size: 2.4rem;
}

.bttn-small:hover,
.body-link:hover,
.body-link-light:hover,
.phone:hover {
  opacity: 0.6;
}

.bttn-shadow {
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.39);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.39);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.39);
}

/* ===========================================================
06. Site Structure
=========================================================== */
.wrapper {
  width: 85%;
  max-width: 1800px;
  margin: 0 auto;
  height: 100%;
}



.internal-header {
  background-size: cover !important;
  width: 100%;
  height: 280px;
}

.internal-header.rental-store {
  background: url(/siteart/header-home-01.jpg) center center no-repeat;
}

.internal-header.lifts {
  background: url(/siteart/header-lifts-01.jpg) center center no-repeat;
}

.welcome .internal-list li {
  color: #fff;
}

.welcome .internal-list li:nth-of-type(odd) {
  background: #333;
}

/* Categories */
.categories {
  padding: 2.5px;
  flex-wrap: wrap;
}

.category-card-outer {
  width: 20%;
  height: 300px;
  padding: 2.5px;
}

.category-card-inner {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.card-background {
  background-size: cover !important;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
}

.category-card-copy {
  color: #fff;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  display: block;
  position: relative;
  z-index: 4;
  padding: 10px;
}

.category-card-copy h5 {
  margin-bottom: 0;

}

.card-overlay {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
}

.category-card-inner:hover .card-background {
  transform: scale(1.05);
}

.category-card-inner:hover .card-overlay {
  background: rgba(0, 0, 0, 0.1);
}

/*  */
/*  */
/*  */
/*  */
/* Detailed Search */


.column4 {
  width: 50%;
  padding: 0 20px;
}

.new-search input,
.new-search input::placeholder {
  font-size: 0.8rem;
  color: #515151;
  letter-spacing: 0.05rem;
}

.new-search input {
  padding: 10px !important;
  height: 40px !important;
  width: 100%;
}

/* Home Contact */
.contact-container {
  justify-content: space-between;
}

.social-container ul {
  list-style-type: none;
}

.social-container li {
  display: inline-block;
  margin-right: 15px;
}

.social-container li a {
  color: #474747;
  font-size: 2.4rem;
}

.social-container a:hover {
  opacity: 0.6;
}


/* Newsletter Signup */
.newsletter .contact-form,
.subscribe .contact-form {
  padding: 0;
}

.subscribe {
  min-height: 400px;
}

.newsletter .col-1 {
  align-items: center;
  justify-content: space-between;
}

.newsletter p {
  margin-bottom: 0;
  font-weight: 500;
}

.newsletter .contact-submit {
  width: auto;
  padding: 10px 60px;
}

/* Internal */
.internal-main {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 600px;
}

.internal-main-primary {
  min-height: 300px;
  justify-content: space-between;
}

.internal hr {
  width: 100%;
  border-bottom: 1px solid #cccccc;
}

.bttn-container {
  text-align: center;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.internal-list {
  max-width: 100%;
  margin-bottom: 25px;
}

.list-two-col {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  column-gap: 40px;
}

.internal-list li,
.internal-list-two li {
  font-size: 0.9rem;
  color: #7e7f7f;
  padding: 10px;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}

.internal-list li:nth-of-type(odd) {
  background: #f4f2f2;
}

.internal-list-two {
  background: #fbf9f5;
  padding: 25px;
}

.internal-list-two li:nth-of-type(odd) {
  background: #fff;
}

/* Sidebar */
.internal-sidebar {
  background: #cecccc;
  align-items: stretch;
  height: 100%;
}

.internal-sidebar a {
  white-space: normal;
  word-break: break-word;
}

.internal-sidebar-heading {
  background: #b7b7b7;
  padding: 25px;
  text-align: left;
}

.internal-sidebar h2,
.internal-sidebar h5 {
  margin-bottom: 0;
}

.internal-sidebar .list {
  color: #757575;
}


.sidebar-links {
  margin-bottom: 25px;
  background: none;
}

.sidebar-links a {
  display: block;
  text-decoration: none;
  background: none;
  color: #000000;
  font-size: 16px;
  padding: 8px 0;
  box-sizing: border-box;
  margin-bottom: 5px !important;
  width: auto !important;
}

.internal-sidebar-main {
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.internal-sidebar .list li:nth-of-type(odd) {
  background: #fff;
}

.internal-sidebar .bttn-base {
  width: 100%;
  word-break: keep-all;
  margin: 10px auto 25px;
}

/* Thank You */
.thankyou .internal-main i {
  font-size: 3.5rem;
}

/* NOUI SLIDER */
.noUi-target {
  position: relative;
  direction: ltr;
  margin-bottom: 10px;
}

.noUi-origin {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 2px
}

.noUi-marker,
.noUi-pips,
.noUi-tooltip,
.noUi-value {
  position: absolute
}

.noUi-horizontal {
  height: 12px;
  z-index: 0
}

.noUi-horizontal .noUi-handle {
  width: 25px;
  height: 21px;
  left: -13px;
  top: -6px
}

.noUi-horizontal .noUi-handle-upper {
  top: -5px
}

.noUi-background {
  background: #ccc;
}

.noUi-connect {
  background: #ffcc01 !important;
  border: 1px #ccc solid;
}

.noUi-target {
  width: calc(100% - 15px);
  margin: 15px auto;
}

.noUi-handle {
  position: relative;
  background: #fff !important;
  border: 1px solid #ccc;
  border-radius: 3px;
  z-index: 1;
}

.noUi-handle:after,
.noUi-handle:before {
  content: "";
  display: block;
  position: absolute;
  height: 12px;
  width: 1px;
  background: #E8E7E6;
  left: 10px;
  top: 3px
}

.noUi-handle:after {
  left: 12px
}

.noUi-pips-horizontal {
  padding: 5px 0;
  height: 10px;
  top: 100%;
  left: 0;
  width: 100%
}

.noUi-marker-horizontal.noUi-marker {
  margin-top: 5px;
  margin-left: -1px;
  width: 1px;
  height: 5px;
  background: rgb(204, 204, 204);
}

.example-val {
  text-decoration: none;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  padding-bottom: 0;
  text-align: center;
}

.example-val span {
  font-weight: 600;
}

#slider-price-value-lower:before,
#slider-price-value-upper:before {
  content: '$';
  padding-right: 2px
}

/* ===========================================================
07. Footer Structure
=========================================================== */
footer {
  background: #000;
}

footer .wrapper {
  justify-content: space-between;
}

footer .social-container li a {
  color: #ffcc01;
}

.footer-nav ul {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  column-gap: 40px;
}

.footer-nav li {
  margin-bottom: 15px;
}

.footer-nav li a {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-nav a:hover {
  opacity: 0.6;

}

/* ===========================================================
08. Form Structure
=========================================================== */
/* 08.01. Form Base Styles
=========================================================== */
.internal-form {
  position: relative;
  z-index: 3;
  width: 100%;
}

.internal-form .col-1 {
  margin-bottom: 25px;
}

.internal-form label {
  display: block;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  color: #212121;
  /* margin-bottom: 7px; */
  text-align: left;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

.internal-form input[type="text"],
.internal-form input[type="email"],
.internal-form input[type="phone"],
.internal-form input[type="date"],
.internal-form input[type="time"],
.internal-form select,
.internal-form textarea {
  background: #f6f6f6;
  border: none;
  padding: 15px;
  width: 100%;
  margin-bottom: 20px;
  color: #8e8e8e;
  font-size: 0.9rem !important;
  box-sizing: border-box;
  height: 40px;
}

.align-bottom .margin-right,
.align-bottom input[type="text"] {
  width: 50% !important;
}

.form-flex {
  display: flex;
}

.internal-form textarea {
  min-height: 300px;
}

select option {
  color: #8e8e8e;
}

.form-continue {
  width: 100%;
  text-align: center;
}

#green-btn {
  margin: 20px auto !important;
}

.contact-half {
  width: 50%;
}

.contact-half-one {
  width: 49%;
}

.internal-form input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1.2rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border-radius: 50%;
}

.radio-container:hover input~.checkmark {
  background-color: #ccc;
}

.radio-container input:checked~.checkmark {
  background-color: #ffcc01;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-container input:checked~.checkmark:after {
  display: block;
}

.radio-container .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/* 08.02. Captcha
=========================================================== */
.CaptchaImagePanel {
  margin-top: 10px;
  padding: 0 0 0 0;
}

.CaptchaMessagePanel {
  padding: 0 0 0 0 !important;
  margin: 0 0 0 0 !important;
  font-weight: normal !important;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}

.CaptchaAnswerPanel {
  margin: 0 0 0 0;
  padding: 2px 0px 2px 0px !important;
}

.CaptchaWhatsThisPanel {
  line-height: 0;
  margin: 0 0 10px 0;
  padding: 10px 0 10px 0 !important;
}

.CaptchaWhatsThisPanel a {
  color: inherit;
}

.CaptchaWhatsThisPanel a:hover {
  text-decoration: none;
}

#CaptchaAnswer {
  height: 40px;
  width: 50%;
  max-width: 300px;
  border: none;
  font-size: 0.9rem;
  padding: 15px;
}

/* ===========================================================
09. Classes
=========================================================== */
.text-center {
  text-align: center;
}

.row {
  flex-direction: row;
}

.col-1 {
  width: 100%;
}

.col-2 {
  width: 20%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33333%;
}

.col-5 {
  width: 41.66667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33333%;
}

.col-8 {
  width: 66.66667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33333%;
}

.col-11 {
  width: 91.66667%;
}

.col-12 {
  width: 100%;
}

.flex {
  display: flex;
}

.stretch {
  align-items: stretch;
}

.flex-center {
  justify-content: center;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.align-center {
  align-items: center;
}

.pd-sm {
  padding: 25px 0;
}

.pd-md {
  padding: 50px 0;
}

.pd-all-md {
  padding: 50px;
}

.pd-all-sm {
  padding: 25px;
}

.pd-lg {
  padding: 100px 0;
}

.pd-t-lg {
  padding-top: 100px;
}

.pd-t-md {
  padding-top: 50px;
}

.pd-t-sm {
  padding-top: 25px;
}

.pd-b-lg {
  padding-bottom: 100px;
}

.pd-b-md {
  padding-bottom: 50px;
}

.pd-b-sm {
  padding-bottom: 25px;
}

.pd-r-md {
  padding-right: 50px;
}

.m-sm {
  margin: 25px 0;
}

.m-md {
  margin: 50px 0;
}

.m-lg {
  margin: 100px 0;
}

.m-t-sm {
  margin-top: 25px;
}

.m-t-md {
  margin-top: 50px;
}

.m-t-lg {
  margin-top: 100px;
}

.m-t-xs {
  margin-top: 10px;
}

.m-b-lg {
  margin-bottom: 100px;
}

.m-b-md {
  margin-bottom: 50px;
}

.m-b-sm {
  margin-bottom: 25px;
}

.m-b-xs {
  margin-bottom: 10px;
}

.m-btm-none {
  margin-bottom: 0 !important;
}

.m-r-xs {
  margin-right: 10px;
}

.m-t-xs {
  margin-top: 10px;
}

.m-b-xs {
  margin-bottom: 10px;
}

.m-b-no {
  margin-bottom: 0;
}

.m-r-sm {
  margin-right: 25px;
}

.m-r-md {
  margin-right: 50px;
}

.m-r-lg {
  margin-right: 100px;
}

.pd-r-md {
  padding-right: 50px;
}

.pd-r-sm {
  padding-right: 25px;
}

.bg-lt-grey {
  background: #e8e8e8;
}

.bg-dark-grey {
  background: #494949;
}

.bg-white {
  background: #fff;
}

.bg-black {
  background: #000;
}

.bg-yellow {
  background: #ffcc01;
}

.bg-blue {
  background-color: #ffcc01;
}

.dark-grey {
  color: #474747;
}

.green {
  color: #00bb9c;
}

.grey {
  color: #808080;
}

.lt-grey {
  color: #c2c2c2;
}

.yellow {
  color: #ffcc01;
}

.blue {
  color: #ffcc01;
}

.black {
  color: #000;
}

.white {
  color: #fff !important;
}

/* ===========================================================
10. Inventory Styles
=========================================================== */


/* Adjustments for font-sizes */

.inventory-listings {
  font-size: 110% !important;
}

/*  */


.list-content .list-top-section .sticky-top-menu {
  z-index: 5 !important;
}

.list-content .list-top-section .sticky-top-menu .listing-option-bar-content {
  max-width: 80% !important;
}

.faceted-search-field {
  overflow-x: hidden;
}

.list-content .listing-portion-title {
  font-size: 17px !important;
}

.list-content .list-title {
  padding: 15px 0;
  font-size: 1em;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  flex-direction: column !important;
  border-bottom: none;
}

.list-content .list-title .list-listings-count {
  line-height: 27px;
  margin-left: 3px !important;
  color: #777 !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

.list-content {
  margin: 0 auto;
  max-width: initial !important;
}

.detail-additional-data h3 {
  font-size: 18px;
}

.faceted-search-content .faceted-section-box {
  padding: 15px 2%;
  border-bottom: 1px solid #ddd;
  background: #fff !important;
}

.list-container,
.selected-facets-container,
.detail-content,
.list-content .list-main-section {
  border: none !important;
}

.list-content input[type="button"],
.list-content input[type="color"],
.list-content input[type="date"],
.list-content input[type="datetime"],
.list-content input[type="datetime-local"],
.list-content input[type="email"],
.list-content input[type="file"],
.list-content input[type="month"],
.list-content input[type="number"],
.list-content input[type="password"],
.list-content input[type="reset"],
.list-content input[type="search"],
.list-content input[type="submit"],
.list-content input[type="tel"],
.list-content input[type="text"],
.list-content input[type="time"],
.list-content input[type="url"],
.list-content input[type="week"],
.list-content select,
.list-content textarea,
.modal-form-el label+input,
.modal-form-el label+select {
  height: 30px;
  line-height: 30px;
}

.faceted-search-content .faceted-section-box .faceted-option-checkbox-container .option-name {
  margin: 5px 0 0 5px;
}

.quick-search input[type="text"] {
  padding: 12px !important;
}

.search-mobile input[type="text"] {
  padding: 15px !important;
}

.faceted-search-content .selected-facets-container .selected-facet,
.list-content .list-main-section .list-container .list-listing .listing-top-right .view-listing-details-link,
.list-content .list-main-section .list-container .list-listing .listing-top-right .buy-now-link,
.list-content .list-main-section .list-container .list-listing .listing-top-right .check-availability-link,
.list-content .list-main-section .list-container .list-listing .listing-top-right .email-seller-link,
.faceted-search-content .faceted-section-box .faceted-view-more-btn,
.detail-content .detail-main-body .main-detail-data .offer-btn,
.detail-content .detail-main-body .main-detail-data .buy-btn,
.list-content .list-listing-mobile .view-listing-details-link,
.list-content .list-listing-mobile .buy-now-link,
.list-content .list-listing-mobile .check-availability-link,
.list-content .list-listing-mobile .email-seller-link,
.faceted-search-content .mobile-done-button-container .mobile-done-button,
.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile,
.detail-content-mobile .detail-main-body .main-detail-data .fin-calc-btn-mobile,
.detail-content-mobile .detail-contact-bar .contact-bar-btn,
.list-container-flexrow .view-listing-details-link,
.paging-container .page-navs .list-page-nav,
.detail-content-mobile .detail-main-body .main-detail-data .buy-btn-mobile,
.detail-content-mobile .detail-main-body .main-detail-data .offer-btn-mobile,
.detail-content-mobile .detail-main-body .main-detail-data .send-email-btn-mobile,
.detail-content-mobile .detail-main-body .main-detail-data .send-wholesale-email-btn-mobile,
.faceted-show-all-btn {
  background: #ffcc01 !important;
  border: none;
  color: #000 !important;
  border-radius: 0 !important;
}

.detail-content-mobile .detail-additional-data .data-row .data-label,
.detail-content .detail-additional-data .data-row .data-label {
  background: #ffcc01 !important;
  color: #000 !important;
  font-weight: 700;
}

.detail-content .detail-additional-data .data-row .data-value {
  background: none;
  font-weight: 400;
  border-bottom: 1px #c7c7c7 solid;
}

.detail-content .detail-additional-data .data-row {
  margin-bottom: 0;
}

.detail-content .detail-additional-data h4 {
  margin: 25px 0 5px;
  color: #666 !important;
}

.list-content .list-main-section .list-container .list-listing .listing-top-right .view-listing-details-link:hover,
.list-content .list-main-section .list-container .list-listing .listing-top-right .buy-now-link:hover,
.list-content .list-main-section .list-container .list-listing .listing-top-right .check-availability-link:hover,
.list-content .list-main-section .list-container .list-listing .listing-top-right .email-seller-link:hover,
.faceted-search-content .faceted-section-box .faceted-view-more-btn:hover,
.detail-content .detail-main-body .main-detail-data .offer-btn:hover,
.detail-content .detail-main-body .main-detail-data .buy-btn:hover,
.list-content .list-listing-mobile .view-listing-details-link:hover,
.list-content .list-listing-mobile .buy-now-link:hover,
.list-content .list-listing-mobile .check-availability-link:hover,
.list-content .list-listing-mobile .email-seller-link:hover,
.faceted-search-content .mobile-done-button-container .mobile-done-button:hover,
.detail-content-mobile .detail-main-body .main-detail-data .fin-calc-btn-mobile:hover,
.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile:hover,
.list-container-flexrow .view-listing-details-link:hover {
  background: #000 !important;
  color: #fff !important;
}

.list-content .list-main-section .list-container .list-listing .listing-top .listing-top-left .listing-main-stats .price,
.list-content .list-title .list-listings-count,
.detail-content .detail-main-body .main-detail-data .detail-price,
.detail-content .search-results,
.list-content .list-listing-mobile .price-container .price,
.list-content .list-top-section .listing-option-bar .list-listings-count,
.detail-content-mobile .detail-main-body .main-detail-data .detail-price,
.info {
  color: #666;
}

.detail-content .dealer-info .phone-and-email .send-email-btn,
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-call,
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-text,
.detail-content-mobile .detail-main-body .main-detail-data .opened {
  color: #ffcc01 !important;
  border: 1px #ffcc01 solid !important;
}

.modal-content .modal-top .modal-title {
  font-size: 1.3rem !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .buy-btn-mobile,
.detail-content-mobile .detail-main-body .main-detail-data .offer-btn-mobile {
  position: relative;
  height: 43px;
  width: 100%;
  box-sizing: border-box;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 200;
  font-family: Arial, sans-serif;
  justify-content: flex-start;
  border: 0 !important;
  cursor: pointer;
  padding-left: 8px;
  border-radius: 5px;
  backface-visibility: hidden;
}

.detail-content-mobile .detail-main-body .main-detail-data .send-email-btn-mobile,
.detail-content-mobile .detail-main-body .main-detail-data .send-wholesale-email-btn-mobile {
  border: 0 !important;
  color: #fff;
  margin-bottom: 20px;
}

.detail-content-mobile .detail-additional-data .data-row .data-value {
  background-color: #ddd !important;
}

.detail-group-data h2 {
  font-size: 22px !important;
}

.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile {
  margin-right: 0 !important;
}

.detail-content .detail-additional-data .data-row .data-value {
  font-weight: 400 !important;
  background-color: #ededed !important;
}


.detail-content .dealer-info .phone-and-email .send-email-btn:hover {
  color: #000;
  border: 1px #ffcc01 solid;
}

.detail-btn-calc p {
  margin-bottom: 0;
}

.list-content .list-title {
  display: block;
  margin: 0;
}

.list-content .list-title .list-title-text {
  display: block;
  width: 100%;
  /* font-size: 3rem !important; */

}

.print-this,
.email-this {
  background: #ffcc01 !important;
  color: #000 !important;
  font-weight: 300 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  padding: 10px 50px !important;
  text-align: center !important;
  transition: 0.3s !important;
  border-radius: 0 !important;
  border: 0 !important;
}

.print-this:hover,
.email-this:hover {
  background: #000 !important;
  color: #fff !important;
}

.inventory input[type="submit"]:hover,
.inventory button[type="submit"]:hover,
.btn:hover,
.button:hover {
  background: #0c3168 !important;
}

.list-content .list-main-section .list-container .list-listing {
  background: #f3f3f3;
  padding: 15px !important;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.list-container-flexrow .price-container .price {
  margin-left: 0;
  color: #666;
}

.list-container-flexrow .listing-card .listing-widgets a {
  margin-bottom: 6px;
}

body .noUi-connect {
  background: #dddddd;
}

.noUi-handle {
  border: none;
  border-radius: 3px;
  background: #fff;
  cursor: default;
  box-shadow: none;
}

.faceted-section-head i {
  color: #ffcc01 !important;
}

.faceted-search-content .selected-facets-container .selected-facet {
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 400;
  color: #fff;
  background: #241e20;
  display: inline-block;
  margin: 10px 0 0 10px;
  cursor: pointer;
  border-radius: 5px;
}

.contact-info-heading h2 {
  font-size: 1.2rem !important;
  font-weight: 300 !important;
  margin-bottom: 25px;
}

.grouped-faceted-header {
  background: #ededed !important;
  color: #6e6e6e !important;
}

.faceted-section-box input[type="submit"],
.faceted-section-box button[type="submit"] {
  line-height: 30px;
  height: 30px;
  font-size: 14px;
  padding: 0 6px !important;
  display: inline-block;
  border: none !important;
  color: #000 !important;
  background: #ffcc01 !important;
  border-radius: 0 !important;
  cursor: pointer;
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  border-radius: 3px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

.faceted-search-content button:hover {
  color: #fff !important;
  background-color: #000 !important;
}

.faceted-search-content .faceted-section-box .faceted-text-input::placeholder {
  font-weight: 400;
  font-size: 12px;
}

.detail-content {
  margin: 0 auto;
  max-width: 1124px;
  padding: 25px !important;
}

.legal-text-container p {
  font-size: 14px !important;
  line-height: 18px !important;
}

.faceted-search-content .selected-facets-container {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.listing-widgets a {
  background-color: #c7c7c7 !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
}

.listing-widgets a:hover {
  background-color: #cccccc !important;
}

.detail-content .dealer-info h3 {
  font-size: 1rem !important;
  font-weight: bold;
  font-family: Arial, sans-serif;
  margin-top: 20px;
}

.detail-content .detail-main-body .main-detail-data {
  border-radius: 0 !important;
}

.detail-content .detail-main-body .detail-body-data {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  background: #fff;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.detail-content .dealer-info .phone-and-email {
  float: right;
  width: 37%;
  margin-right: 20px;
}


.detail-content .dealer-info .phone-and-email .send-email-btn,
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-call,
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-text,
.detail-content-mobile .detail-main-body .main-detail-data .opened {
  color: #000 !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #ffcc01 !important;
}

.detail-content .dealer-info .phone-and-email .send-email-btn:hover,
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-call:hover,
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-text:hover,
.detail-content-mobile .detail-main-body .main-detail-data .opened:hover {
  background: #000 !important;
  color: #fff !important;
}

.fa-facebook-f:before {
  content: "\f39e" !important;
}

.mc-thumbs {
  z-index: 1;
}

.detail-content-mobile .detail-main-body .detail-img-carousel .mc-btn {
  z-index: 2 !important;
}


.list-container-flexrow .buy-now-link,
.list-container-flexrow .contact-options a,
.list-container-flexrow .dealer-phone-call,
.list-container-flexrow .dealer-phone-text {
  background-color: #333;
  color: #fff !important;
}

.list-content .list-main-section .list-container .list-listing .listing-top-right .view-listing-details-link,
.list-content .list-main-section .list-container .list-listing .listing-top-right .buy-now-link {
  min-width: 100% !important;
  width: 100% !important;
}

/* Modal / Mobile buttons / Mobile Data Rows */
.button,
.contact-options a,
.fin-calc-mobile>a,
.detail-content-mobile .detail-additional-data .data-row .data-label {
  background-color: #ffcc01 !important;
  color: #000 !important;
}

.contact-list a {
  border-radius: 0 !important;
}

.button:hover,
.contact-options a:hover,
.fin-calc-mobile>a:hover {
  background-color: #000 !important;
  color: #fff !important;
}

.contact-options a {
  background: #ffcc01 !important;
  background-color: #ffcc01 !important;
  color: #000 !important;
  border-radius: 0 !important;
}

.list-content .spec-icon {
  background-color: #c7c7c7 !important;
}

.faceted-search-content .faceted-section-head {
  background: #f8f8f8 !important;
}

.compare-chkbox-container .compare-listings .fa-check {
  top: 2px !important;
  left: 2px !important;
}

.detail-additional-data h3 {
  margin-top: 20px;
}

.detail-wrapper .detail-title {
  font-size: 18px !important;
}

.dealer-info h3 {
  font-size: 1.2rem !important;
  font-family: inherit !important;
}

.fin-calc p {
  margin-bottom: 0;
}

/* ===========================================================
11. Responsive Styles
=========================================================== */
@media screen and (max-width: 1700px) {}

@media screen and (max-width: 1500px) {}

@media screen and (max-width: 1400px) {}

@media screen and (max-width: 1350px) {
  html {
    font-size: 90% !important;
  }
}

@media only screen and (max-width: 1300px) {}

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 1078px) {
  .home-contact-form .col-4 {
    width: 40%;
  }

  .home-contact-form .col-8 {
    width: 60%;
  }
}

@media only screen and (max-width: 1000px) {
  .mobile-menu-nav-icon {
    display: block;
  }

  .hide-mobile,
  .utility,
  .header-left-top {
    display: none;
  }

  header {
    padding-top: 0;
  }

  header .wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .header-bottom {
    transform: none;
    left: unset;
    bottom: unset;
    width: auto;
  }

  .mobile-nav-container {
    height: 100%;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .mobile-menu-nav-icon {
    transition: all 0.3s ease-in-out;
  }

  .mobile-menu-nav-icon:hover {
    cursor: pointer;
    opacity: 0.6;
  }

  .mobile-menu-nav-icon i {
    font-size: 1.3em;
    color: #fff;
  }

  .footer-logo img {
    width: 200px;
  }
}

@media only screen and (min-width: 786px) and (max-width: 952px) {
  .has-search-bar {
    width: calc(66% - 0.75%) !important;
    float: left;
  }
}

@media only screen and (max-width: 900px) {
  .pd-r-md {
    padding-right: 0;
  }

  .home-contact-form .col-4 {
    margin-bottom: 50px;
  }

  .home-contact-form .wrapper,
  .internal-main .col-1.flex {
    flex-direction: column;
  }

  .internal-main .col-1.flex.row {
    flex-direction: row;
  }

  .internal-sidebar .bttn-base {
    width: auto;
  }

  .home-contact-form .col-4,
  .home-contact-form .col-8,
  .internal-sidebar,
  .location-page .map,
  .internal-main .col-1.flex .col-8,
  .internal-main .col-1.flex .col-7,
  .internal-main .col-1.flex .col-5,
  .internal-main .col-1.flex .col-4,
  .internal-main .col-1.flex .col-3,
  .col-1 .col-6 {
    width: 100%;
  }

  .category-card-outer {
    width: 25%;
    height: 250px;
  }
}

@media only screen and (max-width: 880px) {
  .internal-form .col-6 {
    width: 100%;
  }

  .internal-form .pd-r-sm {
    padding-right: 0;
  }

  .margin-right {
    margin-right: 0;
  }

  .internal-form .flex {
    flex-direction: column;
  }

  .internal-form .col-1 {
    margin-bottom: 0;
  }

  .internal-form input[type="text"],
  .internal-form input[type="email"],
  .internal-form input[type="phone"],
  .internal-form input[type="date"],
  .internal-form input[type="time"],
  .internal-form select,
  .internal-form textarea,
  .contact-half,
  .contact-half-one,
  .flex .flex {
    width: 100% !important;
  }

  footer .wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-right {
    margin-bottom: 25px;
  }

  .footer-left {
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  .category-card-outer {
    width: 50%;
  }

  .detailed-search .col-1 {
    flex-direction: column;
  }

  .column4 {
    width: 100%;
    margin-bottom: 25px;
    padding: 0;
  }

  .column4:last-of-type {
    margin-bottom: 0;
  }

  .list-two-col {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }

  .inventory-listings {
    font-size: 120% !important;
  }

}

@media only screen and (max-width: 700px) {
  .header-logo img {
    max-width: 180px;
  }

  .pd-all-md {
    padding: 25px;
  }

  .newsletter .col-1 {
    flex-direction: column;
    text-align: center;
  }

  .newsletter .bttn-base {
    margin-top: 25px;
  }

  .message-received .col-7 {
    width: 100%;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h5 {
    font-size: 0.8rem;
  }
}

@media only screen and (max-width: 600px) {

  html {
    font-size: 85% !important;
  }

  .bttn-base,
  .internal-sidebar .bttn-base {
    width: 100%;
  }



  .category-card-outer {
    height: 170px;
  }

  p,
  .internal-list li {
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  /* html {
    font-size: 70% !important;
  } */


}