:root {
  --animation-site-duration: 300ms;
  --error-color: rgb(245, 59, 59);
  --placeholder-color: #657882;
  --border-color: #beccd1;
  --border-radius-site: 0.5rem;
  --scrollbar-width: 0.5rem;
  --container-space: 15%;
  --default-font: "Lato";
  --secondary-font: "Lato", sans-serif;
  --subtitle-color: #38474f;
}

.theHeader {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.653);
}

.searchVehicle {
  background-color: var(--vehicleSearch-background-color);
}

.searchVehicle h2 {
  padding: 6rem;
}

html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  color: var(--color-text);
  font-family: var(--default-font) !important;
  color-scheme: normal !important;
}

#app {
  font-family: var(--default-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  min-height: 100vh;
}

::-webkit-scrollbar {
  width: var(--scrollbar-width);
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-track-color);
}

::-webkit-scrollbar-thumb {
  background: rgb(var(--mainColor));
  border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-third);
}

.site_container {
  margin: 0 var(--container-space);
  width: calc(100% - var(--container-space) * 2);
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

p {
  margin: 0;
}

[id]::before :not(#__nuxt) {
  content: "";
  display: block;
  height: 100px;
  margin-top: -100px;
  visibility: hidden;
}

.nuxt-link-exact-active {
  opacity: 0.6;
  pointer-events: none;
}

.__nuxt-error-page {
  z-index: 100;
}

.page-enter-active,
.page-leave-active {
  transition: all 0.1s;
}

.page-enter-from,
.page-leave-to {
  opacity: 0;
}

.baseButton {
  margin-top: 2rem;
  background-color: rgb(var(--mainColor));
  border: none;
  color: white;
  padding: 1rem;
  border-radius: var(--border-radius-site);
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all var(--animation-site-duration);
  will-change: transform;
}
.baseButton:hover {
  transform: scaleX(1.01) scaleY(1.05);
}
.baseButton > p {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}
.baseButton p :last-child {
  transition: all var(--animation-site-duration);
}
.baseButton:hover p :last-child {
  transform: translateX(10%);
}
.baseButton > p i {
  font-size: 2rem;
  color: #707070;
}
.baseButton > i {
  display: inline-block;
  margin-left: auto;
  font-size: 1.5rem;
}

@media all and (max-width: 1550px) {
  .site_container {
    margin: 0 4%;
    width: 92%;
  }
}
@media all and (max-width: 1200px) {
  .site_container {
    width: calc(100% - 2rem);
    margin: 0 1rem;
  }
}
@media all and (max-width: 990px) {
  .site_container {
    width: calc(100% - 16px);
    margin: 0 8px;
  }
}
@media (max-width: 1550px) {
  :root {
    --container-space: 4%;
  }
}
@media (max-width: 1200px) {
  :root {
    --container-space: 1rem;
  }
}
@media (max-width: 1000px) {
  :root {
    --container-space: 8px;
  }
}
.fade-enter-active,
.fade-leave-active {
  transition: opacity var(--animation-site-duration) ease-in-out;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.fade-open-enter-active,
.fade-open-leave-active {
  height: fit-content;
  max-height: 600px;
  overflow: auto;
  transition: all var(--animation-site-duration) ease-in-out;
}

.fade-open-enter-from,
.fade-open-leave-to {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
}

.from-left-enter-active,
.from-left-leave-active {
  transition: transform var(--animation-site-duration) ease-in-out;
}

.from-left-enter-from,
.from-left-leave-to {
  transform: translate(-100%);
}

.open-enter-active,
.open-leave-active {
  height: fit-content;
  max-height: 600px;
  overflow: auto;
  transition: all var(--animation-site-duration) linear;
}

.open-enter-from,
.open-leave-to {
  overflow: hidden;
  max-height: 0;
}

.slide-from-left-multi-enter-active {
  transition: all 0.5s ease;
}

.slide-from-left-multi-enter-from {
  transform: translateX(-100%);
}

.slide-from-left-multi-leave-to {
  display: none;
}

.dropdown-enter-active,
.dropdown-leave-active {
  max-height: 300px;
  overflow-y: auto;
  transition: all var(--animation-site-duration) linear;
}

.dropdown-enter-from,
.dropdown-leave-to {
  overflow: hidden;
  max-height: 0;
}

@font-face {
  font-family: "Nexa Rust Sans Black";
  src: url("~/assets/fonts/Nexa Rust/Principale/Fontfabric-NexaRustSansBlack.otf")
    format("truetype");
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

footer {
  overflow: hidden;
}

html * {
  box-sizing: border-box;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.theFixedButton {
  background-color: rgb(var(--mainColor));
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.theFixedButton a button {
  background-color: #fff;
  color: #242c33;
  margin: 0;
  font-size: 1.2rem;
  gap: 2rem;
}
@media screen and (max-width: 1100px) {
  .theFixedButton a button {
    width: 100%;
    height: 75%;
    column-gap: 0.9rem;
  }
}
@media screen and (max-width: 1100px) {
  .theFixedButton a button p {
    column-gap: 0.5rem;
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 1100px) {
  .theFixedButton a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.theFixedButton #grpButton {
  display: flex;
  column-gap: 1.2rem;
}
@media screen and (max-width: 1100px) {
  .theFixedButton #grpButton {
    width: 100%;
    column-gap: 0.8rem;
  }
}
@media screen and (max-width: 1100px) {
  .theFixedButton #linkAppointement {
    width: 56%;
  }
}
@media screen and (max-width: 1100px) {
  .theFixedButton #linkQuote {
    width: 40%;
  }
}
.theFixedButton .scrollDownFinish {
  top: -3rem;
}
.theFixedButton svg {
  position: absolute;
  right: 5rem;
}
.theFixedButton svg:hover {
  cursor: pointer;
}
@media screen and (max-width: 1100px) {
  .theFixedButton {
    padding: 0 2rem;
  }
}

/*# sourceMappingURL=theme.css.map */
