/*
Theme Name: idletimerv.com
Author: Commercial Web Services
Description: A WordPress theme developed by Commercial Web Services.
Version: 1.0.1
*/

/** DO NOT DELETE: ADD STYLES BELOW THIS LINE **/

/**********************************************************
                        General
***********************************************************/

::selection {
  background: #ff9300; /* WebKit/Blink Browsers */
  color: #fff;
}
::-moz-selection {
  background: #ff9300; /* Gecko Browsers */
  color: #fff;
}

body {
  font-family: "Lato", sans-serif;
}

.interior-body {
  display: flex;
  height: 100vh;
  flex-direction: column;
  flex: 1;
}

.interior-body
.page-wrap {
  overflow: visible !important;
}

.page-wrap {
  flex: auto;
  overflow: hidden;
}

footer {
  flex-shrink: 0;
  width: 100% !important;
}

.page-wrap a,
.page-wrap a:hover,
footer a,
footer:hover {
  color: inherit;
  text-decoration: none !important;
}

.interior-body .page-wrap::after {
  content: "";
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url("assets/images/map-bg.png");
  background-size: auto;
  opacity: 0.5;
}

.section-wrap {
  /* max-width: 1700px; */
  margin: auto;
}

@media (max-height: 1000px) {
  .interior-body {
    height: 120vh;
  }
}

.error__heading {
  font-size: 36px;
  font-weight: 700;
}

.error__subheading {
  font-size: 24px;
}

.error .idle-btn {
  margin-top: 15px;
}

@media (min-width: 768px) {
  .error__flex {
    display: flex;
    flex-direction: column;
  }

  .error__flex--shrink {
    flex-shrink: 0;
  }

  .error__flex--justify {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
  }
}

/**********************************************************
                          Utility
***********************************************************/

.ds-flex {
  display: flex;
}

.center-all {
  justify-content: center;
  align-items: center;
}

.p20 {
  padding-left: 20px;
}

.p10 {
  padding-left: 10px;
}

.fc-white {
  color: #fff !important;
  text-decoration: none !important;
}

.fc-grey {
  color: #85898a !important;
  text-decoration: none !important;
}

.fc-yellow {
  color: #ff9300 !important;
  text-decoration: none !important;
}

.fc-blue {
  color: #3e6681 !important;
  text-decoration: none !important;
}

.fw-bold {
  font-weight: 700;
}

.tt-up {
  text-transform: uppercase;
}

.texture-bg {
  background: url("assets/images/texture-bg.png");
  background-size: auto;
}

.texture-bg-light {
  background: url("assets/images/texture-bg-light.png");
  background-size: auto;
}

.texture-bg-blue {
  background: url("assets/images/texture-bg-blue.jpg");
  background-size: cover;
}

.map-bg {
  background: url("assets/images/map-bg.png");
  background-size: cover;
}

.wpcf7-submit,
.wpcf7-submit:hover,
.idle-btn {
  width: 300px;
  height: 50px;
  background: #ff9300;
  border: none !important;
  border-radius: 25px;
  font-size: 20px;
  text-transform: uppercase;
}

.idle-section-cta {
  align-items: center;
  padding-top: 20px;
}

.idle-section-cta .idle-btn {
  width: 150px;
  text-transform: capitalize;
}

@media (max-width: 567px) {
  .idle-section-cta .idle-btn {
    font-size: 4vw;
  }
}

.btn-wrap {
  padding-left: 15px;
}

.idle-hr {
  border-color: #ccc;
  width: 100%;
  clear: both;
}

/**********************************************************
                          Modal
***********************************************************/

.modal-header {
  background: #3e6681;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.close,
.close:hover {
  font-size: 40px;
  color: #fff;
  opacity: 1 !important;
  text-shadow: none !important;
}

.modal-body {
  background: url("assets/images/texture-bg-light.png");
  background-size: 100%;
}

.modal-footer {
  height: 60px;
  background: #3e6681;
}

/**********************************************************
                          Header
***********************************************************/

.header__logo {
  display: block;
  padding: 5px 10px;
  border-bottom: 1px solid #e2e2e2;
  background: #fff;
}

.header__logo-img {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.15));
  padding: 10px;
}

.header__top,
.header__nav {
  height: 50%;
}

.header__top,
.header__nav {
  box-shadow: inset 15px 0 9px -10px rgba(0, 0, 0, 0.1);
}

.header__link {
  height: 100%;
  padding: 0 9px;
  font-size: 18px;
}

.header__contact {
  background: #3e6681;
  cursor: pointer;
}

@media (max-width: 567px) {
  .header__logo {
    width: 45% !important;
    padding: 20px 10px;
  }

  .header__logo-img {
    padding: 0;
  }

  .header__right {
    width: 65% !important;
  }

  .header__top {
    background-size: 100%;
  }

  .header__link,
  .header__contact {
    font-size: 2.9vw !important;
  }
}

@media (max-width: 767px) {
  .header__logo {
    width: 35%;
  }

  .header__right {
    width: 65%;
  }

  .header__top,
  .header__search {
    width: 100%;
  }

  .header__link {
    width: 30%;
    font-size: 13px;
  }

  .header__contact {
    width: 50%;
    font-size: 24px;
  }
}

@media (min-width: 768px) {
  .header__logo {
    width: 30%;
  }

  .header__right {
    flex-direction: column;
    width: 78%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .header__contact {
    font-size: 20px;
    width: 45%;
  }
}

@media (max-width: 991px) {
  .header__right {
    flex-wrap: wrap;
  }
}

@media (min-width: 992px) {
  .header__logo {
    width: 25%;
  }

  .header__link {
    font-size: 1.1vw;
  }

  .header__icon {
    padding-right: 10px;
    font-size: 20px;
  }

  .header__contact {
    background: #3e6681;
    width: 20%;
    margin: 10px;
    height: 70%;
    box-shadow: 0px 3px 8px #00000033;
    border-radius: 6px;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .header__logo {
    width: 22%;
  }

  .header__link {
    font-size: 1.1vw;
  }
}

@media (min-width: 1601px) {
  .header__link {
    font-size: 20px;
  }
}

/**********************************************************
                      Nav
***********************************************************/

.header__nav {
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  background-size: 100%;
}

.header__nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.header__nav .menu-item {
  transition: 0.3s ease;
  overflow: hidden;
}

.header__nav ul li a {
  display: block;
  width: 100% !important;
  padding: 25px 15px;
  font-size: 1.6rem;
  font-family: "Lato", sans-serif;
  color: #555 !important;
}

.header__nav-caret {
  margin-left: 7.5px;
}

.header__nav .menu-item-has-children {
  position: relative;
}

.header__nav-button {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-right: 20px;
}

.header__nav .child-menu-button {
  position: absolute;
  background: transparent;
  top: 20px;
  right: 0px;
  height: 35px;
  width: 35px;
  padding: 0px;
  margin-right: 20px !important;
  color: #3e6681;
  border: none !important;
}

.header__nav .menu-item-has-children button:focus {
  outline: none;
}

.header__nav .menu-item-has-children button i {
  transition: all 0.3s ease;
}

.header__nav .menu-item-has-children.clicked button i {
  transform: rotate(-180deg);
}

.header__nav .menu-item-has-children .sub-menu {
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.2s ease all;
}

.header__nav .menu-item-has-children .sub-menu li {
  background: rgba(255, 255, 255, 0.35);
}

.header__nav .menu-item-has-children .sub-menu a {
  padding: 15px 40px;
  border-bottom: 1px solid #e2e2e2;
}

.header__nav .menu-item-has-children.clicked .sub-menu {
  height: auto;
  opacity: 1;
}

.nav__icon {
  width: 30px;
  height: 23px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.nav__icon span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: #ff9300;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.nav__icon span:nth-child(1) {
  top: 0;
}

.nav__icon span:nth-child(2) {
  top: 10px;
}

.nav__icon span:nth-child(3) {
  top: 20px;
}

.nav__icon.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.nav__icon.open span:nth-child(2) {
  opacity: 0;
}

.nav__icon.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

@media (max-width: 567px) {
  .header__nav-menu {
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .header__nav {
    position: relative;
    width: 100%;
  }

  .header__nav-menu {
    position: absolute;
    z-index: 3;
    top: 100%;
    right: 0;
    width: 155%;
    border-top: 1px solid #e2e2e2;
  }

  .header__nav .menu-item {
    background: url("assets/images/texture-bg-light.png");
    background-size: 100%;
  }

  .header__nav .menu-item-has-children .sub-menu a {
    background: #fff !important;
  }

  .mobile__nav {
    height: 100%;
    display: block;
  }

  .header__nav ul li a {
    border-bottom: 1px solid #e2e2e2;
  }

  .header__nav-caret {
    display: none;
  }
}

@media (min-width: 768px) {
  .header__nav .collapse {
    display: block;
    height: 100% !important;
  }

  .header__nav-menu div:nth-last-of-type(1) {
    display: flex;
    justify-content: flex-end;
    height: 100%;
    padding-right: 30px;
  }

  .header__nav-menu:first-child ul {
    display: flex;
    justify-content: space-between;
    width: 90%;
    height: 100%;
  }

  .header__nav .menu-item {
    margin: 0px;
    position: relative;
    padding: 0px;
  }

  .header__nav ul li a {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
  }

  .header__nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25%;
    right: 0;
    height: 3px;
    width: 50%;
    background: #ff9300;
    transition: ease all 0.3s;
    opacity: 0;
  }

  .header__nav ul li a:hover::after {
    bottom: 15px;
    opacity: 1;
  }

  .btn-visible-xs,
  .header__nav ul li.menu-item-has-children button {
    display: none;
  }

  .header__nav ul li.menu-item-has-children {
    flex-direction: column;
  }

  .header__nav ul li.menu-item-has-children:hover {
    overflow: visible;
    height: auto;
  }

  .header__nav .menu-item-has-children .sub-menu {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    width: 200px;
    height: auto;
    box-shadow: 0px 5px 10px -10px rgba(51, 51, 51, 0.5);
    background: url("assets/images/texture-bg-light.png");
    background-size: 100%;
    border-top: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    border-left: 1px solid #e2e2e2;
    transition: 0.3s ease;
    opacity: 0;
  }

  .header__nav .menu-item-has-children:hover .sub-menu {
    display: block;
    overflow: visible;
    top: 100%;
    width: 200px;
    opacity: 1;
  }

  .header__nav .menu-item-has-children .sub-menu li {
    margin-left: 0px;
    width: 100%;
    background: transparent;
  }

  .header__nav .menu-item-has-children .sub-menu li a {
    top: 0px;
    font-size: 12px;
    text-align: center;
    transform: none;
  }

  .header__nav .menu-item-has-children .sub-menu li a::after {
    content: none;
  }
}

/* Tablets */
@media only screen and (min-width : 769px) and (max-width : 991px) {
  .header__nav ul li a {
      font-size: 1.1rem;
  }
}

/* Tablets/ Desktop */
@media only screen and (min-width : 992px) and (max-width : 1199px) {
  .header__nav ul li a {
      font-size: 1.4rem;
  }
}

/**********************************************************
                    Sticky Nav
***********************************************************/

@media (min-width: 768px) {
  body.sticky header {
    position: fixed;
    left: 0;
    z-index: 6;
    width: 100%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }

  .header__logo,
  .header__logo-img {
    transition: ease all 0.3s;
  }

  .header__right,
  .header__top {
    transition: ease all 0.3s;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  body.sticky .header__logo {
    width: 10%;
    padding: 0;
  }

  body.sticky .header__right {
    flex-direction: row-reverse;
    width: 90%;
  }

  body.sticky .header__top {
    width: 18%;
    height: 100%;
  }

  body.sticky .header__search,
  body.sticky .header__link--phone,
  body.sticky .header__link--address {
    display: none;
  }

  body.sticky .header__nav-menu div:nth-last-of-type(1) {
    justify-content: center;
  }

  body.sticky .header__nav {
    width: 90%;
    height: 100%;
    border-top: none;
  }

  body.sticky .header__nav ul li a {
    border: none;
  }

  body.sticky .header__contact {
    width: 100%;
    height: 100%;
    border-radius: 0;
    margin: 0;
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  body.sticky .header__logo {
    width: 15%;
  }

  body.sticky .header__right {
    width: 85%;
  }

  body.sticky .header__top {
    width: 15%;
  }

  body.sticky .header__nav {
    width: 85%;
  }
}

/**********************************************************
                    Hero
***********************************************************/

.hero {
  position: relative;
}

.hero__fg {
  position: absolute;
  z-index: 1;
  right: 0;
  flex-direction: column;
  width: 46%;
  height: 100%;
  background-size: 100%;
}

.bar-bg {
  font-size: 40px;
  color: #ff9300;
}

.hero-cta {
  font-size: 25px;
  font-weight: 900;
  text-shadow: 4px 12px 24px rgba(0, 0, 0, 0.5);
}

.hero__txt {
  margin: 75px 0;
  font-weight: 900;
  text-align: center;
  text-shadow: 4px 12px 24px rgba(0, 0, 0, 0.5);
}

.hero__txt--bottom {
  display: block;
}

.hero__btn {
  margin-top: 15px;
  box-shadow: 4px 12px 24px rgba(0, 0, 0, 0.5);
}

@media (max-width: 567px) {
  .hero__fg {
    background-size: contain;
    width: 100%;
  }

  .hero__txt {
    padding: 0 15px;
    font-size: 7vw;
    line-height: 90%;
    text-align: center;
  }

  .hero-cta {
    font-size: 15px;
  }

  .bar-bg {
    font-size: 18px;
    color: #ff9300;
  }

  .hero__bg-mobile {
    display: block;
  }

  .hero__bg-img {
    display: none;
  }
}

@media (min-width: 568px) {
  .hero__bg-img {
    width: 100%;
  }

  .hero__bg-mobile {
    display: none;
  }
}

@media (min-width: 568px) and (max-width: 767px) {
  .hero__txt {
    font-size: 19px;
    line-height: 85%;
    margin: 51px 0;
  }
  .hero-cta {
    font-size: 12px;
    font-weight: 900;
  }
  .bar-bg {
    font-size: 20px;
    color: #ff9300;
  }
}

@media (min-width: 768px) {
  .hero__txt {
    font-size: 3vw;
    line-height: 101%;
  }
  .hero-cta {
    font-size: 14px;
    text-decoration: none;
  }
}

@media (min-width: 992px) {
  .hero__txt {
    font-size: 3.2vw;
    line-height: 40px;
  }
  .hero-cta {
    font-size: 20px;
    font-weight: 900;
    text-shadow: 4px 12px 24px rgba(0, 0, 0, 0.5);
  }
}

@media (min-width: 1200px) {
  .hero__txt {
    font-size: 40px;
    line-height: 48px;
  }
}

@media (min-width: 1700px) {
  .hero {
    /* height: 500px; */
    /* overflow: hidden; */
  }
}

/**********************************************************
                    Search
***********************************************************/

.search {
  padding: 50px 30px;
}

.search__title,
.search__bottom {
  font-size: 24px;
  display: flex;
  align-items: center;
}

.search__title--txt {
  padding-right: 10px;
}

.search__title--icon {
  font-size: 36px;
  padding-right: 5px;
}

.search__title--hr {
  flex: 1;
  padding-left: 10px;
}

.widget_quick_search .widget-title {
  display: none !important;
}

.bg-hr {
  display: block;
  width: 100%;
  margin: 0;
  border-top: 1px solid #fff;
}

.widget_quick_search {
  padding: 20px 0;
}

#quick-search .quick-search-button .btn-default {
  background: #ff9300 !important;
  text-transform: uppercase;
  border: 6px;
}

#quick-search-form label {
  color: #fff !important;
}

/**********************************************************
                         CTA
***********************************************************/

.lgt-gry {
  background-color: #f7f7f7;
}

.dk-gry {
  background-color: #ebebeb;
}

.cta-hr {
  width: 58px;
  border-top: 2px solid #ff9300;
  border-bottom: 2px solid #ff9300;
  margin: 20px auto 15px;
}

.cta-row {
  margin-right: 0;
  margin-left: 0;
}

.product-pops {
  margin-bottom: 50px;
  padding-left: 0;
  padding-right: 0;
  clear: both;
}

.product-pops .series-block .image-wrapper {
  height: 336px;
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 1;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}

@media only screen and (max-width: 767px) {
  .product-pops .series-block .image-wrapper {
    height: 300px;
  }
}

.product-pops .series-block .image-wrapper a {
  height: 100%;
}

.product-pops .series-block .image-wrapper img {
  position: relative;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 100%;
  max-height: 100%;
}

.product-pops .series-block .background-hover-image {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  -moz-transition: all 0.2s cubic-bezier(0.1, 0.2, 0.4, 1);
  -o-transition: all 0.2s cubic-bezier(0.1, 0.2, 0.4, 1);
  -webkit-transition: all 0.2s cubic-bezier(0.1, 0.2, 0.4, 1);
  transition: all 0.2s cubic-bezier(0.1, 0.2, 0.4, 1);
}

.product-pops .series-block .item-content {
  position: relative;
  z-index: 5;
}

.product-pops .series-block hr {
  width: 58px;
  margin: 14px auto;
}

.product-pops .series-block h4 {
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.product-pops .block {
  height: 416px;
  text-align: center;
  position: relative;
  padding: 0;
  cursor: pointer;
}

@media (min-width: 768px) {
  .product-pops .series-block:hover {
    z-index: 4;
  }
  .product-pops .series-block:hover .image-wrapper {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
  .product-pops .series-block:hover .background-hover-image {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  /*CTA hover images*/
  #RV-product-hover-01 {
    background-image: url("assets/images/travel-trailer-hover.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #RV-product-hover-02 {
    background-image: url("assets/images/fifth-wheels-hover.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #RV-product-hover-03 {
    background-image: url("assets/images/park-models-hover.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .product-pops .series-block:hover .item-content h4,
  .product-pops .series-block:hover .item-content p {
    color: #ffffff;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
  }
}

@media only screen and (max-width: 991px) {
  .product-pops .series-block .background-hover-image {
    position: absolute;
    height: 100%;
    width: 100%;
  }
  .mobile-lgt-gry {
    background-color: #f3f3f3;
  }
  .mobile-dk-gry {
    background-color: #f5f5f5;
  }
}

@media only screen and (max-width: 767px) {
  .product-pops .block {
    height: 380px;
  }
  .product-pops .series-block .image-wrapper {
    height: 300px;
  }
}

@media (max-width: 343px) {
  .product-pops .series-block h4 {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .series-block {
    width: 100%;
  }
}

/**********************************************************
                      CONTENT
***********************************************************/

.cws_content {
  clear: both;
}

.cws-content-button {
  clear: both;
}

.cws-content-area {
  clear: both;
}

/**********************************************************
                Featured Inventory
***********************************************************/

.feat-inv {
  background-size: cover;
  clear: both;
}

.feat__heading {
  margin-top: 0;
}

#featured-inventory-carousel {
  padding: 15px 0;
}

#featured-inventory-carousel .carousel-indicators,
.widget_featured_inventory .widget-title {
  display: none !important;
}

#featured-inventory-carousel .carousel-control {
  top: -75px !important;
  right: 0;
  left: auto !important;
  text-shadow: none !important;
  color: #ff9300 !important;
}

.carousel-control.left {
  right: 30px !important;
}

#featured-inventory-carousel .featured-inventory-model-info-name {
  margin: 10px 0 !important;
  padding: 15px 10px;
  background: #6b6b6b;
  color: #fff;
  border-radius: 9px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#featured-inventory-carousel .featured-inventory-model-info-price {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  width: 100%;
  height: 50px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: #3e6681;
  border-radius: 9px;
}

.feat-inv hr:nth-of-type(2) {
  margin-bottom: 0;
}

@media (max-width: 567px) {
  .feat__heading {
    font-size: 4.5vw;
  }
}

@media (max-width: 991px) {
  .feat-inv {
    padding: 50px 30px;
  }
}

@media (min-width: 992px) {
  .feat-inv {
    padding: 75px 30px;
  }
}

/**********************************************************
                    Dealer Footer
***********************************************************/

.dealer-footer {
  border-top: 1px solid #ccc;
}

.dealer-footer .section-wrap {
  justify-content: center;
}

.dealer-footer .idle-btn {
  width: 100%;
  background: #3e6681;
  cursor: pointer;

  height: 50px;
  border: none !important;
  border-radius: 6px;
  font-size: 20px;
  text-transform: uppercase;
}

.dealer-footer__social {
  color: #6b6b6b;
  margin: 15px 0;
}

.dealer-footer__div {
  flex-direction: column;
  justify-content: space-between;
}

.dealer-footer__heading,
.dealer-footer__div .idle-hr {
  margin: 0;
  font-size: 2vw;
}

.dealer-footer__list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dealer-footer__hours .dealer-footer__list {
  width: 100%;
}

.dealer-footer__link {
  line-height: 30px;
}

.dealer-footer__quick-links {
  border-right: 1px solid #cbcbcb;
  border-left: 1px solid #cbcbcb;
}

.footer__icon {
  padding-right: 10px;
  font-size: 19px;
}

@media (max-width: 567px) {
  .dealer-footer__heading {
    font-size: 6.1vw;
  }

  .dealer-footer__contact,
  .dealer-footer__div {
    width: 80% !important;
  }
}

@media (min-width: 568px) and (max-width: 767px) {
  .dealer-footer__contact {
    width: 40%;
  }
}

@media (max-width: 767px) {
  .dealer-footer {
    padding-right: 30px;
    padding-left: 30px;
    background: url("assets/images/texture-bg-light.png");
    background-size: cover;
  }

  .dealer-footer__quick-links {
    border-right: none;
    border-left: none;
  }

  .dealer-footer .section-wrap {
    flex-wrap: wrap;
  }

  .dealer-footer__div {
    width: 100%;
    margin-top: 50px;
  }

  .dealer-footer .idle-hr {
    margin: 20px 0;
  }
}

@media (min-width: 768px) {
  .dealer-footer__contact,
  .dealer-footer__div {
    width: 32.5%;
    padding: 0 2.5%;
  }

  .dealer-footer__hours {
    width: 35%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .dealer-footer__heading {
    font-size: 2.1vw;
  }
}

@media (max-width: 991px) {
  .dealer-footer {
    padding: 50px 15px;
  }
}

@media (min-width: 992px) {
  .dealer-footer {
    padding: 75px 15px;
    background-size: 100%;
  }

  .dealer-footer__contact {
    width: 25%;
    padding: 0 2.5%;
  }

  .dealer-footer__hours,
  .dealer-footer__div {
    width: 30%;
    padding: 0 2.5%;
  }
}

@media (min-width: 1200px) {
  .dealer-footer__icon {
    font-size: 18px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .dealer-footer__heading {
    font-size: 2.5vw;
  }
}

/**********************************************************
                    RVWS Footer
***********************************************************/

.rvws-footer {
  background: #ebebeb;
  padding: 0px;
}

.rvws-footer__left {
  align-items: center;
  background: #ebebeb;
  padding: 16px;
}

.links ul li a {
  color: #000 !important;
}

@media (max-width: 767px) {
  .rvws-footer .section-wrap,
  .rvws-footer__left {
    flex-direction: column;
    align-items: center;
  }

  .rvws-footer__logo {
    width: 100%;
  }

  .rvws-footer__logo-img {
    width: 30%;
    margin: auto;
  }

  .rvws-footer__copyright {
    margin-top: 10px;
  }

  .rvws-footer__right {
    margin-top: 10px;
  }
}

@media (min-width: 768px) {
  .rvws-footer .section-wrap {
    justify-content: space-between;
    align-items: center;
  }

  .rvws-footer__logo {
    width: 25%;
  }

  .rvws-footer__copyright {
    margin-left: 10px;
    font-size: 0.8em;
  }

  .rvws-footer__right {
    width: 100%;
    text-align: right;
    background: #f7f7f7;
    padding: 29px;
  }
}

/**********************************************************
                    Interior Pages
***********************************************************/

.dealer-content {
  padding: 50px 10px;
}

#inv-search-submit,
.inv-item-request-button {
  background: #ff9300 !important;
  border: 0 !important;
}

.inv-item-request-button,
#request-btn,
.inv-item-text,
#inventory-text {
  display: none !important;
}

#get-financing a {
  display:block;
}

/**********************************************************
                    Modal - Onload Popup
***********************************************************/

.modal-body__img {
  text-align: center;
}

.autoandrv-modal-p {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  font-family: "Lato", sans-serif !important;
  line-height: 1.15;
}

.autoandrv-modal-p img {
  width: 50%;
}
