@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,400&amp;display=swap");
@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
:root {
  --nav-member-bg-color: #e1e1e1;
  --nav-a-color: #000;
  --background-gray-color: #f4f4f4;
  --primary-theme-color: #000;
  --secondary-theme-color: #003e93;
  --light-green-color: #e2fae1;
  --light-red-color: #fdeaea;
  --container-border: #e0e0e0;
  --white-container-bg: #fff;
  --yellow-orange: #fbb83c;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}
@media screen and (max-width: 425px) {
  body {
    font-size: 14px;
    line-height: 1.3em;
  }
}

p.small {
  font-size: 12px;
  line-height: 19px;
  opacity: 0.8;
}
p.small.opacity-1 {
  opacity: 1;
}

h4,
h4 b {
  font-weight: 900;
}

.blur {
  filter: blur(3px);
  -webkit-filter: blur(3px);
}

/* text Colors */
.green-color {
  color: var(--secondary-theme-color);
}

@media screen and (max-width: 767px) {
  h4 {
    font-size: 1em;
  }
}
sup {
  color: red;
  font-size: 0.9em;
  position: relative;
  top: -3px;
}

.size-5::before {
  font-size: 3em;
}

a,
button,
.btn {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1em;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

a,
a:focus,
a:hover {
  color: var(--secondary-theme-color);
}
a.color-black,
a:focus.color-black,
a:hover.color-black {
  color: #000;
  text-decoration: underline;
}

a.disabled {
  color: currentColor;
  cursor: not-allowed;
  text-decoration: none;
  pointer-events: none;
}

.btn-t {
  color: var(--secondary-theme-color);
  text-decoration: none;
  font-size: 14px;
}
.btn-t::before {
  margin-right: 8px;
  display: inline-block;
  position: relative;
  top: 1px;
}
.btn-t i {
  position: relative;
}
.btn-t:hover {
  text-decoration: underline;
}
.btn-t:hover i::before,
.btn-t:hover i::after {
  text-decoration: none;
}
.btn-t:hover i::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #fff;
  top: -1px;
  left: 0;
}
.btn-t:hover::before {
  text-decoration: none;
}
.btn-t.icon-arrow-right::before {
  margin-right: 0;
}
.btn-t.s-16 {
  font-size: 16px;
}
.btn-t.s-16::before {
  font-size: 12px;
}
.btn-t.disabled {
  pointer-events: none;
  opacity: 0.6;
  color: #666;
}
.btn-t.gray {
  color: #666;
}

.btn-link.c-green {
  color: var(--secondary-theme-color) !important;
}

.btn {
  border-radius: 60px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 24px 10px 24px;
  width: auto;
  line-height: 1em;
  font-weight: 700;
}
.btn[class^="icon-"]::before,
.btn[class*=" icon-"]::before {
  margin-right: 8px;
}
.btn[class^="icon-"]::after,
.btn[class*=" icon-"]::after {
  margin-left: 8px;
  display: block;
  width: 25px;
  height: 26px;
}
.btn.icon-arrow-right::before {
  margin-left: 10px;
  margin-right: 0;
}
.btn.icon-angle-double-right::after {
  height: unset;
  width: auto;
  font-size: 21px;
}
.btn.d-none {
  display: none;
}
@media screen and (min-width: 767px) {
  .btn.d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.btn:hover {
  text-decoration: none;
}
.btn.double-arrows::after {
  display: inline-block;
  content: "";
  width: 16px;
  height: 12px;
  margin: 0 0 0 12px;
  background: url(../images/icons/arrow-white-double.svg) 0 0 no-repeat;
  background-size: auto 12px;
  vertical-align: top;
}
.btn.rounded-3 {
  border-radius: 9px;
}

.btn:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
}

.btn-d-t {
  border: 1px dashed;
}

.green-border {
  border-color: var(--secondary-theme-color);
  color: var(--secondary-theme-color);
}
.green-border:hover {
  border: 1px solid var(--secondary-theme-color);
  background-color: var(--secondary-theme-color);
  color: #fff;
}

.f-green,
.f-green:focus {
  background-color: var(--secondary-theme-color);
  color: #fff;
  text-decoration: none;
}
.f-green:hover,
.f-green:focus:hover {
  background-color: #000;
  color: #fff;
}

.f-black {
  text-decoration: none;
  color: #fff;
  background-color: #000;
}
.f-black:hover {
  background-color: var(--secondary-theme-color);
  color: #fff;
}

.f-gray {
  background-color: #ededed;
  color: #505050;
}
.f-gray:hover {
  background-color: #d1d0d0;
}

.f-orange {
  color: var(--bs-warning);
}

.bg-orange {
  background-color: var(--bs-warning);
  color: #000;
}
.bg-orange::after,
.bg-orange::before {
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(6%)
    saturate(21%) hue-rotate(321deg) brightness(95%) contrast(99%);
  filter: brightness(0) saturate(100%) invert(0%) sepia(6%) saturate(21%)
    hue-rotate(321deg) brightness(95%) contrast(99%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.bg-orange:hover {
  color: #fff;
  background-color: #000;
}
.bg-orange:hover::after,
.bg-orange:hover::before {
  -webkit-filter: none;
  filter: none;
}

.btn.dis::before {
  font-size: 0.8em;
}

.btn.upgrade::before {
  font-size: 1.2em;
  position: relative;
  top: -1px;
}

.btn::before,
.btn-t::before {
  position: relative;
  top: -1px;
}
.btn.s-26,
.btn-t.s-26 {
  font-size: 12px;
  padding: 6px 12px 6px 12px;
  letter-spacing: 0.3px;
}
.btn.s-32,
.btn-t.s-32 {
  font-size: 14px;
  padding: 10px 24px 8px 24px;
}
.btn.s-32::before,
.btn.s-32::after,
.btn-t.s-32::before,
.btn-t.s-32::after {
  font-size: 14px;
}
.btn.s-32.double-arrows::before,
.btn.s-32.double-arrows::after,
.btn-t.s-32.double-arrows::before,
.btn-t.s-32.double-arrows::after {
  background-size: 11px 11px;
  width: 11px;
  height: 11px;
}
.btn.s-42,
.btn-t.s-42 {
  font-size: 16px;
  padding: 8px 24px;
}
.btn.s-46,
.btn-t.s-46 {
  font-size: 18px;
  padding: 12px 24px;
}
.btn.s-54,
.btn-t.s-54 {
  font-size: 20px;
  padding: 12px 24px;
}
.btn.s-58,
.btn-t.s-58 {
  font-size: 24px;
  padding: 12px 24px;
}

@media screen and (min-width: 575px) and (max-width: 1200px) {
  .btn.s-54::after {
    background-size: auto 11px;
  }
}
@media screen and (max-width: 425px) {
  .btn.s-26 {
    font-size: 12px;
    padding: 6px 12px;
    letter-spacing: 0.3px;
  }
  .btn.s-32 {
    font-size: 14px;
    padding: 10px 16px 8px 16px;
  }
  .btn.s-46:not(.max) {
    font-size: 14px;
    padding: 8px 16px 6px 16px;
  }
  .btn.s-54 {
    font-size: 16px;
    padding: 10px 20px;
  }
  .btn.double-arrows::after {
    width: 13px;
    height: 9px;
    margin: 0 0 0 10px;
    background-size: auto 9px;
    position: relative;
    top: -1px;
  }
}
.t-bold {
  font-weight: 700;
}

.btn.icon-arrow-right::after {
  display: none;
}

.action a.col-red,
.col-red {
  color: red;
}

.col-green {
  color: var(--secondary-theme-color);
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 0;
}

.dotted-style {
  border-style: dotted !important;
}

.white-container,
.sub-col .col {
  background-color: var(--white-container-bg);
  border: 1px solid var(--container-border);
  border-radius: 30px;
  padding: 40px 28px;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 575px) {
  .white-container,
  .sub-col .col {
    -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0);
  }
}
.white-container .inner,
.sub-col .col .inner {
  padding: 40px;
}
.white-container .b-right,
.sub-col .col .b-right {
  border-right: 1px solid var(--container-border);
}
.white-container .b-left,
.sub-col .col .b-left {
  border-left: 1px solid var(--container-border);
}
@media screen and (max-width: 767px) {
  .white-container .b-left,
  .sub-col .col .b-left {
    border-left: 0;
  }
}
.white-container .b-top,
.sub-col .col .b-top {
  border-top: 1px solid var(--container-border);
}
.white-container .b-bottom,
.sub-col .col .b-bottom {
  border-bottom: 1px solid var(--container-border);
}
.white-container.border-0,
.sub-col .col.border-0 {
  border: 0;
}
@media screen and (max-width: 575px) {
  .white-container,
  .sub-col .col {
    padding: 24px 12px;
  }
  .white-container .inner,
  .sub-col .col .inner {
    padding: 24px;
  }
}
@media screen and (max-width: 460px) {
  .white-container.m-0.main-search,
  .sub-col .col.m-0.main-search {
    padding: 16px 0 0 0;
  }
}
@media screen and (max-width: 425px) {
  .white-container,
  .sub-col .col {
    padding: 16px 6px;
  }
  .white-container .inner,
  .sub-col .col .inner {
    padding: 20px;
  }
}
.white-container.p-0,
.sub-col .col.p-0 {
  padding: 0;
}
.white-container.p-4,
.sub-col .col.p-4 {
  padding: 1.5rem;
}
.white-container.py-5,
.sub-col .col.py-5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.white-container.br-16,
.sub-col .col.br-16 {
  border-radius: 16px;
}
.white-container.p-24,
.sub-col .col.p-24 {
  padding: 24px;
}

.white-container .z-rows .row-item {
  padding: 18px 20px;
  margin: 0;
  font-size: 16px;
}
.white-container .z-rows .row-item div.col-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
}
.white-container .z-rows .row-item div.col-12:last-child {
  text-align: left;
}
.white-container .z-rows .row-item span {
  display: block;
  font-size: 13px;
}
.white-container .z-rows .row-item:nth-child(odd) {
  background-color: #f4f4f4;
  border-radius: 9px;
}
.white-container .z-rows .row-item:nth-child(odd) div {
  overflow-wrap: break-word;
}
.white-container.bg-transparent {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
}

@media screen and (max-width: 425px) {
  .white-container {
    border-radius: 16px;
  }
  .white-container.m-0.main-search {
    border-radius: 16px 16px 30px 30px;
  }
}
.bg-white {
  background-color: #fff;
}

.bg-gray {
  background-color: #f4f4f4;
}

.bg-green {
  background-color: #e7efe7;
  border: 1px solid var(--secondary-theme-color);
}

.bg-red {
  background-color: #fcf0f0;
  border: 1px solid #fe9090;
}

.bg-light-green {
  background-color: #dff2df;
}
.bg-light-green .main-search .nav .nav-link,
.bg-light-green .mb-search .nav .nav-link,
.bg-light-green .main-search .nav .nav-link.active,
.bg-light-green .mb-search .nav .nav-link.active {
  color: #000;
}

.ws-1 {
  margin-top: 8px;
}

.ws-2 {
  margin-top: 16px;
}

.ws-3 {
  margin-top: 24px;
}

.ws-4 {
  margin-top: 32px;
}

.ws-5 {
  margin-top: 40px;
}

.ws-6 {
  margin-top: 48px;
}

.ws-7 {
  margin-top: 56px;
}

.ws-8 {
  margin-top: 64px;
}

.ws-9 {
  margin-top: 72px;
}

.ws-10 {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .ws-1 {
    margin-top: 4px;
  }
  .ws-2 {
    margin-top: 8px;
  }
  .ws-3 {
    margin-top: 12px;
  }
  .ws-4 {
    margin-top: 16px;
  }
  .ws-5 {
    margin-top: 20px;
  }
  .ws-6 {
    margin-top: 24px;
  }
  .ws-7 {
    margin-top: 28px;
  }
  .ws-8 {
    margin-top: 32px;
  }
  .ws-9 {
    margin-top: 36px;
  }
  .ws-10 {
    margin-top: 40px;
  }
}
/*
@media screen and (max-width: 575px) {
    .ws-1.m-0 {
        margin-top: 0; //8px
    }
    .ws-2.m-0 {
        margin-top: 0; //16px
    }
    .ws-3.m-0 {
        margin-top: 0; //24px
    }
    .ws-4.m-0 {
        margin-top: 0; //32px
    }
    .ws-5.m-0 {
        margin-top: 0; //40px
    }
    .ws-6.m-0 {
        margin-top: 0; //48px
    }
    .ws-7.m-0 {
        margin-top: 0; //56px
    }
    .ws-8.m-0 {
        margin-top: 0; //64px
    }
    .ws-9.m-0 {
        margin-top: 0; //72px
    }
    .ws-10.m-0 {
        margin-top: 0; //80px
    }
}
*/
.sticky {
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top: -1px;
  z-index: 1;
}

.is-pinned .white-container {
  border-radius: 0 0 30px 30px;
}
@media screen and (max-width: 767px) {
  .is-pinned {
    padding-top: 7px;
    height: auto;
  }
}

.flag-img-16 {
  max-width: 16px;
  max-height: 16px;
}

.flag-img-24 {
  max-width: 24px;
  max-height: 24px;
}

.flag-img-32 {
  max-width: 32px;
  max-height: 32px;
}

.image.flexible {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  position: relative;
}
.image.flexible img {
  max-height: 100%;
  width: auto !important;
  display: block;
  position: absolute;
}
.image.flexible.b-radius {
  border-radius: 16px;
}
.image.flexible.v-cnt-align {
  height: 100%;
}

.page-not-found h1 {
  font-size: 80px;
  margin-bottom: 16px;
  font-weight: 900;
}
.page-not-found h1 span {
  color: #ccc;
}
.page-not-found h2 {
  font-size: 22px;
  margin-bottom: 40px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .page-not-found h1 {
    font-size: 40px;
  }
  .page-not-found h2 {
    font-size: 16px;
  }
  .page-not-found .image {
    padding: 64px 40px 40px 40px;
  }
}
.page-not-found .icon-home::before {
  font-size: 14px;
}
.page-not-found .icon-angle-double-left::before {
  font-size: 16px;
}
.page-not-found .image img {
  width: 100%;
  height: auto;
}

.test-border {
  border-radius: 40px;
  border: 4px dashed #000;
}

/* common */
.ribbon {
  width: 100px !important;
  height: 100px;
  overflow: hidden;
  position: absolute;
}

.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: 0;
  content: "";
  display: block;
  border: 3px solid #076303;
}

.ribbon span {
  position: absolute;
  display: block;
  width: 190px;
  padding: 6px 0;
  background-color: var(--secondary-theme-color);
  color: #fff;
  font-size: 12px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-align: center;
  font-weight: 700 !important;
}

/* top left*/
.ribbon-top-left {
  top: -10px;
  left: -10px;
}

.ribbon-top-left::before,
.ribbon-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}

.ribbon-top-left::before {
  top: 0;
  right: 0;
}

.ribbon-top-left::after {
  bottom: 0;
  left: 0;
}

.ribbon-top-left span {
  right: -25px;
  top: 30px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* top right*/
.ribbon-top-right {
  top: -7px;
  right: -7px;
}

.ribbon-top-right::before,
.ribbon-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}

.ribbon-top-right::before {
  top: 0;
  left: 17px;
}

.ribbon-top-right::after {
  bottom: 17px;
  right: 0;
}

.ribbon-top-right span {
  left: -25px;
  top: 20px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* bottom left*/
.ribbon-bottom-left {
  bottom: -10px;
  left: -10px;
}

.ribbon-bottom-left::before,
.ribbon-bottom-left::after {
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.ribbon-bottom-left::before {
  bottom: 0;
  right: 0;
}

.ribbon-bottom-left::after {
  top: 0;
  left: 0;
}

.ribbon-bottom-left span {
  right: -25px;
  bottom: 30px;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}

/* bottom right*/
.ribbon-bottom-right {
  bottom: -10px;
  right: -10px;
}

.ribbon-bottom-right::before,
.ribbon-bottom-right::after {
  border-bottom-color: transparent;
  border-right-color: transparent;
}

.ribbon-bottom-right::before {
  bottom: 0;
  left: 0;
}

.ribbon-bottom-right::after {
  top: 0;
  right: 0;
}

.ribbon-bottom-right span {
  left: -25px;
  bottom: 30px;
  -webkit-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

.badge {
  font-weight: 700;
  color: var(--secondary-theme-color);
}
.badge .bg-green {
  color: var(--secondary-theme-color);
}
.badge .bg-red {
  color: red;
}

.toast-container {
  z-index: 10000000000000000;
}
.toast-container .toast {
  font-size: 1em;
  line-height: 1.3em;
}
.toast-container .toast-body {
  line-height: 1.5em;
}
.toast-container .toast-header {
  color: #000;
}
.toast-container .toast-header i {
  color: #ff9900;
  font-size: 38px;
}
.toast-container .btn {
  line-height: 1em;
  padding: 8px 12px 6px 12px;
}
.toast-container .btn::after {
  position: relative;
  top: -1px;
  font-size: 16px;
}

/* Banners */
.banner-car-genius {
  background-color: #effff6;
  border: 0;
  color: #003d85;
  padding: 40px;
  width: 100%;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .banner-car-genius {
    padding: 24px;
  }
}
.banner-car-genius h2 {
  font-size: 1em;
  font-weight: 900;
  padding-right: 20px;
  margin-right: 16px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
.banner-car-genius h2 span {
  display: block;
  white-space: nowrap;
}
.banner-car-genius h2 b {
  color: var(--secondary-theme-color);
}
.banner-car-genius h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  right: 0;
  top: 0;
  height: 100%;
  background-color: #003d85;
}
@media screen and (max-width: 575px) {
  .banner-car-genius h2 {
    margin-right: 0;
    padding-left: 20px;
    text-align: left;
    margin-bottom: 16px;
  }
  .banner-car-genius h2 span {
    display: inline;
  }
  .banner-car-genius h2::after {
    right: auto;
    left: 0;
  }
}
.banner-car-genius p {
  font-size: 14px;
  line-height: 1.2em;
  margin: 0;
  padding: 0;
}
.banner-car-genius .phone-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 2px solid #003d85;
  border-radius: 40px;
  color: #003d85;
  font-size: 13px;
  font-weight: 700;
}
.banner-car-genius .phone-number i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 16px;
  height: 16px;
  background-color: #003d85;
  border-radius: 30px;
}
.banner-car-genius .phone-number i::before {
  font-size: 8px;
  color: #fff;
}
.banner-car-genius .phone-number span {
  white-space: nowrap;
  line-height: 1em;
}
.banner-car-genius .phone-number:hover {
  text-decoration: none;
  background-color: #003d85;
  color: #fff;
}
.banner-car-genius .data img {
  height: 30px;
  width: auto;
}
@media screen and (max-width: 575px) {
  .banner-car-genius .data {
    width: 100%;
    margin-top: 24px;
  }
}

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  /* color: #198754; */
  color: var(--bs-body-color);
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:focus {
  -webkit-transition: background-color 6000 0s 0s, color 600000s 0s;
  transition: background-color 6000 0s 0s, color 600000s 0s;
}

.was-validated .form-control:valid,
.form-control.is-valid,
.was-validated .form-control:invalid,
.form-control.is-invalid
  .was-validated
  .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"],
.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"] {
  border-color: transparent;
  padding-right: initial;
  background-image: initial;
  background-repeat: no-repeat;
}

.was-validated .form-control:valid,
.form-control.is-valid,
.was-validated .form-select:valid,
.form-select.is-valid {
  border-color: #e0e0e0 !important;
}

.was-validated .form-control:invalid,
.form-control.is-invalid,
.form-select.is-invalid,
.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus,
.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"],
.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"] {
  border-color: #dc3545;
}

.switchToggle input[type="checkbox"] {
  height: 0;
  width: 0;
  visibility: hidden;
  position: absolute;
}

.switchToggle label {
  cursor: pointer;
  text-indent: -9999px;
  width: 70px;
  max-width: 70px;
  height: 30px;
  background: #d1d1d1;
  display: block;
  border-radius: 100px;
  position: relative;
  line-height: 30px;
}

.switchToggle label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 90px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.switchToggle input:checked + label,
.switchToggle input:checked + input + label {
  background: var(--secondary-theme-color);
}

.switchToggle input + label:before,
.switchToggle input + input + label:before,
.switchToggle input:checked + label:before,
.switchToggle input:checked + input + label:before {
  position: absolute;
  top: 1px;
  width: 26px;
  height: 26px;
  border-radius: 90px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-indent: 0;
  color: #fff;
  font-size: 14px;
}

.switchToggle input + label:before,
.switchToggle input + input + label:before {
  content: "Off";
  left: 35px;
}

.switchToggle input:checked + label:before,
.switchToggle input:checked + input + label:before {
  content: "On";
  left: 10px;
}

.switchToggle input:checked + label:after,
.switchToggle input:checked + input + label:after {
  left: calc(100% - 2px);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

.switchToggle label:active:after {
  width: 60px;
}

.toggle-switchArea {
  margin: 10px 0 10px 0;
}

.label-style {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
}

.form-select,
.form-input,
.form-control,
.btn-check-style {
  padding: 16px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 7px;
  font-size: 16px;
  color: #191919;
  width: 100%;
  text-transform: initial;
  height: auto;
  line-height: normal;
  margin: 0;
  font-weight: 700;
}

.form-select {
  display: block;
  background-image: url(../images/icons/down-arrow.svg) !important;
  background-repeat: no-repeat;
  background-size: 18px 14px;
}

.form-select.fw-normal {
  font-weight: 400;
}
.form-select.fw-normal option:first-child {
  opacity: 0;
  display: none;
}

.form-label {
  padding: 0;
  height: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 6px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.form-label a {
  margin-left: 8px !important;
  display: inline-block;
  text-decoration: none;
  width: 14px;
  overflow: hidden;
  color: transparent;
}
.form-label a::before {
  color: var(--secondary-theme-color);
  font-size: 12px;
  margin-right: 4px;
  padding-left: 1px;
}
.form-label a:hover::before {
  color: #000;
}

.search-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  position: relative;
}
.search-group span {
  position: absolute;
  bottom: -30px;
  right: 0;
  padding: 2px 8px;
  border-radius: 9px;
  background-color: red;
  font-size: 14px;
  display: none;
  color: #fff;
  z-index: 9999;
}
.search-group span::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: red;
  position: absolute;
  top: -6px;
  right: 16px;
}
.search-group.err {
  position: relative;
}
.search-group.err span,
.search-group.err span:not(:empty) {
  display: block;
}

.exp-info {
  position: absolute;
  background-color: #fff;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid var(--container-border);
  bottom: 40px;
  width: 70%;
  right: 0;
  z-index: 50;
  font-size: 12px;
  line-height: 19px;
  text-align: left;
  padding: 16px;
  text-transform: initial;
  white-space: initial;
  border-radius: 9px 9px 9px 0;
  overflow: hidden;
  font-weight: 400;
  display: none;
}
.exp-info a {
  position: absolute;
  right: 8px;
  top: 8px;
}
.exp-info::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent transparent var(--secondary-theme-color) transparent;
  left: -1px;
  bottom: 0;
  position: absolute;
}

.com-filed {
  background-color: #fff;
  border-radius: 7px;
  border: 1px solid #c2c2c2;
  font-size: 16px;
  padding: 10px 12px;
  font-weight: 400;
  background-position: right 12px center;
  position: relative;
  z-index: 1;
}

.form-group {
  position: relative;
}
.form-group::before {
  text-align: center;
  line-height: 16px;
  position: absolute;
  right: 8px;
  display: block;
  width: 16px;
  height: 16px;
  z-index: 20;
  bottom: 10px;
  color: #cccccc;
}

.form-check-input:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  position: relative;
}
.form-check-input.switch:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid var(--container-border);
  position: relative;
  background-image: url(../images/icons/circle-gray.svg) !important;
}
.form-check-input.switch:checked {
  background-color: var(--secondary-theme-color);
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  position: relative;
}
.form-check-input.switch:checked:focus {
  background-image: url(../images/icons/circle.svg) !important;
}

.form-check input,
.form-check label {
  cursor: pointer;
}
.form-check.d-flex label {
  line-height: 1em;
  margin: 0;
  padding: 0;
}
.form-check.d-flex input[type="radio"] {
  margin: -2px 10px 0 -1.5em;
  padding: 0;
}

input:focus,
button:focus,
textarea:focus,
select:focus,
.form-select:focus {
  background-color: #fff;
  border-color: #e0e0e0;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0) !important;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0) !important;
}

input:focus::-webkit-input-placeholder {
  color: transparent !important;
}

input:focus::-moz-placeholder {
  color: transparent !important;
}

input:focus:-ms-input-placeholder {
  color: transparent !important;
}

input:focus::-ms-input-placeholder {
  color: transparent !important;
}

input:focus::placeholder {
  color: transparent !important;
}

select {
  background: url(../images/icons/select.svg) no-repeat right;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.form-check-input:checked {
  background-color: var(--secondary-theme-color);
  border-color: var(--secondary-theme-color);
}

.range {
  width: 100%;
  padding: 0;
  margin: 8px 0 0 0;
}
.range .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 16px;
}

.icon-briefcase:before {
  content: "\ea1d";
}

.icon-copy:before {
  content: "\ea1a";
}

.icon-plus-solo:before {
  content: "\e9e2";
}

.icon-minus:before {
  content: "\e9e1";
}

.icon-price-tag:before {
  content: "\ea19";
}

.icon-code:before {
  content: "\ea13";
}

.icon-upgrade:before {
  content: "\ea14";
}

.icon-check-circle:before {
  content: "\ea16";
}

.icon-check-square:before {
  content: "\ea17";
}

.icon-check3:before {
  content: "\ea18";
}

.icon-check2:before {
  content: "\ea15";
}

.icon-bullet:before {
  content: "\ea10";
}

.icon-article-info:before {
  content: "\ea0f";
}

.icon-car-circle:before {
  content: "\ea11";
}

.icon-dollar-coin:before {
  content: "\ea12";
}

.icon-vin-filled:before {
  content: "\ea0e";
}

.icon-plate-filled:before {
  content: "\ea0d";
}

.icon-plate-icon:before {
  content: "\ea0c";
}

.icon-user-o:before {
  content: "\ea08";
}

.icon-file1:before {
  content: "\e9f4";
}

.icon-close:before {
  content: "\ea07";
}

.icon-bin:before {
  content: "\ea05";
}

.icon-add-user:before {
  content: "\ea06";
}

.icon-car-report:before {
  content: "\ea04";
}

.icon-residual:before {
  content: "\ea02";
}

.icon-piechart_dollar:before {
  content: "\ea03";
}

.icon-package:before {
  content: "\e9de";
}

.icon-quotation:before {
  content: "\ea01";
}

.icon-vin-icon:before {
  content: "\e9e3";
}

.icon-car-loop:before {
  content: "\e9df";
}

.icon-accident:before {
  content: "\e946";
}

.icon-alert:before {
  content: "\e948";
  z-index: 2;
}

i.icon-alert {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
i.icon-alert::after {
  content: "";
  width: 8px;
  height: 60%;
  position: absolute;
  border-radius: 8px 8px 0 0;
  z-index: 1;
}
i.icon-alert.f-orange::after {
  background-color: black;
}

.icon-area:before {
  content: "\e94a";
}

.icon-avatar:before {
  content: "\e99c";
}

.icon-award:before {
  content: "\e99d";
}

.icon-bathroom:before {
  content: "\e99e";
}

.icon-bedroom:before {
  content: "\e99f";
}

.icon-brake:before {
  content: "\e9a0";
}

.icon-calendar:before {
  content: "\e9a1";
}

.icon-calendar_dollar:before {
  content: "\e9a2";
}

.icon-car_alert:before {
  content: "\e9a3";
}

.icon-car_damaged1:before {
  content: "\e9a4";
}

.icon-car_damaged2:before {
  content: "\e9a5";
}

.icon-car_door:before {
  content: "\e9a6";
}

.icon-car_drive:before {
  content: "\e9a7";
}

.icon-car_half:before {
  content: "\e9a8";
}

.icon-car_safety:before {
  content: "\e9a9";
}

.icon-car_scale:before {
  content: "\e9aa";
}

.icon-car_seat:before {
  content: "\e9ab";
}

.icon-car_tool:before {
  content: "\e9ac";
}

.icon-car_trim:before {
  content: "\e9ad";
}

.icon-car_type:before {
  content: "\e9ae";
}

.icon-car_umbrella:before {
  content: "\e9af";
}

.icon-cars:before {
  content: "\e9b0";
}

.icon-certificate:before {
  content: "\e9b1";
}

.icon-city:before {
  content: "\e9b2";
}

.icon-color_exterior:before {
  content: "\e9b3";
}

.icon-color_interior:before {
  content: "\e9b4";
}

.icon-court:before {
  content: "\e9b5";
}

.icon-crane_home:before {
  content: "\e9b6";
}

.icon-document_dollar:before {
  content: "\e9b7";
}

.icon-document_stamp:before {
  content: "\e9b8";
}

.icon-dollar1:before {
  content: "\e9b9";
}

.icon-dollar_arrows:before {
  content: "\e9ba";
}

.icon-engine1:before {
  content: "\e9bb";
}

.icon-entertainment:before {
  content: "\e9bc";
}

.icon-factory:before {
  content: "\e9bd";
}

.icon-fire:before {
  content: "\e9be";
}

.icon-flood:before {
  content: "\e9bf";
}

.icon-fuel-bold:before {
  content: "\e9c0";
}

.icon-gavel:before {
  content: "\e9c1";
}

.icon-gears:before {
  content: "\e9c2";
}

.icon-hail:before {
  content: "\e9c3";
}

.icon-hand_dollar:before {
  content: "\e9c4";
}

.icon-highway:before {
  content: "\e9c5";
}

.icon-home:before {
  content: "\e9c6";
}

.icon-home_dollar:before {
  content: "\e9c7";
}

.icon-home_percent:before {
  content: "\e9c8";
}

.icon-home_scale:before {
  content: "\e9c9";
}

.icon-home_tag:before {
  content: "\e9ca";
}

.icon-key:before {
  content: "\e9cb";
}

.icon-list1:before {
  content: "\e9cc";
}

.icon-market:before {
  content: "\e9cd";
}

.icon-odometer:before {
  content: "\e9ce";
}

.icon-odometer_alert:before {
  content: "\e9cf";
}

.icon-options:before {
  content: "\e9d0";
}

.icon-pin:before {
  content: "\e9d1";
}

.icon-pin_car:before {
  content: "\e9d2";
}

.icon-police:before {
  content: "\e9d3";
}

.icon-saltwater:before {
  content: "\e9d4";
}

.icon-stamp:before {
  content: "\e9d5";
}

.icon-steering_wheel:before {
  content: "\e9d6";
}

.icon-tag:before {
  content: "\e9d7";
}

.icon-test:before {
  content: "\e9d8";
}

.icon-tire:before {
  content: "\e9d9";
}

.icon-tools1:before {
  content: "\e9da";
}

.icon-transmission-bold:before {
  content: "\e9db";
}

.icon-user1:before {
  content: "\e9dc";
}

.icon-vandalism:before {
  content: "\e9dd";
}

.icon-article:before {
  content: "\e999";
}

.icon-review:before {
  content: "\e99a";
}

.icon-coin1:before {
  content: "\e99b";
}

.icon-star:before {
  content: "\e977";
}

.icon-car-engine-light:before {
  content: "\e978";
}

.icon-drivetrain-light:before {
  content: "\e979";
}

.icon-breaks-light:before {
  content: "\e97a";
}

.icon-steering-wheel-light:before {
  content: "\e97b";
}

.icon-full-screen-light:before {
  content: "\e97c";
}

.icon-warranty-light:before {
  content: "\e97d";
}

.icon-bluetooth-light:before {
  content: "\e97e";
}

.icon-convertible-car-light:before {
  content: "\e97f";
}

.icon-arrows-size-dimension-resize-interface:before {
  content: "\e980";
}

.icon-calendar-light:before {
  content: "\e981";
}

.icon-car1:before {
  content: "\e982";
}

.icon-car-climate-light:before {
  content: "\e983";
}

.icon-leg-light:before {
  content: "\e984";
}

.icon-car-lights-light:before {
  content: "\e985";
}

.icon-car-side-light:before {
  content: "\e986";
}

.icon-chair-light:before {
  content: "\e987";
}

.icon-dollar-light:before {
  content: "\e988";
}

.icon-fuel-tank-light:before {
  content: "\e989";
}

.icon-globe-light:before {
  content: "\e98a";
}

.icon-head-light:before {
  content: "\e98b";
}

.icon-navigator:before {
  content: "\e98c";
}

.icon-plus-light:before {
  content: "\e98d";
}

.icon-thef-light:before {
  content: "\e98e";
}

.icon-tires-light:before {
  content: "\e98f";
}

.icon-tools1-light:before {
  content: "\e990";
}

.icon-transmission-light:before {
  content: "\e991";
}

.icon-warranty:before {
  content: "\e992";
}

.icon-play:before {
  content: "\e976";
}

.icon-shopping-bag-empty:before {
  content: "\e974";
}

.icon-up-arrow:before {
  content: "\e96f";
}

.icon-corner-bottom:before {
  content: "\e96c";
}

.icon-monitoring:before {
  content: "\e967";
}

.icon-filter3:before {
  content: "\ea1c";
}

.icon-mrketplace:before {
  content: "\e968";
}

.icon-settings:before {
  content: "\e969";
}

.icon-user:before {
  content: "\e96a";
}

.icon-support_1:before {
  content: "\e96b";
}

.icon-wd:before {
  content: "\e900";
}

.icon-arroba:before {
  content: "\e901";
}

.icon-bar-chart:before {
  content: "\e902";
}

.icon-bell-light:before {
  content: "\e903";
}

.icon-bell:before {
  content: "\e904";
}

.icon-box:before {
  content: "\e905";
}

.icon-calculator:before {
  content: "\e906";
}

.icon-camera:before {
  content: "\e907";
}

.icon-car:before {
  content: "\e908";
}

.icon-car_damaged:before {
  content: "\e909";
}

.icon-car_warning:before {
  content: "\e90a";
}

.icon-car-crash-1:before {
  content: "\e90b";
}

.icon-car-crash:before {
  content: "\e90d";
}

.icon-car-wheel:before {
  content: "\e90e";
}

.icon-chat:before {
  content: "\e90f";
}

.icon-check:before {
  content: "\e910";
}

.icon-check1:before {
  content: "\e911";
}

.icon-coin:before {
  content: "\e912";
}

.icon-coloring-tool:before {
  content: "\e913";
}

.icon-colour:before {
  content: "\e914";
}

.icon-credit-card:before {
  content: "\e915";
}

.icon-customer:before {
  content: "\e916";
}

.icon-data-analytics:before {
  content: "\e917";
}

.icon-discount-1:before {
  content: "\e918";
  font-size: 12px !important;
}

.icon-discount:before {
  content: "\e919";
}

.icon-document:before {
  content: "\e91a";
}

.icon-dollar:before {
  content: "\e91b";
}

.icon-dollar-symbol:before {
  content: "\e91c";
}

.icon-down-arrow:before {
  content: "\e91d";
}

.icon-down-up-arrow:before {
  content: "\e91d";
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-download:before {
  content: "\e91e";
}

.icon-edit:before {
  content: "\e91f";
}

.icon-engine:before {
  content: "\e920";
}

.icon-error:before {
  content: "\e921";
}

.icon-explore:before {
  content: "\e922";
}

.icon-faq:before {
  content: "\e923";
}

.icon-file:before {
  content: "\e924";
}

.icon-files:before {
  content: "\e925";
}

.icon-gas-station-1:before {
  content: "\e926";
}

.icon-gas-station:before {
  content: "\e927";
}

.icon-graph:before {
  content: "\e928";
}

.icon-grid:before {
  content: "\e929";
}

.icon-growth-chart:before {
  content: "\e92a";
}

.icon-history:before {
  content: "\e92b";
}

.icon-home-icon-silhouette:before {
  content: "\e92c";
}

.icon-icn_bubbles:before {
  content: "\e92d";
}

.icon-image:before {
  content: "\e92e";
}

.icon-infinity:before {
  content: "\e92f";
}

.icon-info:before {
  content: "\e930";
}

.icon-info-button:before {
  content: "\e931";
}

.icon-investigation:before {
  content: "\e932";
}

.icon-invoice:before {
  content: "\e933";
}

.icon-letter:before {
  content: "\e934";
}

.icon-like:before {
  content: "\e935";
}

.icon-likel:before {
  content: "\e936";
}

.icon-list:before {
  content: "\e937";
}

.icon-list-text:before {
  content: "\e938";
}

.icon-loading:before {
  content: "\e939";
}

.icon-magnifier:before {
  content: "\e93a";
}

.icon-magnifying-glass:before {
  content: "\e93b";
}

.icon-manufacturing:before {
  content: "\e93c";
}

.icon-maps:before {
  content: "\e93d";
}

.icon-mastercard:before {
  content: "\e93e";
}

.icon-original:before {
  content: "\e93f";
}

.icon-phone:before {
  content: "\e940";
}

.icon-photo-camera-interface-symbol-for-button:before {
  content: "\e941";
}

.icon-pie-chart:before {
  content: "\e942";
}

.icon-placeholder:before {
  content: "\e943";
}

.icon-pointer:before {
  content: "\e944";
}

.icon-private-garage:before {
  content: "\e945";
}

.icon-profile:before {
  content: "\e947";
}

.icon-profit-report:before {
  content: "\e949";
}

.icon-protection:before {
  content: "\e94b";
}

.icon-r2_control_pdf:before {
  content: "\e94c";
}

.icon-r2_control_print:before {
  content: "\e94d";
}

.icon-repeat:before {
  content: "\e94e";
}

.icon-report-1:before {
  content: "\e94f";
}

.icon-report:before {
  content: "\e950";
}

.icon-right-arrow:before {
  content: "\e951";
}

.icon-right-arrow-gros:before {
  content: "\e952";
}

.icon-right-arrows:before {
  content: "\e953";
}

.icon-search-1:before {
  content: "\e954";
}

.icon-search-2:before {
  content: "\e955";
}

.icon-search:before {
  content: "\e956";
}

.icon-searcher:before {
  content: "\e957";
}

.icon-setting:before {
  content: "\e958";
}

.icon-share1:before {
  content: "\e959";
}

.icon-shield:before {
  content: "\e95a";
}

.icon-shopping-bag:before {
  content: "\e95b";
}

.icon-speedometer:before {
  content: "\e95c";
}

.icon-sports-car:before {
  content: "\e95d";
}

.icon-stop:before {
  content: "\e95e";
}

.icon-symbols:before {
  content: "\e95f";
}

.icon-telephone:before {
  content: "\e960";
}

.icon-tools:before {
  content: "\e961";
}

.icon-trending:before {
  content: "\e962";
}

.icon-view:before {
  content: "\e963";
}

.icon-wallet:before {
  content: "\e964";
}

.icon-warning:before {
  content: "\e965";
}

.icon-zoom-in:before {
  content: "\e966";
}

.icon-share:before {
  content: "\e997";
}

.icon-social:before {
  content: "\e997";
}

.icon-remove_red_eye:before {
  content: "\e998";
}

.icon-visibility:before {
  content: "\e998";
}

.icon-add-solid:before {
  content: "\e994";
}

.icon-chevron-thin-up:before {
  content: "\e975";
}

.icon-facebook-logo:before {
  content: "\e971";
}

.icon-instagram:before {
  content: "\e972";
}

.icon-twitter-1:before {
  content: "\e973";
}

.icon-chevron-thin-right:before {
  content: "\e970";
}

.icon-chevron-thin-down:before {
  content: "\e96d";
}

.icon-sign-out:before {
  content: "\e996";
}

.icon-plus-circle:before {
  content: "\e995";
}

.icon-filter:before {
  content: "\e993";
}

.icon-cancel:before {
  content: "\e96e";
}

.icon-engine2:before {
  content: "\e920";
}

.icon-loading:before {
  content: "\e939";
}

.icon-remove_red_eye:before {
  content: "\e998";
}

.icon-letter:before {
  content: "\e934";
}

.icon-coloring-tool:before {
  content: "\e913";
}

.icon-sign-out:before {
  content: "\e996";
}

.icon-miles:before {
  content: "mi.";
  font-family: "Roboto";
  font-weight: 700;
}

.icon-dashboard::before {
  content: "\e929";
}

.icon-reports::before {
  content: "\e924";
}

.icon-account::before {
  content: "\e96a";
}

.icon-monitoring::before {
  content: "\e967";
}

.icon-loop-more::before {
  content: "\e966";
}

.icon-marketplace::before {
  content: "\e968";
}

.icon-tools::before {
  content: "\e969";
}

.icon-support::before {
  content: "\e96b";
}

.icon-share-bold:before {
  content: "\e997";
}

.icon-maps::before {
  content: "\e93d";
}

.icon-list:before {
  content: "\e937";
}

.icon-likel:before {
  content: "\e936";
}

.icon-invoice::before {
  content: "\e933";
}

.icon-search-1::before {
  content: "\e93a";
}

.icon-coin1:before {
  content: "\e99b";
}

.icon-arrow-right-1::before {
  content: "\e953";
}

.icon-review:before {
  content: "\e99a";
}

.icon-camera::before {
  content: "\e941";
}

.icon-article:before {
  content: "\e999";
}

.icon-sports-car:before {
  content: "\e95d";
}

.icon-search::before {
  content: "\e93b";
}

.icon-info::before {
  content: "\e930";
}

.icon-news::before {
  content: "\e924";
}

.icon-report-1:before {
  content: "\e94f";
}

.icon-customer:before {
  content: "\e916";
}

.icon-searcher:before {
  content: "\e957";
}

.icon-shield:before {
  content: "\e95a";
}

.icon-car-crash-2:before {
  content: "\e90c";
}

.icon-warning:before {
  content: "\e965";
}

.icon-repeat:before {
  content: "\e94e";
}

.icon-manufacturing:before {
  content: "\e93c";
}

.icon-prev::before {
  content: "\e951";
  display: inline-block;
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-next::before {
  content: "\e951";
}

.icon-corrner::before {
  content: "\e96c";
}

.icon-phone::before {
  content: "\e940";
}

.icon-pin::before {
  content: "\e943";
}

.icon-awd::before {
  content: "\e900";
}

.icon-view::before {
  content: "\e963";
}

.icon-download::before {
  content: "\e91e";
}

.icon-monitor::before {
  content: "\e903";
}

.icon-user::before {
  content: "\e96a";
}

.icon-checkmark::before {
  content: "\e910";
}

.icon-card::before {
  content: "\e915";
}

.icon-edit::before {
  content: "\e91f";
}

.icon-dollar::before {
  content: "\e91c";
}

.icon-dollar-cercle:before {
  content: "\e91b";
}

.icon-calc::before {
  content: "\e906";
}

.icon-speedometer:before {
  content: "\e95c";
}

.icon-more::before {
  content: "\e995";
}

.icon-pdf::before {
  content: "\e94c";
}

.icon-print::before {
  content: "\e94d";
}

.icon-cancel::before {
  content: "\e96e";
}

.icon-report-history::before {
  content: "\e92b";
}

.icon-alerts::before {
  content: "\e904";
}

.icon-gas::before {
  content: "\e927";
}

.icon-car::before {
  content: "\e908";
}

.icon-recall::before {
  content: "\e90a";
}

.icon-photo::before {
  content: "\e92e";
}

.icon-settings::before {
  content: "\e958";
}

.icon-stats::before {
  content: "\e902";
}

.icon-mon-cars::before {
  content: "\e967";
}

.icon-arrw-down::before {
  content: "\e96d";
}

.icon-arrw-up::before {
  content: "\e96f";
}

.icon-stop::before {
  content: "\e95e";
}

.icon-email::before {
  content: "\e901";
}

.icon-share::before {
  content: "\e959";
}

.icon-facebook::before {
  content: "\e971";
}

.icon-twitter::before {
  content: "\e973";
}

.icon-instagram::before {
  content: "\e972";
}

.icon-wallet::before {
  content: "\e964";
}

.icon-arrow-right::before {
  content: "\e970";
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.icon-bag::before {
  content: "\e974";
}

.icon-faq::before {
  content: "\e92d";
}

.icon-car1::before {
  content: "\e982";
}

.icon-model::before {
  content: "\e986";
}

.icon-configuration::before {
  content: "\e961";
}

.icon-original::before {
  content: "\e93f";
}

.icon-settings1::before {
  content: "\e990";
}

.icon-globe::before {
  content: "\e98a";
}

.icon-engine::before {
  content: "\e978";
}

.icon-transmission::before {
  content: "\e991";
}

.icon-fuel::before {
  content: "\e926";
}

.icon-driveline::before {
  content: "\e979";
}

.icon-discount::before {
  content: "\e919";
}

.icon-fuel-tank::before {
  content: "\e989";
}

.icon-breaking::before {
  content: "\e97a";
}

.icon-steering::before {
  content: "\e97b";
}

.icon-filter::before {
  content: "\e993";
}

.icon-tires::before {
  content: "\e98f";
}

.icon-headroom::before {
  content: "\e98b";
}

.icon-safety::before {
  content: "\e97d";
}

.icon-interior-trim::before {
  content: "\e987";
}

.icon-color::before {
  content: "\e914";
}

.icon-dimenssions::before {
  content: "\e980";
}

.icon-capacity::before {
  content: "\e97c";
}

.icon-warranty::before {
  content: "\e992";
}

.icon-dollar-light::before {
  content: "\e988";
}

.icon-thef::before {
  content: "\e98e";
}

.icon-car-roof::before {
  content: "\e97f";
}

.icon-car-climate::before {
  content: "\e983";
}

.icon-inter-feature::before {
  content: "\e977";
}

.icon-inter-communication::before {
  content: "\e97e";
}

.icon-navigation::before {
  content: "\e98c";
}

.icon-lighting::before {
  content: "\e985";
}

.icon-legroom::before {
  content: "\e984";
}

.icon-plus::before {
  content: "\e98d";
}

.i-bg-titlerecords::before {
  background-image: url(../images/icons/title-records.svg);
}

.i-bg-records::before {
  background-image: url(../images/icons/records.svg);
}

.i-bg-safety::before {
  background-image: url(../images/icons/safety.svg);
}

.i-bg-car-inspection::before {
  background-image: url(../images/icons/car-inspection.svg);
  background-size: auto 40px;
}

.i-bg-problemchk::before {
  background-image: url(../images/icons/problem-chk.svg);
}

.i-bg-pricing::before {
  background-image: url(../images/icons/incs-icn-08.svg);
}

.i-bg-autospec::before {
  background-image: url(../images/icons/incs-icn-09.svg);
}

.i-bg-carinfo::before {
  background-image: url(../images/icons/incs-icn-10.svg);
}

.i-bg-warranties::before {
  background-image: url(../images/svg/warranties.svg);
}

.i-bg-border-warranties::before {
  background-image: url(../images/svg/warranty-border-green.svg);
}

.i-bg-recall::before {
  background-image: url(../images/svg/car-recall.svg);
}

.icon-calendar:before {
  content: "\e981";
}

.icon-license-plate:before {
  content: "\ea1b";
}

.icon-angle-double-right::after {
  content: "\f101";
}

.icon-angle-double-left::before {
  content: "\f101";
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-lock:before {
  content: "\ea09";
}

.icon-calendar-solid:before {
  content: "\ea0a";
}

.icon-shopping-cart:before {
  content: "\ea0b";
}

.i-color-red::before,
.i-color-red::after {
  color: red;
}

.i-color-orange::before,
.i-color-orange::after {
  color: var(--yellow-orange);
}

.report-icon.s16.color-red::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../images/icons/icons-16px.svg);
  background-repeat: no-repeat;
  background-position: 0 0px;
  background-size: 16px auto;
}
.report-icon.green ::before {
  -webkit-filter: brightness(0) saturate(100%) invert(42%) sepia(67%)
    saturate(3086%) hue-rotate(86deg) brightness(91%) contrast(105%);
  filter: brightness(0) saturate(100%) invert(42%) sepia(67%) saturate(3086%)
    hue-rotate(86deg) brightness(91%) contrast(105%);
}
.report-icon.odometer::before {
  background-position-y: -32px;
}
.report-icon.odometer-records::before {
  background-position-y: -288px;
}
.report-icon.sale-history::before {
  background-position-y: -96px;
}
.report-icon.title-brand::before {
  background-position-y: -64px;
}
.report-icon.title-issues::before {
  background-position-y: -208px;
}
.report-icon.user-avatar::before {
  background-position-y: -992px;
}
.report-icon.junk-salvage::before {
  background-position-y: -432px;
}
.report-icon.total-loss::before {
  background-position-y: -112px;
}
.report-icon.recalls-defects::before {
  background-position-y: -144px;
}
.report-icon.flood-damage::before {
  background-position-y: -672px;
}
.report-icon.theft-vandalism::before {
  background-position-y: -48px;
}
.report-icon.fire-damage::before {
  background-position-y: -736px;
}
.report-icon.hail-damage::before {
  background-position-y: -768px;
}
.report-icon.accident::before {
  background-position-y: -704px;
}
.report-icon.clunckers::before {
  background-position-y: -848px;
}
.report-icon.rebuild::before {
  background-position-y: -896px;
}
.report-icon.reconstructed::before {
  background-position-y: -864px;
}
.report-icon.salt-water::before {
  background-position-y: -752px;
}
.report-icon.crashed::before {
  background-position-y: -496px;
}
.report-icon.hazardous::before {
  background-position-y: -112px;
}
.report-icon.dismantled::before {
  background-position-y: -816px;
}
.report-icon.refurbished::before {
  background-position-y: -848px;
}
.report-icon.test-vehicle::before {
  background-position-y: -880px;
}
.report-icon.collision::before {
  background-position-y: -432px;
}
.report-icon.warranty::before {
  background-position-y: -800px;
}
.report-icon.gray-market::before {
  background-position-y: -160px;
}
.report-icon.remanufactured::before {
  background-position-y: -384px;
}
.report-icon.police::before {
  background-position-y: -480px;
}
.report-icon.rental::before {
  background-position-y: -560px;
}
.report-icon.lien::before {
  background-position-y: -176px;
}
.report-icon.plus::before {
  background-position-y: -1056px;
}
.report-icon.tradein::before {
  background-position-y: -96px;
}
.report-icon.retail::before {
  background-position-y: -1072px;
}
.report-icon.private-party::before {
  background-position-y: -1104px;
}
.report-icon.residual::before {
  background-position-y: -976px;
}
.report-icon.engine::before {
  background-position-y: -1120px;
}
.report-icon.transmission::before {
  background-position-y: -1184px;
}
.report-icon.specs::before {
  background-position-y: -1216px;
}
.report-icon.specs-optional::before {
  background-position-y: -1200px;
}
.report-icon.generic-specs::before {
  background-position-y: -1152px;
}
.report-icon.entert::before {
  background-position-y: -1232px;
}
.report-icon.exterior::before {
  background-position-y: -464px;
}
.report-icon.opt-generic-specs::before {
  background-position-y: -1200px;
}
.report-icon.color::before {
  background-position-y: -1216px;
}
.report-icon.safety::before {
  background-position-y: -1136px;
}
.report-icon.mpg::before {
  background-position-y: -1088px;
}
.report-icon.oem::before {
  background-position-y: -1200px;
}
.report-icon.manufacture::before {
  background-position-y: -160px;
}
.report-icon.awards::before {
  background-position-y: -800px;
}
.report-icon.warning::before {
  background-position-y: -144px;
}
.report-icon.location::before {
  background-position-y: -1248px;
}
.report-icon.performance::before {
  background-position-y: -1184px;
}

.rating {
  width: 64px;
  height: 12px;
  background: url(../images/icons/ratings/stars.svg) 0 0 no-repeat;
  background-size: 100% auto;
}

.rating.r-0-5 {
  background-position: 0 -16px;
}

.rating.r-1-0 {
  background-position: 0 -32px;
}

.rating.r-1-5 {
  background-position: 0 -48px;
}

.rating.r-2-0 {
  background-position: 0 -64px;
}

.rating.r-2-5 {
  background-position: 0 -80px;
}

.rating.r-3-0 {
  background-position: 0 -96px;
}

.rating.r-3-5 {
  background-position: 0 -112px;
}

.rating.r-4-0 {
  background-position: 0 -128px;
}

.rating.r-4-5 {
  background-position: 0 -144px;
}

.rating.r-5-0 {
  background-position: 0 -160px;
}

.rating.x15 {
  width: 96px;
  height: 18px;
}

.rating.x15.r-0-5 {
  background-position: 0 -24px;
}

.rating.x15.r-1-0 {
  background-position: 0 -48px;
}

.rating.x15.r-1-5 {
  background-position: 0 -72px;
}

.rating.x15.r-2-0 {
  background-position: 0 -96px;
}

.rating.x15.r-2-5 {
  background-position: 0 -120px;
}

.rating.x15.r-3-0 {
  background-position: 0 -144px;
}

.rating.x15.r-3-5 {
  background-position: 0 -168px;
}

.rating.x15.r-4-0 {
  background-position: 0 -192px;
}

.rating.x15.r-4-5 {
  background-position: 0 -216px;
}

.rating.x15.r-5-0 {
  background-position: 0 -240px;
}

.rating.x2 {
  width: 128px;
  height: 24px;
}

.rating.x2.r-0-5 {
  background-position: 0 -32px;
}

.rating.x2.r-1-0 {
  background-position: 0 -64px;
}

.rating.x2.r-1-5 {
  background-position: 0 -96px;
}

.rating.x2.r-2-0 {
  background-position: 0 -128px;
}

.rating.x2.r-2-5 {
  background-position: 0 -160px;
}

.rating.x2.r-3-0 {
  background-position: 0 -192px;
}

.rating.x2.r-3-5 {
  background-position: 0 -224px;
}

.rating.x2.r-4-0 {
  background-position: 0 -256px;
}

.rating.x2.r-4-5 {
  background-position: 0 -288px;
}

.rating.x2.r-5-0 {
  background-position: 0 -320px;
}

.intro-reviews .rating.x15 {
  width: 64px;
  height: 12px;
}

.intro-reviews .rating.x15.r-0-5 {
  background-position: 0 -16px;
}

.intro-reviews .rating.x15.r-1-0 {
  background-position: 0 -32px;
}

.intro-reviews .rating.x15.r-1-5 {
  background-position: 0 -48px;
}

.intro-reviews .rating.x15.r-2-0 {
  background-position: 0 -64px;
}

.intro-reviews .rating.x15.r-2-5 {
  background-position: 0 -80px;
}

.intro-reviews .rating.x15.r-3-0 {
  background-position: 0 -96px;
}

.intro-reviews .rating.x15.r-3-5 {
  background-position: 0 -112px;
}

.intro-reviews .rating.x15.r-4-0 {
  background-position: 0 -128px;
}

.intro-reviews .rating.x15.r-4-5 {
  background-position: 0 -144px;
}

.intro-reviews .rating.x15.r-5-0 {
  background-position: 0 -160px;
}

h2[class^="icon-"],
h2[class*=" icon-"],
h3[class^="icon-"],
h3[class*=" icon-"],
h1[class^="icon-"].h3,
h1[class*=" icon-"].h3 {
  text-transform: uppercase;
  color: #000;
  font-size: 1.4em;
  font-weight: 700;
  border-left: 0;
  padding-left: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
h2[class^="icon-"]::before,
h2[class*=" icon-"]::before,
h3[class^="icon-"]::before,
h3[class*=" icon-"]::before,
h1[class^="icon-"].h3::before,
h1[class*=" icon-"].h3::before {
  color: var(--secondary-theme-color);
  font-size: 30px;
  margin-right: 16px;
  position: relative;
}
h2[class^="icon-"] span,
h2[class*=" icon-"] span,
h3[class^="icon-"] span,
h3[class*=" icon-"] span,
h1[class^="icon-"].h3 span,
h1[class*=" icon-"].h3 span {
  font-weight: 300;
  margin-right: 8px;
}
h2[class^="icon-"] span.counter,
h2[class*=" icon-"] span.counter,
h3[class^="icon-"] span.counter,
h3[class*=" icon-"] span.counter,
h1[class^="icon-"].h3 span.counter,
h1[class*=" icon-"].h3 span.counter {
  display: inline-block;
  margin-right: 10px;
  background-color: red;
  border: 0;
  color: #fff;
  width: auto;
  padding-left: 8px;
  padding-right: 8px;
  height: 24px;
  text-align: center;
  line-height: 26px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
}
h2[class^="icon-"].justify-content-start,
h2[class*=" icon-"].justify-content-start,
h3[class^="icon-"].justify-content-start,
h3[class*=" icon-"].justify-content-start,
h1[class^="icon-"].h3.justify-content-start,
h1[class*=" icon-"].h3.justify-content-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
@media screen and (max-width: 767px) {
  h2[class^="icon-"],
  h2[class*=" icon-"],
  h3[class^="icon-"],
  h3[class*=" icon-"],
  h1[class^="icon-"].h3,
  h1[class*=" icon-"].h3 {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    text-align: left;
    line-height: 24px;
    padding-left: 42px;
  }
  h2[class^="icon-"] span,
  h2[class*=" icon-"] span,
  h3[class^="icon-"] span,
  h3[class*=" icon-"] span,
  h1[class^="icon-"].h3 span,
  h1[class*=" icon-"].h3 span {
    display: inline;
  }
  h2[class^="icon-"].p-0,
  h2[class*=" icon-"].p-0,
  h3[class^="icon-"].p-0,
  h3[class*=" icon-"].p-0,
  h1[class^="icon-"].h3.p-0,
  h1[class*=" icon-"].h3.p-0 {
    padding: 0;
  }
  h2[class^="icon-"]::before,
  h2[class*=" icon-"]::before,
  h3[class^="icon-"]::before,
  h3[class*=" icon-"]::before,
  h1[class^="icon-"].h3::before,
  h1[class*=" icon-"].h3::before {
    position: absolute;
    left: 0;
    margin: 0;
  }
}
@media screen and (max-width: 575px) {
  h2[class^="icon-"],
  h2[class*=" icon-"],
  h3[class^="icon-"],
  h3[class*=" icon-"],
  h1[class^="icon-"].h3,
  h1[class*=" icon-"].h3 {
    padding-left: 36px;
  }
  h2[class^="icon-"]::before,
  h2[class*=" icon-"]::before,
  h3[class^="icon-"]::before,
  h3[class*=" icon-"]::before,
  h1[class^="icon-"].h3::before,
  h1[class*=" icon-"].h3::before {
    font-size: 24px;
  }
}
h2[class^="icon-"].color-red::before,
h2[class*=" icon-"].color-red::before,
h3[class^="icon-"].color-red::before,
h3[class*=" icon-"].color-red::before,
h1[class^="icon-"].h3.color-red::before,
h1[class*=" icon-"].h3.color-red::before {
  color: red;
}
h2[class^="icon-"].text-capitalize,
h2[class*=" icon-"].text-capitalize,
h3[class^="icon-"].text-capitalize,
h3[class*=" icon-"].text-capitalize,
h1[class^="icon-"].h3.text-capitalize,
h1[class*=" icon-"].h3.text-capitalize {
  text-transform: capitalize;
}

h2[class^="icon-"],
h2[class*=" icon-"],
h3[class^="icon-"],
h3[class*=" icon-"],
h1[class^="icon-"].h3,
h1[class*=" icon-"].h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}
h2[class^="icon-"].flex-column,
h2[class*=" icon-"].flex-column,
h3[class^="icon-"].flex-column,
h3[class*=" icon-"].flex-column,
h1[class^="icon-"].h3.flex-column,
h1[class*=" icon-"].h3.flex-column {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 0px;
}
@media screen and (min-width: 768px) {
  h2[class^="icon-"].flex-md-row,
  h2[class*=" icon-"].flex-md-row,
  h3[class^="icon-"].flex-md-row,
  h3[class*=" icon-"].flex-md-row,
  h1[class^="icon-"].h3.flex-md-row,
  h1[class*=" icon-"].h3.flex-md-row {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.white-container h2,
.modal-content h2 {
  font-size: 18px;
  /*
  border-left: 4px solid var(--secondary-theme-color);
  padding-left: 8px;
  */
}
h3[class^="icon-"],
h3[class*=" icon-"],
h1[class^="icon-"].h3,
h1[class*=" icon-"].h3 {
  font-size: 32px;
  font-weight: 300;
  text-transform: initial;
  font-weight: 700;
  text-transform: uppercase;
}
h3[class^="icon-"] strong,
h3[class*=" icon-"] strong,
h1[class^="icon-"].h3 strong,
h1[class*=" icon-"].h3 strong {
  color: var(--secondary-theme-color);
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  h3[class^="icon-"],
  h3[class*=" icon-"],
  h1[class^="icon-"].h3,
  h1[class*=" icon-"].h3 {
    line-height: 40px;
  }
}
@media screen and (max-width: 575px) {
  h3[class^="icon-"],
  h3[class*=" icon-"],
  h1[class^="icon-"].h3,
  h1[class*=" icon-"].h3 {
    font-size: 18px;
    line-height: 32px;
  }
}

h2.style-b-left,
h3.style-b-left {
  border-left: 4px solid var(--secondary-theme-color);
  padding-left: 16px;
}
h2.style-b-left b,
h3.style-b-left b {
  font-weight: 700;
}

h2 img,
h3 img {
  width: auto;
  max-width: 64px;
  height: auto;
  max-height: 40px;
}

.style-badge-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0;
  font-size: 32px;
}
.style-badge-left span {
  background-color: #000;
  color: #fff;
  padding: 18px 30px 18px 40px;
  position: relative;
  left: -16px;
  border-radius: 0 60px 60px 0;
}
@media screen and (max-width: 991px) {
  .style-badge-left span {
    padding: 40px 24px;
    border-radius: 30px;
    left: 0;
    top: -24px;
    width: 100%;
  }
}
.style-badge-left span.badge {
  padding: 0;
  position: relative;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: var(--yellow-orange);
  color: #000;
  border-radius: 90px;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 300;
  row-gap: 4px;
  padding: 8px;
  width: 110px;
  height: 110px;
}
.style-badge-left span.badge b {
  font-weight: 700;
  font-size: 24px;
}
@media screen and (max-width: 991px) {
  .style-badge-left span.badge {
    width: auto;
    height: auto;
    padding: 16px 30px;
  }
}
.style-badge-left a {
  display: inline-block;
  line-height: 1.3em;
  white-space: normal !important;
  text-align: center;
}
.style-badge-left a:hover {
  text-decoration: none;
}

h4 i.icon-info {
  top: 2px;
}

h1 i.icon-alert,
h2 i.icon-alert {
  top: 3px;
}
h1 sup,
h2 sup {
  color: #000;
  font-size: 0.7em;
  margin-left: 1px;
  top: -5px;
}

*:focus {
  outline: none;
}

.main-search .nav,
.mb-search .nav {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  background-color: rgba(0, 0, 0, 0.65);
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  /* OLD Style
  li:first-child {
      margin-right: 12px;
      text-transform: uppercase;
      @media screen and (max-width: 767px) {
          //  width: 100%;
          text-align: center;
          //margin-bottom: 8px;
          font-size: 12px;
      }
      @media screen and (max-width: 425px) {
          //font-size: 14px;
          //margin-bottom: 4px;
      }
      @media screen and (max-width: 370px) {
          font-size: 12px;
      }
  }

  .nav-link {
      @include border-radius(8px 8px 0 0);
      height: 40px;
      line-height: 40px;
      padding: 0 24px;
      border: 0;
      text-transform: uppercase;
      font-weight: 700;
      margin-right: 12px;
      color: #000;
      border: 1px solid var(--container-border);
      position: relative;
      z-index: 700;
      background-color: #fff;
      @media screen and (max-width: 767px) {
          padding: 0 16px;
          margin-right: 4px;
          height: 32px;
          line-height: 32px;
          font-size: 13px;
          margin-bottom: -1px;
      }
      @media screen and (max-width: 767px) {
          padding: 0 12px;
      }
      @media screen and (max-width: 400px) {
          padding: 0 8px;
      }
      @media screen and (max-width: 370px) {
          padding: 0 8px;
          font-size: 11px;
          // margin-right: 0;
      }
      &.hover,
      &.active,
      &.focus {
          border-bottom: 0;
      }
      &.active {
          background-color: var(--secondary-theme-color);
          color: #fff;
          border: 1px solid var(--secondary-theme-color);
          &::before {
              content: "\e96c";
              position: absolute;
              left: -1px;
              bottom: -12px;
              z-index: 9999;
              color: var(--secondary-theme-color);
              font-size: 12px;
          }
      }
  }
  li:last-child {
      .nav-link {
          margin-right: 0;
      }
  }
  */
  /* New Style */
}
@media screen and (max-width: 767px) {
  .main-search .nav,
  .mb-search .nav {
    padding: 0 20px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 575px) {
  .main-search .nav,
  .mb-search .nav {
    background-color: transparent;
    padding: 0;
    margin-bottom: 8px;
  }
}
.main-search .nav li:first-child,
.mb-search .nav li:first-child {
  margin-right: 12px;
  font-style: italic;
  height: 40px;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .main-search .nav li:first-child,
  .mb-search .nav li:first-child {
    text-align: center;
    font-size: 12px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 370px) {
  .main-search .nav li:first-child,
  .mb-search .nav li:first-child {
    font-size: 12px;
  }
}
.main-search .nav .nav-link,
.mb-search .nav .nav-link {
  height: 40px;
  line-height: 40px;
  padding: 0 3px;
  border: 0;
  text-transform: uppercase;
  font-weight: 700;
  margin-right: 24px;
  color: #fff;
  position: relative;
  z-index: 98;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .main-search .nav .nav-link,
  .mb-search .nav .nav-link {
    padding: 0 16px;
    margin-right: 16px;
    height: 32px;
    line-height: 32px;
    font-size: 13px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 767px) {
  .main-search .nav .nav-link,
  .mb-search .nav .nav-link {
    padding: 0 3px;
  }
}
@media screen and (max-width: 575px) {
  .main-search .nav .nav-link,
  .mb-search .nav .nav-link {
    color: #000;
  }
}
@media screen and (max-width: 400px) {
  .main-search .nav .nav-link,
  .mb-search .nav .nav-link {
    padding: 0 8px;
  }
}
@media screen and (max-width: 370px) {
  .main-search .nav .nav-link,
  .mb-search .nav .nav-link {
    padding: 0 8px;
    font-size: 11px;
  }
}
.main-search .nav .nav-link.hover,
.main-search .nav .nav-link.active,
.main-search .nav .nav-link.focus,
.mb-search .nav .nav-link.hover,
.mb-search .nav .nav-link.active,
.mb-search .nav .nav-link.focus {
  border-bottom: 0;
}
.main-search .nav .nav-link::before,
.mb-search .nav .nav-link::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 9999;
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 6px;
}
@media screen and (max-width: 575px) {
  .main-search .nav .nav-link::before,
  .mb-search .nav .nav-link::before {
    background-color: rgba(0, 0, 0, 0.2);
  }
}
.main-search .nav .nav-link.active,
.mb-search .nav .nav-link.active {
  background-color: transparent;
  color: #fff;
}
@media screen and (max-width: 575px) {
  .main-search .nav .nav-link.active,
  .mb-search .nav .nav-link.active {
    color: #000;
  }
}
.main-search .nav .nav-link.active::before,
.mb-search .nav .nav-link.active::before {
  background-color: var(--secondary-theme-color);
}
.main-search .nav li:last-child .nav-link,
.mb-search .nav li:last-child .nav-link {
  margin-right: 0;
}
.main-search .nav.calculator,
.mb-search .nav.calculator {
  margin-left: 30px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  margin-bottom: -1px;
}
.main-search .nav.calculator li:first-child,
.mb-search .nav.calculator li:first-child {
  margin-right: 12px;
  text-transform: initial;
}
.main-search .nav.calculator .nav-link,
.mb-search .nav.calculator .nav-link {
  border-radius: 8px 8px 0 0;
  height: 33px;
  line-height: 33px;
  padding: 0 32px;
  text-transform: initial;
  margin-right: 0;
  border: 1px solid transparent;
  background-color: transparent;
  border-bottom: 0;
}
.main-search .nav.calculator .nav-link.hover,
.main-search .nav.calculator .nav-link.active,
.main-search .nav.calculator .nav-link.focus,
.mb-search .nav.calculator .nav-link.hover,
.mb-search .nav.calculator .nav-link.active,
.mb-search .nav.calculator .nav-link.focus {
  border-bottom: 0;
}
.main-search .nav.calculator .nav-link.active,
.mb-search .nav.calculator .nav-link.active {
  background-color: #f3f3f3;
  color: var(--secondary-theme-color);
  border: 1px solid #e5e5e5;
  border-bottom: 0;
}
.main-search .nav.calculator .nav-link.active::before,
.mb-search .nav.calculator .nav-link.active::before {
  display: none;
}
.main-search form .wrapper,
.mb-search form .wrapper {
  width: 100%;
  position: relative;
  position: relative;
  background-color: #fff;
  border: 0;
  text-align: center;
  z-index: 50;
  gap: 20px;
  border-radius: 36px;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .main-search form .wrapper,
  .mb-search form .wrapper {
    border-radius: 25px;
  }
}
@media screen and (max-width: 390px) {
  .main-search form .wrapper,
  .mb-search form .wrapper {
    gap: 16px;
  }
}
@media screen and (max-width: 365px) {
  .main-search form .wrapper,
  .mb-search form .wrapper {
    gap: 14px;
  }
}
@media screen and (min-width: 768px) {
  .main-search form .wrapper,
  .mb-search form .wrapper {
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
  }
  .main-search form .wrapper.flex-wrap,
  .mb-search form .wrapper.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.main-search form .wrapper.w-auto,
.mb-search form .wrapper.w-auto {
  width: auto;
}
.main-search form .wrapper button.btn-search,
.main-search form .wrapper button.search-by-image,
.mb-search form .wrapper button.btn-search,
.mb-search form .wrapper button.search-by-image {
  position: relative;
  border: 0;
  background-color: transparent;
  padding-left: 54px;
  padding-right: 24px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  z-index: 88;
}
.main-search form .wrapper button.btn-search::before,
.main-search form .wrapper button.search-by-image::before,
.mb-search form .wrapper button.btn-search::before,
.mb-search form .wrapper button.search-by-image::before {
  position: absolute;
  left: 24px;
  font-size: 16px;
}
.main-search form .wrapper button.btn-search.search-by-image,
.main-search form .wrapper button.search-by-image.search-by-image,
.mb-search form .wrapper button.btn-search.search-by-image,
.mb-search form .wrapper button.search-by-image.search-by-image {
  left: 24px;
  width: 32px;
  max-width: 32px;
  font-size: 32px;
  height: 26px;
  opacity: 0.5;
  padding-left: 70px;
  padding-right: 0;
  overflow: hidden;
  display: block;
}
.main-search form .wrapper button.btn-search.search-by-image::before,
.main-search form .wrapper button.search-by-image.search-by-image::before,
.mb-search form .wrapper button.btn-search.search-by-image::before,
.mb-search form .wrapper button.search-by-image.search-by-image::before {
  color: #000;
  left: 0;
  font-size: 32px;
  right: auto;
  top: -3px;
}
.main-search form .wrapper button.btn-search.search-by-image:hover,
.main-search form .wrapper button.search-by-image.search-by-image:hover,
.mb-search form .wrapper button.btn-search.search-by-image:hover,
.mb-search form .wrapper button.search-by-image.search-by-image:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .main-search form .wrapper button.btn-search.search-by-image,
  .main-search form .wrapper button.search-by-image.search-by-image,
  .mb-search form .wrapper button.btn-search.search-by-image,
  .mb-search form .wrapper button.search-by-image.search-by-image {
    left: 16px;
    width: 22px;
    height: 19px;
    padding-left: 40px;
  }
  .main-search form .wrapper button.btn-search.search-by-image::before,
  .main-search form .wrapper button.search-by-image.search-by-image::before,
  .mb-search form .wrapper button.btn-search.search-by-image::before,
  .mb-search form .wrapper button.search-by-image.search-by-image::before {
    font-size: 22px;
    top: -3px;
  }
}
@media screen and (max-width: 575px) {
  .main-search form .wrapper button.btn-search.search-by-image,
  .main-search form .wrapper button.search-by-image.search-by-image,
  .mb-search form .wrapper button.btn-search.search-by-image,
  .mb-search form .wrapper button.search-by-image.search-by-image {
    padding-left: 36px;
  }
}
.main-search form .wrapper button.btn-search.btn-search,
.main-search form .wrapper button.search-by-image.btn-search,
.mb-search form .wrapper button.btn-search.btn-search,
.mb-search form .wrapper button.search-by-image.btn-search {
  width: auto;
  min-width: 100px;
  height: 64px;
  background-color: var(--secondary-theme-color);
  font-size: 20px;
  color: #fff;
  display: block;
  font-weight: 700;
  margin: auto 4px auto auto;
  border-radius: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.main-search form .wrapper button.btn-search.btn-search::before,
.main-search form .wrapper button.search-by-image.btn-search::before,
.mb-search form .wrapper button.btn-search.btn-search::before,
.mb-search form .wrapper button.search-by-image.btn-search::before {
  color: #fff;
}
.main-search form .wrapper button.btn-search.btn-search:hover,
.main-search form .wrapper button.search-by-image.btn-search:hover,
.mb-search form .wrapper button.btn-search.btn-search:hover,
.mb-search form .wrapper button.search-by-image.btn-search:hover {
  background-color: var(--primary-theme-color);
}
@media screen and (max-width: 767px) {
  .main-search form .wrapper button.btn-search.btn-search,
  .main-search form .wrapper button.search-by-image.btn-search,
  .mb-search form .wrapper button.btn-search.btn-search,
  .mb-search form .wrapper button.search-by-image.btn-search {
    height: 42px;
    padding-left: 40px;
    padding-right: 16px;
    font-size: 14px;
  }
  .main-search form .wrapper button.btn-search.btn-search::before,
  .main-search form .wrapper button.search-by-image.btn-search::before,
  .mb-search form .wrapper button.btn-search.btn-search::before,
  .mb-search form .wrapper button.search-by-image.btn-search::before {
    font-size: 14px;
    left: 14px;
  }
}
@media screen and (max-width: 450px) {
  .main-search form .wrapper button.btn-search.btn-search,
  .main-search form .wrapper button.search-by-image.btn-search,
  .mb-search form .wrapper button.btn-search.btn-search,
  .mb-search form .wrapper button.search-by-image.btn-search {
    min-width: 64px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  .main-search form .wrapper button.btn-search.btn-search::before,
  .main-search form .wrapper button.search-by-image.btn-search::before,
  .mb-search form .wrapper button.btn-search.btn-search::before,
  .mb-search form .wrapper button.search-by-image.btn-search::before {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .main-search form .wrapper button.btn-search.btn-long,
  .mb-search form .wrapper button.btn-search.btn-long {
    width: auto;
    color: #fff;
    font-size: 18px;
  }
  .main-search form .wrapper button.btn-search.btn-long.btn-results,
  .mb-search form .wrapper button.btn-search.btn-long.btn-results {
    width: 64px;
  }
}
@media screen and (max-width: 767px) {
  .main-search form .wrapper button.btn-search.btn-long,
  .mb-search form .wrapper button.btn-search.btn-long {
    font-size: 16px;
  }
  .main-search form .wrapper button.btn-search.btn-long.btn-results,
  .mb-search form .wrapper button.btn-search.btn-long.btn-results {
    width: auto;
  }
}
.main-search form .wrapper .search-field input.theme-cstm-input,
.mb-search form .wrapper .search-field input.theme-cstm-input {
  height: 72px;
}
@media screen and (max-width: 767px) {
  .main-search form .wrapper .search-field input.theme-cstm-input,
  .mb-search form .wrapper .search-field input.theme-cstm-input {
    height: 50px;
  }
}
.main-search form .wrapper #search-for-plate,
.mb-search form .wrapper #search-for-plate {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  padding-right: 0 !important;
}
.main-search form .wrapper .search-field,
.mb-search form .wrapper .search-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.main-search form .wrapper .search-field#search-for-plate,
.mb-search form .wrapper .search-field#search-for-plate {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
.main-search form .wrapper .search-field .search-select,
.mb-search form .wrapper .search-field .search-select {
  width: 100%;
  position: relative;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*
  &::after {
      content: "";
      position: relative;
      width: 1px;
      height: 32px;
      background-color: #000;
      top: 0;
      margin-left: 16px;
      // margin-right: 16px;
  }
  */
}
@media screen and (max-width: 767px) {
  .main-search form .wrapper .search-field .search-select,
  .mb-search form .wrapper .search-field .search-select {
    width: 50%;
  }
  .main-search form .wrapper .search-field .search-select:nth-child(1),
  .main-search form .wrapper .search-field .search-select:nth-child(2),
  .mb-search form .wrapper .search-field .search-select:nth-child(1),
  .mb-search form .wrapper .search-field .search-select:nth-child(2) {
    border-bottom: 1px solid var(--container-border);
  }
  .main-search form .wrapper .search-field .search-select:nth-child(2),
  .main-search form .wrapper .search-field .search-select:nth-child(4),
  .mb-search form .wrapper .search-field .search-select:nth-child(2),
  .mb-search form .wrapper .search-field .search-select:nth-child(4) {
    border-right: 0;
  }
}
.main-search form .wrapper .search-field .search-select.border-bottom-0,
.mb-search form .wrapper .search-field .search-select.border-bottom-0 {
  border-bottom: 0;
}
.main-search form .wrapper .search-field .search-select:last-child::after,
.mb-search form .wrapper .search-field .search-select:last-child::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .main-search form .wrapper .search-field .search-select:last-child,
  .mb-search form .wrapper .search-field .search-select:last-child {
    margin-right: 0;
  }
}
.main-search form .wrapper .search-field .search-select label,
.mb-search form .wrapper .search-field .search-select label {
  display: block;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-search form .wrapper .search-field .search-select label::before,
.mb-search form .wrapper .search-field .search-select label::before {
  position: absolute;
  left: 0;
  color: #000;
}
.main-search form .wrapper .search-field .search-select input,
.mb-search form .wrapper .search-field .search-select input {
  border: 0;
  background-color: transparent;
  padding: 0 0 0 16px;
  width: auto;
  display: block;
  position: relative;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 14px;
}
.main-search
  form
  .wrapper
  .search-field
  .search-select
  input::-webkit-input-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  .search-select
  input::-webkit-input-placeholder {
  color: #000;
}
.main-search form .wrapper .search-field .search-select input::-moz-placeholder,
.mb-search form .wrapper .search-field .search-select input::-moz-placeholder {
  color: #000;
}
.main-search
  form
  .wrapper
  .search-field
  .search-select
  input:-ms-input-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  .search-select
  input:-ms-input-placeholder {
  color: #000;
}
.main-search
  form
  .wrapper
  .search-field
  .search-select
  input::-ms-input-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  .search-select
  input::-ms-input-placeholder {
  color: #000;
}
.main-search form .wrapper .search-field .search-select input::placeholder,
.mb-search form .wrapper .search-field .search-select input::placeholder {
  color: #000;
}
@media screen and (max-width: 767px) {
  .main-search form .wrapper .search-field .search-select:nth-child(2n)::after,
  .mb-search form .wrapper .search-field .search-select:nth-child(2n)::after {
    display: none;
  }
}
.main-search form .wrapper .search-field .search-select .search-menu,
.mb-search form .wrapper .search-field .search-select .search-menu {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  position: relative;
}
.main-search form .wrapper .search-field .search-select .search-menu .lables,
.mb-search form .wrapper .search-field .search-select .search-menu .lables {
  color: var(--secondary-theme-color);
  position: absolute;
  font-size: 10px;
  display: none;
  line-height: 10px;
  padding-left: 24px;
  top: 12px;
}
@media screen and (max-width: 767px) {
  .main-search form .wrapper .search-field .search-select .search-menu .lables,
  .mb-search form .wrapper .search-field .search-select .search-menu .lables {
    left: 0;
    top: 4px;
    display: none !important;
  }
}
.main-search form .wrapper .search-field .search-select .search-menu ul,
.mb-search form .wrapper .search-field .search-select .search-menu ul {
  position: absolute;
  display: none;
  list-style: none;
  min-width: 100%;
  margin: 10px 0 0;
}
.main-search form .wrapper .search-field .search-select .search-menu li,
.mb-search form .wrapper .search-field .search-select .search-menu li {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}
.main-search
  form
  .wrapper
  .search-field
  .search-select
  .search-menu
  li:hover
  ul,
.mb-search form .wrapper .search-field .search-select .search-menu li:hover ul {
  display: block;
  top: 62px;
  padding: 16px 24px;
  background: #fff;
  border-radius: 0 0 16px 16px;
  border: 1px solid var(--container-border);
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.15);
  z-index: 30;
}
@media screen and (max-width: 767px) {
  .main-search
    form
    .wrapper
    .search-field
    .search-select
    .search-menu
    li:hover
    ul,
  .mb-search
    form
    .wrapper
    .search-field
    .search-select
    .search-menu
    li:hover
    ul {
    top: 48px;
  }
}
.main-search
  form
  .wrapper
  .search-field
  .search-select
  .search-menu
  li:hover
  ul
  li,
.mb-search
  form
  .wrapper
  .search-field
  .search-select
  .search-menu
  li:hover
  ul
  li {
  white-space: nowrap;
  padding: 0;
  line-height: 32px;
}
.main-search
  form
  .wrapper
  .search-field
  .search-select
  .search-menu
  li:hover
  ul
  li:first-child,
.mb-search
  form
  .wrapper
  .search-field
  .search-select
  .search-menu
  li:hover
  ul
  li:first-child {
  display: none;
}
.main-search
  form
  .wrapper
  .search-field
  .search-select
  .search-menu
  li:hover
  ul
  li
  a,
.mb-search
  form
  .wrapper
  .search-field
  .search-select
  .search-menu
  li:hover
  ul
  li
  a {
  text-decoration: none;
  color: #000;
}
.main-search
  form
  .wrapper
  .search-field
  .search-select
  .search-menu
  li:hover
  ul
  li
  a:hover,
.mb-search
  form
  .wrapper
  .search-field
  .search-select
  .search-menu
  li:hover
  ul
  li
  a:hover {
  color: var(--secondary-theme-color);
}
.main-search form .wrapper .search-field .search-select .search-menu .sel,
.mb-search form .wrapper .search-field .search-select .search-menu .sel {
  background: transparent;
  color: white;
  margin: 0;
  height: 72px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  padding: 0 40px 0 24px;
  white-space: nowrap;
  line-height: 72px;
  z-index: 10;
}
.main-search
  form
  .wrapper
  .search-field
  .search-select
  .search-menu
  .sel::after,
.mb-search form .wrapper .search-field .search-select .search-menu .sel::after {
  content: "\e96d";
  font-family: "sans-serif";
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 16px;
  font-size: 12px;
  position: absolute;
  right: 24px;
  top: 50%;
  margin-top: -6px;
}
@media screen and (max-width: 767px) {
  .main-search form .wrapper .search-field .search-select .search-menu .sel,
  .mb-search form .wrapper .search-field .search-select .search-menu .sel {
    height: auto;
    padding: 12px 40px 12px 24px;
    white-space: normal;
    line-height: 22px;
  }
}
.main-search form .wrapper .search-field .search-select .search-menu .item,
.main-search form .wrapper .search-field .search-select .search-menu .sel,
.mb-search form .wrapper .search-field .search-select .search-menu .item,
.mb-search form .wrapper .search-field .search-select .search-menu .sel {
  display: block;
}
.main-search
  form
  .wrapper
  .search-field
  .search-select:first-child
  .search-menu
  li:hover
  ul,
.mb-search
  form
  .wrapper
  .search-field
  .search-select:first-child
  .search-menu
  li:hover
  ul {
  border-radius: 16px 0 16px 16px;
}
.main-search form .wrapper .search-field .search-select span,
.mb-search form .wrapper .search-field .search-select span {
  position: absolute;
  bottom: -24px;
  padding: 5px 8px;
  border-radius: 9px;
  background-color: red;
  font-size: 12px;
  line-height: 16px;
  display: none;
  color: #fff;
  z-index: 200;
}
.main-search form .wrapper .search-field .search-select span::after,
.mb-search form .wrapper .search-field .search-select span::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: red;
  position: absolute;
  top: -6px;
  left: 16px;
  z-index: 1;
}
.main-search form .wrapper .search-field .search-select.err span,
.main-search form .wrapper .search-field .search-select.err span:not(:empty),
.mb-search form .wrapper .search-field .search-select.err span,
.mb-search form .wrapper .search-field .search-select.err span:not(:empty) {
  display: block;
}
.main-search form .wrapper .search-field .search-select.border-bottom-0,
.mb-search form .wrapper .search-field .search-select.border-bottom-0 {
  border-bottom: 0;
}
.main-search form .wrapper .search-field input.theme-cstm-input,
.mb-search form .wrapper .search-field input.theme-cstm-input {
  border: 0;
  background-color: transparent;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-webkit-input-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-webkit-input-placeholder {
  opacity: 0.5;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-moz-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-moz-placeholder {
  opacity: 0.5;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input:-ms-input-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input:-ms-input-placeholder {
  opacity: 0.5;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-ms-input-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-ms-input-placeholder {
  opacity: 0.5;
}
.main-search form .wrapper .search-field input.theme-cstm-input::placeholder,
.mb-search form .wrapper .search-field input.theme-cstm-input::placeholder {
  opacity: 0.5;
}
.main-search form .wrapper .search-field input.theme-cstm-input:focus,
.mb-search form .wrapper .search-field input.theme-cstm-input:focus {
  outline: none;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-webkit-input-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-webkit-input-placeholder {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #000;
  opacity: 1;
  padding-right: 0;
  width: 100%;
  min-width: 177px;
  letter-spacing: 3px;
  text-align: center;
  padding-left: 40px;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-moz-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-moz-placeholder {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #000;
  opacity: 1;
  padding-right: 0;
  width: 100%;
  min-width: 177px;
  letter-spacing: 3px;
  text-align: center;
  padding-left: 40px;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input:-ms-input-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input:-ms-input-placeholder {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #000;
  opacity: 1;
  padding-right: 0;
  width: 100%;
  min-width: 177px;
  letter-spacing: 3px;
  text-align: center;
  padding-left: 40px;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-ms-input-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-ms-input-placeholder {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #000;
  opacity: 1;
  padding-right: 0;
  width: 100%;
  min-width: 177px;
  letter-spacing: 3px;
  text-align: center;
  padding-left: 40px;
}
.main-search form .wrapper .search-field input.theme-cstm-input,
.main-search form .wrapper .search-field input.theme-cstm-input::placeholder,
.mb-search form .wrapper .search-field input.theme-cstm-input,
.mb-search form .wrapper .search-field input.theme-cstm-input::placeholder {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #000;
  opacity: 1;
  padding-right: 0;
  width: 100%;
  min-width: 177px;
  letter-spacing: 3px;
  text-align: center;
  padding-left: 40px;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-webkit-input-placeholder.width-100,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-webkit-input-placeholder.width-100 {
  width: 100%;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-moz-placeholder.width-100,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-moz-placeholder.width-100 {
  width: 100%;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input:-ms-input-placeholder.width-100,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input:-ms-input-placeholder.width-100 {
  width: 100%;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-ms-input-placeholder.width-100,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-ms-input-placeholder.width-100 {
  width: 100%;
}
.main-search form .wrapper .search-field input.theme-cstm-input.width-100,
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::placeholder.width-100,
.mb-search form .wrapper .search-field input.theme-cstm-input.width-100,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::placeholder.width-100 {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .main-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input::-webkit-input-placeholder,
  .mb-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input::-webkit-input-placeholder {
    font-size: 18px;
    min-width: 155px;
    padding-left: 20px;
    width: 100%;
  }
  .main-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input::-moz-placeholder,
  .mb-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input::-moz-placeholder {
    font-size: 18px;
    min-width: 155px;
    padding-left: 20px;
    width: 100%;
  }
  .main-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input:-ms-input-placeholder,
  .mb-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input:-ms-input-placeholder {
    font-size: 18px;
    min-width: 155px;
    padding-left: 20px;
    width: 100%;
  }
  .main-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input::-ms-input-placeholder,
  .mb-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input::-ms-input-placeholder {
    font-size: 18px;
    min-width: 155px;
    padding-left: 20px;
    width: 100%;
  }
  .main-search form .wrapper .search-field input.theme-cstm-input,
  .main-search form .wrapper .search-field input.theme-cstm-input::placeholder,
  .mb-search form .wrapper .search-field input.theme-cstm-input,
  .mb-search form .wrapper .search-field input.theme-cstm-input::placeholder {
    font-size: 18px;
    min-width: 155px;
    padding-left: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .main-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input::-webkit-input-placeholder,
  .mb-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input::-webkit-input-placeholder {
    font-size: 16px;
    letter-spacing: 2px;
    min-width: 140px;
  }
  .main-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input::-moz-placeholder,
  .mb-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input::-moz-placeholder {
    font-size: 16px;
    letter-spacing: 2px;
    min-width: 140px;
  }
  .main-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input:-ms-input-placeholder,
  .mb-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input:-ms-input-placeholder {
    font-size: 16px;
    letter-spacing: 2px;
    min-width: 140px;
  }
  .main-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input::-ms-input-placeholder,
  .mb-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input::-ms-input-placeholder {
    font-size: 16px;
    letter-spacing: 2px;
    min-width: 140px;
  }
  .main-search form .wrapper .search-field input.theme-cstm-input,
  .main-search form .wrapper .search-field input.theme-cstm-input::placeholder,
  .mb-search form .wrapper .search-field input.theme-cstm-input,
  .mb-search form .wrapper .search-field input.theme-cstm-input::placeholder {
    font-size: 16px;
    letter-spacing: 2px;
    min-width: 140px;
  }
}
@media screen and (max-width: 390px) {
  .main-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input::-webkit-input-placeholder,
  .mb-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input::-webkit-input-placeholder {
    min-width: 145px;
  }
  .main-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input::-moz-placeholder,
  .mb-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input::-moz-placeholder {
    min-width: 145px;
  }
  .main-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input:-ms-input-placeholder,
  .mb-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input:-ms-input-placeholder {
    min-width: 145px;
  }
  .main-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input::-ms-input-placeholder,
  .mb-search
    form
    .wrapper
    .search-field
    input.theme-cstm-input::-ms-input-placeholder {
    min-width: 145px;
  }
  .main-search form .wrapper .search-field input.theme-cstm-input,
  .main-search form .wrapper .search-field input.theme-cstm-input::placeholder,
  .mb-search form .wrapper .search-field input.theme-cstm-input,
  .mb-search form .wrapper .search-field input.theme-cstm-input::placeholder {
    min-width: 145px;
  }
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-webkit-input-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-webkit-input-placeholder {
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: normal;
  text-align: center;
  padding-left: 0;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-moz-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-moz-placeholder {
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: normal;
  text-align: center;
  padding-left: 0;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input:-ms-input-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input:-ms-input-placeholder {
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: normal;
  text-align: center;
  padding-left: 0;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-ms-input-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input::-ms-input-placeholder {
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: normal;
  text-align: center;
  padding-left: 0;
}
.main-search form .wrapper .search-field input.theme-cstm-input::placeholder,
.mb-search form .wrapper .search-field input.theme-cstm-input::placeholder {
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: normal;
  text-align: center;
  padding-left: 0;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.text-center::-webkit-input-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.text-center::-webkit-input-placeholder {
  text-align: center;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.text-center::-moz-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.text-center::-moz-placeholder {
  text-align: center;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.text-center:-ms-input-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.text-center:-ms-input-placeholder {
  text-align: center;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.text-center::-ms-input-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.text-center::-ms-input-placeholder {
  text-align: center;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.text-center::placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.text-center::placeholder {
  text-align: center;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.search-plate::-webkit-input-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.search-plate::-webkit-input-placeholder {
  text-align: left;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.search-plate::-moz-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.search-plate::-moz-placeholder {
  text-align: left;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.search-plate:-ms-input-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.search-plate:-ms-input-placeholder {
  text-align: left;
}
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.search-plate::-ms-input-placeholder,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.search-plate::-ms-input-placeholder {
  text-align: left;
}
.main-search form .wrapper .search-field input.theme-cstm-input.search-plate,
.main-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.search-plate::placeholder,
.mb-search form .wrapper .search-field input.theme-cstm-input.search-plate,
.mb-search
  form
  .wrapper
  .search-field
  input.theme-cstm-input.search-plate::placeholder {
  text-align: left;
}
.main-search form .wrapper .search-field select[class^="select-"],
.main-search form .wrapper .search-field select[class*="select-"],
.main-search form .wrapper .search-field .search-select.zip input,
.mb-search form .wrapper .search-field select[class^="select-"],
.mb-search form .wrapper .search-field select[class*="select-"],
.mb-search form .wrapper .search-field .search-select.zip input {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  height: 72px;
  width: auto;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-transform: uppercase;
  cursor: pointer;
}
.main-search
  form
  .wrapper
  .search-field
  select[class^="select-"]
  option:first-child,
.main-search
  form
  .wrapper
  .search-field
  select[class*="select-"]
  option:first-child,
.main-search
  form
  .wrapper
  .search-field
  .search-select.zip
  input
  option:first-child,
.mb-search
  form
  .wrapper
  .search-field
  select[class^="select-"]
  option:first-child,
.mb-search
  form
  .wrapper
  .search-field
  select[class*="select-"]
  option:first-child,
.mb-search
  form
  .wrapper
  .search-field
  .search-select.zip
  input
  option:first-child {
  display: none;
}
.main-search form .wrapper .search-field .search-select.zip input,
.mb-search form .wrapper .search-field .search-select.zip input {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .main-search form .wrapper .search-field select[class^="select-"],
  .main-search form .wrapper .search-field select[class*="select-"],
  .main-search form .wrapper .search-field .search-select.zip input,
  .mb-search form .wrapper .search-field select[class^="select-"],
  .mb-search form .wrapper .search-field select[class*="select-"],
  .mb-search form .wrapper .search-field .search-select.zip input {
    text-align: left;
    height: 46px;
    width: 100%;
    padding: 0 16px;
  }
  .main-search
    form
    .wrapper
    .search-field
    .search-select:nth-child(-n + 2)
    .search-menu
    .sel,
  .mb-search
    form
    .wrapper
    .search-field
    .search-select:nth-child(-n + 2)
    .search-menu
    .sel {
    border-bottom: 1px solid var(--container-border);
  }
  .main-search
    form
    .wrapper
    .search-field
    .search-select:nth-child(-n + 2)
    .search-menu
    .sel.border-0,
  .mb-search
    form
    .wrapper
    .search-field
    .search-select:nth-child(-n + 2)
    .search-menu
    .sel.border-0 {
    border: 0;
  }
  .main-search form .wrapper .search-field .search-select.zip,
  .mb-search form .wrapper .search-field .search-select.zip {
    line-height: 22px;
    border-top: 1px solid var(--container-border);
    padding-left: 0;
  }
  .main-search form .wrapper .search-field .search-select.zip label,
  .mb-search form .wrapper .search-field .search-select.zip label {
    margin-left: 0;
    width: 100%;
    padding: 12px 16px;
  }
  .main-search form .wrapper .search-field .search-select.zip label::before,
  .mb-search form .wrapper .search-field .search-select.zip label::before {
    margin-left: 24px;
  }
  .main-search form .wrapper .search-field .search-select.zip label input,
  .mb-search form .wrapper .search-field .search-select.zip label input {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .main-search form .wrapper .search-field .search-select,
  .mb-search form .wrapper .search-field .search-select {
    /*line-height: 64px;*/
  }
}
.main-search form .wrapper .search-field .select-state,
.main-search form .wrapper .search-field select[class^="select-state"],
.main-search form .wrapper .search-field select[class*="select-state"],
.mb-search form .wrapper .search-field .select-state,
.mb-search form .wrapper .search-field select[class^="select-state"],
.mb-search form .wrapper .search-field select[class*="select-state"] {
  border-left: 1px solid #ccc;
  font-weight: 400;
  width: 100%;
  min-width: 222px;
  font-size: 24px;
  padding-left: 20px;
  padding-right: 30px;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .main-search form .wrapper .search-field .select-state,
  .main-search form .wrapper .search-field select[class^="select-state"],
  .main-search form .wrapper .search-field select[class*="select-state"],
  .mb-search form .wrapper .search-field .select-state,
  .mb-search form .wrapper .search-field select[class^="select-state"],
  .mb-search form .wrapper .search-field select[class*="select-state"] {
    font-size: 18px;
    height: 50px;
    min-width: 168px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 575px) {
  .main-search form .wrapper .search-field .select-state,
  .main-search form .wrapper .search-field select[class^="select-state"],
  .main-search form .wrapper .search-field select[class*="select-state"],
  .mb-search form .wrapper .search-field .select-state,
  .mb-search form .wrapper .search-field select[class^="select-state"],
  .mb-search form .wrapper .search-field select[class*="select-state"] {
    font-size: 16px;
    min-width: 150px;
  }
}
@media screen and (max-width: 470px) {
  .main-search form .wrapper .search-field .select-state,
  .main-search form .wrapper .search-field select[class^="select-state"],
  .main-search form .wrapper .search-field select[class*="select-state"],
  .mb-search form .wrapper .search-field .select-state,
  .mb-search form .wrapper .search-field select[class^="select-state"],
  .mb-search form .wrapper .search-field select[class*="select-state"] {
    padding-left: 16px;
    min-width: auto;
    max-width: 100px;
    background-size: auto 13px;
  }
}
@media screen and (max-width: 390px) {
  .main-search form .wrapper .search-field .select-state,
  .main-search form .wrapper .search-field select[class^="select-state"],
  .main-search form .wrapper .search-field select[class*="select-state"],
  .mb-search form .wrapper .search-field .select-state,
  .mb-search form .wrapper .search-field select[class^="select-state"],
  .mb-search form .wrapper .search-field select[class*="select-state"] {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.main-search form .wrapper .search-field .select-state option,
.main-search form .wrapper .search-field select[class^="select-state"] option,
.main-search form .wrapper .search-field select[class*="select-state"] option,
.mb-search form .wrapper .search-field .select-state option,
.mb-search form .wrapper .search-field select[class^="select-state"] option,
.mb-search form .wrapper .search-field select[class*="select-state"] option {
  font-size: 18px;
  text-transform: capitalize;
}
@media screen and (max-width: 575px) {
  .main-search form .wrapper .search-field .select-state option,
  .main-search form .wrapper .search-field select[class^="select-state"] option,
  .main-search form .wrapper .search-field select[class*="select-state"] option,
  .mb-search form .wrapper .search-field .select-state option,
  .mb-search form .wrapper .search-field select[class^="select-state"] option,
  .mb-search form .wrapper .search-field select[class*="select-state"] option {
    font-size: 15px;
  }
}
.main-search form .wrapper .search-field .select-state option:first-child,
.main-search
  form
  .wrapper
  .search-field
  select[class^="select-state"]
  option:first-child,
.main-search
  form
  .wrapper
  .search-field
  select[class*="select-state"]
  option:first-child,
.mb-search form .wrapper .search-field .select-state option:first-child,
.mb-search
  form
  .wrapper
  .search-field
  select[class^="select-state"]
  option:first-child,
.mb-search
  form
  .wrapper
  .search-field
  select[class*="select-state"]
  option:first-child {
  opacity: 0;
  display: none;
}
.main-search form .wrapper .theme-cstm-input-2,
.mb-search form .wrapper .theme-cstm-input-2 {
  padding: 20px 24px;
  font-size: 24px;
  line-height: 1em;
  text-align: center;
  border-radius: 50px;
  border-width: 2px;
  font-weight: 400;
}
.main-search form .wrapper .theme-cstm-input-2:focus,
.mb-search form .wrapper .theme-cstm-input-2:focus {
  border-color: var(--secondary-theme-color);
}
.main-search form .note small,
.mb-search form .note small {
  line-height: 1.3em;
}
@media screen and (max-width: 575px) {
  .main-search .dropdown,
  .mb-search .dropdown {
    padding-bottom: 42px;
  }
}
.main-search .dropdown .wrapper,
.mb-search .dropdown .wrapper {
  padding-left: 13px;
}
.main-search .dropdown .wrapper .search-field .search-select,
.mb-search .dropdown .wrapper .search-field .search-select {
  padding-right: 16px;
  border-right: 1px solid #ccc;
}
.main-search .dropdown .wrapper .search-field .search-select:first-child,
.mb-search .dropdown .wrapper .search-field .search-select:first-child {
  padding-left: 19px;
}
.main-search .dropdown .wrapper .search-field select[class^="select-"],
.main-search .dropdown .wrapper .search-field select[class*="select-"],
.mb-search .dropdown .wrapper .search-field select[class^="select-"],
.mb-search .dropdown .wrapper .search-field select[class*="select-"] {
  padding-right: 16px;
  padding-left: 16px;
  width: 100%;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .main-search .dropdown .wrapper,
  .mb-search .dropdown .wrapper {
    padding: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .main-search .dropdown .wrapper .search-field .search-select:first-child,
  .mb-search .dropdown .wrapper .search-field .search-select:first-child {
    padding-left: 0;
  }
  .main-search .dropdown .wrapper .search-field,
  .mb-search .dropdown .wrapper .search-field {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .main-search .dropdown .wrapper .search-field .search-select,
  .mb-search .dropdown .wrapper .search-field .search-select {
    padding-left: 0;
  }
  .main-search .dropdown .wrapper .btn-search,
  .mb-search .dropdown .wrapper .btn-search {
    position: absolute;
    bottom: -60px;
  }
}
@media screen and (max-width: 767px) and (max-width: 450px) {
  .main-search .dropdown .wrapper .btn-search.btn-search,
  .mb-search .dropdown .wrapper .btn-search.btn-search {
    padding-right: 16px;
    padding-left: 40px;
  }
  .main-search .dropdown .wrapper .btn-search.btn-search::before,
  .mb-search .dropdown .wrapper .btn-search.btn-search::before {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .main-search .dropdown .wrapper .search-field select[class^="select-"],
  .main-search .dropdown .wrapper .search-field select[class*="select-"],
  .mb-search .dropdown .wrapper .search-field select[class^="select-"],
  .mb-search .dropdown .wrapper .search-field select[class*="select-"] {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.main-search .fade,
.mb-search .fade {
  -webkit-transition: none;
  transition: none;
  opacity: 1;
}
.main-search .fade:not(.show),
.mb-search .fade:not(.show) {
  opacity: 1;
}
.main-search #search-for-plate .search-select,
.mb-search #search-for-plate .search-select {
  width: auto;
  margin-left: auto;
  margin-left: -20px;
}
@media screen and (max-width: 767px) {
  .main-search #search-for-plate .search-select,
  .mb-search #search-for-plate .search-select {
    width: auto;
  }
}
@media screen and (max-width: 390px) {
  .main-search #search-for-plate .search-select,
  .mb-search #search-for-plate .search-select {
    margin-left: -16px;
  }
}
@media screen and (max-width: 365px) {
  .main-search #search-for-plate .search-select,
  .mb-search #search-for-plate .search-select {
    margin-left: -14px;
  }
}
.main-search #search-for-plate .sel,
.mb-search #search-for-plate .sel {
  border-left: 1px solid #000;
  width: 140px;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .main-search #search-for-plate .sel,
  .mb-search #search-for-plate .sel {
    font-size: 18px;
    margin-right: 40px;
    padding-left: 0;
    width: auto;
  }
}
.main-search #search-for-plate .sub ul,
.mb-search #search-for-plate .sub ul {
  margin-top: 10px;
  overflow: scroll;
  overflow-x: hidden;
  max-height: calc(100vh - 452px - 30px);
}
@media screen and (max-width: 991px) {
  .main-search #search-for-plate .sub ul,
  .mb-search #search-for-plate .sub ul {
    max-height: calc(100vh - 396px - 30px);
  }
}
@media screen and (max-width: 767px) {
  .main-search #search-for-plate .sub ul,
  .mb-search #search-for-plate .sub ul {
    max-height: calc(100vh - 318px - 30px);
  }
}
@media screen and (max-width: 767px) {
  .main-search #search-for-plate .sub ul,
  .mb-search #search-for-plate .sub ul {
    max-height: calc(100vh - 318px - 30px);
    margin-top: 0;
    right: 0;
  }
}
@media screen and (max-width: 575px) {
  .main-search #search-for-plate .sub ul,
  .mb-search #search-for-plate .sub ul {
    max-height: calc(100vh - 293px - 30px);
  }
}
.main-search.light .nav,
.main-search.mini .nav,
.mb-search.light .nav,
.mb-search.mini .nav {
  background-color: transparent;
}
.main-search.light .nav .nav-link::before,
.main-search.mini .nav .nav-link::before,
.mb-search.light .nav .nav-link::before,
.mb-search.mini .nav .nav-link::before {
  background-color: rgba(0, 0, 0, 0.2);
}
.main-search.light .nav .nav-link.active::before,
.main-search.mini .nav .nav-link.active::before,
.mb-search.light .nav .nav-link.active::before,
.mb-search.mini .nav .nav-link.active::before {
  background-color: var(--secondary-theme-color);
}

@media screen and (max-width: 500px) {
  .residual-value .main-search .nav {
    position: relative;
    margin-left: 0;
    margin-top: 20px;
  }
}
.blk-16 .main-search .nav .nav-link {
  color: #000;
}

.narrow-search {
  background-color: #f2f2f2;
  padding: 24px 0;
}
@media screen and (max-width: 575px) {
  .narrow-search {
    padding: 16px 0;
  }
}
.narrow-search h2,
.narrow-search span.h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  padding: 0;
  margin: 0;
}
.narrow-search h2 span,
.narrow-search span.h2 span {
  color: var(--secondary-theme-color);
}
@media screen and (max-width: 991px) {
  .narrow-search h2,
  .narrow-search span.h2 {
    font-size: 18px;
  }
}
.narrow-search div.n-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  gap: 40px;
  row-gap: 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.narrow-search div.n-form .fields {
  gap: 10px;
}
@media screen and (max-width: 450px) {
  .narrow-search div.n-form .fields {
    width: 100%;
    gap: 6px;
    padding: 0 6px;
  }
}
@media screen and (max-width: 991px) {
  .narrow-search div.n-form {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.narrow-search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  row-gap: 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.narrow-search form .fields {
  gap: 10px;
}
@media screen and (max-width: 450px) {
  .narrow-search form .fields {
    width: 100%;
    gap: 6px;
    padding: 0 6px;
  }
}
@media screen and (max-width: 991px) {
  .narrow-search form {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.narrow-search button.select-btn,
.narrow-search input,
.narrow-search ul.dropdown-menu {
  background-color: #fff;
  font-weight: 400;
}
.narrow-search button.select-btn,
.narrow-search input,
.narrow-search .search-by-plate select {
  border: 2px solid #bbbbbb;
}
.narrow-search ul.dropdown-menu {
  border: 1px solid #bbbbbb;
}
.narrow-search button.select-btn,
.narrow-search input,
.narrow-search .search-by-plate select,
.narrow-search button.btn-search {
  border-radius: 9px;
}
.narrow-search button.select-btn,
.narrow-search input,
.narrow-search button.btn-search,
.narrow-search select,
.narrow-search .search-by-plate select,
.narrow-search .dropdown span,
.narrow-search .dropdown button.select-btn {
  cursor: pointer;
  height: 48px;
  font-size: 16px;
  line-height: 44px;
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .narrow-search button.select-btn,
  .narrow-search input,
  .narrow-search button.btn-search,
  .narrow-search select,
  .narrow-search .search-by-plate select,
  .narrow-search .dropdown span,
  .narrow-search .dropdown button.select-btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .narrow-search button.select-btn,
  .narrow-search input,
  .narrow-search button.btn-search,
  .narrow-search select,
  .narrow-search .search-by-plate select,
  .narrow-search .dropdown span,
  .narrow-search .dropdown button.select-btn {
    height: 44px;
    line-height: 40px;
  }
}
@media screen and (max-width: 450px) {
  .narrow-search select,
  .narrow-search .search-by-plate select,
  .narrow-search .dropdown span,
  .narrow-search .dropdown button.select-btn {
    line-height: 42px;
  }
}
.narrow-search button.select-btn,
.narrow-search input,
.narrow-search button.btn-search,
.narrow-search select,
.narrow-search .search-by-plate select {
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (max-width: 450px) {
  .narrow-search button.select-btn,
  .narrow-search input,
  .narrow-search button.btn-search,
  .narrow-search select,
  .narrow-search .search-by-plate select {
    padding-left: 10px;
    padding-right: 0;
  }
}
@media screen and (max-width: 375px) {
  .narrow-search button.select-btn,
  .narrow-search input,
  .narrow-search button.btn-search,
  .narrow-search select,
  .narrow-search .search-by-plate select {
    padding-left: 8px;
  }
}
.narrow-search input {
  text-transform: uppercase;
  width: auto;
}
.narrow-search input::-webkit-input-placeholder {
  text-transform: capitalize;
}
.narrow-search input::-moz-placeholder {
  text-transform: capitalize;
}
.narrow-search input:-ms-input-placeholder {
  text-transform: capitalize;
}
.narrow-search input::-ms-input-placeholder {
  text-transform: capitalize;
}
.narrow-search input::placeholder {
  text-transform: capitalize;
}
@media screen and (max-width: 450px) {
  .narrow-search input,
  .narrow-search .search-by-plate {
    width: 100%;
  }
}
.narrow-search .search-by-plate {
  padding-right: 0;
}
.narrow-search .search-by-plate input {
  border-radius: 9px 0 0 9px;
  margin-right: -2px;
}
.narrow-search .search-by-plate select {
  padding-right: 40px;
  width: auto;
  border-radius: 0 9px 9px 0;
}
@media screen and (max-width: 767px) {
  .narrow-search .search-by-plate select {
    max-width: 100px;
  }
}
@media screen and (max-width: 450px) {
  .narrow-search .search-by-plate select {
    background-position: right 6px center;
    max-width: 78px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 375px) {
  .narrow-search .search-by-plate select {
    max-width: 72px;
  }
}
.narrow-search button.btn-search {
  background-color: var(--secondary-theme-color);
  color: #fff;
  border: 0;
  height: auto;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
}
.narrow-search button.btn-search::before {
  font-size: 15px;
  margin-right: 10px;
}
.narrow-search button.btn-search:hover {
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .narrow-search button.btn-search {
    font-size: 14px;
  }
  .narrow-search button.btn-search::before {
    font-size: 12px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 450px) {
  .narrow-search button.btn-search {
    height: 30px;
    border-radius: 20px;
    padding-left: 0;
    padding-right: 0;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .narrow-search button.btn-search::before {
    display: none;
  }
}
.narrow-search .dropdown {
  background-color: #fff;
  position: relative;
  border-radius: 9px;
}
.narrow-search .dropdown ul.dropdown-menu {
  padding: 0;
  overflow: hidden;
  min-width: auto;
}
.narrow-search .dropdown ul.dropdown-menu li {
  width: 100%;
  cursor: pointer;
}
.narrow-search .dropdown ul.dropdown-menu li a {
  font-size: 16px;
  width: 100%;
  font-weight: 400;
  line-height: 40px;
  list-style: none !important;
  min-height: 40px;
  outline: none;
  padding: 0 29px 0 18px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.narrow-search .dropdown ul.dropdown-menu li a.active {
  background-color: #f6f6f6;
  color: #000;
  font-weight: bold;
}
.narrow-search .dropdown ul.dropdown-menu li a:hover {
  background-color: transparent;
  text-decoration: none;
  background-color: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .narrow-search .dropdown ul.dropdown-menu li a {
    font-size: 14px;
    line-height: 30px;
    min-height: 30px;
    padding-left: 14px;
    padding-right: 20px;
  }
}
.narrow-search .dropdown button.select-btn {
  position: relative;
  z-index: 1;
  background-color: transparent;
  text-align: left;
  overflow: hidden;
  padding-right: 30px;
  padding-left: 94px;
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 767px) {
  .narrow-search .dropdown button.select-btn {
    min-width: auto;
    padding-left: 14px;
  }
}
.narrow-search .dropdown button.select-btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -7px;
  width: 16px;
  height: 12px;
  border: 0;
  background-repeat: no-repeat;
  background-image: url("./img/report[1][1].png") !important;
  background-size: 18px 14px;
}
@media screen and (max-width: 450px) {
  .narrow-search .dropdown button.select-btn {
    padding-right: 30px;
    padding-left: 12px;
  }
  .narrow-search .dropdown button.select-btn::after {
    right: 6px;
  }
}
.narrow-search .dropdown span {
  position: absolute;
  top: 50%;
  margin-top: -22px;
  left: 16px;
  display: block;
  z-index: 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .narrow-search .dropdown span {
    display: none;
  }
}
.narrow-search .dropdown .dropdown-menu.nav {
  display: none;
}
.narrow-search .dropdown .dropdown-menu.show.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 65px;
}
@media screen and (max-width: 450px) {
  .narrow-search .tab-content {
    width: 100%;
  }
}

.search-car-repair {
  overflow: hidden;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .search-car-repair {
    padding: 24px;
  }
}
.search-car-repair .image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
}
.search-car-repair .image img {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -40px;
  right: -40px;
}
@media screen and (max-width: 991px) {
  .search-car-repair .image {
    position: relative;
  }
}

form.style__bold-500 .wrapper {
  border-radius: 16px;
  border: 3px solid #bdbdbd;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
form.style__bold-500 input[type="text"] {
  border: 0;
  height: 43px;
  line-height: 43px;
  font-size: 1em;
  width: 100%;
  display: inline-block;
}
form.style__bold-500 input[type="text"].zip-code {
  max-width: 130px;
}
form.style__bold-500 i {
  margin: auto 16px auto 8px;
}
form.style__bold-500 i::before {
  color: var(--secondary-theme-color);
}
form.style__bold-500 button {
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 1em;
}

.theme-cstm-input.p-0 {
  padding: 0 !important;
}

.pagination {
  color: #000;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pagination li {
  padding: 0 5px;
}
.pagination a {
  color: var(--secondary-theme-color);
  text-decoration: none;
}
.pagination a.icon-prev {
  margin-left: 24px;
}
.pagination a.icon-prev,
.pagination a.icon-next {
  width: 16px;
  height: 16px;
  display: block;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pagination a::before {
  font-size: 16px;
}
.pagination a:hover {
  color: #000;
}

footer {
  background-color: #fff;
  border-top: 1px solid #d6d6d6;
  padding: 40px 0 40px 0;
  font-size: 16px;
  margin-top: 64px;
  position: relative;
  z-index: 2;
  line-height: 25px;
}
@media screen and (max-width: 767.99px) {
  footer {
    padding: 32px 12px 0 12px;
    margin-top: 40px;
  }
}
footer a {
  text-decoration: none;
  color: var(--secondary-theme-color);
  line-height: 24px !important;
}
footer a.btn {
  margin-top: 20px;
  color: #fff;
}
footer a:hover {
  color: var(--secondary-theme-color);
  text-decoration: underline;
}
footer span.h4 {
  font-weight: 700;
  font-size: 16px;
  padding-bottom: 24px;
  display: block;
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  footer span.h4 {
    border-radius: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f4f4f4;
    border: 1px solid var(--container-border);
    padding: 12px 16px;
    cursor: pointer;
  }
  footer span.h4::after {
    font-family: "sans-serif";
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e96d";
  }
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer ul.menu li {
  padding: 0;
  margin-bottom: 4px;
}
@media screen and (max-width: 575px) {
  footer ul.menu {
    display: none;
    padding-left: 16px;
    margin-top: 10px;
    margin-bottom: 24px;
  }
  footer ul.menu li a.btn {
    background-color: transparent;
    color: var(--secondary-theme-color);
    padding: 0;
    margin: 0;
  }
}
footer ul.d-block {
  display: block;
}
footer .f-desc {
  border-left: 1px solid #dbdbdb;
  padding-left: 32px;
}
footer .f-desc .logo {
  width: 150px;
}
footer .f-desc .logo img {
  width: 100%;
  margin-bottom: 16px;
}
footer .f-desc .txt {
  line-height: 24px;
}
footer .f-desc ul.contact {
  margin-top: 24px;
}
footer .f-desc ul.contact li {
  margin-bottom: 4px;
  position: relative;
  padding-left: 24px;
}
footer .f-desc ul.contact li::before {
  position: absolute;
  left: 0;
  top: 3px;
}
@media screen and (max-width: 991px) {
  footer .f-desc {
    border-left: 0;
    padding-left: 0;
    margin-top: 40px;
  }
  footer .f-desc ul.contact {
    margin-top: 16px;
  }
}
@media screen and (max-width: 991px) and (max-width: 575px) {
  footer .f-desc ul.contact {
    padding-left: 16px;
  }
}
@media screen and (max-width: 767px) {
  footer .f-desc {
    margin-top: 24px;
  }
}
@media screen and (max-width: 575px) {
  footer .f-desc {
    margin-top: 0;
  }
}
footer .nmvtis {
  margin-top: 24px;
  line-height: 18px;
  font-size: 11px;
}
footer .nmvtis img {
  margin-bottom: 6px;
  height: 40px;
}
@media screen and (max-width: 575px) {
  footer .nmvtis {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
  }
  footer .nmvtis p {
    margin-bottom: 0;
  }
}
footer .copy {
  font-weight: 300;
  /*margin-top: 64px;*/
  display: block;
}
@media screen and (max-width: 767.99px) {
  footer .copy {
    margin-top: 32px;
  }
}
@media screen and (max-width: 575px) {
  footer .copy {
    margin-top: 0;
    text-align: left;
  }
}
@media screen and (max-width: 575px) {
  footer .container .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  footer .container div {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 8px;
  }
  footer .container div:last-child {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    margin-bottom: 16px;
  }
}

.top-nav {
  background-color: #fff;
  padding: 0;
  margin-bottom: 64px;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 991px) {
  .top-nav {
    margin-bottom: 32px;
  }
}
.top-nav.mb-0 {
  margin-bottom: 0;
}
.top-nav .logo-nav {
  height: 90px;
}
.top-nav .logo-nav .logo img {
  width: auto;
  height: 60px;
  border: 0;
}
@media screen and (max-width: 1199px) {
  .top-nav .logo-nav .logo img {
    height: 30px;
  }
}
@media screen and (max-width: 991px) {
  .top-nav .logo-nav .logo img {
    height: 25px;
  }
}
.top-nav .logo-nav .logo a.icon-phone {
  color: #000;
  font-weight: 700;
}
.top-nav .logo-nav .logo a.icon-phone::before {
  color: var(--secondary-theme-color);
  font-size: 24px;
}
.top-nav .logo-nav .logo a.icon-phone:hover {
  text-decoration: none;
  color: var(--secondary-theme-color);
}
@media screen and (max-width: 575px) {
  .top-nav .logo-nav .logo {
    width: 100%;
    text-align: center;
  }
  .top-nav .logo-nav .logo img,
  .top-nav .logo-nav .logo svg {
    margin-right: -48px;
  }
}
@media screen and (max-width: 991px) {
  .top-nav .logo-nav .logo img.m-0 {
    margin: 0 !important;
  }
}
.top-nav .logo-nav .logo.text-start {
  text-align: left;
}
.top-nav .logo-nav .logo-mini img {
  height: 40px;
}
.top-nav .logo-nav .dropdown-menu[data-bs-popper] {
  right: auto;
  left: 0;
}
.top-nav .logo-nav .navbar.main-nav {
  display: block;
}
@media screen and (min-width: 992px) {
  .top-nav .logo-nav .navbar.main-nav.d-lg-none {
    display: none;
  }
}
.top-nav .logo-nav .navbar.main-nav a img {
  width: 18px;
  height: 18px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .top-nav .logo-nav .navbar.main-nav a img {
    width: 16px;
    height: 16px;
  }
}
.top-nav .logo-nav .navbar.main-nav a:hover,
.top-nav .logo-nav .navbar.main-nav a:focus {
  text-decoration: none;
  color: var(--secondary-theme-color);
}
.top-nav .logo-nav .navbar.main-nav a[type="button"] {
  border: 2px solid var(--secondary-theme-color);
  border-radius: 50px;
  padding-right: 16px;
}
.top-nav .logo-nav .navbar.main-nav a[type="button"]::after {
  content: "\e96f";
  margin-left: 12px;
  display: block;
  width: 19px;
  height: 10px;
  font-size: 10px;
  color: var(--secondary-theme-color);
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .top-nav .logo-nav .navbar.main-nav a[type="button"]::after {
    font-size: 8px;
    width: 16px;
    height: 10px;
  }
}
.top-nav .logo-nav .navbar.main-nav a[aria-expanded="false"]::after {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.top-nav .logo-nav .navbar.main-nav a[aria-expanded="true"]::after {
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.top-nav .logo-nav .navbar.main-nav button img {
  width: 24px;
  height: auto;
  -webkit-filter: invert(31%) sepia(98%) saturate(1946%) hue-rotate(101deg)
    brightness(98%) contrast(102%);
  filter: invert(31%) sepia(98%) saturate(1946%) hue-rotate(101deg)
    brightness(98%) contrast(102%);
}
.top-nav .logo-nav .navbar .navbar-toggler {
  padding: 8px;
}
.top-nav .logo-nav .navbar .navbar-toggler:focus {
  outline: 0 !important;
  text-decoration: none;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0rem;
  box-shadow: 0 0 0 0;
}
.top-nav .logo-nav .navbar .navbar-toggler.logged {
  border: 0;
}
.top-nav .logo-nav .navbar .navbar-toggler.logged .navbar-toggler-icon {
  background-image: none;
}
.top-nav .logo-nav .navbar .navbar-nav {
  z-index: 800;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.top-nav .logo-nav .navbar .navbar-nav .nav-item {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.top-nav .logo-nav .navbar .navbar-nav .nav-item.home {
  margin-right: 16px;
}
.top-nav .logo-nav .navbar .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .top-nav .logo-nav .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
  }
}
.top-nav .logo-nav .navbar .navbar-nav .nav-item .nav-link:hover {
  text-decoration: none;
  color: var(--secondary-theme-color);
}
.top-nav .logo-nav .navbar .navbar-nav .nav-item .nav-link.btn:hover {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .top-nav .logo-nav .navbar .navbar-nav .nav-item .nav-link.btn:hover {
    color: var(--secondary-theme-color);
  }
}
.top-nav .logo-nav .navbar .navbar-nav .nav-item .nav-link::before {
  margin-right: 12px;
  display: block;
  width: 16px;
}
@media screen and (min-width: 992px) {
  .top-nav .logo-nav .navbar .navbar-nav .nav-item .nav-link::before {
    display: none;
  }
}
.top-nav .logo-nav .navbar .navbar-nav .nav-item .nav-link.icon-code::before {
  display: block;
}
.top-nav .logo-nav .navbar .navbar-nav .nav-item .nav-link:focus {
  color: var(--secondary-theme-color);
}
.top-nav .logo-nav .navbar .navbar-nav .nav-item .nav-link.btn:focus {
  color: #fff;
  background-color: #000;
}
.top-nav .logo-nav .navbar .navbar-nav .nav-item.dropdown .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.top-nav .logo-nav .navbar .navbar-nav .nav-item.dropdown .nav-link::after {
  font-size: 16px;
  color: var(--secondary-theme-color);
  display: inline-block;
  margin-left: 8px;
  vertical-align: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}
.top-nav .logo-nav .navbar .navbar-nav .nav-item .btn {
  color: #fff;
  padding: 8px 16px;
  margin-left: 8px;
}
@media screen and (max-width: 991px) {
  .top-nav .logo-nav .navbar .navbar-nav .nav-item .btn {
    color: #fff;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
  }
}
@media screen and (max-width: 991px) {
  .top-nav .logo-nav .navbar .navbar-nav .nav-item {
    width: 100%;
  }
}
.top-nav
  .logo-nav
  .navbar
  .navbar-nav
  .nav-item:last-child
  #navbarDropdown-account {
  padding-right: 0;
}
.top-nav .logo-nav .navbar .navbar-nav .nav-prof-img {
  margin-left: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.top-nav .logo-nav .navbar .navbar-nav .nav-prof-img img {
  border-radius: 60px;
}
.top-nav .logo-nav .navbar .navbar-nav button {
  display: none;
}
.top-nav .logo-nav .navbar .navbar-nav button::before {
  display: none;
}
@media screen and (max-width: 991px) {
  .top-nav .logo-nav .navbar .navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 40px;
    border-left: 0;
    border-right: 0;
    padding: 8px 32px;
    position: relative;
  }
  .top-nav .logo-nav .navbar .navbar-nav button {
    position: absolute;
    top: -10px;
    right: 30px;
    height: 16px;
    width: 16px;
    border: 0;
    background-color: transparent;
    display: block;
    padding: 0;
  }
  .top-nav .logo-nav .navbar .navbar-nav button::before {
    display: block;
    color: #000;
    width: 16px;
    font-size: 16px;
  }
  .top-nav .logo-nav .navbar .navbar-nav .nav-item {
    margin-right: 0;
    padding: 6px 0;
  }
  .top-nav .logo-nav .navbar .navbar-nav .nav-item.dropdown {
    margin-left: 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .top-nav
    .logo-nav
    .navbar
    .navbar-nav
    .nav-item.dropdown
    .dropdown-menu[data-bs-popper] {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
    right: 0;
    top: 0;
    left: auto;
    
    margin: 10px 0 10px 8px;
    z-index: 999999;
    border: 0;
    padding: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
  }
  .top-nav
    .logo-nav
    .navbar
    .navbar-nav
    .nav-item.dropdown
    .dropdown-menu[data-bs-popper]
    li {
    margin-bottom: 0;
  }
  .top-nav
    .logo-nav
    .navbar
    .navbar-nav
    .nav-item.dropdown
    .dropdown-menu[data-bs-popper]
    li
    a {
    padding-bottom: 0;
  }
  .top-nav .logo-nav .navbar .navbar-nav .nav-item .nav-link {
    text-transform: capitalize;
  }
  .top-nav .logo-nav .navbar .navbar-nav .nav-prof-img {
    margin-left: 0;
    display: none;
  }
}
.top-nav .dropdown-menu {
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.06);
}
.top-nav .dropdown-menu a {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.top-nav .dropdown-menu a:hover {
  background-color: transparent;
  color: var(--secondary-theme-color);
  text-decoration: none;
}
.top-nav .dropdown-menu a::before {
  font-size: 16px;
  margin-right: 16px;
  height: 16px;
  width: 16px;
  line-height: 16px;
  text-align: center;
  display: block;
  color: var(--secondary-theme-color);
}
.top-nav .dropdown-menu a.icon-bullet::before {
  font-size: 6px;
  margin-right: 6px;
  /* list-style: none; */
}
.top-nav .dropdown-menu a.icon-chevron-thin-right::before {
  font-size: 12px;
  margin-right: 10px;
}
.top-nav .dropdown-menu.show {
  padding-top: 16px;
  padding-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.navbar-collapse.admin,
.navbar-collapse.min {
  position: absolute;
  top: 70px;
  /* adjust to height of navbar */
  padding: 14px 24px;
  height: auto;
  border: 1px solid var(--container-border);
  background-color: #fff;
  z-index: 99;
  right: 0;
  border-radius: 16px;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.06);
}

.navbar-collapse.collapsing {
  -webkit-transition: right 300ms ease-out;
  transition: right 300ms ease-out;
}

.navbar-collapse.show {
  -webkit-transition: right 30ms ease-in-out;
  transition: right 30ms ease-in-out;
}

.navbar-toggler.collapsed ~ .navbar-collapse {
  -webkit-transition: right 30ms ease-in-out;
  transition: right 30ms ease-in-out;
}

@media screen and (min-width: 992px) {
  .navbar-collapse .style-three {
    display: none !important;
  }
  .navbar-collapse .main-nav {
    padding: 0 !important;
    width: auto !important;
  }
  .main-nav .close-menu {
    display: none !important;
  }
  .main-nav .navbar-collapse ul {
    padding: 0;
  }
  .main-nav .navbar-collapse ul li a {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .navbar-collapse.admin {
    border-radius: 16px 0 0 16px;
    padding: 0;
    top: 0;
    position: fixed;
  }
  .navbar-collapse.admin.report {
    top: 89px;
  }
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: auto;
    /* adjust to height of navbar */
    right: 0;
    padding: 0;
    width: 300px;
    height: 100%;
    border-left: 1px solid var(--container-border);
    background-color: #fff;
    z-index: 9999999;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.06);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .navbar-collapse.collapsing {
    right: -75%;
    -webkit-transition: right 300ms ease-out;
    transition: right 300ms ease-out;
  }
  .navbar-collapse.show {
    right: 0;
    -webkit-transition: right 300ms ease-in-out;
    transition: right 300ms ease-in-out;
  }
  .navbar-toggler.collapsed ~ .navbar-collapse {
    -webkit-transition: right 500ms ease-in-out;
    transition: right 500ms ease-in-out;
  }
  .navbar-collapse.admin a,
  .navbar-collapse.min a {
    padding: 13px 0 13px 0 !important;
  }
  .navbar-collapse.min {
    width: auto;
    right: 0;
    left: auto;
  }
  .navbar-collapse.min ul {
    width: auto;
  }
  .navbar-collapse.min ul li {
    width: auto;
  }
  .navbar-collapse.min ul li a {
    width: auto;
    white-space: nowrap;
  }
}
.in-p-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  border-radius: 80px;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  list-style: none;
  background-color: #f3f3f3;
  width: auto;
  padding: 0;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  font-weight: 700;
  float: right;
}
.in-p-nav li a {
  text-decoration: none;
  padding: 8px 24px;
  display: block;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.in-p-nav li a::before {
  margin-right: 12px;
}
.in-p-nav li.active a {
  background-color: var(--secondary-theme-color);
  color: #fff;
  border-radius: 80px;
  text-shadow: 1px 1px 0 #1d881a;
}
@media screen and (max-width: 767px) {
  .in-p-nav {
    float: none;
    width: 100%;
  }
  .in-p-nav li {
    width: 50%;
  }
  .in-p-nav li a {
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) and (max-width: 425px) {
  .in-p-nav li a {
    padding: 12px 16px;
  }
}
@media screen and (max-width: 767px) and (max-width: 325px) {
  .in-p-nav {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .in-p-nav li {
    width: auto;
  }
  .in-p-nav li a {
    padding: 12px 16px;
  }
}

.bg-gray .in-p-nav,
.bg-black .in-p-nav {
  background-color: #fff;
}

/* Added by T.P. from MA to FE CSS 01/03/2023 */
#mobilenavigation .main-nav {
  display: block;
  padding: 32px;
  width: 290px;
}
@media screen and (max-width: 991px) {
  #mobilenavigation .main-nav.d-none {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  #mobilenavigation .main-nav.d-lg-block {
    display: block;
  }
}
#mobilenavigation .main-nav ul li.undermenu ul {
  /*border-left: 1px solid #000;*/
  padding: 0;
}
#mobilenavigation .main-nav ul .undermenu a::after {
  content: "\e96d";
  position: absolute;
  right: 0px;
}
#mobilenavigation .main-nav ul li.account {
  margin: 0 0 16px -12px;
}
#mobilenavigation .main-nav ul li.undermenu.act a::after {
  content: "\e975";
  color: var(--secondary-theme-color);
}
#mobilenavigation .main-nav ul li:hover {
  background-color: transparent;
}
#mobilenavigation .close-menu {
  position: absolute;
  top: 0px;
  right: -15px;
  height: 16px;
  width: 16px;
  border: 0;
  background-color: transparent;
  display: block;
  padding: 0;
}
#mobilenavigation .close-menu::before {
  display: block;
  color: #000;
  width: 16px;
  font-size: 16px;
}
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
}
.main-nav .nav-fixed {
  position: fixed;
  top: 0;
}
.main-nav .inner {
  background-color: var(--nav-member-bg-color);
  border-radius: 30px;
}
@media (max-width: 991px) {
  .main-nav .inner {
    background-color: transparent;
    border-radius: 0px;
  }
}
.main-nav ul {
  margin: 0;
  list-style: none;
  padding: 50px 0 50px 24px;
}
@media screen and (max-width: 991px) {
  .main-nav ul .icon-sign-out {
    margin-bottom: 0px !important;
  }
}
@media (max-width: 991px) {
  .main-nav ul {
    padding: 0;
  }
}
.main-nav ul span.collapse-minified {
  cursor: pointer;
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--background-gray-color);
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-nav ul span.collapse-minified::before {
  font-size: 13px;
}
.main-nav ul span.collapse-minified.opened {
  position: absolute;
  top: 20px;
  right: 24px;
}
.main-nav ul span.collapse-minified.opened::before {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.main-nav ul li.active,
.main-nav ul li:hover {
  border-radius: 50px 0 0 50px;
  position: relative;
}
.main-nav ul .undermenu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  position: relative;
}
.main-nav ul .undermenu a::after {
  content: "\e96d";
  width: 100%;
  padding-right: 40px;
  text-align: right;
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-nav ul .undermenu a::after {
    padding-right: 24px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .main-nav ul .undermenu a::after {
    padding-right: 8px;
  }
}
.main-nav ul .undermenu li a::after {
  display: none;
}
.main-nav ul .undermenu li.active,
.main-nav ul .undermenu li:hover {
  border-radius: 0px 0 0 0px;
  position: relative;
}
.main-nav ul li.account {
  /*background-color: var(--background-gray-color);*/
  padding: 0;
  margin-bottom: 24px;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .main-nav ul li.account {
    margin-bottom: 16px;
  }
}
.main-nav ul li.account a {
  padding: 0;
  font-weight: 900;
  line-height: 20px;
}
.main-nav ul li.account a::after {
  margin: 0;
  padding: 0;
  display: none;
}
.main-nav ul li.account a img {
  margin-right: 16px;
  /*border: 4px solid var(--nav-member-bg-color);*/
  border: 4px solid var(--background-gray-color);
  border-radius: 30px;
}
.main-nav ul li.account:hover,
.main-nav ul li.account:focus {
  background-color: transparent;
}
.main-nav ul li a {
  position: relative;
  z-index: 20;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1.3em;
}
.main-nav ul li.active {
  background-color: #fff;
}
.main-nav ul li.active::before,
.main-nav ul li.active::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 40px;
  background-color: transparent;
  right: 0px;
  z-index: 2;
}
@media (max-width: 991px) {
  .main-nav ul li.active {
    background-color: transparent;
  }
  .main-nav ul li.active::after,
  .main-nav ul li.active::before {
    display: none;
  }
  .main-nav ul li.active a {
    color: var(--secondary-theme-color);
  }
}
.main-nav ul li.active::before {
  top: -40px;
  border-radius: 0 0 20px 0;
  -webkit-box-shadow: 0px 20px 0px 0px #fff;
  box-shadow: 0px 20px 0px 0px #fff;
}
.main-nav ul li.active::after {
  bottom: -40px;
  border-radius: 0 20px 0 0;
  -webkit-box-shadow: 0px -20px 0px 0px #fff;
  box-shadow: 0px -20px 0px 0px #fff;
}
.main-nav ul li.active a::before {
  color: var(--secondary-theme-color);
}
.main-nav ul li.active:hover {
  background-color: #fff;
}
.main-nav ul li:hover {
  background-color: rgba(244, 244, 244, 0.4);
  position: relative;
  z-index: 600;
}
.main-nav ul li.undermenu.act:hover {
  background-color: transparent;
}
.main-nav ul li.undermenu.act a::after {
  content: "\e975";
  color: var(--secondary-theme-color);
}
.main-nav ul li.undermenu ul {
  border-left: 1px solid #000;
  margin-left: 84px;
  padding: 0;
}
.main-nav ul li.undermenu ul li {
  padding-left: 16px;
}
.main-nav ul li.undermenu ul li:hover {
  border-radius: 0px;
}
.main-nav ul li.undermenu ul a {
  padding: 3px 0 3px 0;
  font-weight: 300;
}
@media screen and (max-width: 991px) {
  .main-nav ul li.undermenu ul a {
    padding: 3px 0 3px 0 !important;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .main-nav ul {
    padding: 40px 0 40px 16px;
  }
  .main-nav ul li a {
    padding: 10px 16px 10px 16px;
  }
}
.main-nav a {
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  color: var(--nav-a-color);
  padding: 16px 16px 16px 16px;
  line-height: 1.7em;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-nav a.d-none {
  display: none;
}
@media screen and (min-width: 991px) {
  .main-nav a.d-desk {
    display: inline-block;
  }
}
@media screen and (min-width: 992px) {
  .main-nav a.d-lg-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  .main-nav a.d-lg-none {
    display: none;
  }
}
.main-nav a::before {
  margin-right: 24px;
  font-size: 20px;
  width: 20px;
  max-width: 20px;
  height: auto;
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 992px) and (max-width: 1059px) {
  .main-nav a::before {
    margin-right: 16px;
  }
}
.main-nav.style-one .inner ul li.active a {
  color: var(--secondary-theme-color);
}
.main-nav.style-one .inner ul li.undermenu ul {
  border-left: 0;
  padding-left: 0;
  margin: 0 0 0 68px;
}
.main-nav.style-one .inner ul li.undermenu ul li {
  padding-left: 0;
}
.main-nav.style-one .inner ul li.undermenu ul li.active,
.main-nav.style-one .inner ul li.undermenu ul li:hover {
  border-radius: 50px 0 0 50px;
}
.main-nav.style-one .inner ul li.undermenu ul li.active a {
  color: var(--secondary-theme-color);
}
.main-nav.style-one .inner ul li.undermenu ul li.active a:hover {
  border-radius: 50px;
}
.main-nav.style-one .inner ul li.undermenu ul li a {
  font-weight: 400;
  padding-left: 16px;
}
.main-nav.style-one .inner ul li.undermenu ul li a::before {
  font-family: "sans-serif";
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e970";
  font-size: 12px;
  margin: 0 12px 0 0;
}
.main-nav.style-two .inner ul li.active a {
  color: var(--secondary-theme-color);
}
.main-nav.style-two .inner ul li.undermenu ul {
  border-left: 0;
  padding-left: 0;
  margin: 0 0 0 68px;
}
.main-nav.style-two .inner ul li.undermenu ul li {
  padding-left: 0;
}
.main-nav.style-two .inner ul li.undermenu ul li.active,
.main-nav.style-two .inner ul li.undermenu ul li:hover {
  border-radius: 50px 0 0 50px;
}
.main-nav.style-two .inner ul li.undermenu ul li.active a {
  color: var(--secondary-theme-color);
}
.main-nav.style-two .inner ul li.undermenu ul li.active a:hover {
  border-radius: 50px;
}
.main-nav.style-two .inner ul li.undermenu ul li.active a::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: var(--secondary-theme-color);
  position: relative;
  top: -1px;
}
.main-nav.style-two .inner ul li.undermenu ul li a {
  font-weight: 400;
  padding-left: 16px;
}
.main-nav.style-two .inner ul li.undermenu ul li a::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #000;
  position: relative;
  top: -1px;
}
.main-nav.style-three .inner ul li.active a {
  color: var(--secondary-theme-color);
}
.main-nav.style-three .inner ul li.undermenu ul {
  border-left: 0;
  padding-left: 0;
  margin: 0 0 0 8px;
}
.main-nav.style-three .inner ul li.undermenu ul li {
  padding-left: 0;
}
.main-nav.style-three .inner ul li.undermenu ul li.active,
.main-nav.style-three .inner ul li.undermenu ul li:hover {
  border-radius: 50px 0 0 50px;
}
.main-nav.style-three .inner ul li.undermenu ul li.active a {
  color: var(--secondary-theme-color);
}
.main-nav.style-three .inner ul li.undermenu ul li.active a:hover {
  border-radius: 50px;
}
.main-nav.style-three .inner ul li.undermenu ul li a {
  font-weight: 400;
  padding-left: 16px;
  padding-right: 16px;
  line-height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.main-nav.style-three .inner ul li.undermenu ul li a::before {
  content: "";
  height: 6px;
  width: 6px;
  line-height: 6px;
  display: block;
  background-color: var(--secondary-theme-color);
  position: relative;
  top: 9px;
  left: 4px;
  margin-right: 30px;
  border-radius: 3px;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .main-nav.style-one .inner ul li.undermenu ul,
  .main-nav.style-two .inner ul li.undermenu ul,
  .main-nav.style-three .inner ul li.undermenu ul {
    padding-left: 0;
    margin-left: 8px;
  }
}
.main-nav.minified {
  max-width: 80px;
}
.main-nav.minified ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  padding: 24px 0 24px 0;
  overflow: hidden;
}
.main-nav.minified ul ul,
.main-nav.minified ul.d-none {
  display: none;
}
.main-nav.minified ul li a {
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 12px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}
.main-nav.minified ul li a::before {
  text-align: center;
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  line-height: 20px;
}
.main-nav.minified ul li.active {
  margin-left: 10px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}
.main-nav.minified ul li.active a {
  padding-left: 14px;
}
.main-nav.minified.m-open {
  max-width: none;
}
.main-nav.minified.m-open ul li.active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

#peddle-button button {
  display: block;
  background-color: transparent;
  padding: 0;
  margin: 0;
  position: relative;
  top: auto;
  right: auto;
  width: 100%;
  height: auto;
  text-align: left;
}
#peddle-button button svg {
  display: none;
}
#peddle-button button::before {
  content: "Sell";
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  text-align: left;
}
#peddle-button button:hover::before {
  color: var(--secondary-theme-color);
}
#peddle-button.btn {
  padding: 0;
}
#peddle-button.btn button {
  padding: 14px 30px;
}
#peddle-button.btn button::before {
  content: "Get An Instant Offer";
  width: 100%;
  color: #fff;
  font-weight: 700;
}
#peddle-button.btn button:hover::before {
  color: #fff !important;
}

#peddle-button-2 {
  padding: 14px 30px;
}
#peddle-button-2 button {
  display: block;
  background-color: transparent;
  padding: 0;
  margin: 0;
  position: relative;
  top: auto;
  right: auto;
  width: 100%;
  height: auto;
  padding: 14px 30px;
}
#peddle-button-2 button svg {
  display: none;
}
#peddle-button-2 button::before {
  content: "Get An Instant Offer";
  width: 100%;
  color: #fff;
  font-weight: 700;
}
#peddle-button-2 button:hover::before {
  color: #fff !important;
}

.results {
  display: none;
}

.breadcrumbs_parent {
  padding-left: 24px;
}

.breadcrumbs {
  padding: 0;
  margin: 0;
  position: relative;
  list-style: none;
  display: inline;
  width: 100%;
}
.breadcrumbs::before {
  position: absolute;
  width: 14px;
  height: 17px;
  display: block;
  left: -24px;
  content: "\e92c";
  margin-right: 0px;
  margin-left: 0;
  font-size: 14px;
  top: 5px;
  color: var(--secondary-theme-color);
}
@media screen and (max-width: 575px) {
  .breadcrumbs::before {
    top: 2px;
  }
}
.breadcrumbs li,
.breadcrumbs a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  display: inline;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.breadcrumbs li {
  position: relative;
  text-transform: capitalize;
}
.breadcrumbs li a {
  text-transform: capitalize;
}
.breadcrumbs li a::after {
  content: "\e970";
}
.breadcrumbs li a:hover,
.breadcrumbs li a:focus,
.breadcrumbs li a:active {
  color: var(--secondary-theme-color);
}
.breadcrumbs li:last-child,
.breadcrumbs li a::after,
.breadcrumbs li a::before {
  color: var(--secondary-theme-color);
}
.breadcrumbs li a::after,
.breadcrumbs li a::before {
  margin-right: 2px;
  margin-left: 8px;
  font-size: 10px;
}
.breadcrumbs li:last-child {
  font-weight: 400;
}
.car-listings .breadcrumbs {
  padding-bottom: 0;
}

.back-nav a.btn {
  border: 8px solid #efefef;
}

.info-box {
  width: 100%;
  padding: 16px 24px;
  border-width: 1px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  row-gap: 8px;
}
@media screen and (max-width: 375px) {
  .info-box {
    padding: 8px 8px 8px 16px;
    gap: 10px;
  }
  .info-box.p-3 {
    padding: 16px;
  }
}
.info-box.transparent {
  padding: 0;
}
.info-box.light {
  background-color: rgba(170, 170, 170, 0.1215686275);
  border-radius: 50px;
  padding: 8px 8px 8px 16px;
}
.info-box.light i::before {
  color: var(--secondary-theme-color);
}
.info-box.w-auto {
  width: auto;
  display: inline-block;
}
.info-box i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.info-box i::before {
  font-size: 18px !important;
}
.info-box span {
  padding: 0;
  margin: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 17px;
  vertical-align: middle;
  white-space: nowrap;
}
.info-box span.p-0 {
  padding: 0;
}
@media screen and (max-width: 420px) {
  .info-box span {
    font-size: 14px;
  }
}
.info-box p {
  margin-bottom: 0;
}
.info-box b {
  font-weight: 700;
  padding: 0;
  margin: 0;
  display: inline;
}
.info-box button.info {
  width: 17px;
  height: 17px;
  padding: 0;
  background-color: transparent;
  border: 0;
  background-image: url(../images/icons/info.svg);
  background-size: 17px 17px;
  position: relative;
}
.info-box.bg-red {
  background-color: #fcf0f0;
  border: 1px solid #fe9090;
}
.info-box.bg-red .icon-alerts::before {
  content: "";
  display: block;
  width: 18px;
  height: 20px;
  background-image: url(../images/icons/bell.svg);
  background-size: 18px auto;
}
.info-box.dotted-style {
  border-style: dotted !important;
}
.info-box.bg-green {
  background-color: #e7efe7;
  border-color: #049f00;
}
.info-box.bg-green .icon-alerts::before {
  content: "";
  display: block;
  width: 16px;
  height: 17px;
  background-image: url(../images/icons/bell-green.svg);
  background-size: 16px auto;
  background-repeat: no-repeat;
}
.info-box.bg-green.light {
  background-color: rgba(231, 239, 231, 0.5058823529);
  border-color: rgba(5, 159, 0, 0.5607843137);
  border-radius: 16px;
}
.info-box.bg-green i,
.info-box.bg-green b {
  color: var(--secondary-theme-color);
}
.vin-decoder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.vin-decoder .group-1 {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}
.vin-decoder .group-1 .title-1 {
  position: relative;
  text-transform: uppercase;
  font-size: 12px;
}
.vin-decoder .group-1 .title-1::after {
  content: "";
  width: 100%;
  height: 16px;
  position: absolute;
  bottom: -12px;
  left: 0;
  border: 1px solid var(--secondary-theme-color);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}
.vin-decoder .group-1 .group-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 8px;
  width: 100%;
}
.vin-decoder .group-1 .group-2 .group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.vin-decoder .group-1 .group-2 .title-2 {
  position: relative;
  text-transform: uppercase;
  font-size: 9px;
  text-align: center;
  width: 100%;
  line-height: 12px;
  padding-top: 8px;
}
.vin-decoder .group-1 .group-2 .title-2::after {
  content: "";
  width: 100%;
  height: 16px;
  position: absolute;
  top: -12px;
  left: 0;
  border: 1px solid var(--secondary-theme-color);
  border-top: 0;
  border-radius: 0 0 16px 16px;
}
.vin-decoder .group-1 .group-2 .symb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  list-style: none;
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: #999999;
}
.vin-decoder .symb {
  padding: 10px 20px;
  gap: 45px;
}
@media screen and (max-width: 1199px) {
  .vin-decoder .symb {
    padding: 10px 15px;
    gap: 30px;
  }
}
@media screen and (max-width: 991px) {
  .vin-decoder .symb {
    padding: 10px 5px;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .vin-decoder {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .vin-decoder .symb {
    padding: 10px 15px;
    gap: 30px;
  }
}
@media screen and (max-width: 575px) {
  .vin-decoder .symb {
    padding: 10px 10px;
    gap: 20px;
  }
}

.msg {
  font-size: 24px;
}
.msg.style-green,
.msg b {
  color: var(--secondary-theme-color);
  font-weight: 700;
}
.msg.style-light {
  font-weight: 300;
}
.msg.style-bold {
  font-weight: 700;
}
.msg.success::before {
  content: "\e910";
  border: 2px solid var(--secondary-theme-color);
  width: 40px;
  min-width: 40px;
  height: 40px;
  max-height: 40px;
  line-height: 36px;
  text-align: center;
  display: inline-block;
  border-radius: 20px;
  font-size: 16px;
  color: var(--secondary-theme-color);
}
.msg.success.no-border::before {
  border: 0;
  border-radius: 0px;
  width: 40px;
  min-width: 40px;
}

.blk-07 {
  margin-bottom: -24px;
}
.blk-07 .white-container {
  padding: 40px 24px;
  position: relative;
}
.blk-07 .white-container .title {
  border-bottom: 1px dashed #c6c6c6;
  margin-bottom: 24px;
  padding-bottom: 18px;
}
.blk-07 .white-container::after,
.blk-07 .white-container::before {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
}
.blk-07 .white-container::after {
  top: 0;
  right: -24px;
  height: 100%;
  width: 24px;
  background-image: url(../images/icons/vert-curve-dashed-line.svg);
}
.blk-07 .white-container::before {
  bottom: -24px;
  width: 100%;
  height: 24px;
  left: 0;
  background-image: url(../images/icons/hori-curve-dashed-line.svg);
}
.blk-07 .item .col-12:nth-child(2) .white-container::after {
  background-position: top 40px center;
}
@media screen and (min-width: 992px) {
  .blk-07 .item .col-12:nth-child(3) .white-container::after {
    display: none;
  }
  .blk-07 .item .col-12:nth-child(4) .white-container::after,
  .blk-07 .item .col-12:nth-child(4) .white-container::before {
    display: none;
  }
  .blk-07 .item .col-12:nth-child(5) .white-container::before {
    display: none;
  }
  .blk-07 .item .col-12:nth-child(2) .white-container::before {
    display: none;
  }
}
@media screen and (max-width: 991.9px) {
  .blk-07 .item .col-12:nth-child(4) .white-container::before {
    display: none;
  }
  .blk-07 .item .col-12:nth-child(5) .white-container::before,
  .blk-07 .item .col-12:nth-child(5) .white-container::after {
    display: none;
  }
  .blk-07 .item .col-12:nth-child(2) .white-container::after {
    display: none;
  }
}
@media screen and (max-width: 767.9px) {
  .blk-07 .item .col-12 .white-container::after {
    display: none;
  }
  .blk-07 .item .col-12:nth-child(4) .white-container::before {
    display: block;
  }
  .blk-07 .item .col-12:nth-child(5) .white-container::before,
  .blk-07 .item .col-12:nth-child(5) .white-container::after {
    display: none;
  }
}
.blk-07 .item ul {
  margin: 0;
  padding: 0 0 0 16px;
  list-style: none;
}
.blk-07 .item ul li {
  font-size: 16px;
  margin-bottom: 4px;
  line-height: 25px;
}
.blk-07 .item ul li:last-child {
  margin-bottom: 0;
}
.blk-07 .item ul li::before {
  color: var(--secondary-theme-color);
  font-size: 12px;
  margin-right: 12px;
}
.blk-07.no-after .white-container::after {
  display: none;
}
.blk-07.no-after .white-container::before {
  display: none !important;
}
.blk-07 .title {
  margin-bottom: 2rem;
}
@media screen and (max-width: 575px) {
  .blk-07 .title {
    margin-bottom: 2rem;
  }
}
.blk-07 .title h1,
.blk-07 .title h2,
.blk-07 .title h3,
.blk-07 .title h4 {
  font-weight: 300;
}
.blk-07 .title h1 b,
.blk-07 .title h2 b,
.blk-07 .title h3 b,
.blk-07 .title h4 b {
  font-weight: 900;
}
.blk-07 .title h1.fs-mid {
  font-size: 1.5em;
}
.blk-07 .title p:last-child {
  margin-bottom: 0;
}
.blk-07 .title span {
  color: var(--secondary-theme-color);
}
.blk-07 .title.style-b-left h1,
.blk-07 .title.style-b-left h2,
.blk-07 .title.style-b-left h3,
.blk-07 .title.style-b-left h4 {
  border-left: 8px solid var(--secondary-theme-color);
}
.blk-07 .title.style-b-left h1,
.blk-07 .title.style-b-left h2 {
  padding-left: 24px;
}
.blk-07 .title.style-b-left h3 {
  border-width: 4px;
  font-size: 18px;
  font-weight: 700;
  padding-left: 16px;
}
.blk-07 .title.style-slogan p {
  color: var(--secondary-theme-color);
}
.blk-07 .title.style-slogan span {
  display: block;
  font-size: 18px;
  line-height: 29px;
  margin-top: 16px;
  color: var(--secondary-theme-color);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .blk-07 .title.style-slogan span {
    font-size: 16px;
    line-height: 21px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 575px) {
  .blk-07 .title.style-slogan span {
    font-size: 14px;
    line-height: 21px;
    margin-top: 6px;
  }
}
.blk-07 .title.style-center {
  text-align: center;
}
.blk-07 .title.style-center p {
  margin-top: 20px;
}
.blk-07 .title.style-icon-left h1,
.blk-07 .title.style-icon-left h2,
.blk-07 .title.style-icon-left h3,
.blk-07 .title.style-icon-left h4 {
  font-weight: 600;
  position: relative;
  padding-left: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.blk-07 .title.style-icon-left h1::before,
.blk-07 .title.style-icon-left h2::before,
.blk-07 .title.style-icon-left h3::before,
.blk-07 .title.style-icon-left h4::before {
  content: "";
  background-repeat: no-repeat;
  width: 42px;
  height: 42px;
  display: block;
  position: absolute;
  left: 0;
  background-position: center;
}
.blk-07 .title.full_r_style h2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 30px;
  text-transform: capitalize;
}
.blk-07 .title.full_r_style h2::before {
  margin-right: 30px;
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .blk-07 .title.full_r_style h2 {
    padding-left: 0;
  }
  .blk-07 .title.full_r_style h2::before {
    position: relative;
    font-size: 32px;
  }
}
.blk-07 .title.s-42 h1,
.blk-07 .title.s-42 h2 {
  font-size: 42px;
}
@media screen and (max-width: 767px) {
  .blk-07 .title.s-42 h1,
  .blk-07 .title.s-42 h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 575px) {
  .blk-07 .title.s-42 h1,
  .blk-07 .title.s-42 h2 {
    font-size: 24px;
  }
}
.blk-07 .title.s-22 h1,
.blk-07 .title.s-22 h2,
.blk-07 .title.s-22 h3,
.blk-07 .title.s-22 h4 {
  font-size: 22px;
}
.blk-07 .title.s-32 h1,
.blk-07 .title.s-32 h2,
.blk-07 .title.s-32 h3,
.blk-07 .title.s-32 h4 {
  font-size: 32px;
}
.blk-07 .title.s-32 p {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .blk-07 .title.s-32 h1,
  .blk-07 .title.s-32 h2,
  .blk-07 .title.s-32 h3,
  .blk-07 .title.s-32 h4 {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  .blk-07 .title.s-32 h1,
  .blk-07 .title.s-32 h2,
  .blk-07 .title.s-32 h3,
  .blk-07 .title.s-32 h4 {
    font-size: 18px;
  }
  .blk-07 .title.s-32 p {
    font-size: 16px;
  }
}
.blk-07 .title.mb-0 {
  margin-bottom: 0;
}
.blk-07 .title.mb-3 {
  margin-bottom: 1rem;
}
.blk-07 .title.mb-4 {
  margin-bottom: 1.5rem;
}
.blk-07 .title.pb-0 {
  padding-bottom: 0;
}

.peddle-offer {
  background-color: #ffd94f !important;
  border-radius: 30px;
  padding: 40px 16px;
}
.peddle-offer img {
  width: auto;
  height: 150px;
  display: block;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .peddle-offer img {
    height: 100px;
  }
}
.peddle-offer h2,
.peddle-offer h3 {
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  padding-top: 0;
}
.peddle-offer h2 {
  font-size: 34px;
  color: #000;
  line-height: 1.2em;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .peddle-offer h2 {
    font-size: 42px;
  }
}
@media screen and (max-width: 457px) {
  .peddle-offer h2 {
    font-size: 30px !important;
  }
}
.peddle-offer h3 {
  font-weight: 300;
  font-size: 18px;
}
.peddle-offer ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0px 0;
  width: auto;
  margin: 16px auto;
  row-gap: 10px;
}
@media screen and (max-width: 767px) {
  .peddle-offer ul {
    padding: 0px 0;
  }
}
.peddle-offer ul li {
  list-style: none;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  font-size: 16px;
  line-height: 1.2em;
  padding: 0;
  margin: 0;
}
.peddle-offer ul li::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url(../images/icons/check1.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
  top: 1px;
}
.peddle-offer p,
.peddle-offer li {
  font-size: 16px;
}
.peddle-offer p {
  text-align: center;
}
.peddle-offer a.btn {
  margin: auto;
  width: auto;
  display: block;
  font-size: 24px;
  padding: 14px 30px;
  color: #fff;
}
.peddle-offer a.btn:hover {
  background-color: #000;
}
.peddle-offer .border-1 {
  border-top: 10px solid #000;
  margin-top: 30px;
}

.banner-insurify {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.banner-insurify .wrapperinner {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-line-pack: normal;
  align-content: normal;
}
@media screen and (max-width: 575px) {
  .banner-insurify .wrapperinner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.banner-insurify .wrapperinner .illustration,
.banner-insurify .wrapperinner .data {
  min-height: 100%;
  display: block;
  margin: 0;
}
.banner-insurify .wrapperinner .logo {
  width: auto;
  height: 60px;
  margin: 0;
}
.banner-insurify .wrapperinner .illustration {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .banner-insurify .wrapperinner .illustration {
    width: 40%;
  }
}
@media screen and (max-width: 575px) {
  .banner-insurify .wrapperinner .illustration {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }
}
.banner-insurify .wrapperinner .illustration .illu {
  margin: 0;
}
.banner-insurify .wrapperinner .data {
  padding: 24px 24px 24px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 575px) {
  .banner-insurify .wrapperinner .data {
    padding-left: 0;
    padding-right: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .banner-insurify .wrapperinner .data p {
    text-align: center;
  }
}
.banner-insurify a {
  text-transform: capitalize;
}
.banner-insurify p {
  font-size: 22px;
}

.promo-page .top-title-container {
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  margin-bottom: 30px;
}
.promo-page .info-title {
  font-size: 1.8em;
  line-height: 1.3em;
}
@media screen and (max-width: 767px) {
  .promo-page .info-title {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 24px;
    text-align: center;
    font-size: 1.4em;
  }
}
.promo-page .info-title i {
  color: red;
  position: relative;
  top: 1px;
  margin-right: 3px;
}
.promo-page .info-title b,
.promo-page .info-title strong {
  font-weight: 700;
}
.promo-page .info-title b {
  color: var(--secondary-theme-color);
}
.promo-page.p0 .container {
  padding: 0;
}

.promo-cnt {
  position: relative;
  border-top: 3px solid var(--secondary-theme-color);
  border: 3px solid var(--secondary-theme-color);
  background-color: #ecf5ec;
  padding-bottom: 40px;
  padding-top: 30px;
  border-radius: 30px;
}
.promo-cnt .top-title {
  position: absolute;
  background-color: var(--secondary-theme-color);
  color: #fff;
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 500;
  top: -25px;
  display: block;
  margin: 0 auto;
  width: auto;
  font-size: 1em;
  text-align: center;
}
.promo-cnt ul.icon-lst {
  list-style: none;
  margin: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 16px;
}
.promo-cnt ul.icon-lst li {
  width: 50%;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .promo-cnt ul.icon-lst li {
    width: 100%;
  }
}
.promo-cnt ul.icon-lst li span {
  border: 1px solid var(--secondary-theme-color);
  display: block;
  border-radius: 80px;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  top: -1px;
}
.promo-cnt ul.icon-lst li img {
  max-width: 16px;
  max-height: 16px;
}

.dyn-report {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.dyn-report .border-secondary {
  border: 4px solid #b5c2cb;
}
.dyn-report .border-primary {
  border: 4px solid var(--secondary-theme-color);
}
.dyn-report .center-report,
.dyn-report .left-report,
.dyn-report .right-report {
  background-color: #ffffff;
  position: relative;
}
.dyn-report .center-report .premium-badge,
.dyn-report .left-report .premium-badge,
.dyn-report .right-report .premium-badge {
  position: absolute;
}
.dyn-report .center-report .premium-badge img,
.dyn-report .left-report .premium-badge img,
.dyn-report .right-report .premium-badge img {
  width: 100%;
  height: 100%;
}
.dyn-report .left-report .sample,
.dyn-report .right-report .sample {
  border-radius: 10px;
}
.dyn-report .left-report .premium-badge,
.dyn-report .right-report .premium-badge {
  display: block;
  width: 45px;
  height: 45px;
  top: -8px;
}
.dyn-report .center-report .premium-badge {
  display: block;
  width: 62px;
  height: 62px;
  right: -8px;
  top: -8px;
  z-index: 100;
}
.dyn-report .left-report .premium-badge {
  left: -8px;
}
.dyn-report .right-report .premium-badge {
  right: -8px;
}
.dyn-report .center-report {
  width: 48%;
  padding: 6px 4px;
  border-radius: 10px;
}
.dyn-report .center-report .top-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: -5px;
}
.dyn-report .center-report .col-title {
  width: 100%;
  font-size: 0.55em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  line-height: 1em;
  gap: 5px;
  padding-left: 2px;
}
.dyn-report .center-report .col-title img {
  width: 16px;
  height: auto;
}
.dyn-report .center-report img.sample {
  width: 100%;
  height: auto;
}
.dyn-report .left-report,
.dyn-report .right-report {
  width: 26%;
}
.dyn-report .left-report img,
.dyn-report .right-report img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 540px) {
  .dyn-report .left-report,
  .dyn-report .right-report {
    width: 25%;
  }
  .dyn-report .center-report {
    width: 50%;
  }
}
.dyn-report .left-report {
  border-radius: 10px 0 0 10px;
  border-right: 0;
}
.dyn-report .right-report {
  border-radius: 0 10px 10px 0;
  border-left: 0;
}

.oneclickaway {
  background-color: #f2faf2;
  padding: 16px 0;
  position: relative;
}
.oneclickaway .close {
  position: absolute;
  right: 16px;
  width: 27px;
  height: 27px;
  border: 1.5px solid var(--secondary-theme-color);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
}
.oneclickaway .close::before {
  font-size: 14px;
}
.oneclickaway .close:hover {
  border-color: #000;
}
.oneclickaway .close:hover::before {
  color: #000;
}
@media screen and (max-width: 767px) {
  .oneclickaway .close {
    right: 24px;
    top: 24px;
    z-index: 5;
    border-color: #ccc;
  }
  .oneclickaway .close::before {
    color: #ccc;
  }
}
.oneclickaway .banner-inner {
  background: rgb(218, 240, 218);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(218, 240, 218, 0)),
    to(rgb(218, 240, 218))
  );
  background: linear-gradient(
    90deg,
    rgba(218, 240, 218, 0) 0%,
    rgb(218, 240, 218) 100%
  );
  border-radius: 0 90px 90px 0;
  padding-right: 12px;
}
@media screen and (max-width: 767px) {
  .oneclickaway .banner-inner {
    padding: 0;
    background: transparent;
    border-radius: 0;
  }
}
.oneclickaway .banner-inner .image {
  border-radius: 9px;
  overflow: hidden;
  width: auto;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /*background-color: #000;*/
}
.oneclickaway .banner-inner .image img {
  height: 64px;
  width: auto;
  display: block;
}
.oneclickaway .banner-inner .image a {
  display: none;
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .oneclickaway .banner-inner .image {
    max-height: 200px;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  }
  .oneclickaway .banner-inner .image a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .oneclickaway .banner-inner .image img {
    width: 100%;
    height: auto;
    opacity: 0.5;
  }
}
.oneclickaway .banner-inner .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1.3em;
  font-size: 20px;
}
.oneclickaway .banner-inner .name .title {
  margin-bottom: 0;
  padding-bottom: 0;
}
.oneclickaway .banner-inner .name .title b,
.oneclickaway .banner-inner .name .title span {
  font-weight: 700;
}
.oneclickaway .banner-inner .name small {
  font-size: 16px;
  font-weight: 300;
}
.oneclickaway .banner-inner .name small i {
  background-color: var(--secondary-theme-color);
  border-radius: 30px;
  width: 16px;
  height: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  top: -3px;
  margin-right: 8px;
}
.oneclickaway .banner-inner .name small i::before {
  font-size: 8px;
  line-height: 1em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .oneclickaway .banner-inner .name {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.1em;
  }
  .oneclickaway .banner-inner .name .title {
    text-align: center;
    font-size: 14px;
    margin: 16px auto;
  }
  .oneclickaway .banner-inner .name b {
    display: block;
    font-size: 18px;
  }
  .oneclickaway .banner-inner .name small {
    font-size: 14px;
    text-align: center;
  }
  .oneclickaway .banner-inner .name small i {
    top: -2px;
    margin-right: 5px;
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.blk-21 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 16px;
  row-gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.blk-21 ul li {
  width: calc(33.333333% - 15px);
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.blk-21 ul li img {
  height: 54px;
  width: auto;
}
.blk-21 ul li span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.blk-21 ul li::before {
  color: var(--secondary-theme-color);
}
.blk-21 ul li.icon-loading::before {
  -webkit-animation: spin 1s infinite linear;
  animation: spin 1s infinite linear;
}
@media screen and (min-width: 576px) {
  .blk-21 .unlimited-in-row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .blk-21 .unlimited-in-row li {
    width: auto;
  }
}

.error-inner {
  position: absolute;
  background-color: rgb(255, 67, 67);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  border-radius: 9px;
  padding: 6px 16px;
  z-index: 999;
  display: block;
  width: auto;
  top: -60px;
}
.error-inner::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: rgb(255, 67, 67);
  position: absolute;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: -5px;
  left: 14px;
}
@media screen and (max-width: 767px) {
  .error-inner {
    position: relative;
    top: -10px;
    background-color: transparent;
    line-height: 14px;
    color: rgb(255, 67, 67);
    padding: 0;
    left: 14px !important;
    right: auto !important;
  }
  .error-inner::after {
    display: none;
  }
}
.error-inner.right {
  left: auto;
  right: 14px;
}
.error-inner.left {
  left: 14px;
  right: auto;
}

.error {
  background-color: rgb(255, 228, 228);
  color: #000;
  font-size: 16px;
  padding: 14px 24px;
  border: 1px solid rgb(255, 139, 139);
  border-radius: 30px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.error img {
  width: auto;
  height: 24px;
}

.error-inner,
.error {
  display: none;
}

.std-lst-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-count: 2;
  -webkit-column-gap: 64px;
  -moz-column-gap: 64px;
  column-gap: 64px;
}
@media screen and (max-width: 767px) {
  .std-lst-icons {
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-count: 1;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}
.std-lst-icons.col4 {
  -moz-column-count: 4;
  column-count: 4;
  -webkit-column-count: 4;
  -webkit-column-gap: 64px;
  -moz-column-gap: 64px;
  column-gap: 64px;
}
@media screen and (max-width: 991px) {
  .std-lst-icons.col4 {
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-count: 3;
  }
}
@media screen and (max-width: 767px) {
  .std-lst-icons.col4 {
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-count: 2;
  }
}
@media screen and (max-width: 450px) {
  .std-lst-icons.col4 {
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-count: 1;
  }
}
.std-lst-icons.col3 {
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-count: 3;
  -webkit-column-gap: 64px;
  -moz-column-gap: 64px;
  column-gap: 64px;
}
@media screen and (max-width: 991px) {
  .std-lst-icons.col3 {
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-count: 2;
  }
}
@media screen and (max-width: 575px) {
  .std-lst-icons.col3 {
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-count: 1;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}
.std-lst-icons.col1 {
  -moz-column-count: 1;
  column-count: 1;
  -webkit-column-count: 1;
}
.std-lst-icons li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .std-lst-icons li {
    margin-bottom: 10px;
  }
}
.std-lst-icons li.mb-c-lp {
  margin-bottom: 4px;
}
.std-lst-icons li::before {
  color: var(--secondary-theme-color);
  margin-right: 12px;
  font-size: 22px;
  max-width: 22px;
  min-width: 22px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .std-lst-icons li::before {
    margin-right: 12px;
    font-size: 18px;
    max-width: 18px;
    min-width: 18px;
  }
}
.std-lst-icons li.icon-car-crash-2::before {
  font-size: 22px;
}
.std-lst-icons li.s-1::before {
  font-size: 0.7em;
  position: relative;
  top: 3px;
}
.std-lst-icons.mb-1 {
  margin-bottom: 0;
}
.std-lst-icons.mb-1 li {
  margin-bottom: 0.5em;
}
.std-lst-icons.icon-s-sm li::before {
  font-size: 13px;
  max-width: 13px;
  min-width: 13px;
  top: 3px;
}
.std-lst-icons.light li {
  font-weight: 400;
}

.std-lst {
  margin-left: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}
.std-lst.display-col {
  display: block;
}
.std-lst.col2 {
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-count: 2;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}
@media screen and (max-width: 991px) {
  .std-lst.col2 {
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-count: 2;
  }
}
@media screen and (max-width: 575px) {
  .std-lst.col2 {
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-count: 1;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}
.std-lst li {
  position: relative;
  padding-left: 24px;
  width: auto;
}
.std-lst li::before {
  font-size: 12px;
  color: var(--secondary-theme-color);
  position: absolute;
  left: 0;
  top: 4px;
}
.std-lst li a {
  text-decoration: none;
  color: #000;
}
.std-lst li a:hover {
  color: var(--secondary-theme-color);
}
.std-lst.arrows li::before {
  content: "\e970";
}
.std-lst.checkmarks li::before {
  content: "\e911";
}
.std-lst.checkmarks.red li::before {
  color: red;
}

.lst-tags {
  gap: 10px;
  row-gap: 10px;
}
.lst-tags li {
  border-radius: 40px;
  display: inline-block;
  font-size: 14px;
  padding: 12px 24px;
  line-height: 14px;
}
.lst-tags.style-light-green li {
  background-color: rgba(4, 158, 0, 0.12);
}
.lst-tags.style-light-red li {
  background-color: rgba(255, 0, 0, 0.07);
}
@media screen and (max-width: 991px) {
  .lst-tags {
    gap: 8px;
    row-gap: 8px;
  }
  .lst-tags li {
    font-size: 12px;
    padding: 8px 16px;
    line-height: 12px;
  }
}

ul.bl-green {
  list-style: none;
  padding: 0;
}
ul.bl-green li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: var(--secondary-theme-color);
  font-size: 20px;
  margin-right: 12px;
  position: relative;
  top: -1px;
}

.modal {
  z-index: 9999999999 !important;
  position: fixed;
  color: #000;
}
.modal .modal-dialog {
  z-index: 99999999999999;
}
@media screen and (max-width: 767px) {
  .modal h1 {
    line-height: 41px;
  }
}
@media screen and (max-width: 575px) {
  .modal h1 {
    line-height: 27px;
  }
}
.modal .image {
  width: 64px;
  height: 64px;
  margin: auto auto 24px;
}
.modal .image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.modal.z-max {
  z-index: 10000000000000000000000000000 !important;
}

.modal section {
  margin-top: 0;
  padding: 0;
}

.modal-content {
  border-radius: 30px;
  padding-bottom: 40px;
}
@media screen and (max-width: 425px) {
  .modal-content {
    border-radius: 16px;
  }
}
.modal-content .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding-left: 24px;
}
.modal-content .info.ps-1 {
  padding-left: 8px;
}
.modal-content .info i {
  color: var(--secondary-theme-color);
  margin-right: 10px;
  margin-top: 1px;
}
.modal-content.no-wrap h1 b {
  display: inline;
}
.modal-content.pb-0 {
  padding-bottom: 0;
}
.modal-content.p-0 {
  padding: 0;
}
.modal-content h1 {
  font-weight: 300;
}
.modal-content h1 b {
  font-weight: 900;
  display: block;
}
.modal-content .modal-header,
.modal-content .modal-body,
.modal-content .modal-footer {
  border: 0;
}
@media screen and (max-width: 525px) {
  .modal-content .modal-body .title {
    padding: 0 24px;
  }
  .modal-content .modal-body .title h1 {
    font-size: 24px;
    line-height: 31px;
  }
  .modal-content .modal-body .title h1.icon-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .modal-content .modal-body .title h1.icon-search::before {
    margin-bottom: 24px;
    margin-right: 0;
  }
}
.modal-content .modal-body .white-container {
  position: relative;
}
.modal-content .modal-body .white-container .btn-close {
  position: absolute;
  top: 30px;
  right: 30px;
}
@media screen and (max-width: 575px) {
  .modal-content .modal-body .white-container .btn-close {
    top: 20px;
    right: 20px;
  }
}
.modal-content form .wrapper .search-field {
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0);
}

.car-radio-slct .form-check-input {
  padding: 12px;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .car-radio-slct {
    padding-left: 24px;
  }
}
.car-radio-slct label {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 25px;
}
@media screen and (max-width: 767px) {
  .car-radio-slct label {
    font-size: 15px;
    line-height: 21px;
  }
}

.upsell h1 {
  font-size: 32px;
  line-height: 41px;
}
@media screen and (max-width: 767px) {
  .upsell h1 {
    line-height: 37px;
    font-size: 28px;
  }
}
@media screen and (max-width: 575px) {
  .upsell h1 {
    line-height: 31px;
  }
}
@media screen and (max-width: 425px) {
  .upsell h1 {
    font-size: 28px;
  }
}
.upsell h1 span {
  display: block;
  color: #000;
}
.upsell h2 {
  margin: 0;
  position: relative;
  z-index: 5;
  background-color: var(--secondary-theme-color);
  color: #fff;
  font-size: 24px;
  font-weight: 400 !important;
  width: auto;
  gap: 8px;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .upsell h2 {
    font-size: 18px;
    border-radius: 0px;
  }
}
.upsell h2 u {
  text-decoration: none;
  color: #ffe710;
  font-weight: 900;
  background-color: #000;
  padding: 7px 14px;
  border-radius: 40px;
  margin-left: 6px;
}
.upsell h2 b {
  text-transform: uppercase;
}
.upsell .offer-box {
  position: relative;
}
.upsell .offer-box::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-theme-color);
  position: absolute;
  top: 50%;
  margin-top: -1px;
  z-index: 1;
}
.upsell h3 {
  font-size: 16px;
  font-weight: 700 !important;
}
.upsell .benefits {
  width: 100%;
  row-gap: 24px;
}
.upsell .benefits img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 80px;
  margin-bottom: 16px;
}
@media screen and (max-width: 575px) {
  .upsell .benefits img {
    max-width: 30%;
    max-height: 100%;
    height: auto;
    margin-bottom: 0;
  }
}
.upsell .benefits .d-flex {
  gap: 16px;
  height: 100%;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .upsell .benefits .d-flex {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .upsell .benefits .d-flex {
    width: 33.33%;
  }
}
@media screen and (min-width: 578px) and (max-width: 720px) {
  .upsell .benefits .d-flex {
    width: 50%;
  }
}
@media screen and (max-width: 575px) {
  .upsell .benefits .d-flex {
    text-align: left;
    width: 100%;
  }
}
.upsell .benefits .d-flex div {
  line-height: 23px;
  font-size: 16px;
}
@media screen and (max-width: 575px) {
  .upsell .benefits .d-flex div {
    width: 100%;
  }
}
.upsell .benefits .d-flex div b {
  display: block;
}
.upsell .btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.upsell .btn::after {
  padding: 0;
  display: block;
  top: -1px;
  position: relative;
  line-height: 15px;
  margin: 0;
  font-size: 20px;
}

.gallery_lightbox .btn-close {
  color: #fff !important;
  -webkit-filter: brightness(0) saturate(100%) invert(93%) sepia(0%)
    saturate(7470%) hue-rotate(78deg) brightness(114%) contrast(109%);
  filter: brightness(0) saturate(100%) invert(93%) sepia(0%) saturate(7470%)
    hue-rotate(78deg) brightness(114%) contrast(109%);
  right: 0px;
  top: -40px;
}
.gallery_lightbox .carousel-control-next,
.gallery_lightbox .carousel-control-prev {
  opacity: 0.8;
}
.gallery_lightbox .carousel-control-next span,
.gallery_lightbox .carousel-control-prev span {
  opacity: 0.8;
  background-color: #000;
  border-radius: 60px;
  padding: 20px;
  display: block;
  background-size: 24px;
}
.gallery_lightbox input:focus,
.gallery_lightbox button:focus,
.gallery_lightbox textarea:focus,
.gallery_lightbox select:focus,
.gallery_lightbox .form-select:focus {
  background-color: transparent;
  border-color: transparent;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0) !important;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0) !important;
}
@media (min-width: 991px) {
  .gallery_lightbox .modal-dialog {
    min-width: 500px;
    margin: 1.75rem auto;
  }
}

#sampleReport .modal-dialog {
  max-width: 1200px;
}
@media (min-width: 576px) {
  #sampleReport .modal-dialog {
    margin: 1.75rem auto;
    padding-left: 60px;
    padding-right: 60px;
  }
}
#sampleReport .modal-header {
  position: relative;
  z-index: 5;
}
#sampleReport .modal-body {
  position: relative;
  z-index: 4;
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 450px) {
  #sampleReport .modal-body {
    padding-right: 12px;
    padding-left: 12px;
  }
}
#sampleReport .modal-body img {
  margin-top: -86px;
}
@media screen and (max-width: 1024px) {
  #sampleReport .modal-body img {
    margin-top: -76px;
  }
}
@media screen and (max-width: 767px) {
  #sampleReport .modal-body img {
    margin-top: -70px;
  }
}
@media screen and (max-width: 575px) {
  #sampleReport .modal-body img {
    margin-top: -50px;
  }
}
@media screen and (max-width: 450px) {
  #sampleReport .modal-body img {
    margin-top: -40px;
  }
}

.stars-rating {
  margin-top: -8px;
  gap: 8px;
}
.stars-rating .label {
  font-size: 12px;
  line-height: 12px;
  white-space: nowrap;
}
.stars-rating .stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: 20px;
  font-family: Times;
  line-height: 1;
}
.stars-rating .stars::before {
  content: "★★★★★";
  letter-spacing: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fc0),
    to(#ccc)
  );
  background: linear-gradient(90deg, #fc0 var(--percent), #ccc var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lightbox .top-image {
  height: 80px;
}
.lightbox .top-image img {
  height: 100%;
  width: auto;
}
.lightbox .modal-body {
  padding: 0 40px 40px 40px;
}

.partners {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 40px 0;
  opacity: 0.9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 575px) {
  .partners.d-none {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .partners {
    padding: 24px 0;
  }
}
.partners li {
  max-width: 200px;
  text-align: center;
  font-size: 9px;
  line-height: 12px;
}
.partners li b {
  display: block;
}
.partners li img {
  display: block;
  margin: auto;
}
.partners li img.nmvtis {
  height: 40px;
}
@media screen and (max-width: 767px) {
  .partners {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .partners li {
    margin-bottom: 24px;
  }
  .partners li:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .checkout .ws-3 {
    margin-top: 0;
  }
}
.checkout .small {
  font-size: 14px;
  line-height: 21px;
}
.checkout a:not(.btn) {
  color: #000;
  text-decoration: underline;
}
.checkout .blk- .action {
  margin-top: 0;
}
.checkout .title {
  margin-bottom: 0;
}
.checkout .title img {
  width: 40px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .checkout h1 {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .checkout h1 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 400px) {
  .checkout h1 {
    text-align: left;
  }
  .checkout h1.text-center {
    text-align: center;
  }
}
.checkout .c-pad {
  padding-left: 58px;
}
@media screen and (max-width: 991px) {
  .checkout .c-pad {
    padding-left: 0;
  }
}
.checkout .p-row {
  background-color: #f0f9f0;
  border: 1px solid #a9dea8;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  height: 100%;
  font-size: 16px;
}
@media screen and (max-width: 350px) {
  .checkout .p-row {
    font-size: 14px;
  }
}
.checkout .p-row .name {
  /*width: calc(100%-40px);*/
  font-weight: 700;
  padding-left: 24px;
  text-align: left;
}
@media screen and (max-width: 400px) {
  .checkout .p-row .name {
    padding-left: 16px;
  }
}
.checkout .p-row .action {
  position: relative;
}
.checkout .p-row .action a {
  padding: 11px 24px;
  background-color: #e3f5e3;
  border: 0 solid #a9dea8;
  border-left-width: 1px;
  color: #045e02;
  text-decoration: none;
  font-weight: 700;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.checkout .p-row .action a::before {
  margin-right: 8px;
}
.checkout .p-row .action a:hover {
  background-color: var(--secondary-theme-color);
  color: #fff;
  border: 1px solid var(--secondary-theme-color);
  border-top: 0;
  border-bottom: 0;
  border-right: 0;
}
@media screen and (max-width: 767px) {
  .checkout .p-row .action a {
    padding: 11px 14px;
  }
}
@media screen and (max-width: 400px) {
  .checkout .p-row .action a {
    padding: 6px;
    width: 38px;
    overflow: hidden;
  }
  .checkout .p-row .action a::before {
    margin-right: 0;
    font-size: 24px;
    padding-right: 40px;
  }
}
.checkout .p-row .c-card {
  text-align: right;
  font-weight: 700;
  color: var(--secondary-theme-color);
  margin-right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.checkout .p-row .c-card img {
  margin-right: 16px;
  min-height: 11px;
  width: auto;
}
.checkout .p-row .c-card ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #fff;
}
.checkout .p-row .c-card ul li {
  padding: 0;
}
.checkout .p-row .c-card ul li:first-child img {
  height: 11px;
}
.checkout .p-row .c-card ul li:last-child img {
  margin-right: 0;
  min-height: 20px;
}
.checkout .select-pay-method img {
  height: 20px;
  width: auto;
}
.checkout .select-pay-method label {
  width: 100%;
  padding: 0;
  margin: 0;
  display: block;
  cursor: pointer;
}
.checkout .select-pay-method label[for="paypal"] img,
.checkout .select-pay-method label[for="paypal_b"] img {
  height: 18px;
}
.checkout .select-pay-method label[for="applepay"] img,
.checkout .select-pay-method label[for="applepay_b"] img {
  height: 26px;
}
.checkout .select-pay-method label[for="gpay"] img,
.checkout .select-pay-method label[for="gpay_b"] img {
  height: 34px;
}
.checkout .select-pay-method label[for="NewCard_b"] img {
  height: 24px;
}
.checkout .select-pay-method label[for="venmo_b"] img {
  height: 16px;
}
@media screen and (max-width: 380px) {
  .checkout .select-pay-method .f-pad {
    padding-left: 0;
  }
}
.checkout .select-pay-method .p-row {
  padding: 16px 24px;
  background-color: #fff;
}
@media screen and (max-width: 425px) {
  .checkout .select-pay-method .p-row {
    padding: 16px 16px;
  }
}
.checkout .select-pay-method .p-row .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}
.checkout .select-pay-method .p-row .wrapper.flex-wrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .checkout .select-pay-method .p-row .wrapper.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .checkout .select-pay-method .p-row .wrapper.gap {
    gap: 0.5rem;
  }
}
.checkout .select-pay-method .p-row .wrapper .form-float {
  width: 100%;
  margin-right: 30px;
  padding: 0;
  border: 0;
}
@media screen and (max-width: 767px) {
  .checkout .select-pay-method .p-row .wrapper .form-float {
    margin-bottom: 16px;
    margin-right: 0;
  }
  .checkout .select-pay-method .p-row .wrapper .form-float.m-half {
    width: 50%;
  }
}
.checkout .select-pay-method .p-row .wrapper .form-float:last-child {
  margin-right: 0;
}
.checkout .select-pay-method .p-row .wrapper .form-float input {
  border: 0;
  border-bottom: 1px solid var(--secondary-theme-color);
  border-radius: 0px;
  padding: 0 0 8px 0;
  color: var(--secondary-theme-color);
  background-color: transparent;
}
.checkout .select-pay-method .p-row .wrapper .form-float input:focus {
  outline: 0;
  color: #212529;
  background-color: transparent;
  border-color: transparent;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.checkout
  .select-pay-method
  .p-row
  .wrapper
  .form-float
  input::-webkit-input-placeholder {
  color: var(--secondary-theme-color);
  background-color: transparent;
}
.checkout
  .select-pay-method
  .p-row
  .wrapper
  .form-float
  input::-moz-placeholder {
  color: var(--secondary-theme-color);
  background-color: transparent;
}
.checkout
  .select-pay-method
  .p-row
  .wrapper
  .form-float
  input:-ms-input-placeholder {
  color: var(--secondary-theme-color);
  background-color: transparent;
}
.checkout
  .select-pay-method
  .p-row
  .wrapper
  .form-float
  input::-ms-input-placeholder {
  color: var(--secondary-theme-color);
  background-color: transparent;
}
.checkout .select-pay-method .p-row .wrapper .form-float input::placeholder {
  color: var(--secondary-theme-color);
  background-color: transparent;
}
.checkout .select-pay-method .p-row .wrapper .form-float label {
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
  white-space: nowrap;
}
@media screen and (max-width: 520px) {
  .checkout .select-pay-method .p-row .wrapper .name {
    margin-right: 8px;
  }
}
.checkout .select-pay-method .p-row .cc-method {
  display: none;
}
.checkout .select-pay-method .p-row .style-border {
  width: 100%;
}
.checkout .select-pay-method .p-row .style-border .wrapper .form-float select,
.checkout .select-pay-method .p-row .style-border .wrapper .form-float input {
  border: 2px solid #000;
  border-radius: 6px;
  padding: 11px 12px 9px 12px;
  font-size: 16px !important;
  line-height: 16px !important;
}
.checkout .select-pay-method .p-row .style-border .wrapper .form-float select {
  background-position: right 12px center;
  cursor: pointer;
  min-height: 43px;
  display: inline-block;
}
.checkout
  .select-pay-method
  .p-row
  .style-border
  .wrapper
  .form-float
  select.selected {
  color: var(--secondary-theme-color);
}
.checkout .select-pay-method .p-row .style-border .wrapper .form-float input {
  background-color: transparent;
}
.checkout
  .select-pay-method
  .p-row
  .style-border
  .wrapper
  .form-float
  input:focus {
  outline: 0;
  color: #212529;
  background-color: transparent;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.checkout
  .select-pay-method
  .p-row
  .style-border
  .wrapper
  .form-float
  input::-webkit-input-placeholder {
  color: #ccc;
  background-color: transparent;
}
.checkout
  .select-pay-method
  .p-row
  .style-border
  .wrapper
  .form-float
  input::-moz-placeholder {
  color: #ccc;
  background-color: transparent;
}
.checkout
  .select-pay-method
  .p-row
  .style-border
  .wrapper
  .form-float
  input:-ms-input-placeholder {
  color: #ccc;
  background-color: transparent;
}
.checkout
  .select-pay-method
  .p-row
  .style-border
  .wrapper
  .form-float
  input::-ms-input-placeholder {
  color: #ccc;
  background-color: transparent;
}
.checkout
  .select-pay-method
  .p-row
  .style-border
  .wrapper
  .form-float
  input::placeholder {
  color: #ccc;
  background-color: transparent;
}
.checkout .select-pay-method .p-row .style-border .wrapper .form-float label {
  text-transform: uppercase;
  font-size: 11px;
  line-height: 11px;
  margin-bottom: 8px;
  white-space: nowrap;
  font-weight: 500;
}
.checkout .select-pay-method .p-row .style-border .wrapper span {
  display: none;
}
.checkout .select-pay-method .p-row .style-border .wrapper .error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: transparent;
  position: relative;
  background-color: transparent;
  gap: 0;
  margin-bottom: 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .checkout .select-pay-method .p-row .style-border .wrapper .error {
    margin-bottom: 16px;
  }
}
.checkout .select-pay-method .p-row .style-border .wrapper .error input,
.checkout .select-pay-method .p-row .style-border .wrapper .error select {
  border-color: rgb(252, 73, 73);
  border-radius: 6px 6px 6px 0;
}
.checkout
  .select-pay-method
  .p-row
  .style-border
  .wrapper
  .error
  select:first-child {
  border-radius: 6px 6px 0 0;
}
.checkout .select-pay-method .p-row .style-border .wrapper .error label {
  color: rgb(252, 73, 73);
}
.checkout .select-pay-method .p-row .style-border .wrapper .error span {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1em;
  margin-top: -2px;
  background-color: #fff;
  border: 2px solid rgb(252, 73, 73);
  border-radius: 0 0 6px 6px;
  width: auto;
  color: rgb(252, 73, 73);
  padding: 4px 6px;
  /*
  &::after {
      content: "";
      display: block;
      width: 16px;
      height: 16px;
      background-color: rgb(255, 203, 203);
      @include rotate(45);
      position: absolute;
      top: -6px;
      right: 30px;
  }
  */
}
.checkout .select-pay-method .p-row .style-border .wrapper .error div.d-flex {
  width: 100%;
}
.checkout .select-pay-method .p-row .style-border .wrapper:last-child .error {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .checkout
    .select-pay-method
    .p-row
    .style-border
    .wrapper:last-child
    .error
    input,
  .checkout
    .select-pay-method
    .p-row
    .style-border
    .wrapper:last-child
    .error
    select {
    border-radius: 6px 6px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .checkout .select-pay-method .p-row.credit-card .wrapper .form-float {
    margin-right: 0;
    margin-bottom: 24px;
  }
  .checkout
    .select-pay-method
    .p-row.credit-card
    .wrapper:last-child
    .form-float:last-child {
    margin-bottom: 0;
  }
}
.checkout .select-pay-method .p-row .date {
  width: 100%;
}
.checkout .select-pay-method .p-row .date .wrapper .form-float {
  margin-right: 30px;
}
.checkout .select-pay-method .p-row .date .wrapper:last-child .form-float {
  margin-right: 0;
}
.checkout .select-pay-method .p-row.selected {
  background-color: #f0f9f0;
}
.checkout .select-pay-method .p-row .name {
  padding-left: 0;
}
.checkout .select-pay-method .p-row .c-card {
  margin-right: 0;
}
.checkout .select-pay-method .p-row .form-check {
  display: block;
  min-height: 0rem;
  padding-left: 0em;
  margin-bottom: 0rem;
  margin: 0;
  margin-top: 0px;
  margin-right: 16px;
}
.checkout .select-pay-method .p-row .form-check .form-check-input {
  float: none;
  margin-left: 0em;
}
.checkout .select-pay-method .p-row.checked {
  background-color: #e7efe7;
}
.checkout .select-pay-method.package .wrapper {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
.checkout .select-pay-method.package .pack-info {
  gap: 24px;
  row-gap: 4px;
}
.checkout .select-pay-method.package .promo {
  background-color: #c2e8c2;
  color: var(--secondary-theme-color);
  border-radius: 40px;
  white-space: nowrap;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  line-height: 12px;
}
@media screen and (max-width: 550px) {
  .checkout .select-pay-method.package .promo {
    position: absolute;
    right: -1px;
    top: -1px;
    line-height: 16px;
    font-size: 11px;
    padding: 1px 8px;
    border-radius: 0px 12px 0px 12px;
    border-left: 1px solid #a9dea8;
    border-top: 1px solid #a9dea8;
  }
}
@media screen and (max-width: 425px) {
  .checkout .select-pay-method.package .promo {
    right: 0;
  }
}
.checkout .select-pay-method.package .name,
.checkout .select-pay-method.package .price {
  line-height: normal;
}
.checkout .select-pay-method.package .name {
  font-weight: 400;
}
.checkout .select-pay-method.package .price {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  text-align: right;
  padding: 0;
}
.checkout .select-pay-method.package .price b {
  color: var(--secondary-theme-color);
  padding: 0;
}
.checkout .select-pay-method.package .price .small {
  font-size: 12px;
  position: relative;
}
.checkout .cart-summary-style2 .cart-info .title {
  font-weight: normal;
}
.checkout .cart-summary-style2 .cart-info .title span {
  color: var(--secondary-theme-color);
  font-weight: 700;
}
.checkout .cart-summary-style2 .cart-info .price {
  color: #000;
}
.checkout .cart-summary-style2 .cart-total .text-right {
  font-weight: 700;
}
.checkout .cart-summary-style2 .cart-total .price {
  color: var(--secondary-theme-color);
}
.checkout .form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkout .form-check .form-check-input,
.checkout .form-check .form-check {
  border-color: var(--secondary-theme-color);
  border-width: 2px;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  display: block;
  position: relative;
  top: -2px;
}
@media screen and (max-width: 450px) {
  .checkout .form-check .form-check-input,
  .checkout .form-check .form-check {
    height: 18px;
    width: 18px;
    min-width: 18px;
    min-height: 18px;
  }
}
.checkout .form-check .form-check-input:checked,
.checkout .form-check .form-check:checked {
  background-color: var(--secondary-theme-color);
  border-color: var(--secondary-theme-color) !important;
}
.checkout .form-check .form-check-input:focus,
.checkout .form-check .form-check:focus {
  border-color: var(--secondary-theme-color);
}
.checkout .form-check .form-check-input.m-0,
.checkout .form-check .form-check.m-0 {
  margin: 0;
}
.checkout .form-check .packages .p-item .form-check-input,
.checkout .form-check .packages .p-item .form-check {
  top: 0;
}
.checkout .form-check .form-check-label {
  padding-left: 16px;
  font-size: 16px;
  line-height: 27px;
  width: auto;
}
@media screen and (max-width: 450px) {
  .checkout .form-check .form-check-label {
    padding-left: 10px;
  }
}
.checkout .form-check .form-check-label a {
  color: #000;
  font-weight: 400;
  text-decoration: underline;
}
.checkout .form-check .form-check-label a b {
  font-weight: 400;
}
.checkout .form-check.error {
  background-color: transparent;
  border-radius: 9px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 0;
  border-width: 2px;
  padding: 24px 24px 24px 42px;
}
.checkout .form-check.error.mb-0 {
  margin-bottom: 0;
}
.checkout .packages .p-item .form-check-input,
.checkout .packages .p-item .form-check {
  top: 0;
}
.checkout .cart-info {
  gap: 16px;
}
.checkout .cart-info .image {
  height: 41px;
  width: auto;
}
.checkout .cart-info .image img {
  height: 100%;
  width: auto;
}
.checkout .cart-info span {
  color: #000;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
}
.checkout .cart-info,
.checkout .cart-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  width: 100%;
}
.checkout .cart-info .title,
.checkout .cart-total .title {
  color: #000;
}
.checkout .cart-info .title span,
.checkout .cart-total .title span {
  color: var(--secondary-theme-color);
  font-weight: 700;
  text-transform: uppercase;
}
.checkout .cart-info .price,
.checkout .cart-total .price {
  color: var(--secondary-theme-color);
}
@media screen and (max-width: 575px) {
  .checkout .cart-info {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.checkout .cart-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
.checkout .cart-total div:first-child {
  font-weight: 400;
  padding-right: 40px;
}
.checkout .cart-total .price {
  color: #000;
}
@media screen and (max-width: 575px) {
  .checkout .cart-total {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.checkout .faq ul.accordion {
  list-style: none;
  padding: 0 0 0 25px;
}
.checkout .faq ul.accordion .inner {
  padding: 8px 0 0 44px;
  overflow: hidden;
  display: none;
}
.checkout .faq ul.accordion li {
  font-size: 16px;
  margin-bottom: 16px;
}
.checkout .faq ul.accordion li a.toggle {
  width: 100%;
  display: block;
  color: #000;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  text-decoration: none;
  font-weight: 700;
}
.checkout .faq ul.accordion li a.toggle::before {
  content: "\e91d";
  margin-right: 30px;
  font-size: 15px;
  color: var(--secondary-theme-color);
  position: relative;
  top: 2px;
}
.checkout .faq ul.accordion li a.toggle:hover {
  color: var(--secondary-theme-color);
}
.checkout .warranty-block.right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0px;
  text-align: center;
}
.checkout .warranty-block a {
  white-space: nowrap;
}
.checkout .warranty-block h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0;
}
.checkout .warranty-block p {
  font-size: 14px;
  line-height: 22px;
}
.checkout .warranty-block img {
  height: 140px;
  width: auto;
}
.checkout .compare {
  line-height: 1em;
}
.checkout .compare .warranty-block img {
  height: 20px;
  width: auto;
}
.checkout .compare .warranty-block img:first-child {
  position: relative;
  bottom: 2px;
}
.checkout .compare span {
  font-size: 0.9em;
  display: block;
}
.checkout .partners {
  width: 100%;
  padding-bottom: 0;
  opacity: 1;
  line-height: 20px;
}
.checkout .white-container h2[class^="icon-"],
.checkout .white-container h2[class*=" icon-"] {
  text-transform: none;
  color: #000;
  font-size: 1em;
  font-weight: 700;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.checkout .white-container h2[class^="icon-"]::before,
.checkout .white-container h2[class*=" icon-"]::before {
  color: var(--secondary-theme-color);
  font-size: 30px;
  margin-right: 16px;
}
.checkout .white-container h2[class^="icon-"].i-rounded::before,
.checkout .white-container h2[class*=" icon-"].i-rounded::before {
  color: #fff;
  background-color: var(--secondary-theme-color);
  width: 41px;
  height: 41px;
  min-width: 41px;
  min-height: 41px;
  font-size: 20px;
  line-height: 38px;
  display: block;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.checkout .inner-titles {
  position: relative;
  /*
  &::before {
      position: absolute;
      z-index: 0;
      left: 19px;
      top: 0;
      content: "";
      width: 1px;
      height: 100%;
      border-left: 1px dashed var(--secondary-theme-color);
      @media screen and (max-width: 991px) {
          display: none;
      }
  }
  */
}
.checkout .payment label {
  width: auto;
}
.checkout .payment .p-row {
  padding: 0;
  border: 0;
}
.checkout .payment .p-logo img {
  height: 16px;
  width: auto;
  position: relative;
  top: 2px;
}
.checkout .payment .cc-method {
  display: none;
}
.checkout .proceed {
  overflow: hidden;
  padding-left: 50px;
  padding-right: 50px;
  width: auto;
  text-transform: uppercase;
  white-space: nowrap;
}
.checkout .proceed img {
  height: 24px;
  width: auto;
  margin-left: 16px;
}
.checkout .proceed-paypal,
.checkout .proceed-googlepay,
.checkout .proceed-applepay {
  border-radius: 6px;
}
.checkout .proceed-paypal {
  color: #fff;
  background-color: #003085;
  border: 1px solid #003085;
  border-radius: 80px;
}
.checkout .proceed-googlepay,
.checkout .proceed-applepay {
  background-color: #000;
  font-weight: 500;
  color: #fff;
}
.checkout .proceed-paypal:hover,
.checkout .proceed-googlepay:hover,
.checkout .proceed-applepay:hover {
  opacity: 0.8;
}
.checkout .proceed-creditcard {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 1em;
}
.checkout .proceed-creditcard::after {
  content: "\f101";
  font-size: 21px;
  color: #fff;
  margin-left: 0;
  width: 20px;
  height: 20px;
  line-height: 20px;
  top: -1px;
  position: relative;
}
.checkout .proceed-googlepay {
  background-color: #fff;
  color: #000;
  vertical-align: middle;
  text-transform: capitalize;
  padding: 8px 16px;
}
.checkout .proceed-googlepay img {
  height: 40px;
  width: auto;
}
.checkout .proceed-venmo {
  background-color: transparent;
}
.checkout .proceed-venmo img {
  width: auto;
  height: 48px;
  position: relative;
  top: -2px;
}
.checkout .c-mt {
  margin-top: 0px;
}
@media screen and (max-width: 991px) {
  .checkout .c-mt {
    margin-top: 0;
  }
}

.dfPayMethod {
  display: none;
}

.special-offer {
  display: none;
}

#specialOffer {
  display: none;
}

.ty-form-btn {
  height: auto;
  padding: 9px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
  background-color: #ea0000;
  border: none;
  vertical-align: top;
  cursor: pointer;
  -webkit-appearance: none;
}

.ty-form-btn:hover,
.ty-form-btn:focus,
.ty-form-btn:active {
  background-color: #f00;
}

.ty .white-container {
  padding: 40px 30px;
}
@media screen and (max-width: 1200px) {
  .ty .white-container {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 991px) {
  .ty .white-container {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 767px) {
  .ty .white-container {
    padding: 24px;
  }
}

.ty-form-label {
  display: block;
  margin-bottom: 2px;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
}

.ty-form-label i {
  color: #ea0000;
}

h1.ty-title {
  font-size: 24px;
  font-weight: 700 !important;
  margin: 0;
}
@media screen and (max-width: 767px) {
  h1.ty-title {
    font-size: 18px;
    text-align: center;
  }
}

h2.ty-h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  padding: 0 0 24px 0;
}

.ty-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ty-contact-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding-bottom: 9px;
}
.ty-contact-list li,
.ty-contact-list li a {
  font-size: 16px;
}
.ty-contact-list li::before,
.ty-contact-list li a::before {
  color: #000;
}
.ty-contact-list li:hover,
.ty-contact-list li a:hover {
  text-decoration: none;
  color: #000;
}
.ty-contact-list li a,
.ty-contact-list li b {
  color: var(--secondary-theme-color);
  font-weight: 700;
}
.ty-contact-list li::before {
  margin-top: 4px;
}
.ty-contact-list li span {
  line-height: 27px;
}
@media screen and (max-width: 767px) {
  .ty-contact-list li {
    padding-bottom: 0;
  }
  .ty-contact-list li,
  .ty-contact-list li a {
    font-size: 14px;
  }
  .ty-contact-list li span {
    line-height: 25px;
  }
}

@media screen and (min-width: 450px) {
  .ty .message {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
  }
}

.ty.btn {
  font-size: 14px;
  font-weight: 500;
}

.ty-summary {
  color: #000;
  font-size: 16px;
  line-height: 20px;
}

.ty-summary ul {
  display: table;
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}

.ty-summary li {
  display: table-row;
  border-top: 1px solid #e6eaec;
}

.ty-summary li:first-child {
  border-top: none;
}

.ty-s-title,
.ty-s-value {
  display: table-cell;
  padding: 9px 5px;
  vertical-align: top;
}

.ty-s-title {
  text-transform: capitalize;
}

.ty-summary li:first-child .ty-s-title,
.ty-summary li:first-child .ty-s-value {
  padding-top: 0;
}

.ty-summary li:last-child .ty-s-title,
.ty-summary li:last-child .ty-s-value {
  padding-bottom: 0;
}

.ty-s-title {
  padding-left: 0;
}

.ty-s-value {
  padding-right: 0;
  color: var(--secondary-theme-color);
  font-weight: 400;
  text-align: right;
}

.ty-s-total .ty-s-title,
.ty-s-total .ty-s-value {
  font-weight: 700;
}

.ty-password {
  overflow: hidden;
}

.ty-p-message {
  color: #000;
  font-size: 16px;
  line-height: 23px;
}

@media screen and (min-width: 768px) {
  .ty-p-message {
    text-align: center;
  }
}
.ty-p-message strong {
  color: var(--secondary-theme-color);
  font-weight: 600;
}

.ty-p-title {
  margin-top: 15px;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
}

.ty-form {
  margin-top: 15px;
}

.ty-f-table {
  display: table;
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}

.ty-f-row {
  display: table-row;
}

.ty-f-cell {
  display: table-cell;
  padding: 5px 10px;
  vertical-align: top;
}
.ty-f-cell .form-check-label {
  font-size: 16px;
  line-height: 23px;
}
.ty-f-cell .form-check-input {
  width: 1em;
  min-width: 1em;
  max-width: 1em;
  height: 1em;
  max-height: 1em;
}

.ty-f-cell:first-child {
  padding-left: 0;
}

.ty-f-cell:last-child {
  padding-right: 0;
}

.ty-f-cell.w1,
.ty-f-cell.w3 {
  width: 30%;
}

.ty-f-cell.w2 {
  width: 40%;
  position: relative;
}
.ty-f-cell.w2 label {
  position: absolute;
  right: 10px;
  top: 50%;
  display: block;
  width: 20px;
  max-width: 20px;
  height: 20px;
  overflow: hidden;
  margin: 0;
  margin-top: -10px;
  padding: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ty-f-cell.w2 label::before {
  font-size: 20px;
}
.ty-f-cell.w2 label::after {
  position: absolute;
  z-index: 20;
  content: "";
  display: block;
  width: 1.4px;
  outline: 1px solid rgb(255, 255, 255);
  height: 22px;
  background-color: #000;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.ty-f-cell.w2 label.show::after {
  display: none;
}

.ty-f-cell label.ty-form-label {
  padding-top: 10px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .ty-f-cell label.ty-form-label {
    text-align: left;
  }
}

.ty-f-cell input.ty-form-control {
  font-size: 16px;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #000;
  padding-left: 10px;
  padding-right: 38px;
}

.ty-f-cell a {
  margin-top: 12px;
}

.ty-f-btn {
  width: 20%;
}

.ty-form .ty-form-btn {
  padding: 16px 20px;
  font-size: 24px;
  line-height: 24px;
  border-radius: 50px;
  text-align: center;
  width: 100%;
  background-color: var(--secondary-theme-color);
  margin-top: 24px;
}
.ty-form .ty-form-btn:hover {
  background-color: #000;
}
@media screen and (max-width: 991px) {
  .ty-form .ty-form-btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .ty-form .ty-form-btn {
    font-size: 16px;
    margin-top: 0;
    padding: 10px 16px;
  }
}

.ty-form .ty-form-btn:after {
  display: inline-block;
  content: "";
  width: 20px;
  height: 17px;
  margin: 4px 0 0 16px;
  background: url(../images/icons/arrow-white-double.svg) 0 0 no-repeat;
  background-size: auto 17px;
  vertical-align: top;
}
@media screen and (max-width: 991px) {
  .ty-form .ty-form-btn:after {
    width: 20px;
    height: 14px;
    margin: 5px 0 0 16px;
    background-size: auto 14px;
  }
}
@media screen and (max-width: 767px) {
  .ty-form .ty-form-btn:after {
    width: 20px;
    height: 12px;
    margin: 5px 0 0 16px;
    background-size: auto 12px;
  }
}

.ty-statement p {
  text-align: center;
  margin: 0;
  font-size: 16px;
  line-height: 25px;
  padding: 0;
  margin: 0;
}

.ty-statement p a {
  font-weight: 600;
}

.ty-statement p strong {
  color: #000;
  font-weight: 600;
}

.ty-h3 {
  margin: 20px 0;
  padding: 0;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-align: center;
}

.ty-show {
  margin: 20px 0;
  color: var(--secondary-theme-color);
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
}
.ty-show span {
  text-transform: lowercase;
  color: #000;
}

.ty-save {
  margin: 30px 0;
  padding-top: 30px;
  border-top: 1px dashed #aaa;
}

.ty-save ul {
  display: table;
  width: 100%;
  max-width: 600px;
  margin: 25px auto 0 auto;
  text-align: center;
  border-collapse: collapse;
  table-layout: fixed;
  padding: 0;
}

.ty-save li {
  display: table-cell;
  padding: 75px 20px 0 20px;
  vertical-align: top;
  position: relative;
  font-size: 16px;
  line-height: 24px;
}

.ty-save li span {
  display: block;
  color: var(--secondary-theme-color);
  font-weight: 600;
}

.ty-save li:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 30px;
  color: #fff;
  width: 64px;
  height: 64px;
  margin-left: -32px;
  background: var(--secondary-theme-color);
  position: absolute;
  top: 0;
  left: 50%;
  border-radius: 50%;
}

.ty-mobile {
  display: none;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .ty-logo {
    background-image: url(../images/logo%402x.html);
  }
}
/* < 1024px */
@media only screen and (max-width: 1059px) {
  .ty-container {
    margin: 0 30px;
  }
}
/* < 768px */
@media only screen and (max-width: 767px) {
  .ty-container {
    margin: 0 15px;
  }
  .ty-desktop {
    display: none;
  }
  .ty-mobile {
    display: block;
  }
  .ty-header {
    padding-bottom: 0;
    border-bottom: none;
  }
  .ty-h-table,
  .ty-h-logo,
  .ty-h-content {
    display: block;
    margin: 10px 0;
  }
  .ty-h-logo {
    width: auto;
  }
  .ty-logo {
    width: 106px;
    height: 42px;
    margin: 0 auto;
  }
  .ty-h-content {
    padding: 0;
    text-align: center;
  }
  .ty-h1 {
    font-size: 13px;
    line-height: 16px;
  }
  .ty-password {
    padding: 15px;
  }
  .ty-h-content p {
    font-size: 13px;
    line-height: 16px;
  }
  .ty-contact,
  .ty-summary {
    display: block;
    padding: 0;
    font-size: 14px;
    line-height: 18px;
    border: none;
  }
  .ty-f-table,
  .ty-f-row {
    display: block;
  }
  .ty-f-row {
    margin-top: 15px;
  }
  .ty-f-cell {
    display: block;
    padding: 0;
  }
  .ty-f-cell.w1,
  .ty-f-cell.w2,
  .ty-f-cell.w3 {
    width: auto;
  }
  .ty-f-cell.w3 {
    display: none;
  }
  .ty-f-cell label {
    padding: 0 0 5px 0;
    text-align: left;
  }
  .ty-statement {
    border-top: 0px dashed #aaa;
  }
  .ty-statement p {
    font-size: 14px;
    line-height: 24px;
  }
  .ty-show {
    font-size: 18px;
    line-height: 24px;
  }
  .ty-save {
    padding-top: 20px;
  }
  .ty-save ul {
    display: block;
    margin: 20px 0 0 0;
  }
  .ty-save li {
    display: block;
    margin: 20px 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
  }
  a.ty-btn2 {
    min-width: 240px;
    font-size: 18px;
  }
  .ty-btn-block .ty-btn:after {
    width: 19px;
    height: 17px;
    margin: 5px 0 0 20px;
  }
  .ty-contact.ty-mobile {
    padding-top: 20px;
    border-top: 1px dashed #aaa;
  }
  .ty-h3 {
    font-size: 14px;
    line-height: 18px;
  }
}
/* VIN Report */
.vin-rep-title1,
.vin-rep-title2 {
  font-size: 18px;
  font-weight: 700;
  width: 100%;
}

.vin-rep-title1 {
  text-align: center;
  padding-bottom: 10px;
  border-radius: 30px;
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.04);
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .vin-rep-title1 {
    margin-top: 24px;
  }
}

.vin-rep-title2 {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  color: var(--secondary-theme-color);
}

.vin-report-cont {
  max-height: 360px;
  margin: 0px 0 20px 0;
  overflow: hidden;
  position: relative;
}

.vin-report-cont::before {
  display: block;
  content: "";
  width: 100%;
  height: 25%;
  background: rgb(247, 248, 249);
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgb(247, 248, 249)),
    to(rgba(247, 248, 249, 0))
  );
  background: linear-gradient(
    0deg,
    rgb(247, 248, 249) 0%,
    rgba(247, 248, 249, 0) 100%
  );
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.vin-report-cont.vr-email {
  max-height: 480px;
}

.vin-report {
  max-width: 100%;
  margin: 0 auto;
  color: #072d49;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0em;
  overflow: hidden;
  border-radius: 12px;
  -webkit-box-shadow: 0 10px 25px 0 rgba(7, 45, 73, 0.15);
  box-shadow: 0 10px 25px 0 rgba(7, 45, 73, 0.15);
}

.vin-report img {
  display: block;
  height: auto;
  width: 100%;
}

.vr-special {
  color: var(--secondary-theme-color);
}

.vr-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: var(--secondary-theme-color);
  padding: 10px 20px;
}

.vr-logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  width: 100px;
}

.vr-head-rgt {
  padding-left: 10px;
  text-align: right;
}

.vr-name {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
}

.vr-head-val {
  margin-top: 2px;
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  line-height: 1em;
  word-break: break-all;
}

.vr-body {
  background: #fff;
  padding: 6px 20px;
}

.vr-section {
  padding: 6px 0;
}

.vr-ttl {
  margin-bottom: 8px;
  color: #072d49;
  font-size: 10px;
  font-weight: 700;
  line-height: calc(1em + 2px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.vr-ttl::after {
  content: " ";
  width: 100%;
  height: 1px;
  margin-left: 6px;
  background: #e6eaec;
  position: absolute;
  bottom: 2px;
  overflow: hidden;
}

.vr-ttl2 {
  margin-bottom: 4px;
  color: #072d49;
  font-size: 8px;
  font-weight: 700;
  line-height: calc(1em + 2px);
}

.vr-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 20px;
  margin: 0 -5px;
  font-size: 6px;
  font-weight: 800;
  line-height: 8px;
}

.vr-info-num {
  padding: 0 5px;
}

.vr-info-car {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: right;
  padding: 0 5px;
}

.vr-info-log {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  width: 20px;
  margin-left: 6px;
}

.vr-sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -2px;
  font-size: 5px;
  font-weight: 700;
  line-height: 5px;
  text-align: center;
}

.vr-sum-col {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 4px);
  flex: 0 1 calc(100% - 4px);
  margin: 0 2px;
  padding: 4px 2px;
  background: var(--light-green-color);
  border-radius: 2px;
}

.vr-sum-icn {
  width: 16px;
  margin: 0 auto;
  padding: 2px 0;
}
.vr-sum-icn img {
  width: auto;
  height: 16px;
}

.vr-sum-inf {
  padding: 2px 0;
}

.vr-sum-val {
  -webkit-filter: blur(1px);
  filter: blur(1px);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.vr-spc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: -1px -1px 0 0;
}

.vr-spc-col {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(25% - 1px);
  flex: 0 1 calc(25% - 1px);
  width: calc(25% - 1px);
  padding: 4px;
  background: #f2f4f6;
  border-radius: 2px;
}

.three-col .vr-spc-col {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(33.3333333333% - 1px);
  flex: 0 1 calc(33.3333333333% - 1px);
  width: calc(33.3333333333% - 1px);
}

.vr-spc .vr-spc-col {
  margin: 1px 1px 0 0;
}

.vr-spc-ttl {
  color: #6a8192;
  font-size: 4px;
  font-weight: 700;
  line-height: 4px;
}

.vr-spc-val {
  font-size: 6px;
  font-weight: 800;
  line-height: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr-spc-val2 {
  font-size: 5px;
  font-weight: 800;
  line-height: 6px;
}

.vr-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 8px -4px 0 -4px;
}

.vr-img.single {
  margin-top: 0;
}

.vr-img-col {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  max-width: 33.3333333333%;
  padding: 0 4px;
}

.vr-img-txt {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  max-width: 66.6666666667%;
  padding: 0 4px;
}

.vr-img.single .vr-img-txt {
  max-width: inherit;
}

.vr-rec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: -1px -1px 0 0;
}

.vr-rec-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 1px);
  flex: 0 1 calc(50% - 1px);
  width: calc(50% - 1px);
  padding: 4px;
  background: var(--light-green-color);
  border-radius: 2px;
}

.vr-img.single .vr-rec-col {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 1px);
  flex: 0 1 calc(100% - 1px);
  width: calc(100% - 1px);
}

.vr-rec .vr-rec-col {
  margin: 1px 1px 0 0;
}

.vr-rec-icn {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 6px;
  flex: 0 0 6px;
  width: 6px;
  margin-right: 4px;
}

.vr-rec-ttl {
  font-size: 4px;
  font-weight: 800;
  line-height: 6px;
}

.vr-img.single .vr-rec-ttl {
  font-size: 5px;
  line-height: 8px;
}

@media only screen and (max-width: 767px) {
  .vin-report-cont {
    max-height: 320px;
    margin: 20px 0;
  }
}
.vr-two-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 -4px;
}

.vr-two-cols > .col {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  padding: 0 4px;
}

.text-blurred {
  -webkit-filter: blur(2px);
  filter: blur(2px);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.vr-smr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 5px;
  font-weight: 700;
  line-height: 6px;
}

.vr-smr .img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 48px;
  height: 100%;
  max-height: 60px;
  margin-right: 8px;
  background: #cdd5db;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.vr-smr .img::before {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/vin_report/icn_lock_white.html) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
}

.vr-smr .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.vr-smr .inf {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.vr-tbl {
  font-size: 5px;
  font-weight: 700;
  line-height: 6px;
}

.vr-tbl .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 2px 3px;
  background: #f7f8f9;
}

.vr-tbl .row:nth-of-type(even) {
  background: #fff;
}

.vr-tbl .ttl {
  margin-right: 2px;
}

.vr-adr {
  font-size: 5px;
  font-weight: 600;
  line-height: 6px;
}

.vr-adr .map {
  width: 100%;
  height: 40px;
  background: #cdd5db;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.vr-adr .map::before {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background: url(../images/vin_report/pin.html) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: calc(50% - 4px);
  left: calc(50% - 4px);
}

.vr-adr .map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.vr-adr .inf {
  margin-top: 4px;
}

.vr-adr .t1 {
  font-weight: 800;
}

.vr-phn {
  font-size: 5px;
  font-weight: 600;
  line-height: 6px;
}

.vr-phn .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: -2px;
}

.vr-phn .col {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  width: 50%;
  padding: 2px;
}

.vr-phn .cnt {
  height: 100%;
  padding: 3px 4px;
  background: #f2f4f6;
  border-radius: 2px;
}

.vr-phn .t1 {
  font-weight: 800;
}

.vr-phn .t2 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr-scl > .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: -4px;
}

.vr-scl .col {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  width: 100%;
  padding: 4px;
}

.vr-scl .hdr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 4px;
}

.vr-scl .hdr .icn {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8px;
  margin-right: 4px;
}

.vr-scl .hdr .icn img {
  display: block;
  width: 100%;
  height: auto;
}

.vr-scl .hdr .nam {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 6px;
  font-weight: 800;
  line-height: 8px;
}

.vr-scl .bdy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.vr-scl .bdy .img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  margin-right: 4px;
  background: #cdd5db;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.vr-scl .bdy .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.vr-scl .bdy .inf {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: calc(100% - 34px);
}

.vr-scl .vr-tbl .ttl {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.vr-scl .vr-tbl .val {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr-onl .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: -2px;
}

.vr-onl .col {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  padding: 2px;
}

.vr-onl .img {
  width: 100%;
  height: 72px;
  background: #cdd5db;
  border: 1px solid #cdd5db;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.vr-onl .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.vr-gal .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: -2px;
}

.vr-gal .col {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.3333333333%;
  flex: 0 1 33.3333333333%;
  width: 33.3333333333%;
  padding: 2px;
}

.vr-gal .img {
  width: 100%;
  height: 32px;
  background: #cdd5db;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.vr-gal .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.vr-gal .vid::before {
  display: block;
  content: "";
  width: 10px;
  height: 12px;
  background: #fff;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  position: absolute;
  top: calc(50% - 6px);
  left: calc(50% - 5px);
}

.vr-gal .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 7px;
  font-weight: 600;
  line-height: 1em;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

.vr-gal .txt strong {
  display: block;
  font-size: 10px;
  font-weight: 600;
  line-height: 1em;
}

.vr-rcs {
  font-size: 5px;
  font-weight: 800;
  line-height: 1em;
  text-align: center;
}

.vr-rcs .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: -2px;
}

.vr-rcs .col {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.3333333333%;
  flex: 0 1 33.3333333333%;
  width: 33.3333333333%;
  padding: 2px;
}

.vr-rcs.two-cols .col {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  width: 50%;
}

.vr-rcs .cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  height: 100%;
  min-height: 34px;
  padding: 2px;
  background: #daedff;
  border-radius: 2px;
}

.vr-rcs .icn {
  width: 12px;
  margin: 0 auto;
  padding: 2px 0;
}

.vr-map {
  width: 100%;
  height: 100%;
  background: #cdd5db;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.vr-map::before {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background: url(../images/vin_report/pin.html) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: calc(50% - 4px);
  left: calc(50% - 4px);
}

.vr-map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.checkout .style-02 .title.style-center {
  padding-top: 16px;
}
.checkout .style-02 h2 {
  font-weight: 700;
  font-size: 1em;
  text-transform: none;
}
.checkout .style-02 .btn {
  padding: 12px 20px 12px 20px;
  line-height: 1em;
}
.checkout .style-02 .white-container {
  padding: 30px 12px;
}
@media screen and (max-width: 575px) {
  .checkout .style-02 .white-container {
    padding: 12px 0;
    border: 0;
  }
}
.checkout .style-02 h1.mb-3 {
  margin-bottom: 1em;
}
.checkout .style-02 p,
.checkout .style-02 label {
  font-size: 14px !important;
  line-height: 1.5em !important;
}
.checkout .style-02 .white-container h1[class^="icon-"],
.checkout .style-02 .white-container h1[class*=" icon-"] {
  text-transform: none;
}
.checkout .style-02 .p-row {
  padding: 0;
  border: 0;
}
.checkout .style-02 .p-item,
.checkout .style-02 .dfPayMethod {
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  padding: 16px 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 550px) {
  .checkout .style-02 .p-item,
  .checkout .style-02 .dfPayMethod {
    min-height: 66px;
  }
}
.checkout .style-02 .p-item ul,
.checkout .style-02 .dfPayMethod ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.checkout .style-02 .p-item ul img,
.checkout .style-02 .dfPayMethod ul img {
  height: 18px;
  width: auto;
}
.checkout .style-02 .p-item ul li:last-child img,
.checkout .style-02 .dfPayMethod ul li:last-child img {
  height: 24px;
}
.checkout .style-02 .dfPayMethod {
  display: none;
}
.checkout .style-02 .form-check .form-check-input {
  border-color: #000;
  border-width: 2px;
}
.checkout .style-02 .satisfaction-block img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .checkout .style-02 .satisfaction-block img {
    width: auto;
    height: 100px;
  }
}
.checkout .style-02 .min-wrapper {
  background-color: #f0f9f0;
  border-radius: 30px;
  padding: 24px 24px 12px 24px;
}
.checkout .style-02 .min-wrapper .vr-head {
  background-color: #e1e1e1;
}
.checkout .style-02 .min-wrapper .vr-name {
  color: #000;
}
.checkout .style-02 .min-wrapper h2,
.checkout .style-02 .min-wrapper h3 {
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}
.checkout .style-02 .min-wrapper h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--secondary-theme-color);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 0;
}
.checkout .style-02 .min-wrapper h3 img {
  height: 24px;
  width: auto;
}
.checkout .style-02 .min-wrapper .cart-summary .cart-info .title {
  font-weight: 400;
}
.checkout .style-02 .min-wrapper .cart-summary .cart-info .price {
  color: #000;
}
.checkout .style-02 .min-wrapper .cart-summary .cart-info,
.checkout .style-02 .min-wrapper .cart-summary .cart-total {
  font-size: 14px;
  padding: 4px 0;
}
.checkout .style-02 .min-wrapper .cart-summary .border-bottom {
  border-bottom: 2px solid var(--secondary-theme-color);
  padding-bottom: 12px;
  margin-bottom: 6px;
}
@media screen and (max-width: 575px) {
  .checkout .style-02 .compare {
    background-color: #f2f2f2;
    padding: 24px;
  }
}
.checkout .style-02 .compare ul {
  padding: 0;
  list-style: none;
  padding: 0 0 24px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.checkout .style-02 .compare ul li {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 1.5em;
}
.checkout .style-02 .compare ul li::before {
  color: var(--secondary-theme-color);
  font-size: 12px;
  margin-right: 12px;
}
.checkout .style-02 .compare span {
  font-size: 14px;
}
.checkout .style-02 .ckout-nmvtis {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.checkout .style-02 .ckout-nmvtis div {
  width: auto;
}
.checkout .style-02 .ckout-nmvtis img {
  width: auto;
  height: 60px;
}
.checkout .style-02 .ckout-nmvtis b {
  display: block;
}

.countdown {
  font-weight: 400;
  font-size: 16px;
  padding: 10px 0;
}
.countdown.red-style {
  background-color: var(--light-red-color);
}
.countdown.red-style span {
  font-weight: 900;
  color: red;
}
.countdown.border-radius {
  border-radius: 30px;
}

.no-hit .title h1 {
  font-size: 1em;
  line-height: 1.4em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .no-hit .title h1 {
    font-size: 1em;
    line-height: 1.3em;
  }
}
@media screen and (max-width: 767px) {
  .no-hit p {
    font-size: 0.9em !important;
    line-height: 1.4em !important;
  }
}
.no-hit .top-no-result img {
  max-height: 80px;
  width: auto;
  margin: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .no-hit .top-no-result img {
    max-height: 60px;
    width: auto;
    margin-bottom: 16px;
  }
}

.terms-privacy address {
  margin-top: 40px;
  padding-left: 48px;
}
.terms-privacy .row {
  margin-top: 40px;
}
.terms-privacy .row h2 ~ p {
  padding-left: 62px;
}
.terms-privacy .row h2 ~ ol,
.terms-privacy .row h2 ~ ul {
  padding-left: 110px;
}
.terms-privacy .row h3 {
  padding-left: 62px;
}
.terms-privacy .row h3 ~ p {
  padding-left: 90px;
}
.terms-privacy .row h3 ~ ol,
.terms-privacy .row h3 ~ ul {
  padding-left: 130px;
}
.terms-privacy .row h4 {
  padding-left: 90px;
}
.terms-privacy .row h4 + ol,
.terms-privacy .row h4 + p + ol,
.terms-privacy .row h4 + p + p + ol,
.terms-privacy .row h4 + ul,
.terms-privacy .row h4 + p + ul,
.terms-privacy .row h4 + p + p + ul {
  padding-left: 130px;
}
.terms-privacy .row:first-child {
  margin: 0;
  padding: 0;
}
.terms-privacy ul,
.terms-privacy ol {
  margin-top: -16px;
}
.terms-privacy h2 + h3 {
  margin-top: 16px;
}
.terms-privacy .title h6 {
  font-weight: 300;
}
.terms-privacy .title em {
  font-weight: 600;
}
.terms-privacy h2 {
  font-size: 28px;
  font-weight: 700;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}
.terms-privacy h2 span {
  display: block;
  left: 0;
  width: 48px;
}
.terms-privacy h3 {
  font-size: 22px;
  font-weight: 700;
}
.terms-privacy address {
  font-style: italic;
}
.terms-privacy h4 {
  font-size: 1em;
  font-weight: 700;
}
.terms-privacy h4 ~ ol li,
.terms-privacy h4 ~ ul li {
  margin-bottom: 12px;
}
.terms-privacy h4 ~ ol li:last-child,
.terms-privacy h4 ~ ul li:last-child {
  margin-bottom: 0;
}

.glossary {
  padding-top: 64px;
  padding-bottom: 64px;
}
.glossary ul.alph-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px;
  row-gap: 6px;
  margin-bottom: 40px;
}
.glossary ul.alph-nav li {
  display: block;
  background-color: red;
}
.glossary ul.alph-nav li a {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  display: block;
}
.glossary ul.alph-nav li a:hover,
.glossary ul.alph-nav li a:focus,
.glossary ul.alph-nav li a:active {
  text-decoration: none;
  background-color: #d8ffd6;
  border: 1px solid #aeffab;
}
.glossary ol {
  margin-bottom: 29px;
}
.glossary ol li:not(:first-child) {
  margin-top: 24px;
}
.glossary h1,
.glossary h2 {
  font-weight: 700;
}
.glossary h1 {
  margin-bottom: 40px;
}
.glossary h2 {
  font-size: 24px;
}
.glossary h2 {
  border-top: 1px solid #ccc;
  padding-top: 40px;
}
.glossary h2:not([id]) {
  border-top: 0;
  padding-top: 0;
}
.glossary a.top-link {
  display: inline-block;
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .glossary {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .glossary ul.alph-nav {
    margin-bottom: 24px;
  }
  .glossary ol {
    margin-bottom: 29px;
  }
  .glossary ol li:not(:first-child) {
    margin-top: 24px;
  }
  .glossary h1 {
    margin-bottom: 24px;
  }
  .glossary h2 {
    font-size: 24px;
  }
  .glossary h2 {
    padding-top: 24px;
  }
  .glossary a.top-link {
    margin-bottom: 24px;
  }
}
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 0 9px 9px 0;
  border: 2px solid #bbbbbb;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-size: 16px;
  height: 48px;
  line-height: 44px;
  outline: none;
  padding-left: 16px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}
@media screen and (max-width: 767px) {
  .nice-select {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .nice-select {
    height: 44px;
    line-height: 40px;
    padding-left: 10px;
  }
}

.nice-select:hover {
  border-color: #bbbbbb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #bbbbbb;
}

.nice-select:after {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -7px;
  width: 16px;
  height: 12px;
  border: 0;
  background-repeat: no-repeat;
  background-image: url(../images/icons/down-arrow.svg) !important;
  background-size: 18px 14px;
}
.nice-select.open:after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.nice-select.open .list {
  height: calc(100vh - 190px);
  overflow-y: scroll;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
@media screen and (max-width: 991px) {
  .nice-select.open .list {
    height: calc(100vh - 230px);
  }
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #cccccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small:after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: #fff;
  border-radius: 0.25rem;
  border: 1px solid #bbbbbb;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  z-index: 10000000000000000;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  .nice-select .option {
    line-height: 30px;
    min-height: 30px;
    padding-left: 14px;
    padding-right: 20px;
  }
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

.testimonials .title {
  margin-bottom: 0;
}
.testimonials h3 {
  font-size: 1em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.testimonials .logo-right {
  max-height: 24px;
  width: auto;
}
.testimonials .items-row {
  row-gap: 24px;
}
.testimonials .rating {
  margin-top: 10px;
}
.testimonials .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  height: 100%;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.06);
}
.testimonials .item .name {
  font-weight: 700;
  font-size: 16px;
}
.testimonials .item p {
  font-size: 14px;
  font-weight: 300;
}
.testimonials .slick-slide {
  margin: 0 10px;
}
.testimonials .slick-list {
  margin: 0 -10px;
}
.testimonials .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.testimonials .three-items .item {
  width: 33.33%;
}
.testimonials .testimonials_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 24px;
  row-gap: 16px;
}
.testimonials .testimonials_3 .testimonial em {
  display: block;
  min-height: 53px;
}

.testimonials_3 .testimonial em {
  display: block;
  min-height: 62px;
}

.svg-sprite .icon-logo {
  height: 40px;
  width: 200px;
}
@media screen and (max-width: 991px) {
  .svg-sprite .icon-logo {
    height: 30px;
  }
}
@media screen and (max-width: 575px) {
  .svg-sprite .icon-logo {
    height: 25px;
  }
}
.svg-sprite .logo-partner {
  height: 30px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .svg-sprite .logo-partner {
    height: 20px;
    width: 80px;
  }
}
.svg-sprite .mob-rep-i {
  width: 64px;
  height: 64px;
}
.svg-sprite .icon-42 {
  width: 42px;
  height: 42px;
}
.svg-sprite .icon-16 {
  width: 16px;
  height: 16px;
}
.svg-sprite .color-white {
  -webkit-filter: invert(100%) sepia(0%) saturate(7459%) hue-rotate(17deg)
    brightness(114%) contrast(111%);
  filter: invert(100%) sepia(0%) saturate(7459%) hue-rotate(17deg)
    brightness(114%) contrast(111%);
}
.svg-sprite .color-green {
  -webkit-filter: invert(29%) sepia(98%) saturate(1823%) hue-rotate(96deg)
    brightness(101%) contrast(101%);
  filter: invert(29%) sepia(98%) saturate(1823%) hue-rotate(96deg)
    brightness(101%) contrast(101%);
}

@media only screen and (device-width: 375px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3) {
  select,
  textarea,
  input,
  button {
    font-size: 16px !important;
  }
}
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
  select,
  textarea,
  input,
  button {
    font-size: 16px !important;
  }
}
.peddle-overlay {
  z-index: 999999999999 !important;
}

main.content section:nth-child(odd) {
  background-color: #f4f4f4;
}
main.content section:nth-child(odd).bg-light-green {
  background-color: #dff2df;
}
main.content section:nth-child(even) {
  background-color: #fff;
}
main.content section:nth-child(even).bg-light-green {
  background-color: #dff2df;
}
@media screen and (max-width: 575px) {
  main.content section:nth-child(odd) {
    background-color: #fff;
  }
  main.content section:nth-child(even) {
    background-color: #f4f4f4;
  }
}
main.content section:nth-child(odd).bg-black,
main.content section:nth-child(even).bg-black {
  background-color: #000;
}
main.content .bg-white {
  background-color: #fff !important;
}
main.content .bg-gray {
  background-color: #f4f4f4 !important;
}
main.content .bg-black {
  background-color: #000;
  color: #fff;
}
main.content .bg-black a.btn:hover {
  background-color: #fff;
  color: #000;
}

main.blog section:nth-child(odd) {
  background-color: #fff;
}
main.blog section:nth-child(odd).bg-light-green {
  background-color: #dff2df;
}
main.blog section:nth-child(even) {
  background-color: #f4f4f4;
}
main.blog section:nth-child(even).bg-light-green {
  background-color: #dff2df;
}
main.blog section:nth-child(odd).bg-black,
main.blog section:nth-child(even).bg-black {
  background-color: #000;
}

.bg-light-green {
  background-color: #dff2df;
}

.bg-white {
  background-color: #fff;
}

.bg-gray {
  background-color: #f4f4f4;
}

.bg-black {
  background-color: #000;
  color: #fff;
}
.bg-black a.btn:hover {
  background-color: #fff;
  color: #000;
}

section.bg-light-green .partners {
  padding-bottom: 0;
}

body,
html {
  font-size: 18px;
  line-height: 31px;
}
@media screen and (max-width: 575px) {
  body,
  html {
    font-size: 16px;
    line-height: 25px;
  }
}
@media screen and (min-width: 768px) {
  body,
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 52px;
  }
}

p {
  font-size: 1em;
  line-height: 1.7em;
  margin-bottom: 1.7em;
}
[class^="col-"] p:last-child {
  margin-bottom: 0;
}

header h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 77px;
  margin: -15px 0 0 0;
  padding: 0;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  header h1 {
    font-size: 56px;
  }
}
@media screen and (max-width: 991px) {
  header h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 767px) {
  header h1 {
    font-size: 40px;
    line-height: 45px;
  }
}
@media screen and (max-width: 757px) {
  header h1 {
    font-size: 32px;
  }
}

.title,
.blk-state__content .title {
  margin-bottom: 1.5rem;
}
.title h1,
.title h2,
.title h3,
.title h4,
.title .lbox-t1,
.blk-state__content .title h1,
.blk-state__content .title h2,
.blk-state__content .title h3,
.blk-state__content .title h4,
.blk-state__content .title .lbox-t1 {
  font-weight: 300;
}
.title h1 b,
.title h1 strong,
.title h2 b,
.title h2 strong,
.title h3 b,
.title h3 strong,
.title h4 b,
.title h4 strong,
.title .lbox-t1 b,
.title .lbox-t1 strong,
.blk-state__content .title h1 b,
.blk-state__content .title h1 strong,
.blk-state__content .title h2 b,
.blk-state__content .title h2 strong,
.blk-state__content .title h3 b,
.blk-state__content .title h3 strong,
.blk-state__content .title h4 b,
.blk-state__content .title h4 strong,
.blk-state__content .title .lbox-t1 b,
.blk-state__content .title .lbox-t1 strong {
  font-weight: 900;
}
.title h1.fs-mid,
.blk-state__content .title h1.fs-mid {
  font-size: 1.5em;
}
.title p:last-child,
.blk-state__content .title p:last-child {
  margin-bottom: 0;
}
.title span,
.blk-state__content .title span {
  color: var(--secondary-theme-color);
}
.title.style-b-left h1,
.title.style-b-left h2,
.title.style-b-left h3,
.title.style-b-left h4,
.title.style-b-left.text-center,
.title .lbox-t1 h1,
.title .lbox-t1 h2,
.title .lbox-t1 h3,
.title .lbox-t1 h4,
.title .lbox-t1.text-center,
.blk-state__content .title.style-b-left h1,
.blk-state__content .title.style-b-left h2,
.blk-state__content .title.style-b-left h3,
.blk-state__content .title.style-b-left h4,
.blk-state__content .title.style-b-left.text-center,
.blk-state__content .title .lbox-t1 h1,
.blk-state__content .title .lbox-t1 h2,
.blk-state__content .title .lbox-t1 h3,
.blk-state__content .title .lbox-t1 h4,
.blk-state__content .title .lbox-t1.text-center {
  border-color: var(--secondary-theme-color);
  border-style: solid;
  border-width: 0;
  border-left-width: 8px;
}
.title.style-b-left h1,
.title.style-b-left h2,
.title.style-b-left.text-center,
.title .lbox-t1 h1,
.title .lbox-t1 h2,
.title .lbox-t1.text-center,
.blk-state__content .title.style-b-left h1,
.blk-state__content .title.style-b-left h2,
.blk-state__content .title.style-b-left.text-center,
.blk-state__content .title .lbox-t1 h1,
.blk-state__content .title .lbox-t1 h2,
.blk-state__content .title .lbox-t1.text-center {
  padding-left: 24px;
}
.title.style-b-left h3,
.title .lbox-t1 h3,
.blk-state__content .title.style-b-left h3,
.blk-state__content .title .lbox-t1 h3 {
  border-left-width: 4px;
  font-size: 18px;
  font-weight: 700;
  padding-left: 16px;
}
.title.style-slogan p,
.blk-state__content .title.style-slogan p {
  color: var(--secondary-theme-color);
}
.title.style-slogan span,
.blk-state__content .title.style-slogan span {
  display: block;
  font-size: 18px;
  line-height: 29px;
  margin-top: 16px;
  color: var(--secondary-theme-color);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .title.style-slogan span,
  .blk-state__content .title.style-slogan span {
    font-size: 16px;
    line-height: 21px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 575px) {
  .title.style-slogan span,
  .blk-state__content .title.style-slogan span {
    font-size: 14px;
    line-height: 21px;
    margin-top: 6px;
  }
}
.title.style-center,
.blk-state__content .title.style-center {
  text-align: center;
}
.title.style-center p,
.blk-state__content .title.style-center p {
  margin-top: 20px;
}
.title.style-icon-left h1,
.title.style-icon-left h2,
.title.style-icon-left h3,
.title.style-icon-left h4,
.blk-state__content .title.style-icon-left h1,
.blk-state__content .title.style-icon-left h2,
.blk-state__content .title.style-icon-left h3,
.blk-state__content .title.style-icon-left h4 {
  font-weight: 600;
  position: relative;
  padding-left: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.title.style-icon-left h1::before,
.title.style-icon-left h2::before,
.title.style-icon-left h3::before,
.title.style-icon-left h4::before,
.blk-state__content .title.style-icon-left h1::before,
.blk-state__content .title.style-icon-left h2::before,
.blk-state__content .title.style-icon-left h3::before,
.blk-state__content .title.style-icon-left h4::before {
  content: "";
  background-repeat: no-repeat;
  width: 42px;
  height: 42px;
  display: block;
  position: absolute;
  left: 0;
  background-position: center;
}
.title.full_r_style h2,
.blk-state__content .title.full_r_style h2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 30px;
  text-transform: capitalize;
}
.title.full_r_style h2::before,
.blk-state__content .title.full_r_style h2::before {
  margin-right: 30px;
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .title.full_r_style h2,
  .blk-state__content .title.full_r_style h2 {
    padding-left: 0;
  }
  .title.full_r_style h2::before,
  .blk-state__content .title.full_r_style h2::before {
    position: relative;
    font-size: 32px;
  }
}
.title.s-42 h1,
.title.s-42 h2,
.blk-state__content .title.s-42 h1,
.blk-state__content .title.s-42 h2 {
  font-size: 42px;
}
@media screen and (max-width: 767px) {
  .title.s-42 h1,
  .title.s-42 h2,
  .blk-state__content .title.s-42 h1,
  .blk-state__content .title.s-42 h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 575px) {
  .title.s-42 h1,
  .title.s-42 h2,
  .blk-state__content .title.s-42 h1,
  .blk-state__content .title.s-42 h2 {
    font-size: 24px;
  }
}
.title.s-22 h1,
.title.s-22 h2,
.title.s-22 h3,
.title.s-22 h4,
.blk-state__content .title.s-22 h1,
.blk-state__content .title.s-22 h2,
.blk-state__content .title.s-22 h3,
.blk-state__content .title.s-22 h4 {
  font-size: 22px;
}
.title.s-32 h1,
.title.s-32 h2,
.title.s-32 h3,
.title.s-32 h4,
.blk-state__content .title.s-32 h1,
.blk-state__content .title.s-32 h2,
.blk-state__content .title.s-32 h3,
.blk-state__content .title.s-32 h4 {
  font-size: 32px;
}
.title.s-32 p,
.blk-state__content .title.s-32 p {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .title.s-32 h1,
  .title.s-32 h2,
  .title.s-32 h3,
  .title.s-32 h4,
  .blk-state__content .title.s-32 h1,
  .blk-state__content .title.s-32 h2,
  .blk-state__content .title.s-32 h3,
  .blk-state__content .title.s-32 h4 {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  .title.s-32 h1,
  .title.s-32 h2,
  .title.s-32 h3,
  .title.s-32 h4,
  .blk-state__content .title.s-32 h1,
  .blk-state__content .title.s-32 h2,
  .blk-state__content .title.s-32 h3,
  .blk-state__content .title.s-32 h4 {
    font-size: 18px;
  }
  .title.s-32 p,
  .blk-state__content .title.s-32 p {
    font-size: 16px;
  }
}
.title.s-42 h1,
.title.s-42 h2,
.title.s-42 h3,
.title.s-42 h4,
.blk-state__content .title.s-42 h1,
.blk-state__content .title.s-42 h2,
.blk-state__content .title.s-42 h3,
.blk-state__content .title.s-42 h4 {
  font-size: 42px;
}
.title.s-42 p,
.blk-state__content .title.s-42 p {
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .title.s-42 h1,
  .title.s-42 h2,
  .title.s-42 h3,
  .title.s-42 h4,
  .blk-state__content .title.s-42 h1,
  .blk-state__content .title.s-42 h2,
  .blk-state__content .title.s-42 h3,
  .blk-state__content .title.s-42 h4 {
    font-size: 32px;
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .title.s-42 h1,
  .title.s-42 h2,
  .title.s-42 h3,
  .title.s-42 h4,
  .blk-state__content .title.s-42 h1,
  .blk-state__content .title.s-42 h2,
  .blk-state__content .title.s-42 h3,
  .blk-state__content .title.s-42 h4 {
    font-size: 24px;
  }
  .title.s-42 p,
  .blk-state__content .title.s-42 p {
    font-size: 16px;
  }
}
.title.mb-0,
.blk-state__content .title.mb-0 {
  margin-bottom: 0;
}
.title.mb-3,
.blk-state__content .title.mb-3 {
  margin-bottom: 1rem;
}
.title.mb-4,
.blk-state__content .title.mb-4 {
  margin-bottom: 1.5rem;
}
.title.pb-0,
.blk-state__content .title.pb-0 {
  padding-bottom: 0;
}

.no-hit p,
.no-hit .btn {
  font-size: 18px;
}
@media screen and (max-width: 425px) {
  .no-hit p,
  .no-hit .btn {
    font-size: 16px;
  }
}
.no-hit h1 b {
  color: var(--secondary-theme-color);
}
.no-hit p span {
  font-weight: 700;
  color: var(--secondary-theme-color);
}

header,
section.search-in {
  margin: 0;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
header.bg-light-green,
section.search-in.bg-light-green {
  color: #000000;
}
header.bg-light-green h2,
section.search-in.bg-light-green h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
header.bg-light-green h2 span,
section.search-in.bg-light-green h2 span {
  font-weight: 300;
}
header.bg-light-green h2 span b,
section.search-in.bg-light-green h2 span b {
  font-weight: 700;
}
header.bg-light-green h2 small,
section.search-in.bg-light-green h2 small {
  text-transform: none;
  letter-spacing: normal;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.4em;
}
header .main-search,
section.search-in .main-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

section.hero{
  background-color: white !important;
}



header section,
header .main-search,
section.search-in section,
section.search-in .main-search {
  width: 100%;
  min-height: 380px;
  padding-top: 64px;
  padding-bottom: 64px;
  background-color: rgba(0, 0, 0, 0.55);
}
header section.mini,
header .main-search.mini,
section.search-in section.mini,
section.search-in .main-search.mini {
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 0;
}
header section.mini__slim,
header .main-search.mini__slim,
section.search-in section.mini__slim,
section.search-in .main-search.mini__slim {
  min-height: auto;
}
header section.h-auto,
header .main-search.h-auto,
section.search-in section.h-auto,
section.search-in .main-search.h-auto {
  min-height: auto;
}
header.slim-style-white,
section.search-in.slim-style-white {
  background-color: #fff !important;
  padding-top: 0 !important;
  margin-top: -40px;
}
header.slim-style-white .main-search,
section.search-in.slim-style-white .main-search {
  min-height: auto;
}
@media screen and (max-width: 991px) {
  header section,
  section.search-in section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  header section,
  header .main-search,
  section.search-in section,
  section.search-in .main-search {
    min-height: 0;
  }
}
@media screen and (max-width: 575px) {
  header section,
  header .main-search,
  section.search-in section,
  section.search-in .main-search {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #fff !important;
  }
  header.bg-light-green .main-search,
  section.search-in.bg-light-green .main-search {
    background-image: url(../img/home.jpg);
  }
  header.bg-light-green h2,
  section.search-in.bg-light-green h2 {
    font-size: 24px;
    margin-bottom: 1.2rem;
  }
}
header.partn section,
section.search-in.partn section {
  padding-bottom: 0;
}
header .inner,
section.search-in .inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}
header .inner .undr-hdr,
section.search-in .inner .undr-hdr {
  margin: 8px 0 40px 0;
  font-size: 16px;
  padding: 0;
  list-style: none;
  text-transform: uppercase;
  position: relative;
  line-height: 19px;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
}
header .inner .undr-hdr li,
section.search-in .inner .undr-hdr li {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*
  @media screen and (min-width: 539px) and (max-width: 575px) {
      &:nth-child(5)::before {
          background-color: transparent;
          width: 0;
      }
  }
  @media screen and (min-width: 459px) and (max-width: 538px) {
      &:nth-child(4)::before {
          background-color: transparent;
          //width: 0;
      }
  }
  @media screen and (min-width: 372px) and (max-width: 458px) {
      &:nth-child(3)::before {
          background-color: transparent;
          //width: 0;
      }
  }
  @media screen and (max-width: 371px) {
      &:nth-child(3)::before {
          background-color: transparent;
          width: 0;
      }
      &:last-child:before {
          background-color: transparent;
          width: 0;
      }
  }
  */
}
header .inner .undr-hdr li::before,
section.search-in .inner .undr-hdr li::before {
  content: "";
  width: 8px;
  height: 4px;
  border-radius: 4px;
  background-color: var(--secondary-theme-color);
  margin: auto 12px;
}
header .inner .undr-hdr li:first-child::before,
section.search-in .inner .undr-hdr li:first-child::before {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  header .inner .undr-hdr li:last-child::before,
  section.search-in .inner .undr-hdr li:last-child::before {
    background-color: transparent;
    width: 0;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  header .inner .undr-hdr li:nth-child(4)::before,
  section.search-in .inner .undr-hdr li:nth-child(4)::before {
    background-color: transparent;
    width: 0;
  }
}
@media screen and (max-width: 575px) {
  header .inner .undr-hdr li::before,
  section.search-in .inner .undr-hdr li::before {
    height: 4px;
    width: 4px;
    position: relative;
    top: -2px;
  }
}
@media screen and (max-width: 1199px) {
  header .inner .undr-hdr,
  section.search-in .inner .undr-hdr {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  header .inner .undr-hdr,
  section.search-in .inner .undr-hdr {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 991px) {
  header .inner .undr-hdr,
  section.search-in .inner .undr-hdr {
    row-gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (max-width: 575px) {
  header .inner .undr-hdr,
  section.search-in .inner .undr-hdr {
    font-size: 12px;
    row-gap: 0px;
  }
}

header.home,
.search-in.home {
  background-image: url(../img/home.jpg);
}

header.vin-check, .search-in.vin-check {
    background-image: url(../img/home.jpg);
}
header.history,
.search-in.history {
  background-image: url(/images/history-report.jpg);
}
header.vin-check,
.search-in.vin-check {
  background-image: url(../img/home.jpg);
}
header.residual-value,
.search-in.residual-value {
  background-image: url(../images/residual-values.jpg);
}
header.residual-value section,
.search-in.residual-value section {
  background-color: rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  header.residual-value section,
  header.residual-value .main-search,
  .search-in.residual-value section,
  .search-in.residual-value .main-search {
    padding-bottom: 100px;
  }
}
header.recall-lookup,
.search-in.recall-lookup {
  background-image: url(../images/recall-lookup.jpg);
}
header.recall-lookup section,
.search-in.recall-lookup section {
  background-color: rgba(0, 0, 0, 0.5);
}
header.vin-decoder,
.search-in.vin-decoder {
  background-image: url(../images/vin-decoder.jpg);
}
header.lease-calculator,
.search-in.lease-calculator {
  background-image: url(../images/lease-calculator.jpg);
}
header.lease-calculator section,
.search-in.lease-calculator section {
  background-color: rgba(0, 0, 0, 0.2);
}
header.car-listings,
.search-in.car-listings {
  background-image: url(../images/car-listings.jpg);
}
header.car-listings section,
.search-in.car-listings section {
  background-color: rgba(0, 0, 0, 0.6);
}
header.title-search,
.search-in.title-search {
  background-image: url(../images/vehicle-title-search-3.jpg);
}
header.title-search section,
.search-in.title-search section {
  background-color: rgba(0, 0, 0, 0.6);
}
header.usa-cars-vin-check,
.search-in.usa-cars-vin-check {
  background-image: url(../images/usa-car-vin-check-1.jpg);
  background-position-y: -550px;
}
@media screen and (max-width: 1430px) {
  header.usa-cars-vin-check,
  .search-in.usa-cars-vin-check {
    background-position-y: -200px;
  }
}
@media screen and (max-width: 991px) {
  header.usa-cars-vin-check,
  .search-in.usa-cars-vin-check {
    background-position-y: 0px;
  }
}
header.usa-cars-vin-check section,
.search-in.usa-cars-vin-check section {
  background-color: rgba(0, 0, 0, 0.6);
}
header.license-plate,
.search-in.license-plate {
  background-image: url(../images/license-plate.jpg);
}
header.license-plate section,
.search-in.license-plate section {
  background-color: rgba(0, 0, 0, 0.6);
}
header.loan-calculator,
.search-in.loan-calculator {
  background-image: url(../images/loan-calculator.jpg);
}
@media screen and (min-width: 1900px) and (max-width: 3000px) {
  header.loan-calculator,
  .search-in.loan-calculator {
    background-position-y: -140px;
  }
}
header.loan-calculator section,
.search-in.loan-calculator section {
  background-color: rgba(0, 0, 0, 0.5);
}
header.lease-calculator,
header.loan-calculator,
.search-in.lease-calculator,
.search-in.loan-calculator {
  margin-bottom: -210px;
}
header.lease-calculator .main-search,
header.loan-calculator .main-search,
.search-in.lease-calculator .main-search,
.search-in.loan-calculator .main-search {
  display: block;
}
@media screen and (max-width: 991px) {
  header.lease-calculator,
  header.loan-calculator,
  .search-in.lease-calculator,
  .search-in.loan-calculator {
    margin-bottom: -220px;
  }
}
@media screen and (max-width: 767px) {
  header.lease-calculator,
  header.loan-calculator,
  .search-in.lease-calculator,
  .search-in.loan-calculator {
    margin-bottom: -260px;
  }
  header.lease-calculator section,
  header.lease-calculator .main-search,
  header.loan-calculator section,
  header.loan-calculator .main-search,
  .search-in.lease-calculator section,
  .search-in.lease-calculator .main-search,
  .search-in.loan-calculator section,
  .search-in.loan-calculator .main-search {
    min-height: 380px;
  }
}
@media screen and (max-width: 575px) {
  header.lease-calculator,
  header.loan-calculator,
  .search-in.lease-calculator,
  .search-in.loan-calculator {
    margin-bottom: -40px;
  }
  header.lease-calculator section,
  header.lease-calculator .main-search,
  header.loan-calculator section,
  header.loan-calculator .main-search,
  .search-in.lease-calculator section,
  .search-in.lease-calculator .main-search,
  .search-in.loan-calculator section,
  .search-in.loan-calculator .main-search {
    min-height: 0;
  }
}

@media screen and (max-width: 575px) {
  header,
  section.search-in,
  header.recall-lookup,
  header.loan-calculator,
  header.car-listings,
  header.license-plate {
    background-image: none !important;
    color: #000000;
  }
  header section,
  section.search-in section,
  header.recall-lookup section,
  header.loan-calculator section,
  header.car-listings section,
  header.license-plate section {
    background-color: #fff;
  }
}
@media screen and (max-width: 991px) {
  .main-search .partners {
    gap: 24px;
  }
}
.main-search .partners li img {
  height: auto;
  max-width: 100%;
  width: auto;
}
@media screen and (max-width: 767px) {
  .main-search .partners {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .main-search .partners li span {
    display: none;
  }
  .main-search .partners li img {
    max-height: 24px;
  }
}
@media screen and (max-width: 575px) {
  .main-search .partners {
    padding: 24px 0 16px 0;
    gap: 20px;
    row-gap: 12px;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
  }
  .main-search .partners li {
    margin-bottom: 0;
  }
  .main-search .partners li img {
    height: 20px;
  }
  .main-search .partners li:first-child img {
    height: 12px;
  }
}
@media screen and (max-width: 425px) {
  .main-search .partners {
    gap: 14px;
    row-gap: 12px;
  }
  .main-search .partners li {
    margin-bottom: 0;
  }
  .main-search .partners li img {
    height: 18px;
  }
  .main-search .partners li:first-child img {
    height: 13px;
  }
}
.main-search .partners.cnt-3 li.trustpilot img {
  height: 40px;
}
@media screen and (max-width: 575px) {
  .main-search .partners.cnt-3 {
    gap: 32px;
  }
  .main-search .partners.cnt-3 li img {
    height: 30px;
    min-width: auto;
  }
  .main-search .partners.cnt-3 li.jdpower img {
    height: 13px;
  }
  .main-search .partners.cnt-3 li.infopay img {
    min-height: 40px;
  }
}

[class^="blk-"],
[class^="blk- "] {
  padding: 40px 0;
  /*
  &:last-child {
      padding: 64px 0 0 0;
  }
  */
}
@media screen and (max-width: 574px) {
  [class^="blk-"],
  [class^="blk- "] {
    padding: 30px 0;
  }
  [class^="blk-"].style-02,
  [class^="blk- "].style-02 {
    padding: 0;
  }
}
[class^="blk-"].py-3,
[class^="blk- "].py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
[class^="blk-"].py-4,
[class^="blk- "].py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
[class^="blk-"].pt-0,
[class^="blk- "].pt-0 {
  padding-top: 0;
}
[class^="blk-"] .action,
[class^="blk- "] .action {
  margin-top: 16px;
  text-align: center;
}
[class^="blk-"] .left .image,
[class^="blk- "] .left .image {
  text-align: right;
}
[class^="blk-"] .left .image img,
[class^="blk- "] .left .image img {
  width: 100%;
  height: auto;
}
[class^="blk-"] .image img,
[class^="blk- "] .image img {
  width: 100%;
  height: auto;
}
[class^="blk-"] .image .w-50,
[class^="blk- "] .image .w-50 {
  width: 50%;
}
[class^="blk-"] .image .w-25,
[class^="blk- "] .image .w-25 {
  width: 25%;
}

.blk-01 h3 {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .blk-01 h3 {
    font-size: 24px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .blk-01 h3 {
    font-size: 18px;
    margin-bottom: 0;
  }
}
.blk-01.bg-gray .right .wrapper,
.blk-01.bg-white .right .wrapper {
  padding: 40px 40px 40px 0;
}
.blk-01.bg-gray .right .brd-wrapper,
.blk-01.bg-white .right .brd-wrapper {
  padding: 1px 1px 1px 0;
}
@media screen and (max-width: 575px) {
  .blk-01.bg-gray .right .wrapper,
  .blk-01.bg-white .right .wrapper {
    padding: 24px;
  }
}
.blk-01.bg-gray .left .wrapper,
.blk-01.bg-white .left .wrapper {
  padding: 40px 0 40px 40px;
}
.blk-01.bg-gray .left .brd-wrapper,
.blk-01.bg-white .left .brd-wrapper {
  padding: 1px 0 1px 1px;
}
@media screen and (max-width: 575px) {
  .blk-01.bg-gray .left .wrapper,
  .blk-01.bg-white .left .wrapper {
    padding: 24px;
  }
}
.blk-01.bg-gray .item.right .wrapper {
  background: rgb(244, 244, 244);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(10%, rgb(244, 244, 244)),
    to(rgb(255, 255, 255))
  );
  background: linear-gradient(
    90deg,
    rgb(244, 244, 244) 10%,
    rgb(255, 255, 255) 100%
  );
}
.blk-01.bg-gray .item.right .brd-wrapper {
  background: rgb(244, 244, 244);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgb(244, 244, 244)),
    to(rgb(224, 224, 224))
  );
  background: linear-gradient(
    90deg,
    rgb(244, 244, 244) 0%,
    rgb(224, 224, 224) 100%
  );
}
.blk-01.bg-gray .item.left .wrapper {
  background: rgb(255, 255, 255);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgb(255, 255, 255)),
    color-stop(90%, rgb(244, 244, 244))
  );
  background: linear-gradient(
    90deg,
    rgb(255, 255, 255) 0%,
    rgb(244, 244, 244) 90%
  );
}
.blk-01.bg-gray .item.left .brd-wrapper {
  background: rgb(224, 224, 224);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgb(224, 224, 224)),
    to(rgb(244, 244, 244))
  );
  background: linear-gradient(
    90deg,
    rgb(224, 224, 224) 0%,
    rgb(244, 244, 244) 100%
  );
}
.blk-01.bg-white .item.right .wrapper {
  background: rgb(255, 255, 255);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgb(255, 255, 255)),
    color-stop(90%, rgb(244, 244, 244))
  );
  background: linear-gradient(
    90deg,
    rgb(255, 255, 255) 0%,
    rgb(244, 244, 244) 90%
  );
}
.blk-01.bg-white .item.right .brd-wrapper {
  background: rgb(244, 244, 244);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgb(244, 244, 244)),
    to(rgb(224, 224, 224))
  );
  background: linear-gradient(
    90deg,
    rgb(244, 244, 244) 0%,
    rgb(224, 224, 224) 100%
  );
}
.blk-01.bg-white .item.left .wrapper {
  background: rgb(244, 244, 244);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(10%, rgb(244, 244, 244)),
    to(rgb(255, 255, 255))
  );
  background: linear-gradient(
    90deg,
    rgb(244, 244, 244) 10%,
    rgb(255, 255, 255) 100%
  );
}
.blk-01.bg-white .item.left .brd-wrapper {
  background: rgb(224, 224, 224);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgb(224, 224, 224)),
    to(rgb(244, 244, 244))
  );
  background: linear-gradient(
    90deg,
    rgb(224, 224, 224) 0%,
    rgb(244, 244, 244) 100%
  );
}
@media screen and (max-width: 575px) {
  .blk-01.bg-white .item.right .wrapper {
    background: rgb(244, 244, 244);
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      color-stop(10%, rgb(244, 244, 244)),
      to(rgb(255, 255, 255))
    );
    background: linear-gradient(
      90deg,
      rgb(244, 244, 244) 10%,
      rgb(255, 255, 255) 100%
    );
  }
  .blk-01.bg-white .item.right .brd-wrapper {
    background: rgb(244, 244, 244);
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgb(244, 244, 244)),
      to(rgb(224, 224, 224))
    );
    background: linear-gradient(
      90deg,
      rgb(244, 244, 244) 0%,
      rgb(224, 224, 224) 100%
    );
  }
  .blk-01.bg-white .item.left .wrapper {
    background: rgb(255, 255, 255);
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgb(255, 255, 255)),
      color-stop(90%, rgb(244, 244, 244))
    );
    background: linear-gradient(
      90deg,
      rgb(255, 255, 255) 0%,
      rgb(244, 244, 244) 90%
    );
  }
  .blk-01.bg-white .item.left .brd-wrapper {
    background: rgb(224, 224, 224);
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgb(224, 224, 224)),
      to(rgb(244, 244, 244))
    );
    background: linear-gradient(
      90deg,
      rgb(224, 224, 224) 0%,
      rgb(244, 244, 244) 100%
    );
  }
  .blk-01.bg-gray .item.right .wrapper {
    background: rgb(255, 255, 255);
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgb(255, 255, 255)),
      color-stop(90%, rgb(244, 244, 244))
    );
    background: linear-gradient(
      90deg,
      rgb(255, 255, 255) 0%,
      rgb(244, 244, 244) 90%
    );
  }
  .blk-01.bg-gray .item.right .brd-wrapper {
    background: rgb(244, 244, 244);
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgb(244, 244, 244)),
      to(rgb(224, 224, 224))
    );
    background: linear-gradient(
      90deg,
      rgb(244, 244, 244) 0%,
      rgb(224, 224, 224) 100%
    );
  }
  .blk-01.bg-gray .item.left .wrapper {
    background: rgb(244, 244, 244);
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      color-stop(10%, rgb(244, 244, 244)),
      to(rgb(255, 255, 255))
    );
    background: linear-gradient(
      90deg,
      rgb(244, 244, 244) 10%,
      rgb(255, 255, 255) 100%
    );
  }
  .blk-01.bg-gray .item.left .brd-wrapper {
    background: rgb(224, 224, 224);
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgb(224, 224, 224)),
      to(rgb(244, 244, 244))
    );
    background: linear-gradient(
      90deg,
      rgb(224, 224, 224) 0%,
      rgb(244, 244, 244) 100%
    );
  }
}
.blk-01 .item {
  margin-bottom: 30px;
}
.blk-01 .item:last-child {
  margin-bottom: 0;
}
.blk-01 .brd-wrapper,
.blk-01 .wrapper {
  width: 100%;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.blk-01 .brd-wrapper .txt,
.blk-01 .wrapper .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.blk-01 .brd-wrapper .txt a,
.blk-01 .wrapper .txt a {
  width: auto;
  letter-spacing: 0.15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.blk-01 .brd-wrapper .txt a::before,
.blk-01 .wrapper .txt a::before {
  font-size: 16px;
}
.blk-01 .brd-wrapper .txt p,
.blk-01 .wrapper .txt p {
  /*
      font-size: 16px;
      line-height: 25px;
      padding: 13px 0 10px 0;
      */
}
.blk-01 .brd-wrapper .image img,
.blk-01 .wrapper .image img {
  width: 100%;
  height: auto;
}
.blk-01 .brd-wrapper .image .number,
.blk-01 .wrapper .image .number {
  font-size: 180px;
  font-weight: 900;
  color: #aaaaaa;
}
@media screen and (max-width: 767px) {
  .blk-01 .brd-wrapper .image .number,
  .blk-01 .wrapper .image .number {
    font-size: 80px;
  }
}
@media screen and (max-width: 767px) {
  .blk-01 .brd-wrapper .image,
  .blk-01 .wrapper .image {
    text-align: left;
    margin-bottom: 24px;
  }
  .blk-01 .brd-wrapper .image img,
  .blk-01 .wrapper .image img {
    width: 120px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .blk-01 .brd-wrapper .image,
  .blk-01 .wrapper .image {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .blk-01 .brd-wrapper .txt,
  .blk-01 .wrapper .txt {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.blk-01 .image.h-cust {
  max-height: 380px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.blk-01 .image.h-cust img {
  -o-object-fit: cover;
  object-fit: cover;
}
.blk-01 img.b-radius {
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .blk-01 img.b-radius {
    border-radius: 16px;
  }
}
.blk-01 .border-1 {
  border: 1px solid var(--container-border);
}
.blk-01 .fs-7 {
  font-size: 0.9em;
}

.blk-02 img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .blk-02 img {
    width: 64px !important;
    height: auto;
  }
  .blk-02 img.w-auto {
    width: 50% !important;
    margin: auto;
  }
  .blk-02 .title {
    margin-bottom: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    padding: 0;
  }
}

.blk-05 .report-sample {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.blk-05 .report-sample .logo-partner {
  max-width: 33%;
  height: auto;
  margin-top: 24px;
}
.blk-05 .image img {
  width: 100%;
  height: auto;
}

.blk-08 {
  margin-bottom: -64px;
}
@media screen and (max-width: 767px) {
  .blk-08 {
    margin-bottom: -40px;
  }
}
.blk-08 .title {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .blk-08 .title {
    margin-bottom: 40px;
  }
}
.blk-08 .item {
  text-align: center;
  padding: 0 80px;
  margin-bottom: 64px;
}
@media screen and (max-width: 991px) {
  .blk-08 .item {
    padding: 0 40px;
    margin-bottom: 40px;
  }
}
.blk-08 .item img {
  height: 140px;
  width: auto;
}
@media screen and (max-width: 991px) {
  .blk-08 .item img {
    height: 80px;
  }
}
.blk-08 .item h3 {
  font-size: 18px;
  line-height: 31px;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 24px;
}
.blk-08 .item p {
  font-size: 16px;
  line-height: 26px;
}

.blk-09 .title {
  margin-bottom: 64px;
}
.blk-09 .title b {
  display: block;
}
@media screen and (max-width: 767px) {
  .blk-09 .title {
    margin-bottom: 32px;
  }
}
.blk-09 .accordion .accordion-item {
  width: 100%;
  height: auto;
  border-bottom: 0;
  overflow: hidden;
  margin-bottom: 16px;
  background-color: transparent;
}
.blk-09 .accordion .accordion-item h2 {
  background-color: transparent;
}
.blk-09 .accordion .accordion-item h2 button {
  background-color: #1e2125;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  border-radius: 8px 8px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  outline: 0;
}
.blk-09 .accordion .accordion-item h2 button:focus,
.blk-09 .accordion .accordion-item h2 button:active {
  outline: 0;
  border-color: transparent;
  -webkit-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
}
.blk-09 .accordion .accordion-item h2 button::after {
  font-family: "sans-serif";
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e96d";
  color: #fff;
  background-image: none;
  text-align: center;
  width: auto;
  height: auto;
}
.blk-09 .accordion .accordion-item h2 button:disabled::after {
  display: none;
}
.blk-09 .accordion .accordion-item h2 button.collapsed {
  border-radius: 8px;
}
@media screen and (max-width: 575px) {
  .blk-09 .accordion .accordion-item h2 button {
    font-size: 16px;
    line-height: 24px;
  }
}
.blk-09 .accordion .accordion-collapse {
  background-color: #1e2125;
  border-radius: 0 0 8px 8px;
  margin-top: -10px;
  font-size: 16px;
  line-height: 27px;
}
.blk-09 .accordion .col-12 {
  padding: 0 24px;
}
.blk-09 .accordion .col-12 .accordion-item:last-child {
  margin-bottom: 0;
}
.blk-09 .accordion .col-12:first-child {
  border-right: 1px solid var(--secondary-theme-color);
}
@media screen and (max-width: 991px) {
  .blk-09 .accordion .col-12:first-child {
    border: 0;
    margin-bottom: 16px;
  }
}

.blk-10 .item-in-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}
.blk-10 .item-in-col .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin-bottom: 24px;
}
.blk-10 .item-in-col .item:last-child {
  margin-bottom: 0;
}
.blk-10 .item-in-col .item .image {
  border-radius: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  min-width: 177px !important;
  height: 100px;
  margin-right: 24px;
  background-color: #fff;
}
.blk-10 .item-in-col .item .image img {
  width: auto;
  height: 100%;
}
.blk-10 .item-in-col .item .image img.thumb {
  opacity: 0.2;
}
.blk-10 .item-in-col .item .data {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}
.blk-10 .item-in-col .item .data h4 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.blk-10 .item-in-col .item .data p,
.blk-10 .item-in-col .item .data span {
  font-size: 14px;
  line-height: 23px;
  margin-bottom: 0;
}
.blk-10 .item-in-col .item .data p a,
.blk-10 .item-in-col .item .data span a {
  display: inline-block;
}
.blk-10 .item-in-col .item .data span {
  color: var(--secondary-theme-color);
}
@media screen and (max-width: 400px) {
  .blk-10 .item-in-col .item {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .blk-10 .item-in-col .item .image {
    margin-right: 0;
    height: 150px;
    margin-bottom: 16px;
    overflow: hidden;
    width: 100%;
  }
  .blk-10 .item-in-col .item .image img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 320px) {
  .blk-10 .item-in-col .item .image {
    height: 110px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991.8px) {
  .blk-10 .item-in-col .item {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .blk-10 .item-in-col .item .image {
    margin-right: 0;
    height: 150px;
    margin-bottom: 16px;
    overflow: hidden;
    width: 100%;
  }
  .blk-10 .item-in-col .item .image img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 575px) {
  .blk-10 .white-container {
    padding: 24px;
  }
}
.blk-10 .title {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .blk-10 .title {
    margin-bottom: 24px;
  }
}

.blk-11 .image {
  text-align: right;
}
.blk-11 .image img {
  height: 230px;
}
.blk-11 .container .item {
  margin-bottom: 24px;
}
.blk-11 .container .item:last-child {
  margin-bottom: 0;
}
.blk-11 .container .item article {
  padding-left: 48px;
  position: relative;
}
.blk-11 .container .item article::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-theme-color);
  font-size: 24px;
}
.blk-11 .container .item article h3 {
  font-weight: 900;
  font-size: 18px;
}
.blk-11 .container ul {
  margin-bottom: 40px;
  font-weight: 700;
}

.blk-12 {
  margin-bottom: -24px;
}
.blk-12 .item {
  padding: 40px;
  margin-bottom: 24px;
}
.blk-12 .item h3 {
  color: var(--secondary-theme-color);
  font-size: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 22px;
  margin-bottom: 16px;
}
.blk-12 .item h3::before {
  font-size: 24px;
  margin-right: 16px;
}
.blk-12 .item p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .blk-12 .item {
    padding: 24px;
  }
}
@media screen and (max-width: 767px) {
  .blk-12 .item h3 {
    text-align: left;
    display: block;
  }
}

.blk-13 .title {
  margin-bottom: 64px;
}
.blk-13 .residual-values-results .rslt .tab {
  padding: 0 40px;
}
@media screen and (max-width: 991px) {
  .blk-13 .residual-values-results .rslt .tab {
    padding: 0 20px;
  }
}
@media screen and (max-width: 991px) {
  .blk-13 .title {
    margin-bottom: 40px;
  }
}

.blk-14 {
  margin-bottom: -24px;
}
.blk-14 .item {
  background-color: #f4f4f4;
  border: 1px solid var(--container-border);
  border-radius: 16px;
  padding: 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}
.blk-14 .item a {
  font-size: 14px;
  white-space: nowrap;
}
.blk-14 .item .image {
  width: 80px;
  height: 80px;
  min-width: 80px;
  display: block;
  margin-right: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.blk-14 .item .image img {
  max-height: 100%;
  width: 100%;
}
.blk-14 .item div:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .blk-14 .item div:last-child {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 8px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}
@media screen and (max-width: 450px) {
  .blk-14 .item div:last-child {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 8px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}
.blk-14 .item h3 {
  width: 100%;
  font-size: 18px;
  line-height: 26px;
  padding: 0;
  margin: 0;
}
.blk-14.bg-gray .item {
  background-color: #fff;
}

.blk-15 .image:not(.mb-0) {
  margin-bottom: 40px;
}
.blk-15 .title:not(.nowrap) b {
  display: block;
}
.blk-15 p:not(.text-start) {
  text-align: center;
}
.blk-15 .text-left p {
  text-align: left;
}

.blk-16 h3 {
  font-size: 24px;
  font-weight: 900;
}

.blk-17 .titles {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.blk-17 .titles .title {
  width: 100%;
  margin-bottom: 0;
}
.blk-17 .titles .title h1 {
  margin-bottom: 0;
}
.blk-17 .titles .data {
  font-weight: 700;
  color: #000;
}
.blk-17 .titles .data span {
  color: var(--secondary-theme-color);
}
.blk-17 .titles .data div {
  white-space: nowrap;
  display: block;
  line-height: 24px;
}

.blk-18 h2 {
  font-size: 32px;
  font-weight: 300;
}
.blk-18 .white-container {
  padding: 0 14px;
  overflow: hidden;
}
.blk-18 .white-container .row:first-child div {
  font-size: 14px;
  color: #636363;
  font-weight: 700;
}
.blk-18 .white-container .row div {
  padding: 14px 0px;
  text-align: left;
  font-size: 16px;
}
.blk-18 .white-container .row div:first-child {
  padding-left: 40px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .blk-18 .white-container .row div:first-child {
    padding-left: 24px;
  }
}
.blk-18 .white-container .row:nth-child(odd) div {
  background-color: #f4f4f4;
}
.blk-18 .std-lst b {
  display: block;
}
.blk-18 .std-lst li {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .blk-18 .std-lst li {
    margin-bottom: 16px;
  }
}
.blk-18 .std-lst li:last-child {
  margin-bottom: 0;
}

.blk-22 .title.style-b-left h2 {
  font-size: 24px;
  border-left-width: 4px;
  padding-left: 12px;
}
.blk-22 .con-pro h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 24px;
}
.blk-22 .con-pro .con h3 span {
  color: red;
}
.blk-22 .con-pro .pro h3 span {
  color: var(--secondary-theme-color);
}
.blk-22 .con-pro ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.blk-22 .con-pro ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  line-height: 1.3em;
}
.blk-22 .con-pro ul li::before {
  content: "";
  display: block;
  width: 24px;
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  position: relative;
  top: 3px;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}
.blk-22 .con-pro .con ul li::before {
  background-image: url(../images/icons/minus-red.svg);
}
.blk-22 .con-pro .pro ul li::before {
  background-image: url(../images/icons/plus-green.svg);
}

.blk-23 ol {
  list-style: none;
  counter-reset: item;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.blk-23 li {
  counter-increment: item;
  background-color: #f4f4f4;
  border-radius: 16px;
  border: 1px solid #ececec;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.blk-23.bg-gray li {
  background-color: #fff;
}
.blk-23 li:before {
  content: counter(item);
  background: var(--secondary-theme-color);
  border-radius: 100%;
  color: white;
  width: 25px;
  min-width: 25px;
  max-width: 25px;
  height: 25px;
  text-align: center;
  display: block;
  border: 1px solid #ececec;
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  position: relative;
  top: 2px;
}

.blk-state__content .title {
  margin-bottom: 0;
}
.blk-state__content .lbox-t1 {
  margin-top: 0;
  margin-bottom: 2rem;
  line-height: 1.2;
  font-size: calc(1.375rem + 1.5vw);
  text-align: left;
}
@media (min-width: 1200px) {
  .blk-state__content .lbox-t1 {
    font-size: 2.5rem;
  }
}
.blk-state__content ul {
  margin-left: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}
.blk-state__content ul li {
  position: relative;
  padding-left: 24px;
  width: auto;
}
.blk-state__content ul li::before {
  font-size: 12px;
  color: var(--secondary-theme-color);
  position: absolute;
  left: 0;
  top: 8px;
}
.blk-state__content ul li a {
  text-decoration: none;
  color: var(--secondary-theme-color);
}
.blk-state__content ul li a:hover {
  text-decoration: underline;
}
.blk-state__content ul li::before {
  content: "\e970";
}

.nav-in-page {
  border-bottom: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  z-index: 888;
  top: -2px;
}
@media screen and (max-width: 575px) {
  .nav-in-page {
    display: none;
  }
}
.nav-in-page.border-0 {
  border: 0;
}
.nav-in-page .wrapper {
  background-color: var(--background-gray-color);
  border: 1px solid var(--container-border);
  padding: 0 24px;
}
.nav-in-page .wrapper.round-border {
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .nav-in-page .wrapper {
    padding: 0 16px;
  }
}
.nav-in-page .fs-16 {
  font-size: 16px;
}
.nav-in-page b {
  font-weight: 900;
}
.nav-in-page ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 40px;
}
@media screen and (max-width: 1100px) {
  .nav-in-page ul {
    gap: 10px;
  }
}
.nav-in-page ul li a {
  font-size: 16px;
  white-space: nowrap;
  line-height: 16px;
  padding: 16px 4px;
  color: #000;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 4px solid transparent;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .nav-in-page ul li a {
    font-size: 14px;
    line-height: 14px;
  }
}
.nav-in-page ul li a.active {
  border-bottom: 4px solid var(--secondary-theme-color);
}
.nav-in-page ul li a:hover {
  text-decoration: none;
  color: var(--secondary-theme-color);
}
.nav-in-page ul li a img {
  max-width: 20px;
  max-height: 20px;
}
@media screen and (max-width: 1100px) {
  .nav-in-page ul li a img {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .nav-in-page.mob-active {
    position: relative;
    display: block;
    height: 52px;
  }
  .nav-in-page.mob-active ul.nav-in-items {
    display: none;
  }
}
.nav-in-page .nav-icons {
  display: none;
}
@media screen and (max-width: 991px) {
  .nav-in-page .nav-icons {
    display: block;
    right: 0;
    position: relative;
    text-align: center;
    width: 100%;
  }
  .nav-in-page .nav-icons .nav-in {
    display: block;
  }
}
.nav-in-page .nav-icons a {
  line-height: 1em;
}
.nav-in-page .nav-icons a::before {
  font-size: 20px;
  color: var(--secondary-theme-color);
}
.nav-in-page .nav-icons a.active {
  line-height: 1em;
  border-bottom: 4px solid transparent;
}

.modal .nav-in-page {
  display: block;
  padding-bottom: 24px;
  border: 0;
}
.modal .nav-in-page ul.nav-in-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.modal .nav-in-page ul.nav-in-items li {
  padding: 0;
}
.modal .nav-in-page ul.nav-in-items li a {
  padding: 0;
  border: 0;
  line-height: 1.5em;
}
.modal .nav-in-page ul.nav-in-items li a:hover {
  border: 0;
}
.modal .nav-in-page ul.nav-in-items li a::before {
  color: var(--secondary-theme-color);
}
.modal .nav-in-page .modal-body {
  padding-top: 0;
  padding-bottom: 0;
}

.blk-inarticle-header .wrapper {
  background-color: #f4f4f4;
  border-radius: 30px;
  overflow: hidden;
  background-image: url(../images/svg/bg-curved.svg);
  background-position: bottom -69px center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 64px 0px 80px 64px;
}
@media screen and (max-width: 991px) {
  .blk-inarticle-header .wrapper {
    padding: 40px 40px 64px 40px;
    background-position: bottom -43px center;
  }
}
@media screen and (max-width: 767px) {
  .blk-inarticle-header .wrapper {
    padding: 40px 40px 64px 40px;
    background-position: bottom -32px center;
  }
}
@media screen and (max-width: 450px) {
  .blk-inarticle-header .wrapper {
    padding: 24px 24px 40px 24px;
    background-position: bottom -22px center;
  }
}
.blk-inarticle-header img {
  width: 100%;
  height: auto;
}
.blk-inarticle-header a {
  -webkit-box-shadow: 8px 8px 0px 0px rgb(229, 229, 229);
  box-shadow: 8px 8px 0px 0px rgb(229, 229, 229);
}
.blk-inarticle-header h1 span.price {
  font-size: 16px;
  font-weight: 300;
  color: #000;
  text-transform: uppercase;
  position: relative;
  bottom: 3px;
}

.blk-24 h2 {
  margin-bottom: 64px;
}
@media screen and (max-width: 991px) {
  .blk-24 h2 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 450px) {
  .blk-24 h2 {
    margin-bottom: 24px;
  }
}
.blk-24 h3 {
  font-size: 24px;
  font-weight: 900;
  padding-bottom: 0;
  margin-bottom: 16px;
}
@media screen and (max-width: 450px) {
  .blk-24 h3 {
    text-align: center;
  }
}
.blk-24 img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 450px) {
  .blk-24 img {
    width: 70%;
    margin: auto;
    display: block;
  }
}
.blk-24 .row .wrapper {
  padding: 40px;
  border-radius: 30px;
}
@media screen and (max-width: 450px) {
  .blk-24 .row .wrapper {
    padding: 24px;
  }
}
.blk-24 .row .col .wrapper .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 24px;
}
.blk-24 .row:nth-child(even) .wrapper {
  background-color: #f7f7f7;
}
.blk-24 .row:nth-child(odd) .col .wrapper .row div:first-child {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media screen and (max-width: 450px) {
  .blk-24 .row:nth-child(odd) .col .wrapper .row div:first-child {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}
.blk-24 .row:nth-child(odd) .col .wrapper .row div:last-child {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}
@media screen and (max-width: 450px) {
  .blk-24 .row:nth-child(odd) .col .wrapper .row div:last-child {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.blk-25 h2 {
  font-weight: 300;
}
.blk-25 h2 strong {
  font-weight: 900;
}
@media screen and (max-width: 991px) {
  .blk-25 h2 {
    font-size: 24px;
  }
}
.blk-25 ul {
  list-style: none;
  margin: 40px 0 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  row-gap: 1.5em;
}
@media screen and (max-width: 991px) {
  .blk-25 ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .blk-25 ul {
    margin: 24px 0 0 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .blk-25 ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.blk-25 ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  border-radius: 32px 16px 16px 32px;
}
@media screen and (max-width: 575px) {
  .blk-25 ul li {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}
.blk-25 ul li i {
  display: block;
  width: 64px;
  min-width: 64px;
  max-width: 64px;
  height: 64px;
  min-height: 64px;
  max-height: 64px;
  border: 2px solid var(--secondary-theme-color);
  background-color: #fff;
  border-radius: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.blk-25 ul li i::before {
  font-size: 30px;
  color: var(--secondary-theme-color);
}
.blk-25 ul li i.icon-plate-filled::before,
.blk-25 ul li i.icon-vin-filled::before {
  font-size: 20px;
}
@media screen and (max-width: 575px) {
  .blk-25 ul li i {
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    border: 0;
  }
}
.blk-25 ul li h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  font-weight: 900;
}
.blk-25 ul li h3 span {
  display: block;
  font-weight: 400;
}
.blk-25 a {
  white-space: nowrap;
}

.blk-resources ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  row-gap: 0;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .blk-resources ul {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    gap: 0px;
  }
}
.blk-resources ul li a {
  background-color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid #eeeeee;
  padding: 21px 0 21px 0px;
  border-radius: 0px;
  gap: 10px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.3em;
}
@media screen and (max-width: 768px) {
  .blk-resources ul li a {
    padding: 16px 0 10px 0px;
  }
}
.blk-resources ul li a::before {
  content: "";
  background-image: url(../images/icons/arrow-black-right.svg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  border-radius: 30px;
  background-size: auto 100%;
  background-repeat: no-repeat;
  position: relative;
  top: 4px;
  -webkit-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
}
.blk-resources ul li a:hover {
  text-decoration: none;
  background-color: rgba(245, 245, 245, 0.6);
}
.blk-resources ul li a:hover::before {
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  left: 0px;
}
@media screen and (max-width: 767px) {
  .blk-resources ul li:last-child a {
    border-bottom: 0;
  }
}
.blk-resources .resource-lst {
  row-gap: 24px;
}
.blk-resources .resource-lst .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid var(--container-border);
  background-color: var(--background-gray-color);
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}
.blk-resources .resource-lst .item:hover a {
  color: var(--secondary-theme-color) !important;
  text-decoration: underline;
}
.blk-resources .resource-lst .item .image {
  background-color: green !important;
  height: 180px;
  overflow: hidden;
}
.blk-resources .resource-lst .item .image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.blk-resources .resource-lst .item .data {
  padding: 16px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
}
.blk-resources .resource-lst .item .data .wrapper {
  height: 100%;
}
.blk-resources .resource-lst .item .data .title {
  margin: 0;
  padding: 0;
  color: var(--primary-theme-color);
  font-weight: 700;
  line-height: 1.3em;
}
.blk-resources .resource-lst .item .data .title:hover {
  color: var(--secondary-theme-color);
}

.blk-downsell p {
  margin-bottom: 1.3em;
}
.blk-downsell.simple-container .title {
  margin-bottom: 16px;
}
.blk-downsell.simple-container p {
  font-size: 300;
  margin: 0;
  padding: 0 40px;
}
.blk-downsell.simple-container ul {
  padding: 24px 0 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 40%;
}
@media screen and (max-width: 991px) {
  .blk-downsell.simple-container ul {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .blk-downsell.simple-container ul {
    width: 80%;
  }
}
@media screen and (max-width: 577px) {
  .blk-downsell.simple-container ul {
    width: 60%;
  }
}
@media screen and (max-width: 425px) {
  .blk-downsell.simple-container ul {
    width: 80%;
  }
}
.blk-downsell.simple-container ul li {
  display: block;
  width: auto;
  list-style: none;
  max-width: none;
  min-width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 10px;
}
.blk-downsell.simple-container ul li::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("../images/icons/round_check.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
  top: 5px;
}
.blk-downsell.promo-container .white-container {
  padding: 0;
  overflow: hidden;
}
.blk-downsell.promo-container .right-promo .inner {
  background-color: var(--secondary-theme-color);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  position: relative;
  right: -1px;
}
.blk-downsell.promo-container .right-promo .inner .corner {
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: var(--secondary-theme-color);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: -10px;
}
.blk-downsell.promo-container .right-promo .inner .old-price,
.blk-downsell.promo-container .right-promo .inner .new-offer {
  text-align: center;
  color: #fff;
  padding: 24px;
}
.blk-downsell.promo-container .right-promo .inner .old-price strong,
.blk-downsell.promo-container .right-promo .inner .new-offer strong {
  display: block;
  font-size: 32px;
}
.blk-downsell.promo-container .right-promo .inner .old-price span,
.blk-downsell.promo-container .right-promo .inner .new-offer span {
  display: inline-block;
  font-size: 0.8em;
  line-height: 1.3em;
}
.blk-downsell.promo-container .right-promo .inner .old-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.blk-downsell.promo-container .right-promo .inner .old-price strong,
.blk-downsell.promo-container .right-promo .inner .old-price span {
  opacity: 0.6;
}
.blk-downsell.promo-container .right-promo .inner .old-price::before,
.blk-downsell.promo-container .right-promo .inner .old-price::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 150px;
  background-color: red;
  z-index: 3;
}
.blk-downsell.promo-container .right-promo .inner .old-price::before {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.blk-downsell.promo-container .right-promo .inner .old-price::after {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.blk-downsell.promo-container .right-promo .inner .new-offer {
  background-color: #2dae2a;
  border-radius: 30px;
}
@media screen and (max-width: 991px) {
  .blk-downsell.promo-container .right-promo .inner {
    background-color: #e3e3e3;
  }
  .blk-downsell.promo-container .right-promo .inner .corner {
    background-color: #e3e3e3;
  }
}
@media screen and (max-width: 991px) {
  .blk-downsell.promo-container .right-promo .inner {
    right: 0;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 16px;
  }
  .blk-downsell.promo-container .right-promo .inner .corner {
    left: 50%;
    margin-left: -14px;
    top: -10px;
  }
  .blk-downsell.promo-container .right-promo .inner .old-price {
    color: #333;
  }
}
.blk-downsell.promo-container p b {
  color: var(--secondary-theme-color);
}
.blk-downsell.promo-container .tabs-promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 16px;
}
.blk-downsell.promo-container .tabs-promo .tab {
  display: block;
  width: 100%;
  background-color: #f0f9f0;
  padding: 20px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.blk-downsell.promo-container .tabs-promo .tab div {
  gap: 8px;
}
.blk-downsell.promo-container .tabs-promo .tab h3 {
  font-weight: 700;
  color: var(--secondary-theme-color);
}
.blk-downsell.promo-container .tabs-promo .tab span {
  font-weight: 700;
}
.blk-downsell.promo-container .tabs-promo .tab h3,
.blk-downsell.promo-container .tabs-promo .tab span {
  font-size: 16px;
  margin: 0;
  padding: 0;
}
.blk-downsell.promo-container .tabs-promo .tab i::before {
  color: var(--secondary-theme-color);
}
@media screen and (max-width: 425px) {
  .blk-downsell.promo-container a.btn.f-green {
    font-size: 3.7vw;
  }
}
.blk-downsell .illu-sad-car h1,
.blk-downsell .illu-final-offer h1 {
  font-size: 28px;
  line-height: 1.5em;
}
@media screen and (max-width: 991px) {
  .blk-downsell .illu-sad-car h1,
  .blk-downsell .illu-final-offer h1 {
    margin-top: 40px;
  }
}
@media screen and (max-width: 425px) {
  .blk-downsell .illu-sad-car h1,
  .blk-downsell .illu-final-offer h1 {
    font-size: 20px;
  }
}
.blk-downsell .illu-sad-car .image-car-1 {
  height: 250px;
  width: auto;
}
@media screen and (max-width: 991px) {
  .blk-downsell .illu-sad-car .image-car-1 {
    height: 170px;
    margin: auto;
    display: block;
    margin-top: 100px;
  }
}
@media screen and (max-width: 425px) {
  .blk-downsell .illu-sad-car .image-car-1 {
    margin-top: 160px;
  }
}
.blk-downsell .illu-sad-car .msg {
  position: absolute;
  top: -220px;
  right: 0;
  width: 350px;
  height: 250px;
  background-image: url(../images/svg/msg-black.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #fff;
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 50px 40px 70px;
}
@media screen and (max-width: 991px) {
  .blk-downsell .illu-sad-car .msg {
    top: 0;
    -ms-transform: rotate(25deg);
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
    font-size: 14px;
    width: 300px;
    height: 200px;
  }
}
@media screen and (max-width: 425px) {
  .blk-downsell .illu-sad-car .msg {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.blk-downsell .illu-final-offer .image-final-offer {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 991px) {
  .blk-downsell .illu-final-offer .image-final-offer {
    width: 60%;
    display: block;
    margin: auto;
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .blk-downsell .illu-final-offer .image-final-offer {
    width: 100%;
  }
}
.blk-downsell .illu-final-offer .msg {
  position: absolute;
  top: -100px;
  left: auto;
  right: auto;
  margin-left: 60px;
  width: 200px;
  height: 120px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3em;
  text-align: center;
  z-index: 3;
  background-image: url(../images/svg/msg-green.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 30px 10px 30px;
  -ms-transform: rotate(-10deg);
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
}
@media screen and (max-width: 991px) {
  .blk-downsell .illu-final-offer .msg {
    margin-left: 200px;
    top: 0;
  }
}
@media screen and (max-width: 425px) {
  .blk-downsell .illu-final-offer .msg {
    margin-left: 0px;
  }
}

.blk-inarticle-header a.s-link,
.blk-downsell a.s-link {
  color: #000;
  text-decoration: underline;
  margin-top: 24px;
  font-size: 14px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.blk-compare {
  padding-bottom: 64px;
}
.blk-compare .container {
  width: 100%;
}
.blk-compare .wrapper {
  position: relative;
  border-radius: 30px 0 0 0;
  z-index: 1;
}
@media screen and (max-width: 575px) {
  .blk-compare .wrapper {
    -webkit-box-shadow: 0.3em 0.4em 1em rgba(0, 0, 0, 0.08);
    box-shadow: 0.3em 0.4em 1em rgba(0, 0, 0, 0.08);
  }
}
.blk-compare .wrapper.shadow {
  z-index: 2;
  -webkit-box-shadow: 0.3em 0.4em 1em rgba(0, 0, 0, 0.08);
  box-shadow: 0.3em 0.4em 1em rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 991px) {
  .blk-compare .wrapper {
    border-radius: 24px 24px 0 0;
  }
  .blk-compare .wrapper.shadow {
    -webkit-box-shadow: 0.3em 0.4em 1em rgba(0, 0, 0, 0.08);
    box-shadow: 0.3em 0.4em 1em rgba(0, 0, 0, 0.08);
  }
}
.blk-compare .brand {
  background-color: #5d5d5d;
  width: 100%;
  display: block;
  text-align: center;
  padding: 24px 0;
  border-radius: 0 30px 0 0;
}
.blk-compare .brand.gc {
  border-radius: 30px 0 0 0;
  background-color: var(--secondary-theme-color);
  border-right: 1px solid #fff;
}
.blk-compare .brand img {
  width: auto;
  height: 40px;
}
@media screen and (max-width: 425px) {
  .blk-compare .brand img {
    height: 30px;
  }
}
@media screen and (max-width: 991px) {
  .blk-compare .brand {
    border-radius: 0 0 0 0;
  }
  .blk-compare .brand.gc {
    border-radius: 24px 24px 0 0;
    border-right: 0;
  }
}
.blk-compare .c-row {
  padding: 16px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.blk-compare .c-row:nth-child(odd) {
  background-color: #f7f7f7;
}
.blk-compare .c-row:nth-child(even) {
  background-color: #fff;
}
.blk-compare .c-row span {
  line-height: 1em;
}
.blk-compare .c-row i::before {
  color: var(--secondary-theme-color);
  font-size: 1em;
}
@media screen and (max-width: 425px) {
  .blk-compare .c-row {
    padding: 16px 24px;
  }
}
.blk-compare .price-com {
  padding: 16px 24px 16px 0px;
  height: 160px;
}
.blk-compare .price-com div {
  position: relative;
  gap: 10px;
  left: -15px;
}
.blk-compare .price-com div.image {
  top: 3px;
}
.blk-compare .price-com .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary-theme-color);
}
.blk-compare .price-com .txt {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.3em;
}
.blk-compare .price-com .txt b {
  display: block;
  font-weight: 700;
}
.blk-compare .price-com.no-img {
  padding: 16px 24px 16px 80px;
}
@media screen and (max-width: 991px) {
  .blk-compare .price-com.no-img {
    padding: 24px 24px 24px 80px;
    height: auto;
  }
}
@media screen and (max-width: 425px) {
  .blk-compare .price-com.no-img {
    padding: 24px 24px 24px 64px;
  }
}
.blk-compare .price-com.no-img div {
  left: 0;
}
.blk-compare .price-com.no-img .price {
  color: #ff0000;
}
.blk-compare .price-com .image img {
  width: 155px;
  height: auto;
}

.blk-car-brands .sort span {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 300;
  margin-right: 24px;
}
.blk-car-brands .sort ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.blk-car-brands .sort ul a {
  color: #000;
  font-weight: 700;
}
.blk-car-brands .sort ul a:hover {
  text-decoration: none;
  color: var(--secondary-theme-color);
}
.blk-car-brands .car-brand-item {
  border: 1px solid #d8d8d8;
  border-radius: 30px;
  padding: 40px 30px 32px 30px;
  margin-top: 64px;
}
.blk-car-brands .car-brand-item.collapsed::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0)),
    color-stop(70%, rgb(255, 255, 255))
  );
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgb(255, 255, 255) 70%
  );
  width: 120px;
  height: 100%;
  z-index: 1;
  border-radius: 30px;
}
.blk-car-brands .car-brand-item .brand {
  background-color: #fff;
  padding: 0 16px;
  gap: 16px;
  position: absolute;
  top: -32px;
  left: 14px;
}
.blk-car-brands .car-brand-item .brand img {
  width: 64px;
  max-height: 64px;
}
.blk-car-brands .car-brand-item .brand h2 {
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 4px 0;
  padding: 0;
  line-height: 1em;
  text-transform: capitalize;
}
.blk-car-brands .car-brand-item .brand span {
  font-size: 14px;
  font-weight: 300;
  line-height: 1em;
}
.blk-car-brands .car-brand-item .model-lst {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  row-gap: 10px;
  overflow: hidden;
}
.blk-car-brands .car-brand-item .model-lst a {
  background-color: #f8f8f8;
  border: 1px solid #eaeaea;
  color: #4f4f4f;
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 14px;
  white-space: nowrap;
  display: block;
}
.blk-car-brands .car-brand-item .model-lst.view-all {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.blk-car-brands .car-brand-item .view-more {
  position: absolute;
  right: 30px;
  bottom: -16px;
  z-index: 2;
}
.blk-car-brands .car-brand-item .view-more a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1em;
  gap: 10px;
  font-size: 14px;
  padding: 8px 12px;
  border: 1px solid #eaeaea;
  background-color: #fff;
  border-radius: 30px;
}
.blk-car-brands .car-brand-item .view-more a:hover {
  text-decoration: none;
  border: 1px solid var(--secondary-theme-color);
  background-color: var(--secondary-theme-color);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .blk-nohit-license-plate h1 {
    font-size: 1em;
  }
  .blk-nohit-license-plate h4 {
    font-size: 1.5em;
  }
}

.blk-quotation .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.blk-quotation .content::before,
.blk-quotation .content::after {
  content: "";
  background-image: url("../images/icons/double-quotes.html");
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
  width: 40px;
  min-width: 40px;
  height: 100%;
  position: relative;
  background-position: bottom;
  opacity: 0.3;
}
.blk-quotation .content::before {
  -ms-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
@media screen and (max-width: 450px) {
  .blk-quotation .content {
    gap: 20px;
  }
  .blk-quotation .content::before,
  .blk-quotation .content::after {
    width: 24px;
    min-width: 24px;
  }
}

.blk-promoBg {
  padding-top: 80px;
  padding-bottom: 80px;
  background-size: cover;
  font-size: 1.5em;
}
.blk-promoBg p {
  font-weight: 300;
  line-height: 1.4em;
}
.blk-promoBg strong,
.blk-promoBg b {
  font-weight: 900;
}
.blk-promoBg .container {
  z-index: 2;
  position: relative;
}
.blk-promoBg.bg-usa-flag {
  background-image: url("../images/usa-car-vin-check-2.jpg");
  background-position-y: -360px;
  color: #fff;
  position: relative;
}
.blk-promoBg.bg-usa-flag::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.6;
  z-index: 1;
}

.blk-barChart .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  row-gap: 0;
}
@media screen and (max-width: 767px) {
  .blk-barChart .inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.blk-barChart .label {
  white-space: nowrap;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .blk-barChart .label {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}
.blk-barChart .label img {
  width: 24px;
  height: auto;
  max-height: 14px;
}
@media screen and (max-width: 767px) {
  .blk-barChart .label img {
    width: 16px;
    max-height: 10px;
  }
}
.blk-barChart .progress {
  width: 100%;
  height: auto;
  background-color: #fff;
}
.blk-barChart .progress .progress-bar {
  text-align: right;
  padding-left: 16px;
  padding-right: 16px;
  min-width: 10%;
  font-weight: bold;
  background-color: var(--secondary-theme-color);
  border-radius: 0.25rem;
}
@media screen and (max-width: 991px) {
  .blk-barChart .progress .progress-bar {
    min-width: 15%;
  }
}
.blk-barChart small {
  font-size: 0.8em;
}

.loader h1 {
  margin-top: 24px;
}
.loader h1::before {
  color: var(--secondary-theme-color);
  margin-right: 16px;
  position: relative;
  top: 3px;
}
.loader h1 b {
  display: inline;
}
@media screen and (max-width: 475px) {
  .loader .white-container.btr-0 {
    border-radius: 0 0 30px 30px;
    padding-top: 8px;
    padding-bottom: 24px;
  }
}
.loader .modal-content {
  padding: 0;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
}
.loader .modal-content .modal-body {
  padding: 40px;
}
@media screen and (max-width: 475px) {
  .loader .modal-content .modal-body {
    padding: 24px;
  }
}
.loader .scanning-db h2 {
  padding: 16px 40px 8px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 30px 30px 0 0;
  margin-bottom: -1px;
  position: relative;
  border-bottom: 0;
  z-index: 2;
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media screen and (max-width: 475px) {
  .loader .scanning-db h2 {
    width: 100%;
  }
}
.loader .scanning-db ul.std-lst {
  position: relative;
  z-index: 1;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.loader .scanning-db ul.std-lst li {
  text-align: left;
  width: 25%;
  font-size: 16px;
}
.loader .scanning-db ul.std-lst li.icon-loading::before {
  -webkit-animation: rotating 1s linear infinite;
  animation: rotating 1s linear infinite;
}
@media screen and (max-width: 1199px) {
  .loader .scanning-db ul.std-lst li {
    width: 33.33%;
  }
}
@media screen and (max-width: 991px) {
  .loader .scanning-db ul.std-lst li {
    width: 50%;
  }
}
@media screen and (max-width: 475px) {
  .loader .scanning-db ul.std-lst li {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .loader .scanning-db ul.std-lst {
    padding: 0 16px;
  }
}
.loader .partner-blk {
  margin-top: 40px;
}
.loader .partner-blk h2 {
  margin-bottom: 0;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 16px;
  margin-bottom: 24px;
}
.loader .partner-blk .partners {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 20px;
}

.progress-blk .progress {
  height: 32px;
  border-radius: 30px;
}
.progress-blk .progress .progress-bar {
  background-color: var(--secondary-theme-color);
  font-weight: bold;
  color: #fff;
  font-size: 18px;
}
@media screen and (max-width: 991px) {
  .progress-blk .progress {
    height: 24px;
  }
  .progress-blk .progress .progress-bar {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .progress-blk .progress {
    height: 20px;
  }
  .progress-blk .progress .progress-bar {
    font-size: 14px;
  }
}
.progress-blk .txt {
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.special-offer-popup {
  display: none;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  color: #fff;
  padding: 24px 0;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 20px;
  z-index: 999999;
}
.special-offer-popup .btn {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  letter-spacing: 1px;
}
.special-offer-popup .btn:hover {
  background-color: #fff;
  color: #000;
}
.special-offer-popup .btn b {
  font-weight: 900;
  margin-left: 4px;
}
.special-offer-popup button.close {
  background-color: transparent;
  border: 0;
  position: absolute;
  right: 40px;
  border: 3px solid #fff;
  width: 40px;
  max-width: 40px;
  height: 40px;
  max-height: 40px;
  border-radius: 40px;
  opacity: 0.7;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.special-offer-popup button.close::before {
  color: #fff;
  font-size: 20px;
  width: 20px;
  height: 20px;
  font-weight: 300;
}
.special-offer-popup button.close:hover {
  opacity: 1;
}

.blk-lst .item {
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  position: relative;
  margin-bottom: 24px;
}
.blk-lst .item img {
  height: 320px;
  width: auto;
}
.blk-lst .item .data {
  width: 100%;
  padding: 16px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}
.blk-lst .item .data a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.blk-lst .item .data a:hover {
  color: var(--secondary-theme-color);
}
.blk-lst .item .data .price {
  margin-top: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.blk-lst .item .data .price i {
  width: 24px;
  height: 24px;
  background-color: #fff;
  position: relative;
  display: inline;
  margin-right: 8px;
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.blk-lst .item .data .price i::before {
  position: absolute;
  color: #000000;
}

@media screen and (max-width: 991px) {
  .blk-lst-2-col .fx {
    row-gap: 64px;
  }
}
@media screen and (max-width: 575px) {
  .blk-lst-2-col .fx {
    row-gap: 40px;
  }
}
.blk-lst-2-col .title {
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .blk-lst-2-col .title {
    margin-bottom: 24px;
  }
}
.blk-lst-2-col .title h2 {
  font-size: 24px;
  line-height: 31px;
  border-left-width: 5px;
  padding-left: 16px;
}
.blk-lst-2-col .title h2 b {
  display: block;
}
@media screen and (max-width: 991px) {
  .blk-lst-2-col .title h2 b {
    display: inline-block;
  }
}
.blk-lst-2-col .item {
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  gap: 24px;
  row-gap: 0;
  background-color: #fff;
  padding: 24px;
  border: 1px solid #e5e5e5;
  margin-bottom: -1px;
}
.blk-lst-2-col .item:first-child {
  border-radius: 16px 16px 0 0;
}
.blk-lst-2-col .item:last-child {
  border-radius: 0 0 16px 16px;
}
.blk-lst-2-col .item b {
  font-weight: 900;
}
.blk-lst-2-col .item .logo {
  min-width: 65px;
  max-width: 65px;
  height: 65px;
}
.blk-lst-2-col .item .logo img {
  width: 100%;
  height: auto;
}
.blk-lst-2-col .item .model-name h3 {
  font-weight: 900;
  color: #000000;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 12px;
}
.blk-lst-2-col .item .model-name.test {
  max-width: 100%;
  background-color: red;
  overflow: hidden;
}
.blk-lst-2-col .item .model-name.test a {
  display: inline-block;
  width: 100%;
  white-space: nowrap;
}
.blk-lst-2-col .item .model-name p {
  margin: 0;
  padding: 0;
  line-height: 23px;
}
.blk-lst-2-col .item .info-tab {
  gap: 8px;
}
.blk-lst-2-col .item .info-tab img {
  max-width: 20px;
  max-height: 20px;
  -webkit-filter: invert(28%) sepia(99%) saturate(2033%) hue-rotate(106deg)
    brightness(100%) contrast(103%);
  filter: invert(28%) sepia(99%) saturate(2033%) hue-rotate(106deg)
    brightness(100%) contrast(103%);
}
.blk-lst-2-col .item .info-tab span {
  display: block;
  font-size: 12px;
  white-space: nowrap;
  font-weight: 300;
  line-height: 12px;
  margin-bottom: 6px;
}
.blk-lst-2-col .item .info-tab div.image {
  width: 20px;
  display: block;
  margin: 0;
  padding: 0;
}
.blk-lst-2-col .item .info-tab div.info {
  font-weight: 900;
  line-height: 14px;
}
@media screen and (max-width: 457px) {
  .blk-lst-2-col .item .info-tab {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}
.blk-lst-2-col .item .data-info {
  margin-top: 12px;
}

.car-listings {
  background-color: #f4f4f4;
}
.car-listings .top-line {
  padding-top: 40px;
}
.car-listings .top-line .btn {
  white-space: nowrap;
}
.car-listings .breadcrumbs {
  margin: 0;
}
.car-listings .info-sort-bar {
  padding-top: 64px;
}
.car-listings .info-sort-bar.pt-0 {
  padding-top: 0;
}
@media screen and (max-width: 991px) {
  .car-listings .info-sort-bar {
    padding-top: 40px;
  }
}
@media screen and (max-width: 575px) {
  .car-listings .info-sort-bar {
    padding-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .car-listings .info-sort-bar .col-12 {
    text-align: center;
  }
}
.car-listings .info-sort-bar .info {
  font-size: 16px;
}
.car-listings .info-sort-bar .sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 991px) {
  .car-listings .info-sort-bar .sort {
    gap: 16px;
  }
}
.car-listings .info-sort-bar .sort a {
  text-decoration: none;
  display: block;
  width: 22px;
  max-width: 21px;
  height: 20px;
  line-height: 0;
  color: transparent;
  overflow: hidden;
  padding-left: 20px;
  position: relative;
  opacity: 0.45;
}
.car-listings .info-sort-bar .sort a::before {
  position: absolute;
  left: 0px;
  font-size: 20px;
  color: #000000;
}
.car-listings .info-sort-bar .sort a:hover,
.car-listings .info-sort-bar .sort a.selected {
  opacity: 1;
}
.car-listings .info-sort-bar .sort a.favorite {
  opacity: 1;
}
.car-listings .info-sort-bar .sort a.favorite::before {
  left: 1px;
}
.car-listings .info-sort-bar .sort a.favorite:hover::before,
.car-listings .info-sort-bar .sort a.favorite.active::before {
  color: var(--secondary-theme-color) !important;
}
.car-listings .info-sort-bar .sort a.favorite.active:hover {
  opacity: 0.8;
}
.car-listings .info-sort-bar .sort .form-select.com-filed {
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
  padding-right: 37px !important;
}
.car-listings .info-sort-bar button {
  padding: 8px 12px 7px 12px;
  background-color: #fff;
}
@media screen and (min-width: 992px) {
  .car-listings .info-sort-bar button {
    display: none;
  }
}
.car-listings .main-content {
  padding: 40px 0 64px 0;
}
.car-listings form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.car-listings .filter-tab.w-title {
  padding: 0;
  overflow: hidden;
}
.car-listings .filter-tab .nav-filter-title {
  margin: 0;
  background-color: var(--background-gray-color);
  border-bottom: 0;
}
.car-listings .filter-tab .nav-filter-title a {
  color: #000000;
  font-weight: 700;
  font-size: 14px;
  background-color: transparent;
  text-decoration: none;
  border-bottom: 0;
  line-height: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 16px 16px 15px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.car-listings .filter-tab .nav-filter-title a::before {
  margin-right: 10px;
}
.car-listings .filter-tab .nav-filter-title a::after {
  content: "\e96d";
}
.car-listings .filter-tab .nav-filter-title a::after,
.car-listings .filter-tab .nav-filter-title a::before {
  color: var(--secondary-theme-color) !important;
  line-height: 16px;
  font-size: 16px;
  width: 16px;
  height: 16px;
  background-image: none;
}
.car-listings
  .filter-tab
  .nav-filter-title
  .accordion-button:not(.collapsed)::after {
  content: "\e96d";
}
.car-listings .white-container {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 16px;
}
.car-listings .filter {
  font-size: 14px;
  padding: 24px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.car-listings .filter h3 {
  font-size: 1em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.car-listings .filter h3::before {
  font-size: 1em;
  margin-right: 10px;
}
.car-listings .filter .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 3px;
}
.car-listings .filter .group label {
  font-size: 12px;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  line-height: 1em;
}
.car-listings .filter .radio {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.car-listings .filter .radio .group {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
.car-listings .filter .radio label {
  margin: 0;
  display: inline-block;
  font-weight: 700;
  color: #000000;
  min-width: 100%;
  height: 43px;
  line-height: 43px;
  text-align: center;
  background-color: var(--background-gray-color);
  border: 1px solid var(--container-border);
  border-left: 0;
  border-right: 0;
  cursor: pointer;
}
.car-listings .filter .radio .group:first-child label {
  border-radius: 20px 0 0 20px;
  border-left: 1px solid var(--container-border);
}
.car-listings .filter .radio .group:last-child label {
  border-radius: 0 20px 20px 0;
  border-right: 1px solid var(--container-border);
}
.car-listings .filter .radio .btn-check {
  margin: 0;
}
.car-listings .filter .radio .btn-check:checked + label {
  color: var(--secondary-theme-color);
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.car-listings .filter .radio .btn-check:checked + label::after,
.car-listings .filter .radio .btn-check:checked + label::before {
  content: "";
  -webkit-transform: translateZ(-1px);
  transform: translateZ(-1px);
  width: 100%;
  display: block;
  height: 30px;
  position: absolute;
  z-index: -5;
  background-color: var(--secondary-theme-color);
}
.car-listings .filter .radio .btn-check:checked + label::after {
  border-radius: 0 0 25px 25px;
  bottom: -4px;
}
.car-listings .filter .radio .btn-check:checked + label::before {
  border-radius: 25px 25px 0 0;
  top: -4px;
}
.car-listings .filter .form-group {
  padding: 0;
  margin: 0;
  width: 100%;
}
.car-listings .filter .search-by .tab-content {
  background-color: var(--background-gray-color);
  border: 1px solid var(--container-border);
  width: 100%;
  border-top: 0;
  border-bottom: 0;
  padding: 16px;
}
.car-listings .filter .search-by .tab-content.year {
  border-bottom: 1px solid var(--container-border);
  border-radius: 0px 0px 9px 9px;
  padding-top: 8px;
}
.car-listings .filter .search-by ul {
  list-style: none;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
}
.car-listings .filter .search-by ul li {
  width: 50%;
  text-align: center;
  padding: 0;
  background-color: transparent;
}
.car-listings .filter .search-by .nav-link {
  padding: 0;
  white-space: nowrap;
  border: 0;
  font-weight: 700;
  color: #000000;
  background-color: #fff;
  border: 1px solid #fff;
  border-bottom-color: var(--container-border);
  padding: 8px;
  margin: 0;
  line-height: 17px;
  white-space: nowrap;
  border-radius: 9px 9px 0 0;
}
.car-listings .filter .search-by .nav-link.active {
  color: var(--secondary-theme-color);
  background-color: var(--background-gray-color);
  border: 1px solid var(--container-border);
  border-bottom-color: var(--background-gray-color);
}
.car-listings .filter .row-in {
  gap: 8px;
}
.car-listings .filter label.name {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: #626262;
  margin-bottom: 6px;
  height: auto;
  display: block;
  line-height: 11px;
  letter-spacing: 0.5px;
}
.car-listings .filter .com-filed {
  font-size: 14px;
}
.car-listings .filter input.radius {
  display: none !important;
}
.car-listings .filter input.radius::after {
  content: "Milse";
}
.car-listings .filter .chk-lst-group {
  gap: 12px;
}
.car-listings .filter .chk-lst-group .form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 16px;
  padding: 0;
  margin: 0;
  min-height: 0px;
  height: auto;
}
.car-listings .filter .chk-lst-group .form-check .form-check-input {
  min-width: 15px;
  min-height: 15px;
  max-width: 16px;
  max-height: 16px;
  margin: 0;
  top: 1px;
  position: relative;
}
.car-listings .filter .chk-lst-group .form-check .form-check-input:focus {
  border-color: var(--secondary-theme-color);
  outline: 0;
  -webkit-box-shadow: 0 0 0 0rem #ccebcb;
  box-shadow: 0 0 0 0rem #ccebcb;
}
.car-listings .filter .chk-lst-group .form-check .form-check-input:checked {
  background-color: var(--secondary-theme-color);
}
.car-listings
  .filter
  .chk-lst-group
  .form-check
  .form-check-input.c-white:checked {
  background-color: #fff;
  position: relative;
}
.car-listings
  .filter
  .chk-lst-group
  .form-check
  .form-check-input.c-white:checked::after {
  content: "\e911";
  position: absolute;
  top: 1px;
  left: 1px;
  font-size: 12px;
  font-weight: 900;
  color: #666;
  font-family: "sans-serif";
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.car-listings .filter .chk-lst-group .form-check .form-check-input.c-red {
  background-color: red;
  border: red;
}
.car-listings .filter .chk-lst-group .form-check .form-check-input.c-black {
  background-color: black;
  border: black;
}
.car-listings .filter .chk-lst-group .form-check .form-check-input.c-gray {
  background-color: #bbb;
  border: #bbb;
}
.car-listings .filter .chk-lst-group .form-check label {
  width: 100%;
  line-height: 18px;
  display: block;
  position: relative;
  top: 1px;
}
.car-listings .filter .chk-lst-group .form-check .qty {
  width: auto;
  text-align: right;
  color: #949494;
  font-weight: 700;
  line-height: 20px;
}
.car-listings .filter .inner-box {
  border: 1px solid var(--container-border);
  border-radius: 9px;
  overflow: hidden;
}
.car-listings .filter .inner-box .filter {
  padding: 0 16px 16px 16px;
}
.car-listings .filter .inner-box.gray {
  background-color: var(--background-gray-color);
}
.car-listings .filter-tab .nav-filter-title a {
  color: var(--gray-900);
}
.car-listings .filter-tab .filter {
  gap: 12px;
}
@media screen and (max-width: 991px) {
  .car-listings
    .main-search
    #pills-make
    form
    .wrapper
    .search-field
    .search-select {
    width: 25%;
  }
  .car-listings
    .main-search
    #pills-make
    form
    .wrapper
    .search-field
    .search-select.zip {
    height: 72px;
  }
}
@media screen and (max-width: 991px) and (max-width: 767px) {
  .car-listings
    .main-search
    #pills-make
    form
    .wrapper
    .search-field
    .search-select {
    width: 50%;
  }
  .car-listings
    .main-search
    #pills-make
    form
    .wrapper
    .search-field
    .search-select.zip {
    height: 46px;
    border-left: 0;
    border-bottom: 0;
    border-top: 0;
  }
  .car-listings
    .main-search
    #pills-make
    form
    .wrapper
    .search-field
    .search-select:nth-child(3) {
    border-bottom: 0;
  }
}
@media screen and (max-width: 991px) {
  .car-listings
    .main-search
    #pills-body
    form
    .wrapper
    .search-field
    .search-select {
    width: 33.33%;
  }
  .car-listings
    .main-search
    #pills-body
    form
    .wrapper
    .search-field
    .search-select.zip {
    height: 72px;
  }
}
@media screen and (max-width: 991px) and (max-width: 767px) {
  .car-listings
    .main-search
    #pills-body
    form
    .wrapper
    .search-field
    .search-select {
    width: 50%;
  }
  .car-listings
    .main-search
    #pills-body
    form
    .wrapper
    .search-field
    .search-select.zip {
    height: 46px;
    border-left: 0;
    width: 100%;
    border-right: 0;
    border-bottom: 0;
    border-top: 0;
  }
  .car-listings
    .main-search
    #pills-body
    form
    .wrapper
    .search-field
    .search-select.zip
    input {
    text-align: center;
  }
}

#slider-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 30px;
}

#slider-div > div {
  margin: 8px;
}

.slider-label {
  position: absolute;
  background-color: #eee;
  padding: 4px;
  font-size: 0.75rem;
}

.cars-layout {
  padding-left: 13px;
}
@media screen and (max-width: 991px) {
  .cars-layout {
    padding: 0;
  }
}
.cars-layout.fav {
  padding-left: 0;
}
.cars-layout .grid-layout,
.cars-layout .list-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}
.cars-layout .car-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  border: 1px solid var(--container-border);
  border-radius: 16px;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.06);
}
.cars-layout .car-item .image {
  overflow: hidden;
  display: block;
}
.cars-layout .car-item .image a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  height: 100%;
}
.cars-layout .car-item .image a img {
  width: auto;
  max-width: 450px;
  min-height: 100%;
}
.cars-layout .car-item .fav {
  position: absolute;
  background-color: #ccebcb;
  background-color: rgba(0, 0, 0, 0.9);
  width: auto;
  height: auto;
}
.cars-layout .car-item .fav a {
  display: block;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
}
.cars-layout .car-item .fav a::before {
  text-align: center;
  font-size: 20px;
  opacity: 0.9;
  margin: 10px;
}
.cars-layout .car-item .fav a:hover::before {
  color: var(--secondary-theme-color);
}
.cars-layout .car-item .price {
  border-radius: 50px;
  background-color: var(--secondary-theme-color);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  width: auto;
  display: block;
  padding: 8px 14px;
  line-height: 18px;
}
.cars-layout .car-item .title {
  margin-bottom: 0;
}
.cars-layout .car-item .title a {
  font-weight: bold;
  text-decoration: none;
  color: #000000;
  line-height: 24px;
}
.cars-layout .car-item .title a:hover {
  color: var(--secondary-theme-color);
}
.cars-layout .car-item .title address {
  color: #666666;
  position: relative;
  padding-left: 20px;
  line-height: 20px;
}
.cars-layout .car-item .title address::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "\e943";
  color: #cccccc;
}
.cars-layout .car-item .dtls {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cars-layout .car-item .dtls div {
  line-height: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cars-layout .car-item .dtls div i {
  margin-right: 8px;
}
.cars-layout .grid-layout .car-item {
  width: 31.33%;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.cars-layout .grid-layout .car-item .image {
  width: 100%;
  height: 200px;
}
@media screen and (max-width: 520px) {
  .cars-layout .grid-layout .car-item .image {
    height: 270px;
  }
}
.cars-layout .grid-layout .car-item .fav {
  top: 0;
  right: 0;
  border-radius: 0 0 0 16px;
}
.cars-layout .grid-layout .car-item .title {
  position: relative;
  border-bottom: 1px solid var(--container-border);
  padding: 24px 16px 16px 16px;
}
.cars-layout .grid-layout .car-item .title .price {
  position: absolute;
  top: -20px;
  left: 0;
  border-radius: 0 50px 50px 0;
}
.cars-layout .grid-layout .car-item .title address {
  margin-top: 8px;
  padding-bottom: 0;
  margin-bottom: 0;
}
.cars-layout .grid-layout .car-item .dtls {
  padding: 16px;
}
.cars-layout .grid-layout .car-item .dtls .action {
  display: none;
}
@media screen and (max-width: 1199px) {
  .cars-layout .grid-layout .car-item {
    width: 48%;
  }
}
@media screen and (max-width: 991px) {
  .cars-layout .grid-layout .car-item {
    width: 48.2%;
  }
}
@media screen and (max-width: 767px) {
  .cars-layout .grid-layout .car-item {
    width: 47.5%;
  }
}
@media screen and (max-width: 520px) {
  .cars-layout .grid-layout .car-item {
    width: 100%;
  }
}
.cars-layout.fav .fav a {
  color: #fff;
}
.cars-layout.fav .fav a:hover {
  color: #fff;
}
.cars-layout.fav .fav a:hover::before {
  color: #fff;
  opacity: 0.5;
}
.cars-layout.fav .grid-layout .car-item {
  width: calc(33.333333% - 16px);
}
@media screen and (max-width: 991px) {
  .cars-layout.fav .grid-layout .car-item {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 767px) {
  .cars-layout.fav .grid-layout .car-item {
    width: 47.4%;
  }
}
@media screen and (max-width: 507px) {
  .cars-layout.fav .grid-layout .car-item {
    width: 100%;
  }
}
.cars-layout .list-layout .car-item {
  width: 100%;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 24px;
}
.cars-layout .list-layout .car-item .image {
  width: 230px;
  height: auto;
  min-width: 230px;
}
.cars-layout .list-layout .car-item .image a img {
  width: 350px;
  height: auto;
}
.cars-layout .list-layout .car-item .fav {
  border-radius: 0 0px 16px 0px;
}
.cars-layout .list-layout .car-item .title {
  width: 100%;
  padding: 24px 0 48px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cars-layout .list-layout .car-item .title .price {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  background-color: transparent;
  padding: 0;
  color: var(--secondary-theme-color);
  margin-top: 8px;
  font-size: 18px;
}
.cars-layout .list-layout .car-item .title a {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  font-size: 18px;
}
.cars-layout .list-layout .car-item .title address {
  position: absolute;
  bottom: 24px;
  height: auto;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding-bottom: 0;
  margin-bottom: 0;
}
.cars-layout .list-layout .car-item .dtls {
  border-left: 1px solid var(--container-border);
  padding: 24px 40px;
  gap: 16px;
}
.cars-layout .list-layout .car-item .dtls div {
  white-space: nowrap;
  padding: 0;
}

.car-page {
  padding-bottom: 64px;
}
.car-page .item-action {
  gap: 24px;
  padding-right: 40px;
}
.car-page .item-action a {
  text-decoration: none;
  font-size: 14px;
  color: #000000;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.car-page .item-action a::before {
  margin-right: 8px;
  color: var(--secondary-theme-color);
  font-size: 14px;
}
.car-page .item-action a:hover {
  color: var(--secondary-theme-color);
}
@media screen and (max-width: 575px) {
  .car-page .item-action {
    margin-bottom: 10px;
  }
  .car-page .item-action a {
    width: 14px;
    height: 18px;
    display: block;
    overflow: hidden;
  }
}
.car-page .cars-layout {
  padding: 0 0px;
}
.car-page .cars-layout .car-item {
  width: 23.35%;
}
@media screen and (max-width: 1199px) {
  .car-page .cars-layout .car-item {
    width: 23%;
  }
}
@media screen and (max-width: 991px) {
  .car-page .cars-layout .car-item {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .car-page .cars-layout .car-item {
    width: 47.3%;
  }
}
@media screen and (max-width: 575px) {
  .car-page .cars-layout .car-item {
    width: 100%;
  }
}
.car-page h2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}
@media screen and (max-width: 575px) {
  .car-page h2 {
    font-size: 18px;
  }
}
.car-page .white-container {
  border-radius: 30px;
  padding: 40px;
}
.car-page .main-info {
  padding: 40px;
}
.car-page .main-info .top .title {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0;
  gap: 16px;
}
.car-page .main-info .top .title h1,
.car-page .main-info .top .title .price {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 0;
}
.car-page .main-info .top .title .price {
  white-space: nowrap;
  color: var(--secondary-theme-color);
}
.car-page .main-info .top .title .price span {
  font-weight: 300;
  color: #000000;
  font-size: 16px;
}
.car-page .main-info .top .car-dtl {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
  font-weight: 300;
  margin-top: 8px;
  color: #888;
}
.car-page .main-info .top .car-dtl b {
  font-weight: 700;
}
.car-page .main-info .car-images .image,
.car-page .main-info .car-thumbs {
  border-radius: 9px;
  overflow: hidden;
  height: 410px;
}
.car-page .main-info .car-images {
  margin-top: 40px;
}
.car-page .main-info .car-images .main-image .image {
  width: 100%;
}
.car-page .main-info .car-images .main-image img {
  height: 100%;
  width: auto;
}
.car-page .main-info .car-images .car-thumbs {
  text-align: center;
}
@media screen and (max-width: 767.88px) {
  .car-page .main-info .car-images .car-thumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    height: auto;
    gap: 8px;
    margin-top: 16px;
  }
  .car-page .main-info .car-images .car-thumbs .thumb {
    max-width: 23.5%;
    height: 92px;
  }
}
@media screen and (max-width: 767.88px) and (max-width: 507px) {
  .car-page .main-info .car-images .car-thumbs .thumb {
    max-width: 23.4%;
  }
}
@media screen and (max-width: 767.88px) and (max-width: 484px) {
  .car-page .main-info .car-images .car-thumbs .thumb {
    max-width: 23.2%;
  }
}
@media screen and (max-width: 767.88px) and (max-width: 484px) {
  .car-page .main-info .car-images .car-thumbs .thumb {
    max-width: 31.5%;
    height: 70px;
  }
}
@media screen and (max-width: 767.88px) and (max-width: 399px) {
  .car-page .main-info .car-images .car-thumbs .thumb {
    max-width: 31.3%;
  }
}
@media screen and (max-width: 767.88px) and (max-width: 370px) {
  .car-page .main-info .car-images .car-thumbs .thumb {
    max-width: 31.2%;
  }
}
@media screen and (max-width: 767.88px) and (max-width: 358px) {
  .car-page .main-info .car-images .car-thumbs .thumb {
    max-width: 31%;
  }
}
@media screen and (max-width: 767.88px) {
  .car-page .main-info .car-images .car-thumbs .thumb a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 9px;
    overflow: hidden;
  }
  .car-page .main-info .car-images .car-thumbs .thumb img {
    height: 100%;
    width: auto;
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .car-page .main-info .car-images .car-thumbs .slick-list {
    overflow: hidden;
    border-radius: 9px;
    height: 360px !important;
  }
  .car-page .main-info .car-images .car-thumbs .thumb {
    width: 100%;
    height: 92px;
    overflow: hidden;
  }
  .car-page .main-info .car-images .car-thumbs .thumb a {
    display: block;
    padding-bottom: 8px;
    width: 100%;
    height: 100%;
  }
  .car-page .main-info .car-images .car-thumbs .thumb img {
    height: 100%;
    width: auto;
    display: block;
  }
}
.car-page .main-info .car-images .car-thumbs button {
  border: 0;
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  border-radius: 32px;
  overflow: hidden;
  display: inline-block;
  text-indent: 32px;
  position: relative;
  margin: 8px 4px;
  background-color: var(--secondary-theme-color);
  font-family: "sans-serif";
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.car-page .main-info .car-images .car-thumbs button:hover {
  background-color: #000000;
}
.car-page .main-info .car-images .car-thumbs button::before {
  content: "\e975";
  position: absolute;
  left: -24px;
  top: 50%;
  margin-top: -7px;
  font-size: 14px;
  color: #fff;
}
.car-page .main-info .car-images .car-thumbs button.slick-next::before {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  left: 8px;
}
.car-page .dealer-dtls {
  padding: 24px;
  gap: 16px;
}
.car-page .dealer-dtls h3 {
  font-size: 18px;
}
.car-page .dealer-dtls .btn {
  text-transform: uppercase;
}
.car-page .dealer-dtls .sml-contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 8px;
}
.car-page .dealer-dtls .sml-contact-form .form-group {
  width: 100%;
}
.car-page .dealer-dtls .sml-contact-form .com-filed {
  font-size: 14px;
}
@media screen and (max-width: 1199px) {
  .car-page .dealer-dtls .sml-contact-form {
    display: none;
  }
}
.car-page .dealer-dtls .map {
  margin-top: 8px;
  margin-bottom: -10px;
}
.car-page .dealer-dtls .map .mapouter {
  position: relative;
  text-align: right;
  height: 80px;
  width: 208px;
}
.car-page .dealer-dtls .map .gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 80px;
  width: 208px;
}
@media screen and (max-width: 1199px) {
  .car-page .dealer-dtls .map .mapouter,
  .car-page .dealer-dtls .map .gmap_canvas {
    height: auto;
    width: 165px;
  }
}
@media screen and (max-width: 991px) {
  .car-page .dealer-dtls .map .mapouter,
  .car-page .dealer-dtls .map .gmap_canvas {
    height: auto;
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .car-page .dealer-dtls .map .mapouter,
  .car-page .dealer-dtls .map .gmap_canvas,
  .car-page .dealer-dtls .map iframe {
    height: auto;
    width: 100% !important;
  }
}
.car-page .dealer-dtls .address {
  padding: 0;
  list-style: none;
  margin: 0;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .car-page .dealer-dtls .address {
    margin-top: 50px;
    margin-left: 12px;
  }
}
.car-page .dealer-dtls .address li {
  margin: 0;
  line-height: 20px;
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
}
.car-page .dealer-dtls .address li:last-child {
  margin-bottom: 0;
}
.car-page .dealer-dtls .address li::before {
  position: absolute;
  left: 0;
  top: 3px;
}
.car-page .dealer-dtls .address li a.send-message {
  cursor: pointer;
}
.car-page .mt-content p {
  font-size: 18px;
}
@media screen and (max-width: 575px) {
  .car-page .mt-content p {
    font-size: 16px;
  }
}
.car-page .mt-content .details {
  gap: 40px 0px;
}
.car-page .mt-content .details .item {
  width: 13%;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  line-height: 30px;
  white-space: nowrap;
}
.car-page .mt-content .details .item .title {
  margin-bottom: 0;
  font-size: 11px;
  line-height: 11px;
  font-weight: 700;
  color: #666666;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .car-page .mt-content .details {
    gap: 24px 0;
  }
  .car-page .mt-content .details .item {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .car-page .mt-content .details {
    gap: 24px 0;
  }
  .car-page .mt-content .details .item {
    width: 33%;
  }
}
@media screen and (max-width: 500px) {
  .car-page .mt-content .details {
    gap: 24px 0;
  }
  .car-page .mt-content .details .item {
    width: 50%;
  }
}
@media screen and (max-width: 425px) {
  .car-page .mt-content .details {
    gap: 16px 0;
  }
  .car-page .mt-content .details .item {
    width: 100%;
  }
}
.car-page .mt-content .chart-info .inner {
  width: 100%;
  padding: 0;
  overflow: hidden;
  background-color: var(--background-gray-color);
  border-radius: 30px;
  border: 1px solid var(--container-border);
  font-size: 14px;
  line-height: 22px;
}
.car-page .mt-content .chart-info .inner div {
  text-align: center;
  width: 100%;
  padding: 40px 24px;
  border-bottom: 1px solid var(--container-border);
}
.car-page .mt-content .chart-info .inner div:last-child {
  border-bottom: 0;
}
.car-page .mt-content .chart-info .inner b {
  font-weight: 700;
  display: block;
}
.car-page .mt-content .chart-ggl g {
  background-color: red !important;
}
.car-page .mt-content .chart-ggl g g {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}

#filters .cls-btn {
  display: none;
}
@media screen and (max-width: 991px) {
  #filters {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 900;
    top: 0;
    left: 0;
    background-color: #fff;
    border: 1px solid var(--container-border);
    overflow-y: scroll;
    padding: 0px 24px 24px 24px;
  }
  #filters .cls-btn {
    display: block;
    text-align: right;
    padding: 24px 0;
  }
  #filters .cls-btn .btn {
    border: 1px solid var(--container-border);
    font-size: 14px;
    background-color: #fff;
  }
}

.residual-values-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  height: auto;
  width: 100%;
}
.residual-values-results .rslt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  height: 100%;
}
.residual-values-results .rslt .txt {
  font-size: 1em;
  font-weight: 700;
  width: 100%;
  text-align: center;
}
.residual-values-results .rslt .tab-container {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  background-color: aquamarine;
}
.residual-values-results .rslt .tab {
  background-color: #b8dfb7;
  margin: 8px 0;
  border-radius: 16px;
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary-theme-color);
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .residual-values-results .rslt .tab {
    padding: 10px;
    font-size: 20px;
  }
}
@media screen and (max-width: 425px) {
  .residual-values-results {
    height: auto;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
  .residual-values-results .rslt {
    width: 100%;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
  }
  .residual-values-results .rslt .txt {
    font-size: 14px;
    width: auto;
    text-align: left;
  }
  .residual-values-results .rslt .txt:first-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .residual-values-results .rslt .txt:last-child {
    text-align: right;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .residual-values-results .rslt .tab {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 10px;
    font-size: 14px;
    padding: 6px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 16px;
    margin-right: 16px;
  }
}

.pdf-print {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
}
.pdf-print div a {
  border-radius: 8px;
  margin-right: 8px;
  display: block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  text-indent: 2000px;
  white-space: nowrap;
  position: relative;
  padding: 0;
}
.pdf-print div a::before {
  position: absolute;
  left: -1989px;
  font-size: 20px;
  top: 50%;
  margin-top: -10px;
  color: #fff;
  font-weight: 300;
}
.pdf-print div a.pdf-btn {
  background-color: #f30000;
}
.pdf-print div a.print-btn {
  background-color: #000;
}
@media screen and (max-width: 500px) {
  .pdf-print div a {
    width: 30px;
    height: 30px;
  }
  .pdf-print div a::before {
    font-size: 12px;
    margin-top: -6px;
    left: -1991px;
  }
}
.pdf-print div:last-child a {
  margin-right: 0;
}
@media screen and (max-width: 500px) {
  .pdf-print {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pdf-print div:last-child {
    margin-top: 4px;
  }
}

.recall-number {
  font-weight: 700;
  color: var(--secondary-theme-color);
  background-color: #fff;
  border-radius: 60px;
  padding: 4px 16px;
  border: 2px solid var(--secondary-theme-color);
  font-size: 14px;
}

.title-collapse {
  margin-bottom: 0;
}
.title-collapse button {
  overflow: hidden;
  color: var(--secondary-theme-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0px;
  height: 28px;
  max-width: 28px;
  background-color: transparent;
  border-radius: 0px;
}
.title-collapse button::before {
  content: "\e91d";
  padding-right: 30px;
  font-size: 28px;
  display: block;
  width: 28px;
  height: 28px;
}
.title-collapse button:hover,
.title-collapse button:focus {
  color: var(--secondary-theme-color);
}
.title-collapse .d-flex {
  cursor: pointer;
}
.title-collapse .d-flex[aria-expanded="true"] button::before {
  content: "\e91d";
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  position: relative;
  left: -3px;
}
.title-collapse h2 {
  margin: 0;
  padding-bottom: 0;
  text-transform: capitalize;
  font-size: 16px;
}
.title-collapse p {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 40px;
}
.title-collapse .d-flex {
  background-color: #f4f4f4;
  padding: 18px 20px;
  border-radius: 9px;
}

.cur-nav {
  padding: 0;
}
.cur-nav button {
  display: none;
}
.cur-nav ul {
  list-style: none;
  padding: 16px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 0;
  gap: 24px;
  position: relative;
  z-index: 99999000000;
  row-gap: 0px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cur-nav ul li a {
  text-decoration: none;
  display: block;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cur-nav ul li a:hover,
.cur-nav ul li a:active {
  color: var(--secondary-theme-color);
}
.cur-nav ul li a::before {
  margin-right: 8px;
  display: none;
}
@media screen and (max-width: 991px) {
  .cur-nav ul li a {
    font-size: 16px;
  }
}
.cur-nav .collapse:not(.show) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .cur-nav {
    width: auto !important;
    position: absolute;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 500;
    top: 0;
    right: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cur-nav button {
    background-color: var(--secondary-theme-color);
    border: 0;
    border-radius: 16px 16px 0px 16px;
    width: auto;
    border: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    padding: 4px 14px;
    color: #fff;
    position: relative;
  }
  .cur-nav button::before {
    margin-right: 8px;
  }
  .cur-nav button.open::after {
    position: absolute;
    right: 16px;
    content: "\e96e";
    font-weight: 100;
  }
  .cur-nav ul {
    width: auto;
    padding: 12px 16px 12px 16px;
    margin: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cur-nav ul li {
    margin-bottom: 4px;
  }
  .cur-nav ul li a {
    padding: 0;
  }
  .cur-nav .collapse:not(.show) {
    display: none;
  }
}
@media screen and (max-width: 767px) and (max-width: 425px) {
  .cur-nav {
    top: 0;
  }
}

@media screen and (max-width: 767px) {
  .is-pinned .cur-nav button {
    border-radius: 0px 0px 0px 16px;
  }
}
.main-info .car-image {
  border-radius: 16px;
  overflow: hidden;
}
.main-info .car-image img {
  width: 100%;
  height: auto;
}
.main-info .car-main-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}
.main-info .car-main-info .car-name {
  font-size: 32px;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .main-info .car-main-info .car-name {
    font-size: 22px;
  }
}
.main-info .car-main-info .vin {
  font-weight: 700;
  color: var(--secondary-theme-color);
}
.main-info .car-main-info .vin span {
  font-weight: 300;
  color: #000;
}
@media screen and (max-width: 767px) {
  .main-info .car-main-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 16px;
  }
}

.notice i.attention {
  display: block;
  width: 50px;
  height: 48px;
  background-image: url(../images/icons/attention-yellow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  margin: 4px 0 0 0;
}
.notice .title {
  padding: 0 80px 0 0px;
}
@media screen and (max-width: 991px) {
  .notice .title {
    padding-right: 30px;
  }
}
.notice .title h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  border-left: 0;
  margin-left: 0;
  font-size: 24px;
  padding-left: 0;
  font-weight: 900;
  line-height: 28px;
}
.notice .title span {
  color: var(--secondary-theme-color);
}
.notice .title span:last-child {
  color: var(--secondary-theme-color);
  text-transform: uppercase;
}
.notice .title .car-dtls a {
  margin: 0;
}
.notice .title .action {
  text-align: left;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .notice .title {
    padding: 0 0 0 24px;
  }
}
@media screen and (max-width: 575px) {
  .notice .title {
    padding: 0;
  }
}
@media screen and (max-width: 575px) {
  .notice .title h2 {
    margin: 16px 0;
  }
  .notice .title .car-dtls {
    text-align: center;
    font-size: 18px;
  }
  .notice .title .car-dtls a {
    font-size: 18px;
  }
  .notice .title .action {
    text-align: center;
  }
}
.notice .car-image {
  width: 400px;
  height: auto;
  overflow: hidden;
}
.notice .car-image img {
  width: 100%;
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .notice .car-image {
    width: auto;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    margin-bottom: 24px;
  }
}
.notice .include h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 300;
}
.notice .include h3 b {
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .notice .include h3 {
    text-align: left;
  }
}
.notice .include ul {
  padding: 0;
  margin: 0;
  list-style: none;
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
  margin: 40px 10% 0 15%;
}
.notice .include ul li {
  font-size: 18px;
  margin-bottom: 4px;
  white-space: nowrap;
}
.notice .include ul li::before {
  content: "\e911";
  color: var(--secondary-theme-color);
  margin-right: 8px;
  font-size: 12px;
}
@media screen and (max-width: 575px) {
  .notice .include ul li {
    font-size: 16px;
  }
}
@media screen and (max-width: 1399px) {
  .notice .include ul {
    margin: 40px 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  .notice .include ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    margin: 24px 0 0 0;
  }
}
@media screen and (max-width: 450px) {
  .notice .include ul {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}

.gallery {
  /* the slides */
  /* the parent */
}
.gallery .slick-slide {
  margin: 0 10px;
}
.gallery .slick-list {
  margin: 0 -10px;
}
.gallery button {
  position: absolute;
  width: 40px;
  min-height: 40px;
  max-width: 40px;
  border: 2px solid var(--secondary-theme-color);
  border-radius: 40px;
  padding: 0;
  z-index: 600;
  top: 50%;
  background: transparent;
  background-color: transparent;
  margin-top: -20px;
  overflow: hidden;
  font-family: "sans-serif";
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.gallery button::before {
  content: "\e953";
  font-size: 24px;
  display: inline-block;
  margin-right: 20px;
  margin-left: 7px;
  color: var(--secondary-theme-color);
}
.gallery button.slick-prev {
  left: -40px;
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.gallery button.slick-next {
  right: -50px;
}
.gallery button:hover::before {
  -webkit-animation: scale-up-center 0.5s cubic-bezier(0.39, 0.575, 0.565, 1)
    infinite both;
  animation: scale-up-center 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) infinite
    both;
}
@media screen and (max-width: 824px) {
  .gallery button {
    top: -50px;
    width: 30px;
    min-height: 30px;
    max-height: 30px;
    max-width: 30px;
  }
  .gallery button.slick-prev {
    left: auto;
    right: 54px;
  }
  .gallery button.slick-next {
    right: 14px;
  }
  .gallery button::before {
    font-size: 16px;
    margin-right: 20px;
    margin-left: 5px;
  }
}
@media screen and (max-width: 575px) {
  .gallery button {
    top: -40px;
  }
}
.gallery div .row .col-12:last-child .item {
  margin-bottom: 0;
}
.gallery .item {
  overflow: hidden;
  margin-bottom: 16px;
  overflow: hidden;
}
.gallery .item:not(:last-child) {
  margin-bottom: 16px;
}
.gallery .item a {
  display: block;
  background-color: #fff;
  height: 148px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 9px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .gallery .item a {
    height: 100px;
  }
}
@media screen and (max-width: 599px) {
  .gallery .item a {
    height: 150px;
  }
}
@media screen and (max-width: 479px) {
  .gallery .item a {
    height: 260px;
  }
}
.gallery .item a.txt {
  height: auto;
  background-color: transparent;
  color: #000000;
  font-weight: 700;
  margin-top: 16px;
  line-height: 1.2em;
}
.gallery .item a.txt:hover {
  color: var(--secondary-theme-color);
}
.gallery .item img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery.logos img {
  max-height: 100%;
  width: auto;
  height: auto;
}
.gallery .video .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.gallery .video .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  color: var(--secondary-theme-color);
  background-color: #000;
}
.gallery .video .item a:hover::before {
  content: "\e976";
  position: absolute;
  font-size: 32px;
  opacity: 1;
  z-index: 5;
}
.gallery .video .item a:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.gallery .video .item iframe {
  width: 100%;
  height: 200px;
}
@media screen and (max-width: 1200px) {
  .gallery .video .item iframe {
    height: 170px;
  }
}
@media screen and (max-width: 991px) {
  .gallery .video .item iframe {
    height: 190px;
  }
}
@media screen and (max-width: 767px) {
  .gallery .video .item iframe {
    height: 140px;
  }
}
@media screen and (max-width: 479px) {
  .gallery .video .item iframe {
    height: 210px;
  }
}
@media screen and (max-width: 824px) {
  .gallery .p_gallery_3.about-comp button {
    top: auto;
    bottom: 0px;
    width: 30px;
    min-height: 30px;
    max-height: 30px;
    max-width: 30px;
  }
  .gallery .p_gallery_3.about-comp button.slick-prev {
    left: auto;
    right: 54px;
  }
  .gallery .p_gallery_3.about-comp button.slick-next {
    right: 14px;
  }
  .gallery .p_gallery_3.about-comp button::before {
    font-size: 16px;
    margin-right: 20px;
    margin-left: 5px;
  }
}
.gallery .p_gallery_3 a {
  height: 260px;
}

.decoder .car-logo img {
  width: auto;
  max-width: 50%;
  max-height: 80px;
  margin-bottom: 24px;
}
.decoder ul.colors {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 14px;
  row-gap: 8px;
}
.decoder ul.colors li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*
  span {
      display: inline-block;
      width: 18px;
      height: 18px;
      @include border-radius(40px);
      @include box-shadow(0px 0px 5px 0px rgba(0, 0, 0, 0.39));
      */
}
.decoder ul.colors li::after {
  content: ",";
  display: inline;
}
.decoder ul.colors li:last-child::after {
  content: "";
}

.lease-calculator .mb-search .nav {
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  margin-bottom: -1px;
}
.lease-calculator .mb-search .nav li:first-child {
  margin-right: 12px;
  text-transform: initial;
}
.lease-calculator .mb-search .nav .nav-link {
  border-radius: 8px 8px 0 0;
  height: 33px;
  line-height: 33px;
  padding: 0 32px;
  border: 0;
  text-transform: initial;
  font-weight: 700;
  margin-right: 0;
  color: #000;
  border: 1px solid transparent;
  background-color: transparent;
  border-bottom: 0;
  position: relative;
  z-index: 900;
}
.lease-calculator .mb-search .nav .nav-link.hover,
.lease-calculator .mb-search .nav .nav-link.active,
.lease-calculator .mb-search .nav .nav-link.focus {
  border-bottom: 0;
}
.lease-calculator .mb-search .nav .nav-link.active {
  background-color: #f3f3f3;
  color: var(--secondary-theme-color);
  border: 1px solid #e5e5e5;
  border-bottom: 0;
}
.lease-calculator .mb-search .nav .nav-link.active::before {
  display: none;
}
.lease-calculator .mb-search .nav li:last-child .nav-link {
  margin-right: 0;
}
.lease-calculator .mb-search form .search-field {
  height: 100%;
  padding: 22px;
  border: 1px solid var(--container-border);
  background-color: #f4f4f4;
  border-radius: 16px;
}
.lease-calculator .mb-search form .search-field .col,
.lease-calculator .mb-search form .search-field .search-select {
  padding: 8px;
}
@media screen and (max-width: 425px) {
  .lease-calculator .mb-search form .search-field {
    padding: 24px;
  }
}
.lease-calculator .mb-search form .search-field .search-select {
  width: 100%;
  position: relative;
}
.lease-calculator .mb-search form .search-field .search-select::after {
  display: none;
}
.lease-calculator .mb-search form .search-field .search-select:last-child {
  margin-right: 8px !important;
  padding-right: 0;
}
.lease-calculator .mb-search form .search-field .search-select select,
.lease-calculator .mb-search form .search-field .search-select input {
  font-weight: 700;
}
.lease-calculator .mb-search form .input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}
.lease-calculator .mb-search form .input-group::before {
  position: absolute;
  margin-left: 16px;
  color: #b1b1b1;
  z-index: 4;
  left: 0;
}
.lease-calculator .mb-search form .input-group[class^="icon-"] input,
.lease-calculator .mb-search form .input-group[class*=" icon-"] input {
  padding-left: 40px;
}
.lease-calculator .mb-search form .input-group .btn-check-style {
  border-radius: 0px;
  cursor: pointer;
  width: 100%;
  text-align: center;
}
.lease-calculator .mb-search form .input-group .btn-check-style:active,
.lease-calculator .mb-search form .input-group .btn-check-style:focus {
  background-color: var(--secondary-theme-color);
  color: #fff;
}
.lease-calculator
  .mb-search
  form
  .input-group
  .btn-check:checked
  + .btn-check-style {
  background-color: var(--secondary-theme-color);
  color: #fff;
}
.lease-calculator .mb-search form .input-group div {
  width: 100%;
}
.lease-calculator
  .mb-search
  form
  .input-group
  div:first-child
  .btn-check-style {
  border-radius: 7px 0 0 7px;
}
.lease-calculator .mb-search form .input-group div:last-child .btn-check-style {
  border-radius: 0px 7px 7px 0px;
}
@media screen and (max-width: 425px) {
  .lease-calculator .mb-search form .input-group {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .lease-calculator .mb-search form .input-group div {
    margin: 0;
    padding: 0;
    border: 0;
  }
  .lease-calculator .mb-search form .input-group div .btn-check-style {
    margin-left: 1px;
  }
  .lease-calculator .mb-search form .input-group .btn-check-style {
    border-radius: 0px;
    cursor: pointer;
    margin: 0;
    width: 100%;
    margin-bottom: -1px;
  }
  .lease-calculator .mb-search form .input-group .btn-check-style:active,
  .lease-calculator .mb-search form .input-group .btn-check-style:focus {
    background-color: var(--secondary-theme-color);
    color: #fff;
  }
  .lease-calculator
    .mb-search
    form
    .input-group
    .btn-check:checked
    + .btn-check-style {
    background-color: var(--secondary-theme-color);
    border: 1px solid var(--secondary-theme-color);
    color: #fff;
    margin-left: -1px;
  }
  .lease-calculator
    .mb-search
    form
    .input-group
    div:first-child
    .btn-check-style {
    border-radius: 7px 0 0 0px;
  }
}
@media screen and (max-width: 425px) and (max-width: 425px) {
  .lease-calculator
    .mb-search
    form
    .input-group
    div:first-child
    .btn-check-style {
    border-radius: 7px 7px 0 0px;
  }
}
@media screen and (max-width: 425px) {
  .lease-calculator
    .mb-search
    form
    .input-group
    div:nth-child(2)
    .btn-check-style {
    border-radius: 0px 7px 0 0px;
    border-bottom: 0;
    border-left: 0;
  }
}
@media screen and (max-width: 425px) and (max-width: 425px) {
  .lease-calculator
    .mb-search
    form
    .input-group
    div:nth-child(2)
    .btn-check-style {
    border-radius: 0px;
    border-left: 1px solid var(--container-border);
  }
}
@media screen and (max-width: 425px) {
  .lease-calculator
    .mb-search
    form
    .input-group
    div:nth-child(3)
    .btn-check-style {
    border-radius: 0px 0px 0 7px;
  }
}
@media screen and (max-width: 425px) and (max-width: 425px) {
  .lease-calculator
    .mb-search
    form
    .input-group
    div:nth-child(3)
    .btn-check-style {
    border-radius: 0px;
    border-left: 1px solid var(--container-border);
  }
}
@media screen and (max-width: 425px) {
  .lease-calculator
    .mb-search
    form
    .input-group
    div:last-child
    .btn-check-style {
    border-radius: 0px 0px 7px 0px;
    border-left: 0;
  }
}
@media screen and (max-width: 425px) and (max-width: 425px) {
  .lease-calculator
    .mb-search
    form
    .input-group
    div:last-child
    .btn-check-style {
    border-radius: 0px 0px 7px 7px;
    border-left: 1px solid var(--container-border);
  }
}
.car-loan {
  position: relative;
  background-color: transparent !important;
}
@media screen and (min-width: 768px) {
  .car-loan button {
    margin-bottom: 4.5px;
  }
}

@media screen and (max-width: 575px) {
  .car-loan {
    padding: 0;
  }
  .car-loan .container {
    margin: 0;
    padding: 0;
  }
  .car-loan .container .white-container {
    border-radius: 0px;
    border: 0;
  }
}
.news-container {
  overflow: hidden;
  margin-bottom: -24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blk-news {
  margin-bottom: 0;
}

.news-item {
  margin-bottom: 24px;
  /*
  &:nth-child(2n) {
      padding-left: 0;
  }
  &:nth-child(3n) {
      padding-right: 0;
  }
  */
}
@media screen and (max-width: 575px) {
  .news-item:last-child {
    margin-bottom: 8px;
  }
}
.news-item a {
  color: #000;
}
.news-item .item {
  padding: 0 0 16px 0;
  overflow: hidden;
  font-size: 14px;
  height: 100%;
}
.news-item .item .image a,
.news-item .item .image {
  height: 205px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.news-item .item .image a img,
.news-item .item .image img {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 991px) {
  .news-item .item .image a,
  .news-item .item .image {
    height: 120px;
  }
}
@media screen and (max-width: 767px) {
  .news-item .item .image a,
  .news-item .item .image {
    height: 80px;
  }
}
@media screen and (max-width: 575px) {
  .news-item .item .image a,
  .news-item .item .image {
    height: 180px;
  }
}
.news-item .item h3 {
  font-size: 18px;
  font-weight: 900;
  line-height: 26px;
  margin-bottom: 0;
}
.news-item .item h3 a {
  text-decoration: none;
  color: #000;
}
.news-item .item h3 a:hover {
  color: var(--secondary-theme-color);
}
@media screen and (max-width: 991px) {
  .news-item .item h3 {
    font-size: 16px;
    line-height: 23px;
  }
}
.news-item .item .divider {
  list-style: none;
  margin: 0;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.news-item .item .divider li {
  display: block;
  width: 20%;
  height: 4px;
  overflow: hidden;
  border-radius: 10px;
}
.news-item .item .divider li:nth-child(1n) {
  background-color: #ae0a0a;
}
.news-item .item .divider li:nth-child(2n) {
  background-color: #ae0a0a;
}
.news-item .item .divider li:nth-child(3n) {
  background-color: #ae0a0a;
}
.news-item .item .divider li:nth-child(4n) {
  background-color: #ae0a0a;
}
.news-item .item h3,
.news-item .item .divider,
.news-item .item .w-by {
  padding: 16px 16px 0 16px;
}
.news-item .item .pub {
  padding: 0px 16px;
  font-size: 12px;
  font-weight: 300;
  line-height: 14px;
}

.right-side .news-item .item .image a,
.right-side .news-item .item .image {
  height: 160px;
}
.right-side .news-item .item h3 a {
  font-size: 16px;
  line-height: 1.2em;
}

.result-page .btn-t {
  font-size: 16px;
}
.result-page .msg {
  text-transform: uppercase;
}
.result-page h1 {
  row-gap: 0;
}
.result-page h1 span {
  color: #000;
}
.result-page h1::before {
  color: var(--yellow-orange);
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media screen and (max-width: 767px) {
  .result-page h1::before {
    font-size: 40px;
  }
}
.result-page .rslt-mini-report {
  padding: 0px;
  overflow: hidden;
}
.result-page .rslt-mini-report h2 {
  margin-bottom: 24px;
}
.result-page .rslt-mini-report .image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 16px;
}
.result-page .rslt-mini-report .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 991px) {
  .result-page .rslt-mini-report .image {
    height: auto;
  }
  .result-page .rslt-mini-report .image img {
    height: auto;
    max-height: 100%;
    width: auto;
    max-width: 100%;
  }
}
.result-page h2 {
  color: #000;
  padding: 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.3em;
}
.result-page h2 img {
  height: 32px;
  width: auto;
  margin-right: 12px;
  position: relative;
  top: -2px;
}
.result-page h2 span {
  display: block;
  font-size: 14px;
  font-weight: 300;
}
@media screen and (max-width: 450px) {
  .result-page h2 {
    font-size: 20px;
  }
}
.result-page .body-inner {
  width: 100%;
  padding: 40px;
}
@media screen and (max-width: 1199px) {
  .result-page .body-inner {
    padding: 24px;
  }
}
.result-page .body-inner.pt-0 {
  padding-top: 0;
}
.result-page .rslt-extra {
  padding: 0;
}
.result-page h3 {
  background-color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  width: auto;
  left: 15px;
  top: -12px;
  padding: 0 15px;
}
.result-page .cnt-data {
  border-bottom: 1px dashed var(--container-border);
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  gap: 24px;
  padding: 16px 0;
}
.result-page .cnt-data div {
  font-size: 16px;
  line-height: 23px;
  width: 50%;
  text-align: left;
}
.result-page .cnt-data div.name {
  color: #535353;
  position: relative;
  font-weight: 400;
}
.result-page .cnt-data div.name::before {
  position: relative;
  margin-right: 10px;
  font-size: 16px;
  left: 0;
  top: 2px;
  color: #000;
  display: inline-block;
  width: 16px;
}
.result-page .cnt-data div.data {
  color: #000;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
.result-page .cnt-data div.data.align-items-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.result-page .cnt-data div.data span {
  margin-top: -1px;
  display: inline-block;
  width: auto;
  height: 18px;
  color: red;
  text-align: center;
  line-height: 19px;
  font-weight: bold;
  border-radius: 20px;
}
.result-page .cnt-data div.data span.ico {
  background-color: transparent;
}
.result-page .cnt-data div.data span.ico i {
  font-size: 14px;
  position: relative;
  top: 3px;
}
.result-page .cnt-data div.data span.ico.i-red i {
  color: red;
}
.result-page .cnt-data div.data span.ico.i-orange i {
  color: var(--bs-warning);
}
@media screen and (max-width: 450px) {
  .result-page .cnt-data {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    row-gap: 6px;
  }
  .result-page .cnt-data .name,
  .result-page .cnt-data .data {
    width: 100%;
  }
}
.result-page .content-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  row-gap: 0;
}
@media screen and (max-width: 1199px) {
  .result-page .content-table {
    gap: 24px;
    row-gap: 0;
  }
}
@media screen and (max-width: 991px) {
  .result-page .content-table {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .result-page .content-table {
    grid-template-columns: 1fr;
  }
}
.result-page .content-table .cnt-data {
  width: 100%;
  gap: 10px;
  padding: 16px 0;
}
.result-page .content-table .cnt-data div {
  width: 100%;
  text-align: left;
}
.result-page .content-table .cnt-data div.name {
  white-space: nowrap;
}
.result-page .content-table .cnt-data div.data {
  width: auto;
}
.result-page .content-table .cnt-data div.data i {
  color: var(--secondary-theme-color);
}
.result-page .top-details {
  margin-top: -8px;
  margin-bottom: -10px;
}
.result-page .top-details .cnt-data {
  border-bottom: 0;
  width: 100%;
  gap: 24px;
  padding: 8px 0;
}
.result-page .top-details .cnt-data div {
  font-size: 16px;
  line-height: 23px;
  width: 50%;
  text-align: left;
}
.result-page .top-details .cnt-data div a {
  line-height: 23px;
}
.result-page .top-details .cnt-data div.name {
  position: relative;
  font-weight: 400;
  white-space: nowrap;
}
.result-page .top-details .cnt-data div.name::before {
  color: var(--secondary-theme-color);
}
.result-page .top-details .cnt-data div.data {
  color: #000;
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .result-page .top-details .cnt-data div.data {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    text-align: right;
  }
}
@media screen and (max-width: 450px) {
  .result-page .top-details .cnt-data div.name,
  .result-page .top-details .cnt-data div.data {
    white-space: normal;
  }
  .result-page .top-details .cnt-data div.name a,
  .result-page .top-details .cnt-data div.data a {
    white-space: nowrap;
  }
}
@media screen and (max-width: 991px) {
  .result-page .top-details .cnt-data {
    border-bottom: 1px dashed var(--container-border);
    padding: 16px 0;
  }
  .result-page .top-details .cnt-data.border-0 {
    border: 0;
  }
}
@media screen and (max-width: 450px) {
  .result-page .top-details .cnt-data {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    row-gap: 6px;
  }
  .result-page .top-details .cnt-data .name,
  .result-page .top-details .cnt-data .data {
    width: 100%;
  }
  .result-page .top-details .cnt-data .data {
    padding-left: 30px;
  }
}
.result-page a:hover {
  color: #000;
}
.result-page .btn:hover {
  color: #fff;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .result-page .btn {
    font-size: 14px;
  }
}
.result-page .rslt-mini-report.border-data-rows .image {
  height: 250px;
}
.result-page .rslt-mini-report.border-data-rows .cnt-data {
  border: 1px solid var(--container-border);
  padding: 14px 20px;
  border-radius: 4px;
  margin-bottom: 10px;
}
@media screen and (max-width: 575px) {
  .result-page .rslt-mini-report.border-data-rows .cnt-data {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 6px;
  }
}
.result-page .rslt-mini-report.border-data-rows .name {
  width: 35%;
}
@media screen and (max-width: 575px) {
  .result-page .rslt-mini-report.border-data-rows .name {
    width: 100%;
  }
}
.result-page .rslt-mini-report.border-data-rows div.data {
  width: 65%;
}
@media screen and (max-width: 575px) {
  .result-page .rslt-mini-report.border-data-rows div.data {
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    text-align: left;
    padding-left: 26px;
  }
}

.about-us .title {
  margin-bottom: 16px;
}
.about-us .sub {
  font-style: italic;
  font-weight: 500;
}
.about-us .promo {
  font-size: 24px;
  font-weight: 900;
  position: relative;
  z-index: 500;
}
.about-us .promo::after {
  content: "";
  background-image: url(../images/vs-sect3-arrow-a.png);
  width: 160px;
  background-position: left;
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
  height: 160px;
  position: absolute;
  right: 50px;
  top: 20px;
  z-index: 90000;
}
@media screen and (max-width: 1200px) {
  .about-us .promo::after {
    width: 100px;
    right: -10px;
    top: 0;
  }
}
@media screen and (max-width: 991px) {
  .about-us .promo::after {
    width: 100px;
    right: auto;
    left: 380px;
    top: -15px;
  }
}
@media screen and (max-width: 510px) {
  .about-us .promo::after {
    width: 80px;
    left: 370px;
    top: -15px;
  }
}
@media screen and (max-width: 477px) {
  .about-us .promo::after {
    width: 64px;
    left: 350px;
    top: -15px;
  }
}
@media screen and (max-width: 437px) {
  .about-us .promo::after {
    width: 80px;
    left: 0px;
    top: 15px;
    -ms-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }
}
.about-us .promo span {
  font-weight: 500;
  color: var(--secondary-theme-color);
}
.about-us .image {
  width: 100%;
  height: 440px;
  overflow: hidden;
  border-radius: 30px;
}
.about-us .image img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .about-us .image {
    height: auto;
    max-height: 300px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 32px;
  }
  .about-us .image img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 575px) {
  .about-us .image {
    border-radius: 16px;
    max-height: 200px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 425px) {
  .about-us .image {
    max-height: 150px;
  }
}
.about-us .nav li:first-child {
  color: #000;
}

.contact-us .contact-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px 0;
  gap: 24px;
  row-gap: 0;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  .contact-us .contact-line.border-top-lg-0 {
    border: 0;
  }
}
@media screen and (max-width: 575px) {
  .contact-us .contact-line {
    padding: 16px 0;
  }
}
.contact-us .contact-line span {
  color: var(--secondary-theme-color);
  margin-left: -16px;
}
.contact-us .contact-line i {
  display: block;
  width: 40px;
  height: 40px;
}
.contact-us .contact-line i::before {
  font-size: 40px;
  color: var(--secondary-theme-color);
}
@media screen and (max-width: 767px) {
  .contact-us .contact-line i {
    width: 30px;
    height: 30px;
  }
  .contact-us .contact-line i::before {
    font-size: 30px;
  }
}
.contact-us .contact-line a {
  font-weight: bold;
  text-decoration: none;
}
.contact-us .title p {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .contact-us form .row:not(:last-child) {
    margin-bottom: 24px;
  }
}
.contact-us form input,
.contact-us form textarea,
.contact-us form select {
  padding: 16px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .contact-us form .row {
    margin-bottom: 0;
  }
  .contact-us form .row .col-12 {
    margin-bottom: 16px;
  }
}
.contact-us .action {
  row-gap: 16px;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .contact-us .action .recaptcha {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .contact-us .action .btn {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.auth {
  font-size: 16px;
  line-height: 26px;
}
.auth p {
  margin-bottom: 22px;
}
.auth .white-container {
  padding: 64px;
}
.auth .white-container.px-0.pb-2 {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 24px;
}
.auth .white-container .title {
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  .auth .white-container {
    padding: 40px;
  }
  .auth .white-container .title {
    padding-left: 0;
  }
}
.auth .white-container form .row {
  margin-bottom: 0px;
}
.auth .white-container form .row .col-12 {
  margin-bottom: 16px;
}
@media screen and (max-width: 575px) {
  .auth .white-container {
    padding: 24px;
  }
}
.auth label {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 12px;
}
.auth label.text-normal,
.auth label.text-normal a {
  text-transform: none;
  line-height: 26px;
  font-size: 1em !important;
}
.auth input[type="text"],
.auth input[type="password"] {
  border-radius: 0 9px 9px 9px;
}
.auth.signin,
.auth.signup {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.auth.signin section,
.auth.signup section {
  background-color: rgba(0, 0, 0, 0.5);
}
.auth.signin p,
.auth.signin a:not(.btn),
.auth.signup p,
.auth.signup a:not(.btn) {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.auth.signin {
  background-image: url(../images/signin.jpg);
}
.auth.signup {
  background-image: url(../images/signup.jpg);
}
.auth.signup.lightbox {
  background-image: none;
}
.auth.signup .wrapper {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}
.auth.signup .wrapper .white-container {
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media screen and (max-width: 991px) {
  .auth.signup .wrapper {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.auth.signup .left,
.auth.signup .right {
  width: 50%;
}
@media screen and (max-width: 991px) {
  .auth.signup .left,
  .auth.signup .right {
    width: 100%;
  }
}
.auth.signup .left {
  border-radius: 30px 0 0 30px;
  border-right: 0;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 991px) {
  .auth.signup .left {
    border-radius: 30px 30px 0 0px;
    border: 0;
  }
}
@media screen and (max-width: 575px) {
  .auth.signup .left {
    border-radius: 16px 16px 0 0;
    border-top: 1px solid var(--container-border);
    border-left: 1px solid var(--container-border);
    border-right: 1px solid var(--container-border);
  }
}
@media screen and (max-width: 575px) {
  .auth.signup .right {
    border-right: 1px solid var(--container-border) !important;
    border-bottom: 1px solid var(--container-border) !important;
    border-left: 1px solid var(--container-border) !important;
  }
}
.auth.signup h2 {
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .auth.signup h2 {
    padding-right: 40px;
  }
}
.auth.signup h2 b {
  display: inline;
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .auth.signup h2 b {
    display: inline;
  }
}
@media screen and (max-width: 425px) {
  .auth.signup h2 {
    font-size: 20px;
    line-height: 27px;
  }
}
.auth.signup ul {
  margin-top: 24px;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  row-gap: 5px;
}
@media screen and (max-width: 991px) {
  .auth.signup ul {
    margin-top: 24px;
  }
}
.auth.signup ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  width: calc(33% - 20px);
  gap: 10px;
  font-size: 1em;
  white-space: nowrap;
}
@media screen and (max-width: 991px) {
  .auth.signup ul li {
    width: calc(33% - 20px);
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .auth.signup ul li {
    width: calc(50% - 12px);
    white-space: nowrap;
  }
}
@media screen and (max-width: 425px) {
  .auth.signup ul li {
    width: calc(50% - 12px);
    white-space: initial;
  }
}
.auth.signup ul li::before {
  content: "";
  display: block;
  width: 10px;
  min-width: 10px;
  height: 10px;
  position: relative;
  top: 5px;
  background-image: url(../images/icons/check1.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.auth.signup .right {
  padding: 0;
  position: relative;
  z-index: 50;
  border-radius: 0px 30px 30px 0px;
  border-left: 5px solid var(--secondary-theme-color);
}
.auth.signup .right::after {
  position: absolute;
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border: 5px solid var(--secondary-theme-color);
  background-color: #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: -25px;
  top: 80px;
}
.auth.signup .right h2 b {
  display: block;
}
@media screen and (max-width: 991px) {
  .auth.signup .right h2 b {
    display: inline;
  }
}
.auth.signup .right .title {
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .auth.signup .right {
    border-radius: 0px 0px 30px 30px;
    border-top: 5px solid var(--secondary-theme-color);
    border-left: 0;
  }
  .auth.signup .right::after {
    border: 5px solid var(--secondary-theme-color);
    background-color: #fff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: calc(50% - 20px);
    top: -25px;
  }
}
@media screen and (max-width: 575px) {
  .auth.signup .right {
    border-radius: 0px 0px 16px 16px;
  }
}
.auth.signup .right .inner {
  padding: 64px;
}
@media screen and (max-width: 1200px) {
  .auth.signup .right .inner {
    padding: 40px;
  }
}
@media screen and (max-width: 425px) {
  .auth.signup .right .inner {
    padding: 32px 24px;
  }
}
.auth.signup .right ul {
  gap: 24px;
  row-gap: 5px;
}
.auth.signup .right ul li {
  width: calc(50% - 12px);
  gap: 10px;
}
@media screen and (max-width: 991px) {
  .auth.signup .right ul li {
    width: calc(33% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .auth.signup .right ul li {
    width: calc(50% - 12px);
  }
}
.auth.signup .green-light-bg {
  background-color: rgba(4, 158, 0, 0.09);
}
.auth.signup .white-bg {
  background-color: #fff;
  z-index: 2;
  position: relative;
}
.auth.signup .big-border {
  border-radius: 40px 40px 0 0;
}
.auth.signup .mt__40 {
  margin-top: -40px;
}
.auth.signup .block-promo {
  padding-bottom: 80px;
}
.auth.signup .block-promo.pb-0 {
  padding-bottom: 0;
}
.auth.signup .block-promo img {
  max-width: 50px;
}
.auth.signup .message {
  left: -26px;
  top: -20px;
  width: calc(100% + 26px);
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .auth.signup .message {
    top: -40px;
    left: -40px;
    width: calc(100% + 80px);
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .auth.signup .message {
    top: -24px;
    left: -24px;
    width: calc(100% + 48px);
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .auth.signin,
  .auth.signup {
    background-image: none !important;
  }
  .auth.signin section,
  .auth.signup section {
    background-color: #fff;
  }
}
@media screen and (max-width: 1200px) {
  .auth .modal-xl {
    max-width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .auth .modal-xl {
    max-width: 80%;
  }
}
@media screen and (max-width: 650px) {
  .auth .modal-xl {
    max-width: 100%;
  }
  .auth .modal-xl .modal-body {
    padding: 16px;
  }
}

.auth .form-check-input {
  width: 1em;
  min-width: 1em;
  max-width: 1em;
  height: 1em;
  max-height: 1em;
}

.searching-lightbox {
  position: fixed;
  z-index: 10000000000000000000000000000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: #fff;
}
.searching-lightbox .title {
  position: relative;
  margin-bottom: 64px;
}
.searching-lightbox .title h1 {
  line-height: 69px;
  font-size: 2.5em;
  font-weight: 300;
  display: none !important;
}
.searching-lightbox .title h1 b {
  font-weight: 900;
}
@media screen and (max-width: 425px) {
  .searching-lightbox .title h1 {
    font-size: 9vw;
  }
}
.searching-lightbox .title::after {
  content: "";
  width: 100px;
  height: 3px;
  display: block;
  margin: auto;
  margin-top: 56px;
  border-radius: 3px;
  background-color: var(--secondary-theme-color);
}
@media screen and (max-width: 767px) {
  .searching-lightbox .title {
    margin-bottom: 40px;
  }
  .searching-lightbox .title h1 {
    line-height: 51px;
  }
  .searching-lightbox .title::after {
    margin-top: 36px;
  }
}
.searching-lightbox img {
  width: 90px;
  height: 90px;
}
.searching-lightbox p {
  font-weight: 300;
  font-size: 20px;
}

.table-of-content {
  border-left: 4px solid var(--container-border);
  padding: 16px 0 16px 24px;
}
.table-of-content h4 {
  font-size: 1.2em;
  color: var(--secondary-theme-color);
  font-weight: 700;
  padding: 0;
  margin: 0;
  line-height: 1em;
}
.table-of-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.table-of-content li {
  padding: 6px 0;
  margin-bottom: 5px;
}
.table-of-content li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
.table-of-content li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  font-size: 16px;
  line-height: 1.3em;
  font-weight: 700;
  color: var(--primary-theme-color);
  gap: 8px;
}
.table-of-content li a::before {
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  display: block;
  width: 16px;
  height: 16px;
  font-size: 14px;
  color: var(--secondary-theme-color);
}
.table-of-content li a:hover {
  text-decoration: none;
  color: var(--secondary-theme-color);
}
.table-of-content li a:hover::before {
  text-decoration: none;
}
.table-of-content li ul {
  padding: 6px 0 0 24px;
}
.table-of-content li ul li {
  margin-bottom: 0;
}
.table-of-content li ul a {
  font-weight: 400;
}

.top-nav {
  margin-bottom: 0;
}

footer {
  margin-top: 0;
}

.news-container {
  margin-bottom: 0px;
}

.dropdown-menu {
  z-index: 9999999999;
}
/*# sourceMappingURL=style.css.map */
/** CUSTOM OVERRIDE */

.blk-promoBg {
  padding-top: 80px;
  padding-bottom: 80px;
  background-size: cover;
  font-size: 1.5em;
}

.blk-promoBg.bg-usa-flag {
  background-image: url(../images/usa-car-vin-check-2.jpg);
  background-position-y: -360px;
  color: #fff;
  position: relative;
}
.blk-promoBg .container {
  z-index: 2;
  position: relative;
}
.blk-promoBg p {
  font-weight: 300;
  line-height: 1.4em;
}
.blk-promoBg strong,
.blk-promoBg b {
  font-weight: 900;
}
.blk-promoBg.bg-usa-flag::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.6;
  z-index: 1;
}

.blk-01 .fs-7 {
  font-size: 0.9em;
}
.blk-barChart .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  row-gap: 0;
}
.blk-barChart .label {
  white-space: nowrap;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.blk-barChart .label img {
  width: 24px;
  height: auto;
  max-height: 14px;
}
.blk-barChart .progress {
  width: 100%;
  height: auto;
  background-color: #fff;
}
.blk-barChart .progress .progress-bar {
  text-align: right;
  padding-left: 16px;
  padding-right: 16px;
  min-width: 10%;
  font-weight: bold;
  background-color: var(--secondary-theme-color);
  border-radius: 0.25rem;
}
.blk-barChart small {
  font-size: 0.8em;
}
header.usa-cars-vin-check section,
.search-in.usa-cars-vin-check section {
  background-color: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 767px) {
  .blk-barChart .inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .blk-barChart .label img {
    width: 16px;
    max-height: 10px;
  }
  .blk-barChart .label {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}

header.title-search,
.search-in.title-search {
  background-image: url(../images/vehicle-title-search-3.jpg);
}
header.title-search section,
.search-in.title-search section {
  background-color: rgba(0, 0, 0, 0.6);
}
header.slim-style-white,
section.search-in.slim-style-white {
  background-color: #fff !important;
  padding-top: 0 !important;
  margin-top: -40px;
}
header.slim-style-white .main-search,
section.search-in.slim-style-white .main-search {
  min-height: auto;
}

.result-page .top-details .cnt-data {
  border-bottom: 0;
  width: 100%;
  gap: 24px;
  padding: 8px 0;
}
.result-page .rslt-mini-report.border-data-rows .cnt-data {
  border: 1px solid var(--container-border);
  padding: 14px 20px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.result-page .rslt-mini-report.border-data-rows .name {
  width: 35%;
}
.result-page .top-details .cnt-data div.name {
  position: relative;
  font-weight: 400;
  white-space: nowrap;
}
.result-page .rslt-mini-report.border-data-rows div.data {
  width: 65%;
}

.result-page .cnt-data div.name::before {
  position: relative;
  margin-right: 10px;
  font-size: 16px;
  left: 0;
  top: 2px;
  color: #000;
  display: inline-block;
  width: 16px;
}

.result-page .cnt-data div.data span.ico {
  background-color: transparent;
}
.result-page .cnt-data div.data span.ico i {
  font-size: 14px;
  position: relative;
  top: 3px;
}
.result-page .cnt-data div.data span.ico.i-orange i {
  color: var(--bs-warning);
}
.result-page .cnt-data div.data.align-items-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

@media screen and (max-width: 575px) {
  .result-page .rslt-mini-report.border-data-rows div.data {
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    text-align: left;
    padding-left: 26px;
  }
  .result-page .rslt-mini-report.border-data-rows .cnt-data {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 6px;
  }

  .result-page .rslt-mini-report.border-data-rows .name {
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .result-page .top-details .cnt-data div.name,
  .result-page .top-details .cnt-data div.data {
    white-space: normal;
  }
}

header.vin-check,
.search-in.vin-check {
  background-image: url(../images/home.jpg);
}
h1 sup,
h2 sup {
  color: #000;
  font-size: 0.7em;
  margin-left: 1px;
  top: -5px;
}

main.content section:nth-child(even) {
  background-color: #fff;
}
main.content section:nth-child(odd) {
  background-color: #f4f4f4;
}
.report-example-container {
  padding-top: 4.5px;
}
@media screen and (max-width: 575px) {
  main.content section:nth-child(even) {
    background-color: #f4f4f4;
  }

  main.content section:nth-child(odd) {
    background-color: #fff;
  }
  .report-example-container {
    padding-top: 0;
  }
}

main.content section:nth-child(odd), section.blk-07.bg-, section.blk-05.left {
    background-color: #f4f4f4;
}

.icon-check1:before {
    content: "\e911";
}

.top-nav .dropdown-menu a::before {
    font-size: 16px;
    margin-right: 16px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    text-align: center;
    display: block;
    color: var(--secondary-theme-color);
}

.icon-car-report:before {
    content: "\ea04";
}

.packages .pack {
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #EAEAEA;
    padding: 0 0 24px 0;
    -webkit-box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    height: 100%;
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;
}

.sp-padding {
    position: relative;
    background-color: transparent;
}

.sp-padding .container {
    position: relative;
    z-index: 1;
}

.sp-padding.bg-gray::after {
    background-color: #F4F4F4;
}

.sp-padding::after {
    content: "";
    display: block;
    width: 100%;
    height: calc(100% - 80px);
    position: absolute;
    left: 0;
    top: 40px;
}

.packages .list {
    row-gap: 16px;
}

.packages .pack .pack__name {
    background-color: #FAFAFA;
    font-weight: 700;
    color: #121413;
    padding: 24px 0 11px 0;
    width: 100%;
    text-align: center;
    border-radius: 24px;
    border-bottom: 1px solid #F6F6F6;
}

.packages .pack .pack__price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-theme-color);
    text-align: center;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.packages .pack ul.check {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #000000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.packages .pack .pack__select {
    padding: 0 24px;
    width: 100%;
}

.packages .pack button {
    border-radius: 40px;
    color: #fff;
    background-color: var(--secondary-theme-color);
    width: 100%;
    text-align: center;
    font-weight: 700;
    border: 2px solid var(--secondary-theme-color);
    outline: none;
    padding-top: 10px;
    padding-bottom: 10px;
    height: auto;
    min-height: auto;
    line-height: 1em;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

.packages .pack ul.check, .packages .pack button {
    font-size: 14px;
}

.col-12.col-md-4.col-lg-3.image img {
    width: 100%;
}

.blk_01.img-left {
    background: rgb(246, 246, 246);
    background: -o-linear-gradient(8deg, rgba(246, 246, 246, 0) 0%, rgb(246, 246, 246) 100%);
    background: linear-gradient(82deg, rgba(246, 246, 246, 0) 0%, rgb(246, 246, 246) 100%);
}

.blk_01 {
    -webkit-box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    margin-bottom: 40px;
    padding: 24px;
}

.blk_01.img-right {
    background: rgb(246, 246, 246);
    background: -o-linear-gradient(8deg, rgb(246, 246, 246) 0%, rgba(246, 246, 246, 0) 100%);
    background: linear-gradient(82deg, rgb(246, 246, 246) 0%, rgba(246, 246, 246, 0) 100%);
}

.blk_01.img-right .image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.btnSelectPackage {
border-radius: 40px;
    color: #fff;
    background-color: var(--secondary-theme-color);
    width: 100%;
    text-align: center;
    font-weight: 700;
    border: 2px solid var(--secondary-theme-color);
    outline: none;
    padding-top: 10px;
    padding-bottom: 10px;
    height: auto;
    min-height: auto;
    line-height: 1em;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    font-size: 14px;
    justify-content: center;
  }

  .blk-02 .s-reports {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blk-02 .s-reports img:first-child {
    margin-right: -50px;
    z-index: 1;
}

.blk-02 .s-reports img {
    position: relative;
    z-index: 2;
}

.blk-02 .s-reports img {
    position: relative;
    z-index: 2;
}

.blk-02 .s-reports img:last-child {
    margin-left: -50px;
    z-index: 1;
}

.blk-02 .s-reports img {
    position: relative;
    z-index: 2;
}

.pricing-page {
    padding: 50px 0px 50px 0px;
    background: aliceblue;
}

@media (min-width: 576px) {
  .card-deck {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
}

.card-deck {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-deck.text-center.recommended div.card.mb-4.box-shadow {
    border: 2px solid #e53e29;
}

.card-deck.text-center div.card.mb-4.box-shadow:hover {
  box-shadow: 1px 1px 50px grey;
}

.section-plate-to-vin {
  padding-top:50px;
  padding-bottom: 50px;
  background: #bee4f038;
}

.report-icon.s16::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../images/icons/icons-16px2.svg);
    background-repeat: no-repeat;
    background-position: 0 0px;
    background-size: 16px auto;
}

.report-icon.flood-damage::before {
    background-position-y: -672px;
}

.report-icon.total-loss::before {
    background-position-y: -112px;
}

.report-icon.recalls-defects::before {
    background-position-y: -144px;
}

.report-icon.flood-damage::before {
    background-position-y: -672px;
}

.report-icon.theft-vandalism::before {
    background-position-y: -48px;
}

.report-icon.fire-damage::before {
    background-position-y: -736px;
}

.report-icon.hail-damage::before {
    background-position-y: -768px;
}

.report-icon.accident::before {
    background-position-y: -704px;
}

.report-icon.clunckers::before {
    background-position-y: -848px;
}

.report-icon.rebuild::before {
    background-position-y: -896px;
}

.report-icon.reconstructed::before {
    background-position-y: -864px;
}

.report-icon.salt-water::before {
    background-position-y: -752px;
}

.report-icon.crashed::before {
    background-position-y: -496px;
}

.report-icon.hazardous::before {
    background-position-y: -112px;
}

.report-icon.dismantled::before {
    background-position-y: -816px;
}

.report-icon.refurbished::before {
    background-position-y: -848px;
}

.report-icon.test-vehicle::before {
    background-position-y: -880px;
}

.report-icon.collision::before {
    background-position-y: -432px;
}

.report-icon.warranty::before {
    background-position-y: -800px;
}

.report-icon.gray-market::before {
    background-position-y: -160px;
}

.report-icon.remanufactured::before {
    background-position-y: -384px;
}

.report-icon.police::before {
    background-position-y: -480px;
}

.report-icon.rental::before {
    background-position-y: -560px;
}

.report-icon.lien::before {
    background-position-y: -176px;
}

.report-icon.plus::before {
    background-position-y: -1056px;
}

.report-icon.tradein::before {
    background-position-y: -96px;
}

.report-icon.retail::before {
    background-position-y: -1072px;
}

.report-icon.private-party::before {
    background-position-y: -1104px;
}

.report-icon.residual::before {
    background-position-y: -976px;
}

.report-icon.engine::before {
    background-position-y: -1120px;
}

.report-icon.transmission::before {
    background-position-y: -1184px;
}

.report-icon.specs::before {
    background-position-y: -1216px;
}

.report-icon.specs-optional::before {
    background-position-y: -1200px;
}

.report-icon.generic-specs::before {
    background-position-y: -1152px;
}

.report-icon.entert::before {
    background-position-y: -1232px;
}

.report-icon.exterior::before {
    background-position-y: -464px;
}

.report-icon.opt-generic-specs::before {
    background-position-y: -1200px;
}

.report-icon.oem::before {
    background-position-y: -1200px;
}

.report-icon.color::before {
    background-position-y: -1216px;
}

.report-icon.safety::before {
    background-position-y: -1136px;
}

.report-icon.mpg::before {
    background-position-y: -1088px;
}

.report-icon.sale-history::before {
    background-position-y: -96px;
}

.report-icon.manufacture::before {
    background-position-y: -160px;
}

.report-icon.awards::before {
    background-position-y: -800px;
}

header h1 {
    font-size: 42px;
    line-height: 1.3em;
    margin: 0;
    text-align: left;
}
.report-icon.warning::before {
    background-position-y: -144px;
}

.report-icon.warning::before {
    background-position-y: -144px;
}

.report-icon.location::before {
    background-position-y: -1248px;
}

.report-icon.performance::before {
    background-position-y: -1184px;
}

.report-icon.safety::before {
    background-position-y: -1136px;
}

.report-icon.warranty::before {
    background-position-y: -800px;
}

.report-icon.odometer::before {
    background-position-y: -32px;
}

.report-icon.odometer-records::before {
    background-position-y: -288px;
}

.report-icon.sale-history::before {
    background-position-y: -96px;
}

.report-icon.title-brand::before {
    background-position-y: -64px;
}

.report-icon.title-issues::before {
    background-position-y: -208px;
}

section.blk-07 {
background-color: #F4F4F4;
}

.text-justify {
  text-align: justify;
}

.text-right {
    text-align: right;
}