.text-white {
  color: white;
}
.text-primary {
  color: #1E92E5;
}
.bg-primary {
  background-color: #0053A7;
  border: none;
}
.btn-primary {
  background-color: #0053A7;
  font-family: Arial;
  border: none;
  font-size: 18px;
}
@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}
@-webkit-keyframes moveFromBottom {
  from {
    -webkit-transform: translateY(200%) scale(0.5);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0%) scale(1);
    opacity: 1;
  }
}
@-moz-keyframes moveFromBottom {
  from {
    -moz-transform: translateY(200%) scale(0.5);
    opacity: 0;
  }
  to {
    -moz-transform: translateY(0%) scale(1);
    opacity: 1;
  }
}
@-ms-keyframes moveFromBottom {
  from {
    -ms-transform: translateY(200%) scale(0.5);
    opacity: 0;
  }
  to {
    -ms-transform: translateY(0%) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes moveFromTop {
  from {
    -webkit-transform: translateY(-300%);
  }
  to {
    -webkit-transform: translateY(0%);
  }
}
@-moz-keyframes moveFromTop {
  from {
    -moz-transform: translateY(-300%);
  }
  to {
    -moz-transform: translateY(0%);
  }
}
@-ms-keyframes moveFromTop {
  from {
    -ms-transform: translateY(-300%);
  }
  to {
    -ms-transform: translateY(0%);
  }
}
@-webkit-keyframes leftToRight {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}
@-moz-keyframes leftToRight {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}
@-ms-keyframes leftToRight {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}
@-webkit-keyframes topToBottom {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: 100px;
    opacity: 1;
  }
}
@-moz-keyframes topToBottom {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: 100px;
    opacity: 1;
  }
}
@-ms-keyframes topToBottom {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: 100px;
    opacity: 1;
  }
}
@-webkit-keyframes hover {
  0% {
    background: #222;
  }
  100% {
    background: #0071be;
  }
}
@-moz-keyframes hover {
  0% {
    background: #222;
  }
  100% {
    background: #0071be;
  }
}
@-ms-keyframes hover {
  0% {
    background: #222;
  }
  100% {
    background: #0071be;
  }
}
@-o-keyframes hover {
  0% {
    background: #222;
  }
  100% {
    background: #0071be;
  }
}
@keyframes hover {
  0% {
    background: #222;
  }
  100% {
    background: #0071be;
  }
}
@keyframes bounce {
  from {
    transform: translateY(-3px);
  }
  to {
    transform: translateY(3px);
  }
}
@-webkit-keyframes bounce {
  from {
    -webkit-transform: translateY(-3px);
  }
  to {
    -webkit-transform: translateY(3px);
  }
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
    transform-origin: 50% 0%;
    -o-transform-origin: 50% 0%;
    -webkit-transform-origin: 50% 0%;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
    transform-origin: 50% 0%;
    -o-transform-origin: 50% 0%;
    -webkit-transform-origin: 50% 0%;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
    opacity: 1;
  }
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -90deg);
    transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    -webkit-transform-origin: 100% 100%;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -90deg);
    transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    -webkit-transform-origin: 100% 100%;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.8;
  }
}
@-webkit-keyframes fadeIn2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.8;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes flipInBubble {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 1, 0, 90deg);
    transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    -webkit-transform-origin: 0% 100%;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    opacity: 1;
  }
}
@keyframes flipInBubble {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 1, 0, 90deg);
    transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    -webkit-transform-origin: 0% 100%;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
    opacity: 1;
  }
}
@-webkit-keyframes backgroundZoomIn {
  0% {
    background-size: 30%;
    opacity: 0;
  }
  80% {
    background-size: 100%;
    opacity: 1;
  }
  100% {
    background-size: 78%;
    opacity: 1;
  }
}
@keyframes backgroundZoomIn {
  0% {
    background-size: 30%;
    opacity: 0;
  }
  80% {
    background-size: 100%;
    opacity: 1;
  }
  100% {
    background-size: 78%;
    opacity: 1;
  }
}
@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  100% {
    opacity: 1;
  }
}
body {
  background-color: #efefef;
  font-family: Arial;
  min-width: 320px;
}
strong {
  font-weight: bold;
}
.displaynone {
  display: none;
}
.red {
  color: #FF0000;
}
.mbtm20 {
  margin-bottom: 20px;
}
.no-svg .si-icon-hamburger-cross {
  background-image: url('/assets/hamburger.png');
}
.no-svg body.nav-active .top-nav .si-icon {
  background-image: url('/assets/close.png');
}
body.landingPage {
  background-color: #555;
}
body.landingPage .brand-tiles {
  background-color: #efefef;
  margin-bottom: 0;
  padding-bottom: 10px;
}
body.isSafari header .locations {
  font-family: Arial;
}
body.isSafari .mega-menu .container .first-level a {
  font-family: Arial;
}
body.isSafari .banner.sub-banner img {
  margin-bottom: -2px;
}
body.sticky-header header {
  position: fixed;
  z-index: 11;
  width: 100%;
  top: 0;
  min-height: 100px;
  height: 100px;
}
body.sticky-header header .container {
  padding-top: 5px;
  padding-bottom: 0;
}
body.sticky-header header .logo {
  padding-left: 0;
  margin-top: 10px;
}
body.sticky-header header .logo a img {
  width: 142px;
}
body.sticky-header header .top-info {
  margin-top: 14px;
}
body.sticky-header header .top-nav {
  padding-top: 17px;
}
body.sticky-header header .top-nav .nav-container .mobi-nav {
  top: 21px;
}
body.sticky-header header .top-nav .nav-container .si-icon {
  top: 14px;
}
body.sticky-header .banner {
  padding-top: 149px;
}
body.sticky-header.nav-active .sb-slidebar {
  position: fixed;
  top: 75px;
}
body.sticky-header.nav-active header .top-nav > i {
  margin-top: 50px;
}
body.isChrome.sticky-header .subpage-search .subpage-search-box .accordion-heading {
  position: initial;
}
body.isChrome.sticky-header .subpage-search .subpage-search-box .accordion-heading i {
  bottom: initial;
  top: 65px;
}
body.sticky-search .search-row {
  position: fixed;
  width: 100%;
  top: 98px;
  z-index: 8;
  background-color: #004283;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
}
body.sticky-search .subpage-search .subpage-search-box {
  margin-top: 0;
  position: relative;
}
body.sticky-search .search-box {
  position: fixed;
  width: 100%;
  top: 98px;
  z-index: 8;
  padding-bottom: 0;
}
body.sticky-search .search-box .container h2 {
  margin-top: 0;
  position: relative;
}
header {
  background-color: #fff;
}
header .logo a img {
  width: 200px;
}
header > .container {
  padding-top: 20px;
  padding-bottom: 15px;
}
header .locations {
  font-family: Arial;
  font-size: 15px;
  line-height: 23px;
  font-weight: bold;
  padding-top: 13px;
  padding-right: 50px;
}
header .top-nav {
  padding-top: 20px;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  -o-user-select: none;
  user-select: none;
}
header .top-nav > i {
  display: none;
  width: 20px;
  height: 15px;
  color: white;
  position: absolute;
  font-size: 32px;
  margin-top: 64px;
  margin-left: 53px;
}
header .top-nav .nav-container {
  font-size: 15px;
  line-height: 28px;
  width: 80px;
}
header .top-nav .nav-container .mobi-nav {
  position: absolute;
  right: -3px;
  top: 13px;
  width: 51px;
  height: 38px;
  cursor: pointer;
  display: none;
}
header .top-nav .nav-container .si-icon {
  display: block;
  position: absolute;
  overflow: hidden;
  right: 0;
  top: 15px;
  width: 51px;
  height: 38px;
  text-align: center;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center center;
}
header .top-nav .nav-container .si-icon svg {
  margin-top: -9px;
  margin-left: 1px;
}
body.mobi-nav-active header .top-nav .nav-container .mobi-nav {
  background-color: #0068B5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-image: url(/assets/close.png);
  background-repeat: no-repeat;
  background-size: 30px 18px;
  right: 2px;
  top: 6px;
  background-position: center center;
}
body.mobi-nav-active header .top-nav .nav-container .mobi-nav img {
  display: none;
}
.mega-menu {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: white;
}
.mega-menu .container .first-level a {
  color: #fff;
  font-family: Arial;
  font-size: 15px;
  line-height: 22px;
  padding-left: 2px;
  font-weight: bold;
  -webkit-font-smoothing: subpixel-antialiased;
}
.mega-menu .container .first-level a:hover {
  text-decoration: none;
  color: #0053A7;
}
.mega-menu .container .first-level a.active {
  color: #0051A9;
}
.mega-menu .container .first-level > li {
  width: 170px;
  display: inline-block;
  float: left;
  margin-right: 26px;
}
.mega-menu .container .first-level > li > a {
  font-weight: bold;
  padding-bottom: 8px;
  margin-bottom: 8px;
  font-size: 17px;
  display: block;
  border-bottom: solid 1px #ccc;
}
.mega-menu .container .first-level > li .second-level {
  margin-bottom: 25px;
}
body.nav-active header .top-nav > i {
  display: block;
}
body.nav-active header .top-nav .nav-container .si-icon {
  background-color: #0098E1;
}
body.nav-active .sb-slidebar {
  display: block;
  z-index: 10;
  width: 100%;
  background-color: transparent;
  position: absolute;
  top: 112px;
  height: auto;
}
body.nav-active .mega-menu {
  display: block;
}
.banner {
  width: 100%;
  position: relative;
  background-color: #2D4163;
}
.banner.sub-banner {
  min-height: 100px;
}
.banner.sub-banner img {
  width: 100%;
  margin-bottom: -3px;
}
.banner .rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}
.banner .rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
}
.banner .rslides li:first-child {
  position: relative;
  display: block;
  float: left;
}
.banner .rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
}
.banner .centered-btns_nav {
  z-index: 3;
  position: absolute;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 50%;
  left: 0;
  opacity: 0.7;
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
  height: 61px;
  width: 38px;
  background: transparent url("themes.gif") no-repeat left top;
  margin-top: -45px;
}
.banner .centered-btns_nav:active {
  opacity: 1.0;
}
.banner .centered-btns_nav.next {
  left: auto;
  background-position: right top;
  right: 0;
}
.banner .transparent-btns_nav {
  z-index: 3;
  position: absolute;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  left: 0;
  display: block;
  background: #fff;
  /* Fix for IE6-9 */
  opacity: 0;
  filter: alpha(opacity=1);
  width: 28%;
  text-indent: -9999px;
  overflow: hidden;
  height: 91%;
}
.banner .transparent-btns_nav.next {
  left: auto;
  right: 0;
}
.banner .centered-btns_nav:focus,
.banner .transparent-btns_nav:focus,
.banner .large-btns_nav:focus {
  outline: none;
}
.banner .centered-btns_tabs,
.banner .transparent-btns_tabs,
.banner .large-btns_tabs {
  margin-top: 10px;
  text-align: center;
  position: absolute;
  bottom: 20px;
  z-index: 5;
  left: 50%;
  margin-left: -110px;
}
.banner .centered-btns_tabs li,
.banner .transparent-btns_tabs li,
.banner .large-btns_tabs li {
  display: inline;
  float: none;
  _float: left;
  *float: left;
  margin-right: 5px;
}
.banner .centered-btns_tabs a,
.banner .transparent-btns_tabs a,
.banner .large-btns_tabs a {
  text-indent: -9999px;
  overflow: hidden;
  background-color: black;
  border: solid 1px #fff;
  display: inline-block;
  _display: block;
  *display: block;
  width: 50px;
  height: 12px;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  -o-user-select: none;
  user-select: none;
}
.banner .centered-btns_here a,
.banner .transparent-btns_here a,
.banner .large-btns_here a {
  background: #fff;
}
.search-box {
  padding-bottom: 30px;
  background-color: #efefef;
}
.search-box.fold .container h2.show-button:after {
  content: "\f077";
}
.search-box.fold .search-body {
  display: none;
}
.search-box .container {
  padding-left: 30px;
  padding-right: 30px;
}
.search-box .container .row {
  position: relative;
}
.search-box .container h2 {
  line-height: 60px;
  font-family: Arial;
  font-weight: bold;
  font-size: 24px;
  margin-top: 20px;
  width: 100%;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.search-box .container h2.show-button {
  position: absolute;
  margin-top: -60px;
  padding-right: 90px;
}
.search-box .container h2.show-button:hover {
  cursor: pointer;
  background-color: #286090;
}
.search-box .container h2.show-button:after {
  font-family: 'FontAwesome';
  content: "\f078";
  display: block;
  position: absolute;
  left: 50%;
  margin-left: 162px;
  width: 63px;
  height: 47px;
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: white;
  line-height: 47px;
  text-align: center;
  font-size: 18px;
  color: #0053A7;
  margin-top: -47px;
}
.search-box .container .search-body {
  padding: 25px 20px;
  background-color: white;
}
.search-box .container .search-body > .tabs {
  text-align: center;
  margin-bottom: 20px;
}
.search-box .container .search-body > .tabs ul {
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: solid 1px #ccc;
}
.search-box .container .search-body > .tabs ul li {
  display: inline-block;
  float: left;
  border-right: solid 1px #ccc;
}
.search-box .container .search-body > .tabs ul li:last-child {
  border-right: none;
}
.search-box .container .search-body > .tabs ul li a {
  background-color: #efefef;
  display: block;
  font-size: 16px;
  font-weight: bold;
  width: 200px;
  height: 44px;
  line-height: 44px;
  color: #333;
}
.search-box .container .search-body > .tabs ul li a:hover {
  text-decoration: none;
  background-color: #ddd;
}
.search-box .container .search-body > .tabs ul li a.active {
  color: white;
  background-color: #555;
  pointer-events: none;
}
.search-box .container .search-body > .tabs ul li a.active:hover {
  color: white;
  background-color: #555;
}
.search-box .container .search-body .tab3 {
  display: none;
  text-align: center;
}
.search-box .container .search-body .tab3.active {
  display: block;
}
.search-box .container .search-body .tab3 ul {
  margin-top: 20px;
  margin-bottom: 20px;
  display: inline-block;
}
.search-box .container .search-body .tab3 ul li {
  float: left;
  display: inline-block;
}
.search-box .container .search-body .tab3 ul li a {
  display: block;
  margin-right: 17px;
  margin-left: 17px;
  width: 80px;
  height: 100px;
  background-color: white;
  border: solid 4px #ccc;
  margin-bottom: 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  color: #333;
  text-align: center;
  font-size: 12px;
}
.search-box .container .search-body .tab3 ul li a i {
  display: block;
  width: 70px;
  height: 70px;
  clear: both;
  background-image: url(/assets/lifestyle-sprite.jpg);
  background-position: -17px -13px;
  opacity: 0;
  -webkit-animation: flipInBubble 300ms 0ms ease forwards;
  -moz-animation: flipInBubble 300ms 0ms ease forwards;
  -ms-animation: flipInBubble 300ms 0ms ease forwards;
}
.search-box .container .search-body .tab3 ul li a i.icon-first-car {
  background-position: -134px -13px;
  -webkit-animation: flipInBubble 300ms 0ms ease forwards;
  -moz-animation: flipInBubble 300ms 0ms ease forwards;
  -ms-animation: flipInBubble 300ms 0ms ease forwards;
}
.search-box .container .search-body .tab3 ul li a i.icon-green {
  background-position: -251px -13px;
  -webkit-animation: flipInBubble 300ms 50ms ease forwards;
  -moz-animation: flipInBubble 300ms 50ms ease forwards;
  -ms-animation: flipInBubble 300ms 50ms ease forwards;
}
.search-box .container .search-body .tab3 ul li a i.icon-offroad-4x4 {
  background-position: -368px -13px;
  -webkit-animation: flipInBubble 300ms 100ms ease forwards;
  -moz-animation: flipInBubble 300ms 100ms ease forwards;
  -ms-animation: flipInBubble 300ms 100ms ease forwards;
}
.search-box .container .search-body .tab3 ul li a i.icon-performance {
  background-position: -485px -13px;
  -webkit-animation: flipInBubble 300ms 150ms ease forwards;
  -moz-animation: flipInBubble 300ms 150ms ease forwards;
  -ms-animation: flipInBubble 300ms 150ms ease forwards;
}
.search-box .container .search-body .tab3 ul li a i.icon-prestige {
  background-position: -602px -13px;
  -webkit-animation: flipInBubble 300ms 200ms ease forwards;
  -moz-animation: flipInBubble 300ms 200ms ease forwards;
  -ms-animation: flipInBubble 300ms 200ms ease forwards;
}
.search-box .container .search-body .tab3 ul li a i.icon-tradie {
  background-position: -719px -13px;
  -webkit-animation: flipInBubble 300ms 250ms ease forwards;
  -moz-animation: flipInBubble 300ms 250ms ease forwards;
  -ms-animation: flipInBubble 300ms 250ms ease forwards;
}
.search-box .container .search-body .tab3 ul li a i.icon-fuel-consumption {
  background-position: -836px -13px;
  -webkit-animation: flipInBubble 300ms 300ms ease forwards;
  -moz-animation: flipInBubble 300ms 300ms ease forwards;
  -ms-animation: flipInBubble 300ms 300ms ease forwards;
  margin-right: 0;
  height: 60px;
}
.search-box .container .search-body .tab3 ul li a:hover {
  text-decoration: none;
  border-color: #0053A7;
}
.search-box .container .search-body .tab2 {
  display: none;
}
.search-box .container .search-body .tab2.active {
  display: block;
}
.search-box .container .search-body .tab2 .field-frequency {
  text-align: center;
  margin-bottom: 20px;
}
.search-box .container .search-body .tab2 .field-frequency ul {
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: solid 1px #ccc;
}
.search-box .container .search-body .tab2 .field-frequency ul li {
  display: inline-block;
  float: left;
  border-right: solid 1px #ccc;
}
.search-box .container .search-body .tab2 .field-frequency ul li:last-child {
  border-right: none;
}
.search-box .container .search-body .tab2 .field-frequency ul li a {
  background-color: #efefef;
  display: block;
  font-size: 16px;
  font-weight: bold;
  width: 200px;
  height: 44px;
  line-height: 44px;
  color: #333;
}
.search-box .container .search-body .tab2 .field-frequency ul li a:hover {
  text-decoration: none;
  background-color: #ddd;
}
.search-box .container .search-body .tab2 .field-frequency ul li a.active {
  color: white;
  background-color: #555;
  pointer-events: none;
}
.search-box .container .search-body .tab2 .field-frequency ul li a.active:hover {
  color: white;
  background-color: #555;
}
.search-box .container .search-body .tab2 .field-frequency ul li a {
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.search-box .container .search-body .tab2 .field-budget {
  margin-top: 55px;
  margin-left: 180px;
  margin-right: 180px;
  height: 65px;
  position: relative;
}
.search-box .container .search-body .tab2 .field-budget #budget-slider-value-min {
  color: #777;
  position: absolute;
  display: block;
  left: 0;
  top: 30px;
  font-size: 16px;
  font-weight: bold;
}
.search-box .container .search-body .tab2 .field-budget #budget-slider-value-max {
  color: #777;
  position: absolute;
  display: block;
  right: 0;
  top: 30px;
  font-size: 16px;
  font-weight: bold;
}
.search-box .container .search-body .tab2 .submit {
  text-align: center;
}
.search-box .container .search-body .tab2 .submit input {
  width: 100%;
  padding: 0;
  height: 60px;
  line-height: 60px;
  max-width: 200px;
}
.search-box .container .search-body .tab1 {
  display: none;
}
.search-box .container .search-body .tab1.active {
  display: block;
}
.search-box .container .search-body .tab1 .field-category {
  display: none;
  text-align: center;
  margin-bottom: 20px;
}
.search-box .container .search-body .tab1 .field-category ul {
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: solid 1px #ccc;
}
.search-box .container .search-body .tab1 .field-category ul li {
  display: inline-block;
  float: left;
  border-right: solid 1px #ccc;
}
.search-box .container .search-body .tab1 .field-category ul li:last-child {
  border-right: none;
}
.search-box .container .search-body .tab1 .field-category ul li a {
  background-color: #efefef;
  display: block;
  font-size: 16px;
  font-weight: bold;
  width: 200px;
  height: 44px;
  line-height: 44px;
  color: #333;
}
.search-box .container .search-body .tab1 .field-category ul li a:hover {
  text-decoration: none;
  background-color: #ddd;
}
.search-box .container .search-body .tab1 .field-category ul li a.active {
  color: white;
  background-color: #555;
  pointer-events: none;
}
.search-box .container .search-body .tab1 .field-category ul li a.active:hover {
  color: white;
  background-color: #555;
}
.search-box .container .search-body .tab1 .field-category ul li a {
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.search-box .container .search-body .tab1 .new-search-combo {
  height: 60px;
}
.search-box .container .search-body .tab1 .new-search-combo .fields {
  width: 82%;
  margin-right: 1%;
  display: inline-block;
  float: left;
  position: relative;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model,
.search-box .container .search-body .tab1 .new-search-combo .fields .field-year,
.search-box .container .search-body .tab1 .new-search-combo .fields .field-price {
  width: 46%;
  margin-right: 1%;
  border: solid 1px #ccc;
  height: 60px;
  background-color: white;
  display: inline-block;
  float: left;
  cursor: pointer;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model label,
.search-box .container .search-body .tab1 .new-search-combo .fields .field-year label,
.search-box .container .search-body .tab1 .new-search-combo .fields .field-price label {
  line-height: 60px;
  font-size: 14px;
  color: #545454;
  margin-left: 15px;
  cursor: pointer;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model:hover,
.search-box .container .search-body .tab1 .new-search-combo .fields .field-year:hover,
.search-box .container .search-body .tab1 .new-search-combo .fields .field-price:hover {
  background-color: #f6f6f6;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model.disabled label,
.search-box .container .search-body .tab1 .new-search-combo .fields .field-year.disabled label,
.search-box .container .search-body .tab1 .new-search-combo .fields .field-price.disabled label {
  color: #ccc;
  pointer-events: none;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .make,
.search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .model {
  display: none;
  opacity: 0;
  float: left;
  margin-left: 10px;
  margin-top: 9px;
  position: relative;
  height: 40px;
  background-color: #0053A7;
  padding-left: 13px;
  padding-right: 40px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  color: white;
  font-size: 13px;
  line-height: 40px;
  max-width: 210px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .make span,
.search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .model span {
  font-weight: normal;
  color: #ccc;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .make:hover,
.search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .model:hover {
  background-color: #286090;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .make:after,
.search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .model:after {
  content: '';
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  background-image: url(/assets/close2.png);
  background-repeat: no-repeat;
  right: 12px;
  top: 14px;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .make.active,
.search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .model.active {
  display: inline-block;
  -webkit-animation: flipInBubble 300ms 0ms ease forwards;
  -moz-animation: flipInBubble 300ms 0ms ease forwards;
  -ms-animation: flipInBubble 300ms 0ms ease forwards;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .model {
  margin-left: 5px;
  max-width: 180px;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-year {
  width: 26%;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-year .year-label {
  display: none;
  opacity: 0;
  float: left;
  margin-left: 10px;
  margin-top: 9px;
  position: relative;
  height: 40px;
  background-color: #0053A7;
  padding-left: 13px;
  padding-right: 40px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  color: white;
  font-size: 13px;
  line-height: 40px;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-year .year-label:hover {
  background-color: #286090;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-year .year-label:after {
  content: '';
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  background-image: url(/assets/close2.png);
  background-repeat: no-repeat;
  right: 12px;
  top: 14px;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-year .year-label.active {
  display: inline-block;
  -webkit-animation: flipInBubble 300ms 0ms ease forwards;
  -moz-animation: flipInBubble 300ms 0ms ease forwards;
  -ms-animation: flipInBubble 300ms 0ms ease forwards;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-price {
  width: 26%;
  float: right;
  margin-right: 0;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-price .price-label {
  display: none;
  opacity: 0;
  float: left;
  margin-left: 10px;
  margin-top: 9px;
  position: relative;
  height: 40px;
  background-color: #0053A7;
  padding-left: 13px;
  padding-right: 40px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  color: white;
  font-size: 13px;
  line-height: 40px;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-price .price-label:hover {
  background-color: #286090;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-price .price-label:after {
  content: '';
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  background-image: url(/assets/close2.png);
  background-repeat: no-repeat;
  right: 12px;
  top: 14px;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .field-price .price-label.active {
  display: inline-block;
  -webkit-animation: flipInBubble 300ms 0ms ease forwards;
  -moz-animation: flipInBubble 300ms 0ms ease forwards;
  -ms-animation: flipInBubble 300ms 0ms ease forwards;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone {
  position: absolute;
  width: 100%;
  margin-top: 59px;
  max-height: 300px;
  background-color: white;
  border: solid 1px #ccc;
  z-index: 9;
  text-align: center;
  opacity: 0;
  overflow: auto;
  height: 0;
  -webkit-overflow-scrolling: touch;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.enter-animation {
  overflow: hidden;
  -webkit-animation: topToBottom 100ms 0ms ease forwards;
  -moz-animation: topToBottom 100ms 0ms ease forwards;
  -ms-animation: topToBottom 100ms 0ms ease forwards;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.show-loading .loading {
  -webkit-animation: fadeIn 300ms 100ms ease forwards;
  -moz-animation: fadeIn 300ms 100ms ease forwards;
  -ms-animation: fadeIn 300ms 100ms ease forwards;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone .loading {
  opacity: 0;
  padding-top: 30px;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.year > div,
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.price > div {
  display: none;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.year > div #year-slider-value-min,
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.price > div #year-slider-value-min,
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.year > div #price-slider-value-min,
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.price > div #price-slider-value-min {
  color: #777;
  position: absolute;
  display: block;
  left: 80px;
  top: 80px;
  font-size: 16px;
  font-weight: bold;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.year > div #year-slider-value-max,
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.price > div #year-slider-value-max,
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.year > div #price-slider-value-max,
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.price > div #price-slider-value-max {
  color: #777;
  position: absolute;
  display: block;
  right: 80px;
  top: 80px;
  font-size: 16px;
  font-weight: bold;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.year > div #year-slider,
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.price > div #year-slider,
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.year > div #price-slider,
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.price > div #price-slider {
  margin: 20px 80px;
  margin-top: 45px;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone ul {
  display: none;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone ul li {
  width: 100%;
  text-align: left;
  border-bottom: solid 1px #ccc;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone ul li a {
  color: #444;
  line-height: 48px;
  padding-left: 15px;
  font-size: 14px;
  display: block;
  width: 100%;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone ul li a span {
  color: #777;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone ul li a:hover {
  text-decoration: none;
  background-color: #0053A7;
  color: white;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone ul li a:hover span {
  color: white;
}
.search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone ul li:last-child {
  border-bottom: none;
}
.search-box .container .search-body .tab1 .new-search-combo .submit {
  width: 17%;
  float: left;
  margin-right: 0;
  display: inline-block;
}
.search-box .container .search-body .tab1 .new-search-combo .submit input {
  width: 100%;
  padding: 0;
  height: 60px;
  line-height: 60px;
}
.brand-tiles {
  margin-bottom: 10px;
}
.brand-tiles .container .row figure {
  margin-bottom: 30px;
}
.brand-tiles .container .row figure a > div {
  height: 160px;
  padding: 30px 0px 20px 25px;
  background-color: white;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: relative;
}
.brand-tiles .container .row figure a > div img {
  max-width: 95%;
}
.brand-tiles .container .row figure a > div span {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  line-height: 40px;
  text-align: center;
  left: 0;
}
.brand-tiles .container .row figure a > div.toyota span {
  background-color: #EF1213;
}
.brand-tiles .container .row figure a > div.mazda span {
  background-color: #009BE9;
}
.brand-tiles .container .row figure a > div.hyundai span {
  background-color: #004B90;
}
.brand-tiles .container .row figure a > div.ol span {
  background-color: #242883;
}
.brand-tiles .container .row figure a > div.olm span {
  background-color: #EF0300;
}
.brand-tiles .container .row figure a > div.isuzu span {
  background-color: #EF0300;
}
.brand-tiles .container .row figure a:hover {
  text-decoration: none;
}
.brand-tiles .container .row figure a:hover > div.toyota span {
  background-color: #cf1010;
}
.brand-tiles .container .row figure a:hover > div.mazda span {
  background-color: #0081c2;
}
.brand-tiles .container .row figure a:hover > div.hyundai span {
  background-color: #003769;
}
.brand-tiles .container .row figure a:hover > div.ol span {
  background-color: #1a1d5e;
}
.brand-tiles .container .row figure a:hover > div.olm span {
  background-color: #d0270c;
}
.brand-tiles .container .row figure a:hover > div.isuzu span {
  background-color: #c50200;
}
.promo-tiles {
  margin-bottom: 10px;
}
.promo-tiles .container .row figure {
  margin-bottom: 20px;
}
.promo-tiles .container .row figure a {
  line-height: 0;
  display: block;
  background-color: black;
}
.promo-tiles .container .row figure a:hover img {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.promo-tiles .container .row figure a img {
  width: 100%;
}
.btn-left-bottom {
  position: absolute;
  left: 35px;
  bottom: 20px;
  display: block;
  z-index: 2;
}
.bottom-tiles {
  margin-bottom: 10px;
}
.bottom-tiles .container .row figure {
  margin-bottom: 20px;
}
.bottom-tiles .container .row figure a {
  line-height: 0;
  display: block;
  background-color: black;
}
.bottom-tiles .container .row figure a:hover img {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.bottom-tiles .container .row figure a img {
  width: 100%;
}
footer {
  width: 100%;
  padding-bottom: 15px;
  background-color: #555555;
}
footer .opening-hours {
  text-align: center;
  padding-top: 10px;
  background-color: #444;
  padding-bottom: 30px;
  color: white;
}
footer .opening-hours h3 {
  color: white;
  font-size: 13px;
  font-weight: bold;
  width: 100%;
  display: block;
  line-height: 40px;
  margin-bottom: 10px;
  border-bottom: solid 1px #666;
}
footer .opening-hours table {
  text-align: left;
  margin: 0 auto;
}
footer .opening-hours table tr:first-child {
  border-bottom: solid 1px #888;
}
footer .opening-hours table td {
  padding: 8px 15px;
  font-size: 13px;
  font-weight: normal;
}
footer .footer-call {
  padding: 10px;
  color: white;
  font-size: 20px;
  cursor: pointer;
}
footer .sitemap {
  color: white;
  font-size: 13px;
  line-height: 20px;
  font-family: Arial;
  padding-bottom: 5px;
}
footer .sitemap h3 {
  font-size: 16px;
  margin-bottom: 15px;
}
footer .sitemap a {
  color: #0099DF;
}
footer .sitemap ul {
  margin-bottom: 20px;
}
footer .sitemap ul li a {
  color: white;
}
footer .sitemap ul li a:hover {
  text-decoration: none;
  color: #ccc;
}
footer .join-us h3 {
  color: white;
  font-size: 13px;
  font-weight: bold;
  width: 100%;
  display: block;
  line-height: 40px;
  border-bottom: solid 1px #666;
}
footer .join-us ul {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 40px;
}
footer .join-us ul li {
  margin: 2px 9px;
  display: inline-block;
  float: left;
}
footer .join-us ul li a {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  background-color: #999;
  color: white;
  padding: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
footer .join-us ul li a i {
  font-size: 15px;
  font-weight: normal;
  line-height: 29px;
}
footer .join-us ul li a:hover {
  background-color: #444;
}
footer .bottom-line {
  padding-left: 15px;
  padding-right: 15px;
  color: white;
  font-size: 12px;
  line-height: 20px;
}
footer .bottom-line a {
  color: white;
}
footer .bottom-line a:hover {
  text-decoration: none;
  color: #ccc;
}
.pagination-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
}
.search-results {
  margin-bottom: 30px;
  background-color: #efefef;
}
.search-results > .container {
  padding-left: 30px;
  padding-right: 30px;
}
.search-results .results-bg {
  background-color: white;
  padding: 30px 5px;
}
.search-results .results-bg .results-list {
  display: table;
  margin-left: 5px;
  margin-right: 5px;
  width: 100%;
}
.search-results .results-bg .results-list figure {
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}
.search-results .results-bg .results-list figure > a {
  display: block;
  width: 100%;
  background-color: #efefef;
  overflow: hidden;
  color: #333;
  padding-bottom: 5px;
  border-bottom: solid 5px #efefef;
}
.search-results .results-bg .results-list figure > a > img {
  width: 100%;
  height: 274px;
}
.search-results .results-bg .results-list figure > a:hover {
  text-decoration: none;
  background-color: #e5e5e5;
}
.search-results .results-bg .results-list figure > a h3 {
  margin: 15px 20px;
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
}
.search-results .results-bg .results-list figure > a > i {
  background-color: gray;
  color: white;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  clear: both;
  margin: 10px 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
  padding: 5px  15px;
}
.search-results .results-bg .results-list figure .price-tag {
  background-color: black;
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  position: absolute;
  padding: 10px 15px;
  color: white;
  font-size: 21px;
  font-weight: bold;
  text-align: center;
  top: 0;
  margin-left: 10px;
}
.search-results .results-bg .results-list figure .price-tag span {
  clear: both;
  display: block;
  font-size: 12px;
  font-weight: normal;
  line-height: 18px;
}
.search-results .results-bg .results-list figure.new > a:hover {
  border-bottom: solid 5px #0053A7;
}
.search-results .results-bg .results-list figure.new > a > i {
  background-color: #0053A7;
}
.search-results .results-bg .results-list figure.used > a:hover {
  border-bottom: solid 5px #d90000;
}
.search-results .results-bg .results-list figure.used > a > i {
  background-color: #d90000;
}
.search-results .results-bg .results-list figure.demo > a:hover {
  border-bottom: solid 5px #238c00;
}
.search-results .results-bg .results-list figure.demo > a > i {
  background-color: #238c00;
}
.search-results .results-bg .results-list figure .feature-list {
  margin-left: 20px;
  margin-right: 20px;
  clear: both;
  display: inline-block;
}
.search-results .results-bg .results-list figure .feature-list li {
  width: 140px;
  display: inline-block;
  float: left;
  padding-left: 28px;
  font-size: 14px;
  color: #545454;
  white-space: nowrap;
  line-height: 20px;
  margin-bottom: 10px;
}
.search-results .results-bg .results-list figure .feature-list li:before {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(/assets/feature-icons.png);
  background-repeat: no-repeat;
  margin-left: -28px;
}
.search-results .results-bg .results-list figure .feature-list li.engine:before {
  background-position: 0 3px;
}
.search-results .results-bg .results-list figure .feature-list li.bodytype:before {
  background-position: 0 -19px;
}
.search-results .results-bg .results-list figure .feature-list li.transmission:before {
  background-position: 0 -42px;
}
.search-results .results-bg .results-list figure .feature-list li.kilometers:before {
  background-position: 0 -66px;
}
.search-results .results-bg .sort-row {
  display: table;
  width: 100%;
  margin-bottom: 30px;
}
.search-results .results-bg .sort-row .sort-wrapper .field-sort label {
  line-height: 46px;
  font-size: 14px;
  color: #545454;
  margin-left: 15px;
  cursor: pointer;
}
.search-results .results-bg .sort-row .sort-wrapper .field-sort:hover {
  background-color: #f6f6f6;
}
.search-results .results-bg .sort-row .sort-wrapper .field-sort.disabled label {
  color: #ccc;
  pointer-events: none;
}
.search-results .results-bg .sort-row .sort-wrapper .field-sort select {
  border: solid 1px #ccc;
  height: 46px;
  background-color: white;
}
.search-results .results-bg .sort-row .results-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 46px;
  color: #777;
  font-size: 17px;
  font-weight: bold;
}
.search-results .results-bg .sort-row .results-title span {
  color: #333;
}
.search-results .results-bg .sort-row .share-wrapper .pull-right > label {
  color: #333;
  font-size: 17px;
  font-weight: bold;
  line-height: 34px;
  display: inline-block;
  float: left;
}
.search-results .results-bg .sort-row .share-wrapper .pull-right .widget {
  width: 168px;
  display: inline-block;
  float: left;
}
.search-results .results-bg .sort-row .share-wrapper .pull-right > ul {
  display: none;
  float: left;
}
.search-results .results-bg .sort-row .share-wrapper .pull-right > ul li {
  display: inline-block;
  float: left;
  margin-left: 10px;
}
.search-results .results-bg .sort-row .share-wrapper .pull-right > ul li a:hover {
  text-decoration: none;
}
.search-results .results-bg .sort-row .share-wrapper .pull-right > ul li a i {
  display: block;
  width: 46px;
  height: 46px;
  background-color: #bababa;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.search-results .results-bg .sort-row .share-wrapper .pull-right > ul li a i:before {
  display: block;
  width: 46px;
  height: 46px;
  content: "";
  font-size: 20px;
  color: white;
  line-height: 46px;
  font-family: 'FontAwesome';
  text-align: center;
  font-weight: normal;
}
.search-results .results-bg .sort-row .share-wrapper .pull-right > ul li a i.facebook:before {
  content: "\f09a";
}
.search-results .results-bg .sort-row .share-wrapper .pull-right > ul li a i.twitter:before {
  content: "\f099";
}
.search-results .results-bg .sort-row .share-wrapper .pull-right > ul li a i.plus:before {
  content: "\f067";
}
.search-results .results-bg .sort-row .share-wrapper .pull-right > ul li a i:hover {
  background-color: #0053A7;
}
.details-section {
  padding-bottom: 30px;
}
.details-section > .container {
  padding-left: 30px;
  padding-right: 30px;
}
.details-section > .container > .row {
  background-color: white;
}
.details-section .details-row {
  margin: 10px 25px;
  overflow: hidden;
}
.details-section .details-row .pagetitle {
  font-family: Arial;
  font-size: 21px;
  color: #333;
  line-height: 30px;
  width: 100%;
  font-weight: bold;
  margin-bottom: 40px;
  padding-left: 10px;
}
.details-section .details-row .details > .price-label {
  font-family: Arial;
  font-size: 26px;
  font-weight: bold;
  text-align: right;
  padding-bottom: 10px;
  padding-right: 10px;
  display: none;
}
.details-section .details-row .details > .price-label span {
  display: block;
  clear: both;
  font-size: 12px;
  line-height: 23px;
}
.details-section .details-row .details {
  padding-left: 0;
  padding-right: 0;
}
.details-section .details-row .main-features-wrapper {
  padding: 0px 5px;
  overflow: hidden;
  margin-bottom: 45px;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper {
  width: 67%;
  position: relative;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-display {
  margin-bottom: 8px;
  position: relative;
  cursor: pointer;
  width: 100%;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -ms-box-sizing: content-box;
  box-sizing: content-box;
  overflow: hidden;
  text-align: left !important;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-display .iframe-wrapper {
  position: relative;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-display .iframe-wrapper img {
  width: 100%;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-display .iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-display .tips {
  position: absolute;
  background-color: #111;
  -webkit-border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-topright: 6px;
  -moz-border-radius-bottomright: 6px;
  -moz-border-radius-bottomleft: 6px;
  -moz-border-radius-topleft: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  left: 15px;
  bottom: 15px;
  color: white;
  z-index: 7;
  font-family: Arial;
  font-size: 12px;
  padding: 9px 10px;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  -o-user-select: none;
  user-select: none;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-display img {
  width: 100%;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-display a {
  display: none;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-display > img {
  width: 100%;
  display: inline-block;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-display .slide {
  display: inline-block;
  margin-right: -100%;
  left: -100%;
  height: 0;
  overflow: hidden;
  z-index: 1;
  -webkit-transition-property: left,height;
  -moz-transition-property: left,height;
  -ms-transition-property: left,height;
  -o-transition-property: left,height;
  transition-property: left,height;
  -webkit-transition-duration: 333ms;
  -moz-transition-duration: 333ms;
  -ms-transition-duration: 333ms;
  -o-transition-duration: 333ms;
  transition-duration: 333ms;
  -webkit-transition-timing-function: cubic-bezier(0.1, 0.7, 0.7, 1);
  -moz-transition-timing-function: cubic-bezier(0.1, 0.7, 0.7, 1);
  -ms-transition-timing-function: cubic-bezier(0.1, 0.7, 0.7, 1);
  -o-transition-timing-function: cubic-bezier(0.1, 0.7, 0.7, 1);
  transition-timing-function: cubic-bezier(0.1, 0.7, 0.7, 1);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  width: 100%;
  height: auto;
  max-height: 370px;
  position: relative;
  vertical-align: top;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-display .slide.active {
  left: 0;
  height: auto;
  overflow: visible;
  z-index: 2;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-display .slide.active ~ .slide {
  left: 100%;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-display .slide.active ~ .slide.active {
  left: 0;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-nav {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-nav .crsl-nav {
  width: 100%;
  position: absolute;
  display: none !important;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-nav .crsl-nav a.previous {
  text-indent: -10000px;
  position: absolute;
  left: -48px;
  width: 30px;
  height: 87px;
  background-repeat: no-repeat;
  background-position: -21px center;
  border-right: 1px solid #ddd;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-nav .crsl-nav a.previous.disabled {
  pointer-events: none;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-nav .crsl-nav a.previous.previous-inactive {
  background-position: 10px center;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-nav .crsl-nav a.next {
  text-indent: -10000px;
  position: absolute;
  right: -48px;
  width: 30px;
  height: 87px;
  background-image: url(/assets/icon-arrow-right.png);
  background-repeat: no-repeat;
  background-position: 10px center;
  border-left: 1px solid #ddd;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-nav .crsl-nav a.next.disabled {
  pointer-events: none;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-nav .crsl-nav a.next.next-inactive {
  background-position: -21px center;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-nav .crsl-items {
  width: auto !important;
  max-height: 61px;
  overflow: hidden;
  margin-right: -7px;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-nav .crsl-items .crsl-wrap figure {
  margin: 0px;
  display: inline-block;
  float: left;
  margin-right: 8px;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-nav .crsl-items .crsl-wrap .crsl-item {
  max-width: 92px;
  max-height: 61px;
  overflow: visible !important;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-nav .crsl-items .crsl-wrap .crsl-item.is-video:before {
  content: '';
  position: absolute;
  top: 50%;
  background-image: url(/assets/video-play.png);
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  margin-top: -13px;
  left: 50%;
  margin-left: -13px;
  pointer-events: none;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-nav .crsl-items .crsl-wrap .crsl-item a img {
  border: solid 1px white;
  width: 100%;
  max-height: 60px;
}
.details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-nav .crsl-items .crsl-wrap .crsl-item a img.active {
  border: solid 1px #333;
}
.details-section .details-row .main-features-wrapper .main-features {
  width: 30%;
  margin-left: 3%;
  color: #333;
}
.details-section .details-row .main-features-wrapper .main-features .price-label {
  font-family: Arial;
  font-size: 26px;
  font-weight: bold;
}
.details-section .details-row .main-features-wrapper .main-features .price-label span {
  display: block;
  clear: both;
  font-size: 12px;
  line-height: 23px;
}
.details-section .details-row .main-features-wrapper .main-features ul.feature-list {
  margin-right: 15px;
  margin-top: 20px;
}
.details-section .details-row .main-features-wrapper .main-features ul.feature-list li {
  padding-top: 10px;
  padding-left: 38px;
  font-weight: bold;
  font-size: 14px;
  font-family: Arial;
  width: 100%;
  border-bottom: solid 1px #ddd;
  position: relative;
}
.details-section .details-row .main-features-wrapper .main-features ul.feature-list li:before {
  content: '';
  position: absolute;
  left: 0;
  width: 35px;
  background-image: url(/assets/feature-icons-horizontal.png);
  background-repeat: no-repeat;
  height: 45px;
  top: 0;
  background-position: -4px -3px;
}
.details-section .details-row .main-features-wrapper .main-features ul.feature-list li.engine:before {
  background-position: -55px -3px;
}
.details-section .details-row .main-features-wrapper .main-features ul.feature-list li.body-type:before {
  background-position: -111px -3px;
}
.details-section .details-row .main-features-wrapper .main-features ul.feature-list li.odometer:before {
  background-position: -165px -3px;
}
.details-section .details-row .main-features-wrapper .main-features ul.feature-list li span {
  color: #aaa;
  display: block;
  clear: both;
  padding: 10px 0;
  font-size: 11px;
}
.details-section .details-row .disclaimer {
  color: #aaa;
  font-size: 11px;
  margin-bottom: 40px;
  line-height: 18px;
  display: block;
  clear: both;
}
.details-section .details-row .vehicle-details-wrapper,
.details-section .details-row .comments-wrapper,
.details-section .details-row .feature-wrapper {
  margin-right: 15px;
  margin-bottom: 45px;
}
.details-section .details-row .vehicle-details-wrapper > h3,
.details-section .details-row .comments-wrapper > h3,
.details-section .details-row .feature-wrapper > h3 {
  font-family: Arial;
  font-size: 14px;
  padding-left: 15px;
  display: block;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: solid 5px #ccc;
  font-weight: bold;
}
.details-section .details-row .vehicle-details-wrapper .table,
.details-section .details-row .comments-wrapper .table,
.details-section .details-row .feature-wrapper .table {
  font-size: 12px;
  padding: 0px;
}
.details-section .details-row .vehicle-details-wrapper .table tr th,
.details-section .details-row .comments-wrapper .table tr th,
.details-section .details-row .feature-wrapper .table tr th {
  width: 40%;
  padding: 7px 15px;
  vertical-align: top;
  border: none;
  font-weight: bold;
}
.details-section .details-row .vehicle-details-wrapper .table tr td,
.details-section .details-row .comments-wrapper .table tr td,
.details-section .details-row .feature-wrapper .table tr td {
  padding: 7px 15px;
  vertical-align: top;
  border: none;
}
.details-section .details-row .vehicle-details-wrapper .table tr td a,
.details-section .details-row .comments-wrapper .table tr td a,
.details-section .details-row .feature-wrapper .table tr td a {
  text-decoration: none;
  color: #3279bb;
}
.details-section .details-row .vehicle-details-wrapper .table.table-striped tr:nth-child(even),
.details-section .details-row .comments-wrapper .table.table-striped tr:nth-child(even),
.details-section .details-row .feature-wrapper .table.table-striped tr:nth-child(even) {
  background-color: #f6f6f6;
}
.details-section .details-row .vehicle-details-wrapper .table.table-striped tr:nth-child(odd),
.details-section .details-row .comments-wrapper .table.table-striped tr:nth-child(odd),
.details-section .details-row .feature-wrapper .table.table-striped tr:nth-child(odd) {
  background-color: #fff;
}
.details-section .details-row .vehicle-details-wrapper p,
.details-section .details-row .comments-wrapper p,
.details-section .details-row .feature-wrapper p {
  font-size: 13px;
  padding: 15px;
  padding-top: 0;
  line-height: 18px;
}
.details-section .details-row .vehicle-details-wrapper .accordionhead,
.details-section .details-row .comments-wrapper .accordionhead,
.details-section .details-row .feature-wrapper .accordionhead {
  display: block;
  width: 100%;
  padding: 10px 10px;
  background-color: #eee;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #333;
  font-size: 13px;
  cursor: pointer;
  position: relative;
}
.details-section .details-row .vehicle-details-wrapper .accordionhead:after,
.details-section .details-row .comments-wrapper .accordionhead:after,
.details-section .details-row .feature-wrapper .accordionhead:after {
  content: "\f196";
  font-family: 'FontAwesome';
  font-size: 18px;
  position: absolute;
  right: 15px;
  top: 8px;
}
.details-section .details-row .vehicle-details-wrapper .accordionhead.active:after,
.details-section .details-row .comments-wrapper .accordionhead.active:after,
.details-section .details-row .feature-wrapper .accordionhead.active:after {
  content: "\f147";
}
.details-section .details-row .vehicle-details-wrapper .accordionhead:hover,
.details-section .details-row .comments-wrapper .accordionhead:hover,
.details-section .details-row .feature-wrapper .accordionhead:hover {
  background-color: #ddd;
}
.details-section .details-row .vehicle-details-wrapper dl,
.details-section .details-row .comments-wrapper dl,
.details-section .details-row .feature-wrapper dl {
  overflow: hidden;
}
.details-section .details-row .vehicle-details-wrapper dl dd,
.details-section .details-row .comments-wrapper dl dd,
.details-section .details-row .feature-wrapper dl dd {
  margin: 0;
  font-size: 13px;
  display: inline-block;
  padding: 8px;
  border-bottom: 1px solid #CCC;
}
.details-section .details-row aside {
  padding-right: 0;
  padding-left: 10px;
}
.details-section .back-link-row {
  margin: 20px 25px;
  overflow: hidden;
  border-bottom: solid 5px #ddd;
}
.details-section .back-link-row .back-link {
  padding-left: 0;
}
.details-section .back-link-row .back-link a {
  font-family: Arial;
  font-weight: bold;
  line-height: 42px;
  font-size: 18px;
  padding-left: 5px;
}
.details-section .back-link-row .share-wrapper {
  padding-right: 0;
  padding-bottom: 13px;
}
.details-section .back-link-row .share-wrapper .pull-right > label {
  color: #333;
  font-size: 15px;
  font-weight: bold;
  line-height: 46px;
  display: inline-block;
  float: left;
  font-family: Arial;
  padding-right: 10px;
}
.details-section .back-link-row .share-wrapper .pull-right .widget {
  width: 168px;
  display: inline-block;
  float: left;
}
.details-section .back-link-row .share-wrapper .pull-right > ul {
  display: none;
  float: left;
}
.details-section .back-link-row .share-wrapper .pull-right > ul li {
  display: inline-block;
  float: left;
  margin-left: 10px;
}
.details-section .back-link-row .share-wrapper .pull-right > ul li a:hover {
  text-decoration: none;
}
.details-section .back-link-row .share-wrapper .pull-right > ul li a i {
  display: block;
  width: 46px;
  height: 46px;
  background-color: #bababa;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.details-section .back-link-row .share-wrapper .pull-right > ul li a i:before {
  display: block;
  width: 46px;
  height: 46px;
  content: "";
  font-size: 20px;
  color: white;
  line-height: 46px;
  font-family: 'FontAwesome';
  text-align: center;
  font-weight: normal;
}
.details-section .back-link-row .share-wrapper .pull-right > ul li a i.facebook:before {
  content: "\f09a";
}
.details-section .back-link-row .share-wrapper .pull-right > ul li a i.twitter:before {
  content: "\f099";
}
.details-section .back-link-row .share-wrapper .pull-right > ul li a i.plus:before {
  content: "\f067";
}
.details-section .back-link-row .share-wrapper .pull-right > ul li a i:hover {
  background-color: #0053A7;
}
.enquiry-form-wrapper {
  background-color: #efefef;
  padding: 20px;
  margin-bottom: 20px;
}
.enquiry-form-wrapper.margin-right-30 {
  margin-right: 30px;
  margin-bottom: 150px;
}
.enquiry-form-wrapper > h3 {
  font-size: 15px;
  font-family: Arial;
  font-weight: bold;
  display: block;
  padding-top: 10px;
  padding-bottom: 20px;
}
.enquiry-form-wrapper > h3 small {
  display: inline-block;
  float: right;
  font-size: 12px;
  font-weight: bold;
  padding-top: 4px;
  color: #333;
}
.enquiry-form-wrapper #stock-locator-enquiry-thank-you {
  font-size: 14px;
  line-height: 18px;
  padding: 15px;
}
.enquiry-form-wrapper #vehicleLeadEnquiry,
.enquiry-form-wrapper #financeEnquiry,
.enquiry-form-wrapper #serviceEnquiry,
.enquiry-form-wrapper #sellEnquiry,
.enquiry-form-wrapper #sellYourCarEnquiry,
.enquiry-form-wrapper #contactUsEnquiry {
  overflow: hidden;
}
.enquiry-form-wrapper #vehicleLeadEnquiry h3,
.enquiry-form-wrapper #financeEnquiry h3,
.enquiry-form-wrapper #serviceEnquiry h3,
.enquiry-form-wrapper #sellEnquiry h3,
.enquiry-form-wrapper #sellYourCarEnquiry h3,
.enquiry-form-wrapper #contactUsEnquiry h3 {
  font-size: 15px;
  font-family: Arial;
  font-weight: bold;
  padding-top: 20px;
  padding-bottom: 20px;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .trade-in-heading,
.enquiry-form-wrapper #financeEnquiry .trade-in-heading,
.enquiry-form-wrapper #serviceEnquiry .trade-in-heading,
.enquiry-form-wrapper #sellEnquiry .trade-in-heading,
.enquiry-form-wrapper #sellYourCarEnquiry .trade-in-heading,
.enquiry-form-wrapper #contactUsEnquiry .trade-in-heading {
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  padding-top: 3px;
  padding-bottom: 15px;
  overflow: hidden;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .trade-in-heading ul,
.enquiry-form-wrapper #financeEnquiry .trade-in-heading ul,
.enquiry-form-wrapper #serviceEnquiry .trade-in-heading ul,
.enquiry-form-wrapper #sellEnquiry .trade-in-heading ul,
.enquiry-form-wrapper #sellYourCarEnquiry .trade-in-heading ul,
.enquiry-form-wrapper #contactUsEnquiry .trade-in-heading ul {
  display: inline-block;
  float: right;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .trade-in-heading ul li,
.enquiry-form-wrapper #financeEnquiry .trade-in-heading ul li,
.enquiry-form-wrapper #serviceEnquiry .trade-in-heading ul li,
.enquiry-form-wrapper #sellEnquiry .trade-in-heading ul li,
.enquiry-form-wrapper #sellYourCarEnquiry .trade-in-heading ul li,
.enquiry-form-wrapper #contactUsEnquiry .trade-in-heading ul li {
  display: inline-block;
  float: left;
  padding-left: 5px;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .trade-in-heading ul li input,
.enquiry-form-wrapper #financeEnquiry .trade-in-heading ul li input,
.enquiry-form-wrapper #serviceEnquiry .trade-in-heading ul li input,
.enquiry-form-wrapper #sellEnquiry .trade-in-heading ul li input,
.enquiry-form-wrapper #sellYourCarEnquiry .trade-in-heading ul li input,
.enquiry-form-wrapper #contactUsEnquiry .trade-in-heading ul li input {
  cursor: pointer;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .trade-in-heading ul li label,
.enquiry-form-wrapper #financeEnquiry .trade-in-heading ul li label,
.enquiry-form-wrapper #serviceEnquiry .trade-in-heading ul li label,
.enquiry-form-wrapper #sellEnquiry .trade-in-heading ul li label,
.enquiry-form-wrapper #sellYourCarEnquiry .trade-in-heading ul li label,
.enquiry-form-wrapper #contactUsEnquiry .trade-in-heading ul li label {
  padding-left: 3px;
  font-family: Arial;
  font-weight: normal;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .trade-in-heading ul li label:hover,
.enquiry-form-wrapper #financeEnquiry .trade-in-heading ul li label:hover,
.enquiry-form-wrapper #serviceEnquiry .trade-in-heading ul li label:hover,
.enquiry-form-wrapper #sellEnquiry .trade-in-heading ul li label:hover,
.enquiry-form-wrapper #sellYourCarEnquiry .trade-in-heading ul li label:hover,
.enquiry-form-wrapper #contactUsEnquiry .trade-in-heading ul li label:hover {
  cursor: pointer;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .trade-in-fields,
.enquiry-form-wrapper #financeEnquiry .trade-in-fields,
.enquiry-form-wrapper #serviceEnquiry .trade-in-fields,
.enquiry-form-wrapper #sellEnquiry .trade-in-fields,
.enquiry-form-wrapper #sellYourCarEnquiry .trade-in-fields,
.enquiry-form-wrapper #contactUsEnquiry .trade-in-fields {
  display: none;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group,
.enquiry-form-wrapper #financeEnquiry .form-group,
.enquiry-form-wrapper #serviceEnquiry .form-group,
.enquiry-form-wrapper #sellEnquiry .form-group,
.enquiry-form-wrapper #sellYourCarEnquiry .form-group,
.enquiry-form-wrapper #contactUsEnquiry .form-group {
  margin-bottom: 10px;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group.col-md-8,
.enquiry-form-wrapper #financeEnquiry .form-group.col-md-8,
.enquiry-form-wrapper #serviceEnquiry .form-group.col-md-8,
.enquiry-form-wrapper #sellEnquiry .form-group.col-md-8,
.enquiry-form-wrapper #sellYourCarEnquiry .form-group.col-md-8,
.enquiry-form-wrapper #contactUsEnquiry .form-group.col-md-8 {
  padding-right: 5px;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group.col-md-4,
.enquiry-form-wrapper #financeEnquiry .form-group.col-md-4,
.enquiry-form-wrapper #serviceEnquiry .form-group.col-md-4,
.enquiry-form-wrapper #sellEnquiry .form-group.col-md-4,
.enquiry-form-wrapper #sellYourCarEnquiry .form-group.col-md-4,
.enquiry-form-wrapper #contactUsEnquiry .form-group.col-md-4 {
  padding-left: 5px;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group.col-sm-6:last-child,
.enquiry-form-wrapper #financeEnquiry .form-group.col-sm-6:last-child,
.enquiry-form-wrapper #serviceEnquiry .form-group.col-sm-6:last-child,
.enquiry-form-wrapper #sellEnquiry .form-group.col-sm-6:last-child,
.enquiry-form-wrapper #sellYourCarEnquiry .form-group.col-sm-6:last-child,
.enquiry-form-wrapper #contactUsEnquiry .form-group.col-sm-6:last-child {
  padding-left: 5px;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group.col-sm-6:first-child,
.enquiry-form-wrapper #financeEnquiry .form-group.col-sm-6:first-child,
.enquiry-form-wrapper #serviceEnquiry .form-group.col-sm-6:first-child,
.enquiry-form-wrapper #sellEnquiry .form-group.col-sm-6:first-child,
.enquiry-form-wrapper #sellYourCarEnquiry .form-group.col-sm-6:first-child,
.enquiry-form-wrapper #contactUsEnquiry .form-group.col-sm-6:first-child {
  padding-right: 5px;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group label,
.enquiry-form-wrapper #financeEnquiry .form-group label,
.enquiry-form-wrapper #serviceEnquiry .form-group label,
.enquiry-form-wrapper #sellEnquiry .form-group label,
.enquiry-form-wrapper #sellYourCarEnquiry .form-group label,
.enquiry-form-wrapper #contactUsEnquiry .form-group label {
  position: absolute;
  line-height: 43px;
  margin-left: 12px;
  font-size: 13px;
  font-weight: normal;
  cursor: text;
  color: #999;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group label i,
.enquiry-form-wrapper #financeEnquiry .form-group label i,
.enquiry-form-wrapper #serviceEnquiry .form-group label i,
.enquiry-form-wrapper #sellEnquiry .form-group label i,
.enquiry-form-wrapper #sellYourCarEnquiry .form-group label i,
.enquiry-form-wrapper #contactUsEnquiry .form-group label i {
  color: #aaa;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group.radio-button label,
.enquiry-form-wrapper #financeEnquiry .form-group.radio-button label,
.enquiry-form-wrapper #serviceEnquiry .form-group.radio-button label,
.enquiry-form-wrapper #sellEnquiry .form-group.radio-button label,
.enquiry-form-wrapper #sellYourCarEnquiry .form-group.radio-button label,
.enquiry-form-wrapper #contactUsEnquiry .form-group.radio-button label {
  color: #333;
  position: relative;
  width: 60%;
  line-height: 18px;
  font-size: 14px;
  font-weight: bold;
  float: left;
  margin-left: 2px;
  margin-bottom: 20px;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group.radio-button .radio-buttons,
.enquiry-form-wrapper #financeEnquiry .form-group.radio-button .radio-buttons,
.enquiry-form-wrapper #serviceEnquiry .form-group.radio-button .radio-buttons,
.enquiry-form-wrapper #sellEnquiry .form-group.radio-button .radio-buttons,
.enquiry-form-wrapper #sellYourCarEnquiry .form-group.radio-button .radio-buttons,
.enquiry-form-wrapper #contactUsEnquiry .form-group.radio-button .radio-buttons {
  float: right;
  font-size: 14px;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group input[type=text],
.enquiry-form-wrapper #financeEnquiry .form-group input[type=text],
.enquiry-form-wrapper #serviceEnquiry .form-group input[type=text],
.enquiry-form-wrapper #sellEnquiry .form-group input[type=text],
.enquiry-form-wrapper #sellYourCarEnquiry .form-group input[type=text],
.enquiry-form-wrapper #contactUsEnquiry .form-group input[type=text],
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group textarea,
.enquiry-form-wrapper #financeEnquiry .form-group textarea,
.enquiry-form-wrapper #serviceEnquiry .form-group textarea,
.enquiry-form-wrapper #sellEnquiry .form-group textarea,
.enquiry-form-wrapper #sellYourCarEnquiry .form-group textarea,
.enquiry-form-wrapper #contactUsEnquiry .form-group textarea {
  width: 100%;
  padding: 12px 12px;
  border: solid 1px #fff;
  font-size: 13px;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group input[type=text]:focus,
.enquiry-form-wrapper #financeEnquiry .form-group input[type=text]:focus,
.enquiry-form-wrapper #serviceEnquiry .form-group input[type=text]:focus,
.enquiry-form-wrapper #sellEnquiry .form-group input[type=text]:focus,
.enquiry-form-wrapper #sellYourCarEnquiry .form-group input[type=text]:focus,
.enquiry-form-wrapper #contactUsEnquiry .form-group input[type=text]:focus,
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group textarea:focus,
.enquiry-form-wrapper #financeEnquiry .form-group textarea:focus,
.enquiry-form-wrapper #serviceEnquiry .form-group textarea:focus,
.enquiry-form-wrapper #sellEnquiry .form-group textarea:focus,
.enquiry-form-wrapper #sellYourCarEnquiry .form-group textarea:focus,
.enquiry-form-wrapper #contactUsEnquiry .form-group textarea:focus {
  outline: none;
  border: solid 1px #ccc;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group input[type=text].input-validation-error,
.enquiry-form-wrapper #financeEnquiry .form-group input[type=text].input-validation-error,
.enquiry-form-wrapper #serviceEnquiry .form-group input[type=text].input-validation-error,
.enquiry-form-wrapper #sellEnquiry .form-group input[type=text].input-validation-error,
.enquiry-form-wrapper #sellYourCarEnquiry .form-group input[type=text].input-validation-error,
.enquiry-form-wrapper #contactUsEnquiry .form-group input[type=text].input-validation-error,
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group textarea.input-validation-error,
.enquiry-form-wrapper #financeEnquiry .form-group textarea.input-validation-error,
.enquiry-form-wrapper #serviceEnquiry .form-group textarea.input-validation-error,
.enquiry-form-wrapper #sellEnquiry .form-group textarea.input-validation-error,
.enquiry-form-wrapper #sellYourCarEnquiry .form-group textarea.input-validation-error,
.enquiry-form-wrapper #contactUsEnquiry .form-group textarea.input-validation-error {
  border: solid 1px red;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group select,
.enquiry-form-wrapper #financeEnquiry .form-group select,
.enquiry-form-wrapper #serviceEnquiry .form-group select,
.enquiry-form-wrapper #sellEnquiry .form-group select,
.enquiry-form-wrapper #sellYourCarEnquiry .form-group select,
.enquiry-form-wrapper #contactUsEnquiry .form-group select {
  width: 100%;
  padding: 12px 6px;
  border: solid 1px #fff;
  font-size: 13px;
  color: #999;
  height: 43px;
  line-height: 43px;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group select:focus,
.enquiry-form-wrapper #financeEnquiry .form-group select:focus,
.enquiry-form-wrapper #serviceEnquiry .form-group select:focus,
.enquiry-form-wrapper #sellEnquiry .form-group select:focus,
.enquiry-form-wrapper #sellYourCarEnquiry .form-group select:focus,
.enquiry-form-wrapper #contactUsEnquiry .form-group select:focus {
  outline: none;
  border: solid 1px #ccc;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group textarea,
.enquiry-form-wrapper #financeEnquiry .form-group textarea,
.enquiry-form-wrapper #serviceEnquiry .form-group textarea,
.enquiry-form-wrapper #sellEnquiry .form-group textarea,
.enquiry-form-wrapper #sellYourCarEnquiry .form-group textarea,
.enquiry-form-wrapper #contactUsEnquiry .form-group textarea {
  height: 110px;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group .error-msg,
.enquiry-form-wrapper #financeEnquiry .form-group .error-msg,
.enquiry-form-wrapper #serviceEnquiry .form-group .error-msg,
.enquiry-form-wrapper #sellEnquiry .form-group .error-msg,
.enquiry-form-wrapper #sellYourCarEnquiry .form-group .error-msg,
.enquiry-form-wrapper #contactUsEnquiry .form-group .error-msg {
  color: red;
  padding: 3px 0px 0px 10px;
  display: none;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .form-group.confirm-response label,
.enquiry-form-wrapper #financeEnquiry .form-group.confirm-response label,
.enquiry-form-wrapper #serviceEnquiry .form-group.confirm-response label,
.enquiry-form-wrapper #sellEnquiry .form-group.confirm-response label,
.enquiry-form-wrapper #sellYourCarEnquiry .form-group.confirm-response label,
.enquiry-form-wrapper #contactUsEnquiry .form-group.confirm-response label {
  cursor: pointer;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  -o-user-select: none;
  user-select: none;
}
.enquiry-form-wrapper #vehicleLeadEnquiry .post-form-scripts,
.enquiry-form-wrapper #financeEnquiry .post-form-scripts,
.enquiry-form-wrapper #serviceEnquiry .post-form-scripts,
.enquiry-form-wrapper #sellEnquiry .post-form-scripts,
.enquiry-form-wrapper #sellYourCarEnquiry .post-form-scripts,
.enquiry-form-wrapper #contactUsEnquiry .post-form-scripts {
  font-size: 12px;
  line-height: 16px;
  padding: 10px 0;
  color: #999;
}
.enquiry-form-wrapper .submit {
  padding-top: 3px;
}
.enquiry-form-wrapper .submit .btn-primary {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Arial;
}
.subpage aside > img {
  max-width: 100%;
}
.article-section {
  padding-bottom: 30px;
}
.article-section > .container {
  padding-left: 30px;
  padding-right: 30px;
}
.article-section > .container .subpage-title h1 {
  margin: 0 15px;
  color: #0053A7;
  font-size: 23px;
  font-weight: bold;
  font-family: Arial;
  padding-bottom: 20px;
  border-bottom: solid 5px #ddd;
  margin-bottom: 25px;
}
.article-section > .container > .row {
  background-color: white;
  padding-top: 40px;
}
.article-section aside {
  padding-right: 35px;
}
.article-section aside > p {
  font-family: Arial;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  padding-bottom: 15px;
}
.article-section aside > h2 {
  font-family: Arial;
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}
.article-section.news .article-wrapper {
  min-height: 100px;
  padding-bottom: 40px;
}
.article-section.news > .container > .row {
  padding-top: 0;
}
.article-section.news > .container > .row:first-child {
  padding-top: 40px;
}
.article-section.news aside img {
  max-height: 250px;
}
.article-section.news .news-content > p,
.article-section.news .news-content > h1,
.article-section.news .news-content > h2,
.article-section.news .news-content > h3,
.article-section.news .news-content > img {
  padding-left: 15px;
  padding-right: 15px;
}
.article-section.news .news-content p {
  font-family: Arial;
  line-height: 18px;
  font-size: 14px;
  padding-bottom: 20px;
}
.article-section.news .news-content p b {
  font-weight: bold;
}
.article-section.news .news-content h1 {
  color: #0053A7;
  font-size: 22px;
  line-height: 1.4;
  font-weight: bold;
  margin-top: 12px;
  margin-bottom: 12px;
}
.article-section.news .news-content h2 {
  color: #0053A7;
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
  margin-top: 12px;
  margin-bottom: 12px;
}
.article-section.news .news-content h3 {
  color: #0053A7;
  font-size: 18px;
  line-height: 1.4;
  font-weight: bold;
  margin-top: 12px;
  margin-bottom: 12px;
}
.article-section .article-wrapper {
  padding-left: 35px;
  padding-bottom: 40px;
  color: #333;
  font-family: Arial;
  min-height: 500px;
}
.article-section .article-wrapper article .gray-bg,
.article-section .article-wrapper article .gray-tile {
  background-color: #F0F0F0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding: 15px;
}
.article-section .article-wrapper article .gray-bg h3,
.article-section .article-wrapper article .gray-tile h3 {
  color: #555;
}
.article-section .article-wrapper article .gray-bg hr,
.article-section .article-wrapper article .gray-tile hr {
  border-bottom: solid 1px #ccc;
  margin: 0;
}
.article-section .article-wrapper article .gray-bg ul,
.article-section .article-wrapper article .gray-tile ul {
  margin-left: 0;
}
.article-section .article-wrapper article .gray-bg ul li,
.article-section .article-wrapper article .gray-tile ul li {
  display: inline-block;
  float: left;
  margin-right: 10px;
}
.article-section .article-wrapper article .tiles-row {
  margin-left: -10px;
  margin-right: -10px;
}
.article-section .article-wrapper article .tiles-row .col-xs-4 {
  padding-left: 10px;
  padding-right: 10px;
}
.article-section .article-wrapper article .gray-tile {
  margin-bottom: 20px;
}
.article-section .article-wrapper article .gray-tile h3 {
  font-size: 14px;
}
.article-section .article-wrapper article .gray-tile p {
  color: #888;
  font-size: 12px;
  padding-bottom: 15px;
  overflow: hidden;
}
.article-section .article-wrapper article .gray-tile a {
  font-size: 12px;
  padding-top: 10px;
}
.article-section .article-wrapper article .gray-tile > a {
  display: block;
}
.article-section .article-wrapper article ul {
  margin-left: 15px;
  margin-bottom: 20px;
}
.article-section .article-wrapper article ul li {
  list-style-type: disc;
  font-size: 14px;
  line-height: 18px;
  font-family: Arial;
}
.article-section .article-wrapper article ul.list-tick li {
  list-style-type: none;
  padding-left: 20px;
  background-image: url(/assets/icon-tick.png);
  background-repeat: no-repeat;
  background-position: 0px 2px;
}
.article-section .article-wrapper article h3 {
  color: #0053A7;
  font-size: 18px;
  line-height: 23px;
  font-weight: bold;
  padding-bottom: 16px;
}
.article-section .article-wrapper article img {
  max-width: 100%;
}
.article-section .article-wrapper.col-sm-12 {
  padding-right: 35px;
}
.article-section .article-wrapper h1 {
  font-size: 34px;
  line-height: 45px;
  font-weight: bold;
  margin-bottom: 25px;
}
.article-section .article-wrapper p {
  font-family: Arial;
  line-height: 18px;
  font-size: 14px;
  padding-bottom: 20px;
}
.article-section .article-wrapper p b {
  font-weight: bold;
}
.article-section .article-wrapper hr {
  margin-top: 5px;
  margin-bottom: 5px;
}
.article-section .article-wrapper .finance-tools {
  padding-top: 10px;
}
.article-section .article-wrapper .finance-tools h2 {
  font-size: 26px;
  line-height: 45px;
  font-weight: bold;
  margin-bottom: 15px;
}
.article-section .article-wrapper .finance-tools .btn-blue {
  width: 100%;
  padding: 14px 25px;
}
.article-section .article-wrapper .finance-tools .btn-blue:after {
  display: none;
}
.article-section .article-wrapper .finance-tools .tool-heading {
  text-align: center;
  background-color: white;
  border: solid 1px #ccc;
  padding: 12px 0;
  padding: 16px 0;
  font-family: arial;
  font-size: 15px;
  font-weight: bold;
  border-bottom: solid 5px #ccc;
  cursor: pointer;
}
.article-section .article-wrapper .finance-tools .tool-heading:hover {
  background-color: #f3f3f3;
}
.article-section .article-wrapper .finance-tools .tool-heading i {
  color: #004283;
  margin-left: 15px;
  font-size: 19px;
  line-height: 10px;
}
.article-section .article-wrapper .finance-tools .tool-heading.closed i:before {
  content: "\f077";
}
.article-section .article-wrapper .finance-tools .tool-body {
  background-color: #f4f4f4;
  padding: 20px 0px;
  display: none;
  font-family: Arial;
}
.article-section .article-wrapper .finance-tools .tool-body.active {
  display: block;
}
.article-section .article-wrapper .finance-tools .tool-body .disclaimer {
  color: #666;
  font-size: 11px;
  margin-bottom: 40px;
  line-height: 18px;
  display: block;
  clear: both;
  margin-bottom: 0;
  padding-bottom: 0;
  margin-left: 25px;
  margin-right: 25px;
}
.article-section .article-wrapper .finance-tools .tool-body .col-lg-6 {
  padding-bottom: 20px;
  padding-left: 25px;
  padding-right: 25px;
}
.article-section .article-wrapper .finance-tools .tool-body .col-lg-6 label {
  font-size: 14px;
  color: #555;
  display: block;
  line-height: 25px;
  width: 100%;
}
.article-section .article-wrapper .finance-tools .tool-body .col-lg-6 label span {
  display: inline-block;
  float: right;
  color: #333;
  font-weight: bold;
}
.article-section .article-wrapper .finance-tools .tool-body .col-lg-6 label.financed {
  font-weight: bold;
}
.article-section .article-wrapper .finance-tools .tool-body .col-lg-6 label.repayments {
  color: #004283;
  font-weight: bold;
}
.article-section .article-wrapper .finance-tools .tool-body .col-lg-6 label.repayments span {
  color: #004283;
}
.article-section .article-wrapper .finance-tools .tool-body .col-lg-6 #field-rate,
.article-section .article-wrapper .finance-tools .tool-body .col-lg-6 #field-term,
.article-section .article-wrapper .finance-tools .tool-body .col-lg-6 #field-deposit,
.article-section .article-wrapper .finance-tools .tool-body .col-lg-6 #field-frequency {
  margin-top: 20px;
}
.article-section .article-wrapper .finance-tools .tool-body .tool-form {
  padding-bottom: 5px;
  overflow: hidden;
}
.noUi-horizontal {
  height: 10px;
}
.noUi-target {
  border: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: #777;
}
.noUi-origin.noUi-background {
  background-color: #777;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.noUi-connect {
  background-color: #0053A7;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  height: 10px;
  border-top: solid 3px #ccc;
  border-bottom: solid 3px #ccc;
}
.noUi-horizontal .noUi-handle {
  width: 30px;
  height: 35px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #0053A7;
  left: -15px;
  top: -13px;
  background-image: url(/assets/arrow-right-2.png);
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.noUi-horizontal .noUi-handle:before,
.noUi-horizontal .noUi-handle:after {
  display: none;
}
.noUi-horizontal .noUi-handle .tooltip {
  -webkit-animation: flipInBubble 300ms 0ms ease forwards;
  -moz-animation: flipInBubble 300ms 0ms ease forwards;
  -ms-animation: flipInBubble 300ms 0ms ease forwards;
  position: absolute;
  margin-top: -36px;
  width: 145px;
  color: white;
  font-size: 13px;
  padding: 6px 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin-left: -56px;
  background-color: #0053A7;
}
.noUi-horizontal .noUi-handle .tooltip:after {
  content: "\e252";
  font-family: 'Glyphicons Halflings';
  color: #0053A7;
  font-size: 15px;
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  left: 63px;
  bottom: -5px;
}
.noUi-horizontal .noUi-connect .noUi-handle {
  top: -16px;
}
@media (min-width: 768px) {
  .visible-1200 {
    display: block;
  }
  header .top-nav .nav-container {
    display: none;
  }
  header .top-info {
    font-weight: bold;
    font-size: 21px;
    margin-top: 24px;
    color: red;
    padding-left: 20px;
    position: relative;
    font-family: 'Arial black', 'Arial';
  }
  header .top-info img {
    position: absolute;
    margin-left: -20px;
    margin-top: 2px;
  }
  header .top-info .header-address {
    color: #555;
    font-size: 14px;
    font-weight: normal;
    width: 200px;
    position: absolute;
    font-family: arial;
    line-height: 18px;
    margin-top: 5px;
  }
  body.nav-active .sb-slidebar {
    top: 0;
    height: inherit;
  }
  body.sticky-header.nav-active .sb-slidebar {
    top: 0;
  }
  body.sticky-header .sb-slidebar .mega-menu {
    position: fixed;
  }
  body.sticky-header .sb-slidebar .mega-menu .first-level {
    margin-top: 40px;
  }
  body.nav-active header .top-nav > i {
    display: none;
  }
  .sb-slidebar {
    display: block;
    z-index: 10;
    width: 100%;
    background-color: transparent;
    position: relative;
    top: 0px;
    height: inherit;
    overflow: visible;
    -webkit-transform: none;
  }
  .sb-slidebar .mega-menu {
    background: none;
    padding: 0;
  }
  .sb-slidebar .mega-menu .first-level {
    right: 262px;
    margin-top: 64px;
    position: absolute;
  }
  .sb-slidebar .mega-menu .first-level > li {
    height: auto !important;
    width: auto;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 0;
  }
  .sb-slidebar .mega-menu .first-level > li:last-child {
    margin-right: 0;
  }
  .sb-slidebar .mega-menu .first-level > li > a {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: Arial;
    color: #666;
    padding-bottom: 13px;
    border-bottom: none;
  }
  .sb-slidebar .mega-menu .first-level > li > a:before {
    display: none;
  }
  .sb-slidebar .mega-menu .first-level > li .second-level {
    display: none;
  }
  .sb-slidebar .mega-menu .first-level > li .second-level li a {
    font-size: 14px;
    color: #1E92E5;
  }
  .sb-slidebar .mega-menu .first-level > li .second-level li a:hover {
    background-color: #eee;
  }
  .sb-slidebar .mega-menu .first-level > li:hover .second-level {
    display: block;
    position: absolute;
    top: 20px;
    background-color: white;
    padding: 5px 0;
    margin-left: -10px;
  }
  .sb-slidebar .mega-menu .first-level > li:hover .second-level li a {
    padding: 5px 12px;
    display: block;
    min-width: 140px;
  }
}
@media (max-width: 1199px) {
  .mega-menu .container .mega-right .first-level > li {
    max-width: 100%;
  }
  .sb-slidebar .mega-menu .first-level {
    right: 15px;
  }
  header .top-info {
    display: none;
  }
  .search-box .container .search-body .tab3 ul {
    width: 460px;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .make,
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .model {
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .model {
    max-width: 145px;
  }
  .details-section .details-row .main-features-wrapper .gallery-wrapper .gallery-nav .crsl-items {
    margin-right: 0;
  }
  .search-results .results-bg .results-list figure > a > img {
    max-height: 172px;
    min-height: 172px;
  }
}
@media (max-width: 991px) {
  header .logo img {
    width: 130px;
  }
  .sb-slidebar .mega-menu .first-level {
    margin-top: 49px;
  }
  .search-box .container .search-body .tab1 .new-search-combo {
    height: auto;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields {
    width: 100%;
    margin-right: 0;
    float: none;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .make,
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .model {
    width: auto;
    padding-left: 8px;
    padding-right: 8px;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .make:after,
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .model:after {
    display: none;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-year .year-label,
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-price .year-label,
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-year .price-label,
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-price .price-label {
    width: auto;
    padding-left: 8px;
    padding-right: 8px;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-year .year-label:after,
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-price .year-label:after,
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-year .price-label:after,
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-price .price-label:after {
    display: none;
  }
  .search-box .container .search-body .tab1 .new-search-combo .submit {
    width: 100%;
    float: none;
    display: block;
    margin-top: 8px;
  }
  .search-box .container .search-body .tab2 .field-budget {
    margin-left: 80px;
    margin-right: 80px;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .model {
    max-width: 120px;
  }
  .details-section .details-row .main-features-wrapper .gallery-wrapper {
    width: 100%;
  }
  .details-section .details-row .main-features-wrapper .main-features {
    width: 100%;
    margin-left: 0;
  }
  .details-section .details-row .enquiry-form-wrapper > h3 {
    padding-bottom: 40px;
  }
  .details-section .details-row .main-features-wrapper .main-features .price-label {
    display: none;
  }
  .details-section .details-row .pagetitle {
    margin-bottom: 10px;
  }
  .details-section .details-row .details > .price-label {
    display: block;
  }
  .details-section .details-row .enquiry-form-wrapper #vehicleLeadEnquiry .form-group.col-md-4 {
    padding-left: 15px;
  }
  .article-section > .container > .row {
    padding-top: 20px;
  }
  .article-section > .container > .row .subpage-title h1 {
    margin-left: 0;
    margin-right: 0;
  }
  .article-section .article-wrapper {
    padding-left: 15px;
  }
  .article-section .article-wrapper .finance-tools h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .article-section aside {
    padding-right: 15px;
  }
  .article-section aside > h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .enquiry-form-wrapper.margin-right-30 {
    margin-right: 0;
  }
  .article-section .article-wrapper h1 {
    font-size: 24px;
    line-height: 30px;
  }
  .article-section .article-wrapper.col-sm-12 {
    padding-right: 15px;
  }
  .search-results .results-bg .results-list figure > a > img {
    max-height: 128px;
    min-height: 128px;
  }
}
@media (max-width: 991px) and (min-width: 678px) {
  .search-results .results-bg .results-list figure > a {
    position: relative;
  }
  .search-results .results-bg .results-list figure > a img {
    margin-top: 41px;
  }
  .search-results .results-bg .results-list figure .price-tag {
    width: 100%;
    margin: 0;
    text-align: left;
    height: 41px;
  }
  .search-results .results-bg .results-list figure .price-tag span {
    position: absolute;
    top: 11px;
    right: 10px;
  }
  .sb-slidebar .mega-menu .first-level > li {
    margin-left: 6px;
    margin-right: 6px;
  }
  .sb-slidebar .mega-menu .first-level > li > a {
    font-size: 14px;
  }
}
.visible-767 {
  display: none;
}
@media (max-width: 767px) {
  .visible-767 {
    display: block;
  }
  .mega-menu {
    top: 90px;
  }
  .sb-slidebar .mega-menu .first-level > li {
    margin-left: 0;
  }
  body.sticky-search .search-box {
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
    top: 77px;
  }
  body.sticky-search .search-box .container {
    padding: 0 15px;
  }
  body.sticky-header header {
    height: 80px;
    min-height: 80px;
  }
  body.sticky-header header .logo a img {
    width: 110px;
  }
  body.sticky-header .banner {
    padding-top: 96px;
  }
  header {
    min-height: 90px;
  }
  header .container {
    padding-top: 20px;
  }
  header .row {
    margin: 0;
  }
  header .logo {
    padding-left: 0;
  }
  header .logo img {
    width: 120px;
  }
  header .top-nav {
    padding-top: 10px;
  }
  header .top-nav .nav-container label {
    line-height: 31px;
  }
  header .top-nav .nav-container .mobi-nav {
    display: block;
  }
  .mega-menu {
    padding: 0;
  }
  .mega-menu .container {
    padding: 0;
  }
  .mega-menu .container .row {
    margin: 0;
  }
  .mega-menu .container .row .col-xs-12 {
    padding: 0;
  }
  .mega-menu .container .first-level {
    display: block;
    float: none;
    clear: both;
    margin-top: 0;
  }
  .mega-menu .container .first-level > li {
    width: 100%;
    margin-right: 0;
  }
  .mega-menu .container .first-level > li:hover,
  .mega-menu .container .first-level > li .second-level {
    color: #fff;
    background-color: #555;
    margin-bottom: 0;
  }
  .mega-menu .container .first-level > li.open > a:after {
    content: '\e259';
  }
  .mega-menu .container .first-level > li.open ul {
    display: block;
  }
  .mega-menu .container .first-level > li > a {
    line-height: 40px;
    padding: 0;
    padding-left: 15px;
    margin-bottom: 0;
    background-color: #666;
    text-transform: uppercase;
  }
  .mega-menu .container .first-level > li > a:after {
    content: '\e258';
    font-family: 'Glyphicons Halflings';
    position: absolute;
    font-size: 12px;
    right: 15px;
  }
  .mega-menu .container .first-level > li > a.active {
    color: white;
  }
  .mega-menu .container .first-level > li ul {
    margin-bottom: 0;
    display: none;
  }
  .mega-menu .container .first-level > li ul li a {
    line-height: 40px;
    display: block;
    width: 100%;
    padding: 0;
    padding-left: 15px;
    border-bottom: solid 1px #ccc;
  }
  .mega-menu .container .first-level > li ul li a:hover {
    background-color: #f4f4f4;
  }
  .banner .transparent-btns_tabs {
    bottom: 10px;
  }
  .search-box {
    padding-bottom: 20px;
  }
  .search-box .container h2 {
    font-size: 22px;
  }
  .search-box .container h2.show-button {
    position: relative;
    margin-top: 15px;
    font-size: 22px;
  }
  .search-box .container h2.show-button:after {
    margin-left: 146px;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .make,
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .model {
    max-width: initial;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-year {
    width: 49%;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-price {
    width: 50%;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.year,
  .search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.price {
    margin-top: 129px;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.year > div #year-slider,
  .search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.price > div #year-slider,
  .search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.year > div #price-slider,
  .search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.price > div #price-slider {
    margin-left: 40px;
    margin-right: 40px;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.year > div #price-slider-value-min,
  .search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.price > div #price-slider-value-min,
  .search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.year > div #year-slider-value-min,
  .search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.price > div #year-slider-value-min {
    left: 30px;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.year > div #price-slider-value-max,
  .search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.price > div #price-slider-value-max,
  .search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.year > div #year-slider-value-max,
  .search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.price > div #year-slider-value-max {
    right: 30px;
  }
  .search-results .results-bg .results-list {
    width: auto;
  }
  .search-results .results-bg .results-list figure > a > img {
    max-height: 400px;
  }
  .banner.sub-banner {
    padding-bottom: 0px;
    min-height: initial;
  }
  .details-section > .container,
  .article-section > .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .details-section .details-row aside {
    padding-left: 0;
  }
  .details-section .details-row .vehicle-details-wrapper,
  .details-section .details-row .comments-wrapper,
  .details-section .details-row .feature-wrapper {
    margin-right: 0;
  }
  .enquiry-form-wrapper.margin-right-30 {
    margin-bottom: 30px;
  }
  #sb-site > section {
    background-color: #efefef;
  }
  #sb-site > section.sub-banner {
    background-color: #2D4163;
  }
}
@media (max-width: 700px) {
  .search-box .container .search-body > .tabs ul li a {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 640px) {
  .article-section .article-wrapper article .tiles-row .col-xs-4 {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .search-box .container .search-body .tab3 ul {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 350px;
  }
}
@media (max-width: 520px) {
  .search-box .container h2,
  .search-box .container h2.show-button {
    font-size: 20px;
    font-weight: normal;
    padding-right: 0;
  }
  .search-box .container h2 span,
  .search-box .container h2.show-button span {
    display: none;
  }
  .search-box .container h2:after,
  .search-box .container h2.show-button:after {
    left: inherit;
    margin-left: 0;
    right: 30px;
  }
  .banner .transparent-btns_tabs {
    display: none;
  }
  .brand-tiles .col-xs-6 {
    width: 100%;
  }
  .bottom-tiles .col-xs-6 {
    width: 100%;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .make {
    max-width: 160px;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .model {
    max-width: 145px;
  }
  .details-section .details-row .comments-wrapper dl dd {
    width: 100%;
  }
  .details-section .details-row .pagetitle {
    font-size: 18px;
    line-height: 25px;
  }
  .details-section .details-row .details > .price-label {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .search-box .container h2.show-button {
    padding-left: 15px;
    font-size: 18px;
    text-align: left;
  }
  .search-box .container h2.show-button:after {
    width: 50px;
    right: 15px;
  }
}
@media (max-width: 460px) {
  .search-box .container .search-body > .tabs {
    width: 101%;
  }
  .search-box .container .search-body > .tabs ul li a {
    width: auto;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 13px;
    font-weight: normal;
    font-weight: bold;
  }
  .search-box .container .search-body .tab1 .field-category ul li a {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 13px;
    font-weight: normal;
  }
  .search-box .container .search-body .tab2 .field-frequency ul li a {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 13px;
    font-weight: normal;
  }
  .search-box .container .search-body .tab2 .field-budget {
    margin-left: 40px;
    margin-right: 40px;
  }
  .search-box .container .search-body .tab3 ul {
    width: 230px;
  }
  .details-section .back-link-row {
    margin: 20px 10px;
  }
  .details-section .details-row {
    margin: 10px;
  }
  article .col-xs-3 {
    width: 100%;
  }
  article .col-xs-9 {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .search-box .container h2 {
    font-size: 17px;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-year {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .make {
    max-width: 110px;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-make-model .model {
    max-width: 85px;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .field-price {
    width: 100%;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.price > div #year-slider,
  .search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.year > div #year-slider,
  .search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.price > div #price-slider,
  .search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.year > div #price-slider {
    margin-left: 30px;
    margin-right: 30px;
  }
  .search-box .container .search-body .tab1 .new-search-combo .fields .dropdown-zone.price {
    margin-top: 199px;
  }
  .at-share-tbx-element.addthis_32x32_style .at-share-btn,
  .at-share-tbx-element.addthis_32x32_white_style .at-share-btn {
    width: 36px !important;
    height: 36px !important;
    margin-left: 5px;
  }
  .addthis_32x32_style .at4-icon,
  .addthis_32x32_white_style .at4-icon,
  .at-32x32 {
    width: 36px !important;
    height: 36px !important;
  }
  a.at-svc-facebook:before,
  a.at-svc-twitter:before,
  a.at-svc-compact:before {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
  .search-results .results-bg .sort-row .share-wrapper .pull-right > label {
    line-height: 36px;
  }
  .search-results .results-bg .sort-row .share-wrapper .pull-right .widget {
    width: 130px;
  }
}
