:root {
  --clr-primary: #ff9900;
  --clr-pure-white: #ffffff;
  --clr-primary-border: #ebebeb;
  --clr-bg: #ffffff;
  --clr-black: #000000;
  --clr-btn: #333e48;
  --clr-btn-text: #333e48;
  --clr-lang-dropdown: #ffffff;
  --clr-lang-dropdown-hover: #f0f0f0;
  --clr-swiper-btn-hover: #4a5562;
  --clr-car-selector-bg: rgba(30, 32, 34, 0.95);
  --clr-map-arrow: #343434;
  --clr-map: #343434;
  --clr-wrapper-bg: #ffffff;
  --clr-footer-bg: #333333;
  --clr-input-label: #5e5e5e;
}

body.dark {
  --clr-bg: #2f2f2f;
  --clr-btn-text: #ffffff;
  --clr-btn: #414141;
  --clr-black: #e5e5e5;
  --clr-lang-dropdown: #414141;
  --clr-lang-dropdown-hover: #333333;
  --clr-primary-border: #3f3f3f;
  --clr-map-arrow: #ebebeb;
  --clr-map: #414141;
  --clr-wrapper-bg: #414141;
  --clr-footer-bg: #3c3c3c;
  --clr-input-label: #c1c1c1;
}

body {
  background-color: var(--clr-bg);
  transition: background-color 0.3s ease;
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

h3 {
  line-height: normal;
}

ol {
  padding-left: 24px;
}

.svg-logo {
  fill: var(--clr-black);
}

.footer .svg-logo {
  fill: var(--clr-pure-white);
}

input {
  border: none;
  outline: none;
  background-color: transparent;
  transition: background-color 0.3s ease;
  color: var(--clr-black);
  caret-color: var(--clr-black);
}

select {
  width: 100%;
  padding: 8px 40px 8px 12px;
  font-size: 16px;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-size: 12px;
}

option {
  padding: 8px;
  background: white;
  color: black;
}
option:hover {
  background: #eee;
}

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

button {
  background-color: transparent;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: var(--clr-primary);
}

.container {
  max-width: 1500px;
  padding: 0 24px;
  margin: 0 auto;
}

.header-main {
  background-color: var(--clr-bg);
  transition: background-color 0.3s ease;
  box-shadow: 0 1px 3px #00000017;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000,
    0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0/0.1);
  height: 85px;
}

body.modal-open {
  overflow: hidden;
}

.header-main .container,
.header-main .container .header-wrapper {
  height: 85px;
}

.header-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  width: 200px;
}

.header-nav {
  display: flex;
  gap: 24px;
}

.header-nav-item-link {
  color: var(--clr-black);
  transition: color 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.header-lang-dropdown {
  position: absolute;
}

.header-lang-active {
  color: var(--clr-black);
  transition: color 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.header-lang-active-img {
  width: 24px;
}

.lang-dropdown-icon {
  height: 10px;
}

.darkmode-icon,
.lightmode-icon {
  width: 24px;
  height: 24px;
}

.darkmode-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  background-color: var(--clr-btn);
  transition: background-color 0.3s ease;
  border: 0;
  border-radius: 32px;
  gap: 12px;
  position: relative;
}

.darkmode-toggle-wrapper {
  border-radius: 999px;
  padding: 10px;
  max-height: 24px;
  z-index: 1;
}

.search-bar {
  background-color: var(--clr-primary);
  transition: background-color 0.3s ease;
  border-radius: 32px;
  gap: 12px;
  display: flex;
  flex-direction: row;
  border: none;
  align-items: center;
  box-shadow: none;
  outline: none;
  appearance: none;
}

.search-bar:focus-visible {
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
}

.search-icon-wrapper {
  border-radius: 999px;
  padding: 10px;
  background-color: var(--clr-btn);
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

#search-input-header {
  width: 90px;
}

.search-icon {
  color: var(--clr-pure-white);
  transition: color 0.3s ease;
  width: 20px;
}

.search-text {
  color: var(--clr-btn-text);
  transition: color 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  border: none;
  background-color: transparent;
  padding: 20.5px 8px;
}

.header-actions-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  height: 60px;
}

.notification-btn {
  background-color: var(--clr-btn);
  transition: background-color 0.3s ease;
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.notification-count {
  font-family: "Rubik", sans-serif;
  background-color: #ee5454;
  transition: background-color 0.3s ease;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 999px;
  color: var(--clr-pure-white);
  transition: color 0.3s ease;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-lang-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.header-lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
}

.header-lang-active-container {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}

.header-lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--clr-lang-dropdown);
  transition: background-color 0.3s ease;
  box-shadow: 0 1px 3px #00000017;
  border-radius: 4px;
  overflow: hidden;
  min-width: 90px;
  z-index: 10;
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}

.header-lang-dropdown li {
  list-style: none;
}

.header-lang-dropdown a.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  color: var(--clr-black);
  transition: color 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.search-icon-wrapper {
  cursor: pointer;
  width: 44px;
  height: 44px;
}

.search-bar {
  cursor: text;
}

.search-input::placeholder,
.search-input {
  color: var(--clr-btn-text);
  transition: color 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.search-bar-wrapper,
.search-bar {
  height: 100%;
}

.search-input {
  height: 100%;
  padding: 0;
}

.search-bar {
  padding-right: 10px;
}

.lang-dropdown-icon {
  fill: var(--clr-black);
  transition: fill 0.3s ease;
}

.toggle-slider {
  position: absolute;
  width: 44px;
  height: 44px;
  background-color: var(--clr-primary);
  right: 10px;
  border-radius: 999px;
  z-index: 0;
  transition: left 0.3s ease, right 0.3s ease background-color 0.3s ease;
}

#toggle-slider {
  transition: all 0.3s ease-in-out;
}

.search-input:focus::placeholder {
  opacity: 0;
}

.underline {
  position: absolute;
  bottom: 14px;
  left: 50%;
  height: 2px;
  background-color: var(--clr-btn-text);
  width: 0;
  transform: translateX(-50%);
  transition: width 0.3s ease, background-color 0.3s ease;
}

.search-wrapper {
  margin-left: 24px;
  height: 100%;
}

.search-input:focus + .underline {
  width: 100%;
}

.search-input::placeholder {
  transition: opacity 0.3s ease;
}

.search-wrapper {
  position: relative;
}

.header-nav-item-link {
  display: inline-block;
  position: relative;
  transition: transform 0.3s ease;
}

.header-nav-item-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 2px;
  border-radius: 16px;
  background: currentColor;
  transition: width 0.3s ease, left 0.3s ease;
}

.burger-menu-icon {
  display: none;
  margin-left: 10px;
}

.burger-menu-icon path {
  fill: var(--clr-btn-text);
  transition: fill 0.3s ease;
}

.header-logo-wrapper,
.header-logo-wrapper a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-search-icon-wrapper {
  display: none;
}

.mobile-search-icon-wrapper {
  background-color: var(--clr-primary);
  transition: background-color 0.3s ease;
}

.dock-wrapper {
  display: none;
  position: fixed;
  bottom: 0px;
  width: 100%;
  background-color: var(--clr-bg);
  transition: background-color 0.3s ease;
  height: 82px;
  box-shadow: 0 -2px 10px #00000040;
}

.header-main {
  position: fixed;
  top: 0;
  width: 100%;
}

.dock {
  display: flex;
  justify-content: space-around;
}

.dock-wrapper .container,
.dock {
  height: 100%;
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.dock-item-text {
  color: var(--clr-black);
  transition: color 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
}

/* chat */

#smartsupp-widget-container {
  display: none;
}

.dock-item-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  top: -24px;
  position: relative;
  border-radius: 999px;
}

.dock-item-icon-main-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: var(--clr-primary);
  transition: background-color 0.3s ease;
  border-radius: 999px;
  margin-bottom: 8px;
}

.dock-item-main-bg {
  width: 70px;
  height: 35px;
  position: absolute;
  background-color: var(--clr-bg);
  transition: background-color 0.3s ease;
  z-index: -1;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  top: -10px;
  box-shadow: 0 -3px 3px #00000017;
  overflow: hidden;
}

.dock-item-icon path {
  fill: var(--clr-black);
  transition: fill 0.3s ease;
}

.dock-item {
  min-width: 80px;
}

.hero-container-wrapper .swiper {
  width: 100%;
  height: 100%;
}

.hero-container-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-container-wrapper .swiper-slide img {
  display: block;
  width: 100%;
}

.hero-container-wrapper .swiper {
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
}

.hero-container-wrapper .swiper-slide img,
.hero-container-wrapper .swiper-slide {
  border-radius: 16px;
}

.header-main,
.dock-wrapper {
  z-index: 11;
}

.hero-container {
  margin-top: 105px;
  position: relative;
}

.hero-container-wrapper .swiper-button-next,
.hero-container-wrapper .swiper-button-prev {
  width: 36px;
  height: 36px;
  background-color: var(--clr-btn);
  transition: background-color 0.3s ease;
  border-radius: 999px;
  box-shadow: 0 8px 10px #0000004d;
  z-index: 8;
}

.hero-container-wrapper .swiper-button-next:after,
.hero-container-wrapper .swiper-button-prev:after {
  content: none;
}

.hero-container-wrapper .swiper-wrapper {
  will-change: transform;
}

.hero-container-wrapper .swiper-button-next {
  right: -16px;
}

.hero-container-wrapper .swiper-button-prev {
  left: -16px;
}

.hero-container-wrapper .swiper-button-next,
.hero-container-wrapper .swiper-button-prev {
  transition: background-color 0.3s ease;
}

.hero-container-wrapper .swiper-btn-prev-icon {
  transform: rotate(180deg);
}

.hero-container-wrapper .swiper-btn-prev-icon,
.hero-container-wrapper .swiper-btn-next-icon {
  width: 18px !important;
  height: 18px !important;
}

.hero-container-wrapper .swiper-btn-prev-icon path,
.hero-container-wrapper .swiper-btn-next-icon path {
  fill: var(--clr-pure-white);
  transition: fill 0.3s ease;
}

.hero-container-wrapper .swiper-btn-next-icon {
  margin-left: 2px;
}

.hero-container-wrapper .swiper-btn-prev-icon {
  margin-left: -2px;
}

.hero-container-wrapper .swiper-actions-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.hero-container-wrapper .swiper-pagination-bullet {
  background-color: #ffffff8c;
}

.hero-container-wrapper .swiper-pagination-bullet-active {
  background-color: var(--clr-primary);
  transition: background-color 0.3s ease;
}

.hero-container-wrapper .swiper-pagination {
  width: auto !important;
  transform: translateX(-50%);
  left: 50% !important;
  padding: 6px;
  display: flex;
  border-radius: 40px;
  background: #00000064;
  top: 16px !important;
  bottom: unset !important;
}

.search-icon-wrapper .search-icon {
  transition: rotate 0.3s ease;
}

.car-selector-row {
  display: flex;
  background-color: var(--clr-car-selector-bg);
  padding: 24px 32px;
  border-radius: 14px;
  gap: 16px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.hero-container-wrapper {
  display: flex;
  flex-direction: column;
}

figure {
  margin: 0 !important;
  padding: 0 !important;
}

.car-selector-wrapper {
  width: 90%;
  margin: 0 auto;
  z-index: 9;
}

.col-manuf,
.col-model,
.col-motor {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.col-manuf input::placeholder,
.col-model input::placeholder,
.col-motor input::placeholder {
  color: transparent;
}

.col-manuf input,
.col-model input,
.col-motor input {
  background-color: rgb(65, 67, 68);
  height: 46px;
  border-radius: 12px;
}

.selected-car-wrapper {
  display: flex;
  margin-bottom: 64px !important;
}

.car-selector-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: var(--clr-pure-white);
  transition: color 0.3s ease;
}

.car-selector-motor-category {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 6px;
}

.col-submit {
  display: flex;
  flex-direction: column-reverse;
  width: 75%;
}

.car-selector-submit {
  white-space: nowrap;
  cursor: pointer;
  padding: 8px 26px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  height: 32px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background-color: var(--clr-primary);
  transition: background-color 0.3s ease;
  border-radius: 12px;
  color: #333e48;
}

.car-selector-submit p {
  transition: color 0.3s ease, transform 0.3s ease;
}

a.model-collapse svg {
  transition: transform 0.3s ease;
}

.car-selector-submit path {
  fill: #333e48;
}

/* Cumulative Layout Shift */

.hero-container-wrapper .swiper-slide img {
  height: auto;
}

.hero-container-wrapper .swiper-slide {
  width: 100% !important;
}

.hero-container-wrapper .swiper {
  aspect-ratio: 1500 / 659.9;
}

/* END Cumulative Layout Shift */

.car-selector-submit-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.car-selector-submit-icon-tablet {
  display: none;
}

.notifications-wrapper {
  position: fixed;
  top: 0;
  right: -351px;
  width: 326px;
  height: 100%;
  box-shadow: -3px 1px 3px #00000017;
  background-color: var(--clr-bg);
  z-index: 12;
  border-left: 1px solid var(--clr-primary-border);
  transition: right 0.3s ease, background-color 0.3s ease;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
}

#notification-wrapper.show {
  right: 0;
}

.what-we-offer-label {
  display: none;
}

.notifications-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.notifications-close-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.notifications-close-btn svg path {
  fill: var(--clr-black);
  transition: fill 0.3s ease;
}

.notifications-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 350px);
  height: 100%;
  z-index: -1;
}

#content {
  display: flex;
  flex-direction: column;
  gap: 164px;
}

.notifications-title {
  line-height: 100%;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  color: var(--clr-black);
  transition: color 0.3s ease;
}

.notifications-header {
  margin-bottom: 24px;
}

.notifications-divider {
  width: 350px;
  margin-left: -12px;
  height: 1px;
  background-color: var(--clr-primary-border);
  transition: background-color 0.3s ease;
}

.notifications-buttons-wrapper {
  display: flex;
  flex-direction: row;
  gap: 4px;
  background-color: var(--clr-btn);
  transition: background-color 0.3s ease;
  border-radius: 8px;
  padding: 8px;
}

.notifications-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  width: 100%;
  padding: 12px 0;
  font-size: 15px;
  color: var(--clr-pure-white);
  border-radius: 6px;
  transition: background-color 0.1s ease color 0.3s ease;
}

.notifications-body {
  margin-top: 12px;
  overflow-y: scroll;
}

.notification {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.notification-image {
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

#notifications-wrapper-notifications,
#notifications-wrapper-news {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

#notifications-wrapper-notifications {
  margin-bottom: 128px;
}

#notifications-wrapper-news {
  display: none;
  margin-bottom: 40px;
}

#notification-icon path {
  fill: #9ca3af;
}

@keyframes ring-with-pause {
  0% {
    transform: rotate(0);
  }
  1% {
    transform: rotate(15deg);
  }
  2% {
    transform: rotate(-10deg);
  }
  3% {
    transform: rotate(6deg);
  }
  4% {
    transform: rotate(-4deg);
  }
  5% {
    transform: rotate(2deg);
  }
  6% {
    transform: rotate(-1deg);
  }
  8% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}

#notification-icon.has-notifications {
  animation: ring-with-pause 8s ease-in-out infinite;
  transform-origin: top center;
  animation-delay: 2s;
}

#notification-icon.has-notifications path {
  fill: var(--clr-primary);
  transition: fill 0.3s ease;
}

.notification-count {
  display: none;
}

.notification-content {
  padding: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background-color: var(--clr-primary-border);
  transition: background-color 0.3s ease;
}

#notifications-wrapper-notifications,
.notifications-body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#notifications-wrapper-notifications::-webkit-scrollbar,
.notifications-body::-webkit-scrollbar {
  display: none;
}

.notification-date {
  font-size: 12px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: var(--clr-black);
  transition: color 0.3s ease;
  opacity: 0.75;
}

.notifications-buttons-wrapper {
  position: sticky;
  top: 0;
  z-index: 1;
}

.notifications-buttons-wrapper-wrapper {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: var(--clr-bg);
  transition: background-color 0.3s ease;
  padding-bottom: 16px;
}

.notification-title {
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: var(--clr-black);
  transition: color 0.3s ease;
}

.notification-text {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: var(--clr-black);
  transition: color 0.3s ease;
  margin-top: 4px;
}

.notification-content button {
  background-color: var(--clr-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 100%;
  border-radius: 8px;
  margin-top: 12px;
  padding: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--clr-pure-white);
}

.notifications-footer {
  position: fixed;
  bottom: 0;
  width: 350px;
  margin-left: -12px;
  padding: 20px 12px;
  background-color: var(--clr-bg);
  border-top: 1px solid var(--clr-primary-border);
  box-shadow: 0 -2px 10px #00000040;
  transition: background-color 0.3s ease;
}

.notifications-mark-read-btn {
  padding: 16px;
  background-color: var(--clr-btn);
  width: 100%;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--clr-pure-white);
  transition: color 0.3s ease;
  width: 326px;
}

.burger-menu-wrapper {
  position: fixed;
  width: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  height: calc(100% - 85px);
  right: 0;
  top: 85px;
  background-color: var(--clr-bg);
  transition: background-color 0.3s ease;
  display: block;
}

.burger-menu-wrapper-inner {
  padding: 24px;
}

.burger-menu-header {
  height: 85px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

#menuIcon {
  width: 58px;
  height: 58px;
  margin-left: -2px;
  margin-right: -9px;
}

#menuIcon path {
  fill: var(--clr-btn-text);
  transition: fill 0.3s ease;
}

.burger-menu-banner {
  background-image: url(/assets/image/galerie/towZasova.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--clr-primary-border);
}

.burger-menu-banner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.burger-menu-wrapper-text {
  padding: 6px 16px;
  line-height: 100%;
  background-color: rgba(255, 255, 255, 0.23);
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--clr-pure-white);
  transition: color 0.3s ease;
  border-radius: 6px;
}

.banner-logo {
  width: 210px;
}

.burger-menu-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.burger-menu-link-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 16px 24px;
  background-color: var(--clr-primary-border);
  transition: background-color 0.3s ease;
}

.burger-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.burger-menu-link-item path {
  fill: var(--clr-btn-text);
  transition: fill 0.3s ease;
}

ul.burger-menu-links li:first-child a {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

ul.burger-menu-links li:last-child a {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.burger-menu-link {
  color: var(--clr-black);
  transition: color 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 650;
  font-size: 18px;
  line-height: 100%;
  display: flex;
  flex-direction: row;
  gap: 1px;
}

.burger-menu-link-svg path {
  transition: fill 0.3s ease;
}

.burger-menu-link-text {
  transition: color 0.3s ease;
}

.burger-menu-wrapper {
  overflow: auto;
}

.burger-menu-link-item {
  position: relative;
}

.burger-menu-link-item img {
  width: 20px;
  height: 20px;
  opacity: 0;
}

.burger-menu-link-item::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--clr-black);
  mask: var(--icon-url) no-repeat center;
  mask-size: contain;
  transition: background-color 0.3s ease;
}

.burger-menu-link-text {
  display: flex;
  gap: 10px;
  align-items: center;
}

#background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.62);
  z-index: 8;
}

#background-overlay {
  opacity: 0;
  transition: opacity 300ms ease;
}

#background-overlay.show {
  opacity: 1;
}

.d-none {
  display: none !important;
}

.car-selector {
  background-color: var(--clr-bg);
  transition: background-color 0.3s ease;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
}

.mobile-search-wrapper {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 11;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  background-color: var(--clr-bg);
  opacity: 0;
}

.all {
  padding: 24px 32px;
  margin-top: -64px;
}

.mobile-search-header {
  padding: 8px 12px;
  background-color: var(--clr-bg);
  display: flex;
  justify-content: space-between;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000,
    0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  gap: 24px;
}

.mobile-search-header .search-icon-wrapper {
  padding: 0 !important;
  order: -1;
  background-color: transparent;
  width: 34px;
  height: 34px;
}

.mobile-search-header #searchClassic {
  width: 100%;
}

.mobile-search-header .search-bar {
  border-radius: 999px;
}

.mobile-search-header .search-wrapper {
  margin: 0;
}

.mobile-search-header #frm-searchForm {
  gap: 4px;
  background-color: transparent;
  border: 1px solid var(--clr-primary-border);
}

.mobile-search-header .search-icon {
  color: var(--clr-primary);
}

.mobile-search-header .search-wrapper,
.mobile-search-header #search-input-header {
  width: 100%;
}

.mobile-search-header #search-input-header {
  caret-color: var(--clr-primary);
}

.notifications-close-btn svg {
  width: 27px;
  height: 27px;
}

#mobile-search-close-btn svg {
  width: 27px;
  height: 27px;
}

.suggestions-wrapper {
  padding: 12px;
  margin-top: 8px;
}

.suggestions-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.suggestion-item {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ebebeb;
  font-size: 14px;
  color: var(--clr-black);
}

.search-products-wrapper {
  padding: 12px;
}

.search-products-title {
  font-size: 12px;
  line-height: 150%;
  color: var(--clr-black);
}

.search-products-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-products-divider {
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    #ebebeb,
    #ebebeb 4px,
    transparent 4px,
    transparent 8px
  );
  margin-top: 1px;
}

.button-submit-wrapper {
  position: fixed;
  bottom: 0px;
  width: calc(100% - 24px);
  padding: 12px;
  justify-content: center;
  display: none;
}

.mobile-search-btn-submit {
  width: 100%;
  background-color: var(--clr-primary);
  padding: 10px;
  color: var(--clr-pure-white);
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  align-items: center;
}

.mobile-search-btn-submit .search-icon {
  stroke: var(--clr-pure-white);
}

.burger-menu-body .header-lang-container {
  display: block;
}

.burger-menu-lang {
  padding: 6px;
  justify-content: space-between;
  display: flex;
  background-color: var(--clr-primary-border);
  border-radius: 6px;
  transition: background-color 0.3s ease;
  gap: 6px;
}

.burger-menu-lang-wrapper {
  width: 100%;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  padding: 6px 0;
  transition: background-color 0.3s ease;
}

.burger-menu-lang-wrapper.active {
  background-color: var(--clr-bg);
  transition: background-color 0.3s ease;
}

.burger-menu-lang-link {
  display: flex;
  gap: 4px;
  align-items: center;
  width: 100%;
  justify-content: center;
  color: var(--clr-black);
  transition: color 0.3s ease;
  font-weight: 650;
  font-family: "Montserrat", sans-serif;
}

.notifications-btn {
  position: relative;
  z-index: 2;
  flex: 1;
  background: transparent;
}

.background-slide {
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(50% - 8px);
  background-color: var(--clr-primary);
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 1;
  margin: 8px 0;
  border-radius: 6px;
}

.bg-pos-1 {
  transform: translateX(0%);
}

.bg-pos-2 {
  transform: translateX(100%);
}

.mobile-search-close-btn path {
  fill: var(--clr-black);
  transition: fill 0.3s ease;
}

.col-manuf input,
.col-model input,
.col-motor input {
  padding: 1px 12px;
  caret-color: var(--clr-pure-white);
  color: var(--clr-pure-white);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  width: calc(100% - 24px);
}

.purpose-container {
  display: flex;
  gap: 24px;
}

.purpose-wrapper {
  width: 25%;
  background-color: #312d2d;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.purpose-img {
  width: 100%;
}

#purpose-block {
  padding: 24px 32px 32px 32px;
  margin-top: -64px;
}

.purpose-heading {
  margin-bottom: 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-black);
}

.purpose-desc {
  margin-top: -24px;
  padding: 0 12px;
  padding-bottom: 24px;
  color: var(--clr-primary);
  font-size: 100%;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  white-space: normal;
  text-align: center;
}

.purpose-img {
  transition: transform 0.3s ease;
}

.car-selector-motor-wraper-mobile,
.car-selector-motor-wraper.car-selector-motor-wraper-desktop {
  display: none !important;
}

#notifications-mark-read-btn {
  border: 1px solid var(--clr-btn);
}

.car-selector-motor-item-wrapper {
  display: flex;
  align-items: center;
}

.what-we-offer-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 100%;
  color: var(--clr-black);
  transition: color 0.3s ease;
  text-transform: uppercase;
  text-align: center;
}

.what-we-offer-text {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  line-height: 150%;
  font-weight: 600;
  font-size: 20px;
  color: var(--clr-black);
  transition: color 0.3s ease;
}

.what-we-offer-container {
  margin-top: -64px;
}

.gallerySwiper {
  max-width: 1500px;
  width: 100%;
  margin-top: 32px;
}
.gallerySwiper .swiper-slide {
  width: auto;
  user-select: none;
  will-change: opacity, left, right, transform;
}

.what-we-offer-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background-color: #363636;
  border-radius: 24px;
}

#notifications-mark-read-btn {
  transition: border 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.what-we-offer-slide img {
  width: 100%;
}

.what-we-offer-slide {
  position: relative;
  cursor: pointer;
}

.what-we-offer-slide-text {
  position: absolute;
  white-space: normal;
  text-align: center;
  bottom: 16px;
  font-size: 32px;
  font-weight: 900;
  color: var(--clr-primary);
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: clamp(12px, 2vw, 36px);
}

#header-main.scrolled {
  box-shadow: 0 4px 12px #0003;
}

.header-progress-bar-wrapper {
  position: relative;
  width: 100%;
  height: 4px;
  margin-top: -4px;
}

.header-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--clr-primary);
  z-index: +1;
}

.header-progress-bar-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: #fffbf2;
}

.notification-content button {
  transition: background-color 0.3s ease;
}

.what-we-offer-heading-mobile {
  font-size: 28px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  line-height: 100%;
  color: var(--clr-pure-white);
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.swiper-slide.what-we-offer-slide.swiper-slide-next,
.swiper-slide.what-we-offer-slide.swiper-slide-prev,
.swiper-slide.what-we-offer-slide.swiper-slide {
  transform: scale(0.9);
  transition: transform 0.3s ease, transform-origin 0.3s ease;
  transform-origin: bottom center;
}

.swiper-slide.what-we-offer-slide.swiper-slide-next,
.swiper-slide.what-we-offer-slide.swiper-slide-prev {
  z-index: -1;
}

.swiper-slide.what-we-offer-slide.swiper-slide-next {
  transform-origin: bottom right;
}

.swiper-slide.what-we-offer-slide.swiper-slide-prev {
  transform-origin: bottom left;
}

.swiper-slide.what-we-offer-slide.swiper-slide-active {
  transform: scale(1.15);
  transition: transform 0.3s ease;
}

.gallery-swiper-btn-next-icon,
.gallery-swiper-btn-prev-icon {
  width: 15px !important;
  height: 22px !important;
  transform: scale(0.9);
}

.gallery-swiper-btn-next-icon {
  margin-left: 2px;
}

.gallery-swiper-btn-prev-icon {
  margin-right: 2px;
}

#get-an-offer,
#contact-btn {
  padding-right: 24px;
}

#gallery-swiper-next,
#gallery-swiper-prev {
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 10;
  background-color: var(--clr-primary);
  padding: 8px 10.5px;
  border-radius: 999px;
  box-shadow: 0 8px 10px #0000004d;
  transition: backgroiund-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.what-we-offer-mobile-show-all {
  display: none;
  padding: 5px 12px;
  background-color: var(--clr-primary);
  border-radius: 999px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  align-items: center;
  gap: 6px;
  text-transform: lowercase;
  font-size: 14px;
}

.gallery-swiper-btn-next-icon path,
.gallery-swiper-btn-prev-icon path {
  fill: var(--clr-pure-white);
  transition: fill 0.3s ease;
}

.gallery-swiper-btn-prev-icon {
  transform: rotate(180deg) scale(0.9);
}

.what-we-offer-slide img {
  transition: transform 0.3s ease;
}

.what-we-offer-slide {
  overflow: hidden;
}

.section-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 50px;
  line-height: 100%;
  color: var(--clr-black);
  text-transform: uppercase;
  margin-top: 6px;
  transition: color 0.3s ease;
}

.section-subheading {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: var(--clr-black);
  transition: color 0.3s ease;
}

.how-it-works-cards-wrapper {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  margin-top: 32px;
  gap: 32px;
  position: relative;
}

.how-it-works-card {
  width: 100%;
  border: 1px solid var(--clr-primary-border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--clr-wrapper-bg);
  transition: border 0.3s ease, background-color 0.3s ease;
}

.cards-pin-spacer {
  width: 100%;
  height: 0; /* JS bude přepisovat */
  display: block;
  pointer-events: none;
}

#about-us-top-svg path {
  transition: fill 0.3s ease;
}

.about-us-page {
  width: 100%;
}

.how-it-works-section,
.about-us-section,
.gallery-section-container,
.map-section-container,
.why-us-section-container,
.blog-section-container,
.we-cover-section,
.what-we-offer-page-container,
.blog-container,
.discount-container,
.contact-page-contaier,
.container-default,
.bike-rack-container,
.blog-title-wrapper {
  width: calc(100% - 48px);
}

.partnerInfo img {
  width: 100%;
}

.how-it-works-card-number {
  width: fit-content;
  padding: 10px;
  background-color: var(--clr-primary);
  border-radius: 999px;
  color: var(--clr-pure-white);
  transition: color 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  display: flex;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.how-it-works-card-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 100%;
  color: var(--clr-primary);
  transition: color 0.3s ease;
}

.how-it-works-pt2 {
  color: var(--clr-black);
}

.how-it-works-card-text {
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: var(--clr-btn-text);
  transition: color 0.3s ease;
}

.about-us-section-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 59px;
}

.about-us-section-img img {
  border-radius: 24px;
  height: 100%;
}

#about-us-top-svg {
  max-width: 200px;
}

.about-us-heading,
.about-us-section-heading-wrapper {
  width: fit-content;
}
.about-us-section-heading-wrapper {
  display: flex;
  flex-direction: column;
}

.about-us-section-img {
  flex-direction: row-reverse;
  display: flex;
  align-items: center;
}

.about-us-section-text {
  max-width: 650px;
}

.who-are-we-text {
  margin-top: 24px;
  font-size: 20px;
  line-height: 150%;
  color: var(--clr-btn-text);
  font-weight: 500;
}

.about-us-stats {
  display: flex;
  flex-direction: column;
}

.about-us-stats-wrapper {
  display: flex;
}

#reveal-rect-about-us {
  width: 0;
}

.about-us-btns-wrapper {
  display: flex;
  gap: 16px;
  margin: 16px 0;
}

.who-are-we-text a {
  color: var(--clr-btn-text);
}

.about-us-section-btn {
  padding: 16px 32px;
  border-radius: 32px;
  font-weight: 500;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  line-height: 100%;
  transition: border 0.3s ease, color 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.about-us-section-btn-primary {
  background-color: var(--clr-primary);
  color: var(--clr-pure-white);
  border: 1px solid var(--clr-primary);
}

.about-us-section-btn-secondary {
  color: var(--clr-primary);
  background-color: transparent;
  border: 1px solid var(--clr-primary);
}

.link {
  color: var(--clr-primary) !important;
  text-decoration: underline;
}

.about-us-stats-label {
  margin: 0;
}

.map-section-container {
  display: flex;
  flex-direction: column-reverse;
}

.about-us-stat {
  color: var(--clr-primary);
  font-size: 36px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  line-height: 150%;
}

.about-us-stats-label {
  font-size: 18px;
  line-height: 150%;
  color: var(--clr-black);
  text-align: center;
}

.about-us-stats-tablet,
.about-us-stat-icon {
  display: none;
}

.about-us-section-btn-primary {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--clr-pure-white);
  padding: 0px;
  border-radius: 999px;
  height: 0px;
  width: 0px;
}

.btn-arrow-wrapper svg path {
  fill: var(--clr-primary);
}

.gallery-img {
  width: 100%;
  height: auto;
  user-select: none;
  border-radius: 24px;
  position: relative;
}

.pin-spacer {
  width: 100%;
  margin: 0 auto !important;
}

.gallery-swiper-arrow-wrapper {
  position: absolute;
  top: 0px;
  right: -1px;
  background-color: var(--clr-bg);
  width: 92px;
  height: 92px;
  border-bottom-left-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.gallery-swiper-arrow-wrapper a {
  display: flex;
  width: 80%;
  height: 80%;
  background-color: var(--clr-primary);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
}

.gallery-swiper-mask-1 {
  position: absolute;
  top: 0px;
  right: 90px;
  rotate: 90deg;
  width: 36px;
  height: 36px;
}

.gallery-swiper-mask-2 {
  position: absolute;
  top: 92px;
  right: -1px;
  rotate: 90deg;
  width: 36px;
  height: 36px;
}

.gallery-swiper-mask-1 path,
.gallery-swiper-mask-2 path {
  transition: fill 0.3s ease;
}

.gallerySectionSwiper .swiper-slide {
  cursor: pointer;
}

.gallerySectionSwiper .swiper-slide a {
  transition: rotate 0.3s ease, transform 0.3s ease;
}

.gallery-section-container.container.scroll-section {
  height: auto !important;
  max-height: unset !important;
  padding: 0 !important;
  padding-top: 105px !important;
}

.gallery-section-heading-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

#gallery-section-swiper-next,
#gallery-section-swiper-prev {
  display: flex;
  background-color: var(--clr-primary);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#gallery-section-swiper-prev {
  rotate: 180deg;
}

#gallery-section-swiper-next svg path,
#gallery-section-swiper-prev svg path {
  transition: fill 0.3s ease;
}

#gallery-section-swiper-next svg,
#gallery-section-swiper-prev svg {
  padding: 19px 11px;
}

.gallery-section-swiper-actions {
  display: flex;
  gap: 16px;
}

.gallery-section-subheading {
  margin-bottom: 16px;
}

.scroll-section {
  position: relative;
  overflow: hidden;
  height: auto;
}

.cards-container {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
}

.card {
  flex: 0 0 auto;
  width: auto;
  height: calc(85vh - 198px);
  max-height: 600px;
  margin-right: 32px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map svg {
  width: 1400px;
  height: auto;
}

.mapTooltip {
  position: absolute;
  padding: 24px;
  background-color: var(--clr-pure-white);
  border: 1px solid var(--clr-primary-border);
  border-radius: 8px;
}

.partnerInfo {
  display: none;
}

#mapInfo {
  position: absolute;
  right: 7.5%;
  top: 10%;
  width: 25%;
  align-items: flex-start;
  display: inline-flex;
}

.mapInfoText {
  color: var(--clr-black);
  transition: color 0.3s ease;
}

.mapArrow svg {
  max-width: 80px;
}

.map svg .area {
  fill: var(--clr-map);
  transition: fill 0.3s ease;
}

.mapTooltip h2 {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--clr-primary-border);
}

.mapTooltip ul {
  padding-top: 8px;
  font-size: 16px;
  color: var(--clr-btn-text);
  font-weight: 500;
  list-style: inside;
}

.mobile-only {
  display: none;
}

.modal {
  max-width: 800px;
}

.overlay {
  display: none;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(32, 32, 32, 0.8);
  z-index: 1000;
  overflow-y: auto;
}

.overlay .modal {
  margin: auto 0;
}

.modal .content {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 32px 32px 0px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  width: 50%;
}

.modal-content {
  background-color: var(--clr-pure-white);
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 32px;
  border-radius: 10px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.modal-content img {
  width: 50%;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  height: auto;
  object-fit: cover;
}

.orange.twpTitle {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.twpAddress {
  font-size: 12px;
  align-items: anchor-center;
  color: #525252;
  display: inline-flex;
  text-decoration: underline;
  transition: color 0.3s ease;
  font-weight: 500;
}

#contact-btn {
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 20px;
}

.twpAddress svg {
  fill: #525252;
  transition: fill 0.3s ease;
}

.modal-btn {
  width: 100%;
  padding: 14px 32px;
  background-color: var(--clr-primary);
  border-radius: 12px;
  color: var(--clr-pure-white);
  font-weight: 500;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  margin-top: auto;
  border: 1px solid var(--clr-primary);
  transition: color 0.3s ease, background-color 0.3s ease;
}

.modal-close {
  cursor: pointer;
  fill: var(--clr-pure-white);
  position: absolute;
  top: 16px;
  right: 16px;
}

.modal-close path {
  transition: fill 0.3s ease;
}

#partnerForm-partner {
  font-size: 20px;
  font-weight: 600;
  margin: 16px 0;
  font-family: "Montserrat";
  background-color: transparent;
  color: var(--clr-black);
}

.why-us-section-container {
  display: flex;
  gap: 32px;
  align-items: center;
}

.why-us-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.why-us-heading {
  transition: color 0.3s ease;
  width: fit-content;
}

.why-us-text-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
  color: var(--clr-black);
  transition: color 0.3s ease;
}

.why-us-text {
  color: var(--clr-map-arrow);
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  margin-top: 6px;
}

.why-us-text-wrapper-first {
  display: flex;
}

.why-us-text-divider {
  min-width: 4px;
  border-radius: 999px;
  background-color: var(--clr-black);
  margin-right: 24px;
  transition: background-color 0.3s ease;
}

.why-us-text-wrapper {
  margin: 4px 0;
}

.why-us-heading-wrapper {
  display: flex;
  flex-direction: column;
  width: fit-content;
  gap: 6px;
  position: relative;
}

.why-us-section-img {
  max-width: 850px;
}

.why-us-section-img img {
  width: 100%;
  border-radius: 24px;
}

.review-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 16px;
}

.review-grid-child-1 {
  grid-area: 1 / 1 / 2 / 7;
}
.review-grid-child-2 {
  grid-area: 1 / 7 / 2 / 11;
}
.review-grid-child-3 {
  grid-area: 1 / 11 / 3 / 16;
}
.review-grid-child-4 {
  grid-area: 2 / 1 / 3 / 5;
}
.review-grid-child-5 {
  grid-area: 2 / 5 / 3 / 11;
}

.google-btn {
  padding: 8px;
  display: inline-flex;
  border-radius: 16px;
  border: 1px solid var(--clr-primary-border);
  gap: 10px;
  align-items: center;
  height: fit-content;
  background-color: var(--clr-bg);
  transition: border 0.3s ease, background-color 0.3s ease;
  transform-origin: bottom right;
}

.partner-select-wrapper {
  position: relative;
}

.partner-open-svg {
  position: absolute;
  width: 14px;
  right: 16px;
  bottom: 15px;
  transition: transform 0.3s ease;
}

.partner-open-svg-open {
  transform: rotate(90deg);
}

.partner-form-hp {
  position: relative;
}

.partner-form-hp .partner-open-svg {
  bottom: 26px;
}

.google-logo-icon {
  width: 36px;
  height: 36px;
}

.google-btn-rating-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fbbc04;
}

.google-rating-text {
  color: var(--clr-btn-text);
  transition: color 0.3s ease;
}

.google-rating-wrapper,
.google-stars-wrapper {
  display: flex;
  align-items: center;
}

.google-rating-wrapper {
  gap: 6px;
}

.review-section-heading-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  align-items: flex-end;
}

.review-grid-child {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border: 1px solid var(--clr-primary-border);
  border-radius: 16px;
  justify-content: center;
  background-color: var(--clr-wrapper-bg);
  transition: border 0.3s ease, background-color 0.3s ease;
}

.review-card-name-wrapper {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
}

.preview-card-name {
  color: var(--clr-black);
  transition: color 0.3s ease;
}

.reviewIcon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
}

.review-card-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: var(--clr-btn-text);
  transition: color 0.3s ease;
}

.blog-section-heading-wrapper {
  display: flex;
  flex-direction: column;
  width: min-content;
  gap: 6px;
}

.blogSwiper {
  width: 100%;
  height: 100%;
}

.blogSwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blogSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blogSwiper {
  max-width: 1500px;
  margin-top: 32px;
}

.blogSwiper .swiper-slide {
  border-bottom-left-radius: 32px;
  border-top-right-radius: 32px;
  width: 300px;
  aspect-ratio: 3 / 4.5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-slide-heading {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--clr-pure-white);
  text-transform: uppercase;
  transition: color 0.3s ease;
  margin: 24px 24px 0 24px;
  line-height: 1.3em;
  user-select: none;
}

.blog-slide-text {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--clr-pure-white);
  transition: color 0.3s ease;
  user-select: none;
  white-space: pre-line;
  max-height: 25%;
  margin: 0px 24px 24px 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: box;
  box-orient: vertical;
  overflow: hidden;
  line-clamp: 3;
  block-overflow: ellipsis;
  overflow: hidden;
}

.footer {
  margin-top: 164px;
}

.partners-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.partners-track {
  display: block;
  white-space: nowrap;
  will-change: transform;
  --scroll-duration: 20s;
}

.partners-slider {
  display: inline-flex;
  gap: 64px;
  align-items: center;
  margin-right: 64px;
}

.partner-card {
  display: inline-flex;
  align-items: center;
}
.partner-img {
  width: 275px;
  height: auto;
  display: block;
  backface-visibility: hidden;
  transform: translateZ(0);
}

@keyframes scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(var(--translate-x), 0, 0);
  }
}

.partners-track.animating {
  animation: scroll var(--scroll-duration) linear infinite;
}

.partners-wrapper::before,
.partners-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to right,
    var(--clr-bg) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: --clr-bg 0.3s ease;
}
.partners-wrapper::after {
  right: 0;
  transform: rotateZ(180deg);
}
.partners-wrapper::before {
  left: 0;
}

.footer {
  color: var(--clr-pure-white);
}

.footer-wrapper {
  width: 100%;
  background-color: var(--clr-footer-bg);
  transition: background-color 0.3s ease;
}

.configuration-container,
.contact-info-container {
  margin-bottom: 24px !important;
}

.config-breadcrumb-list {
  display: flex;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 100%;
  font-size: 16px;
  color: var(--clr-black);
  transition: color 0.3s ease;
}

.breadcrumb-item-number {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
}

.breadcrumb-item a {
  color: var(--clr-black);
}

.breadcrumb-item-icon-wrapper {
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-primary-border);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.breadcrumb-separator {
  background-color: var(--clr-primary-border);
  width: 64px;
  height: 2px;
  transition: background-color 0.3s ease;
}

.footer-wrapper .container {
  padding-top: 48px;
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-contact-time-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-upper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}

.footer-need-help {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 150%;
  font-size: 28px;
  text-transform: uppercase;
}

.contact-time-info {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
}

.footer-contact-wrapper {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-btn-primary {
  background-color: var(--clr-primary);
  color: var(--clr-pure-white);
  border-radius: 32px;
  padding: 22px 60px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
}

.footer-btn-secondary {
  background-color: var(--clr-pure-white);
  border-radius: 999px;
  padding: 10.5px 12px;
}

.footer-btn-secondary svg {
  width: 40px;
  height: 40px;
}

.footer-middle,
.towpoint-rights {
  display: flex;
}

.footer-middle {
  justify-content: space-between;
}

.footer-down-section img {
  max-width: 275px;
}

.footer-down-section {
  width: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-down-section-first {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-logo-text {
  color: var(--clr-pure-white);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
}

.footer-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 20px;
}

.footer-social-wrapper {
  display: inline-flex;
  gap: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 10px;
  align-items: center;
  color: var(--clr-pure-white);
}

.footer-socials-wrapper {
  display: flex;
  flex-direction: column;
}

.contact-time-info a {
  color: var(--clr-pure-white);
}

address {
  font-style: normal;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer .google-btn {
  background-color: var(--clr-pure-white);
}

.footer-social-icon {
  border-radius: 6.7px;
}

.footer .google-btn .google-rating-text {
  color: #333e48;
}

.footer-link a {
  color: var(--clr-pure-white);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 200%;
  transition: opacity 0.3s ease;
}

#year {
  display: inline-block;
}

.footer-contact-separator {
  gap: 18px;
  display: flex;
  align-items: center;
}

.bg-image-container {
  max-width: 1750px;
  margin: 0 auto;
  position: relative;
  padding: 0 24px;
}

.container-upper {
  margin-top: 105px;
}

.main-bg-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.main-bg-image {
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.main-bg-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 64px;
  line-height: 100%;
  color: var(--clr-pure-white);
  text-transform: uppercase;
  transition: color 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
}

.container-search {
  max-width: 850px;
}

.main-bg-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  color: var(--clr-pure-white);
  transition: color 0.3s ease;
}

.back-home-btn {
  display: inline-flex;
  width: min-content;
  padding: 8px 20px 8px 8px;
  gap: 16px;
  background-color: var(--clr-primary);
  border-radius: 32px;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: #333e48;
  transition: transform 0.3s ease;
}

.back-home-btn svg path {
  transition: fill 0.3s ease;
}

.back-home-icon-wrapper {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--clr-btn);
  border-radius: 999px;
}

.maskot-img {
  position: absolute;
  right: 3%;
  bottom: -25%;
  width: 15%;
  height: auto;
}

.main-bg-content {
  width: calc(100% - 92px);
}

.configuration-form {
  display: flex;
  justify-content: space-between;
}

.breadcrumb {
  margin-bottom: 32px;
}

.order-summary-container {
  height: min-content;
}

.order-summary-container.is-sticky {
  position: sticky;
  top: 99px;
}

.Configuration-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tow-type-card-container {
  display: flex;
  gap: 24px;
}

.tow-type-card {
  user-select: none;
  cursor: pointer;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--clr-primary);
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.more-info-text {
  font-size: 23px;
  font-weight: 700;
  display: inline-block;
  line-height: 100%;
  color: var(--clr-black);
  transition: color 0.3s ease;
}

.more-info-subtext {
  font-size: 16px;
  font-weight: 200;
  display: inline-block;
  color: var(--clr-black);
  transition: color 0.3s ease;
}

.more-info-checkbox-container {
  display: flex;
  gap: 8px;
}

.more-info-checkbox-wrapper {
  padding: 8px;
  border: 1px solid var(--clr-primary-border);
  border-radius: 6px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: border 0.3s ease;
}

.more-info-checkbox-wrapper.big {
  min-width: max-content;
}

.about-us-page .about-us-section-btn.about-us-section-btn-secondary {
  opacity: 0;
  user-select: none;
  cursor: default;
}

.more-info-checkbox-label {
  font-size: 16px;
  color: var(--clr-black);
  transition: color 0.3s ease;
  font-weight: 700;
}

.more-info-checkbox {
  border-radius: 999px !important;
  border: 1px solid var(--clr-primary-border) !important;
  transition: border 0.3s ease !important;
  --focus: none !important;
}

.more-info-checkbox::after {
  left: 7.5px !important;
  top: 5px !important;
  width: 5.38px !important;
  height: 8.46px !important;
}

.configuration-VIN-code-container {
  display: flex;
  gap: 8px;
}

.configuration-VIN-code-input {
  border: 1px solid var(--clr-primary-border);
  transition: border 0.3s ease;
  width: 100%;
  border-radius: 6px;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.configuration-VIN-code-input.input-fail {
  border: 2px solid rgb(230, 57, 70);
}

.configuration-VIN-code-label {
  white-space: nowrap;
  font-size: 19px;
  font-weight: 600;
  align-self: anchor-center;
  color: var(--clr-black);
  transition: color 0.3s ease;
}

.configuration-section-heading {
  font-size: 23px;
  font-weight: 700;
  width: fit-content;
  color: var(--clr-black);
  transition: color 0.3s ease;
}

.configuration-divider {
  border-top: 2px dashed var(--clr-primary);
  margin-bottom: 24px;
}

.tow-type-image {
  border-radius: 14px;
  width: calc(100% - 6px);
  margin: 3px;
}

.tow-type-description-wrapper {
  padding: 24px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tow-type-price-currency {
  font-weight: 900;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  color: var(--clr-pure-white);
}

.tow-types-checkboxes-wrapper {
  display: flex;
  gap: 24px;
}

.tow-type-checkbox-wrapper {
  display: flex;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--clr-primary-border);
  border-radius: 6px;
  gap: 12px;
  cursor: pointer;
  transition: border 0.3s ease;
}

.tow-type-checkbox {
  --focus: none !important;
  border: 1px solid var(--clr-primary-border) !important;
  transition: border 0.3s ease !important;
}

.Configuration-wrapper #partnerForm-partner {
  margin: 0;
  padding: 12px 40px 12px 12px;
  border: 1px solid var(--clr-primary-border);
  transition: border 0.3s ease;
  font-size: 18px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.tow-type-card-price {
  display: flex;
  flex-wrap: wrap;
  padding: 0 24px 24px 24px;
  gap: 4px;
  align-items: center;
  font-weight: 900;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  color: var(--clr-pure-white);
}

.price-estimate {
  font-weight: 800;
}

.discount-code-icon {
  width: 32px;
  height: 32px;
}

.discount-code-wrapper {
  border-radius: 6px;
  display: flex;
  border: 1px solid var(--clr-primary-border);
  padding: 7px 12px;
  transition: border 0.3s ease;
  gap: 12px;
  align-items: center;
  position: relative;
}

.tow-type-checkbox-label {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--clr-black);
  transition: color 0.3s ease;
}

.tow-type-checkbox-wrapper:has(.tow-type-checkbox:checked) {
  background-color: #fffaf2;
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

body.dark
  .tow-type-checkbox-wrapper:has(.tow-type-checkbox:checked)
  .tow-type-checkbox-label {
  color: #000000 !important;
}

body.dark
  .tow-type-checkbox-wrapper:has(.tow-type-checkbox:checked)
  .tow-type-checkbox {
  border-color: var(--clr-primary) !important;
}

.partner-select-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.use-discount {
  font-size: 18px;
  font-weight: 700;
  margin-left: auto;
  cursor: pointer;
  color: var(--clr-primary);
  font-family: "Montserrat", sans-serif;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.discount-input {
  height: 100%;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
}

.order-summary-wrapper {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--clr-primary-border);
  transition: border 0.3s ease;
}

.order-summary-title {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-black);
  transition: color 0.3s ease;
}

.order-summary-divider {
  width: 100%;
  height: 1px;
  background-color: var(--clr-primary-border);
  margin: 12px 0;
}

.order-summary-car,
.order-summary-tow-fastening,
.order-summary-order-place,
.order-summary-discount-code {
  font-size: 20px;
  font-weight: 700;
  margin: 4px 0 2px 0;
  color: var(--clr-black);
  transition: color 0.3s ease;
}

.order-summary-selected-car,
.order-summary-selected-tow-fastening,
.order-summary-selected-place,
.order-summary-discount {
  font-size: 18px;
  font-weight: 600;
  color: #626c7f;
}

.order-summary-car-image {
  width: 60%;
  height: auto;
}

.car-selector-model-name,
.mymodel {
  color: var(--clr-black);
  transition: color 0.3s ease;
}

.car-selector-motor-wraper,
.car-selector-motor-wraper .motorLink {
  color: var(--clr-black) !important;
  transition: color 0.3s ease;
}

#model a.modelLink {
  color: var(--clr-black) !important;
  transition: color 0.3s ease;
}

.order-summary-total-wrapper {
  margin-top: 12px;
  background-color: var(--clr-primary-border);
  transition: background-color 0.3s ease;
  padding: 12px;
  border-radius: 6px;
  color: var(--clr-black);
  transition: color 0.3s ease;
}

.configuration-montage-reset-btn.back {
  display: block;
  width: auto;
  text-align: center;
}

.order-summary-total-text,
.order-summary-currency {
  font-size: 19px;
  font-weight: 700;
}

.order-summary-total-price {
  font-size: 26px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
}

.order-summary-total-text,
.order-summary-total-price,
.order-summary-currency {
  display: inline-block;
}

.configuration-submit-btn,
.configuration-montage-reset-btn {
  width: 100%;
  padding: 10px 16px;
  border-radius: 8px;
  margin-top: 12px;
}

.configuration-submit-btn {
  background-color: var(--clr-primary);
  color: var(--clr-pure-white);
}

.configuration-btn-text-primary,
.configuration-btn-secondary-text-primary {
  font-size: 22px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 4px;
}

.configuration-btn-text-secondary,
.configuration-btn-secondary-text-secondary {
  font-size: 16px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.configuration-form {
  gap: 102px;
}

.order-form-inputs-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-form-inputs-wrapper {
  display: flex;
  gap: 12px;
}

.contact-info-form-input-label {
  font-weight: 700;
  color: var(--clr-input-label);
  font-family: "Montserrat", sans-serif;
  transition: color 0.3s ease;
  height: auto;
}

.order-form-input-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-wrapper {
  display: flex;
  position: relative;
}

.tel-input-info-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  display: flex;
  width: min-content;
  gap: 4px;
  align-items: center;
}

/* Chrome / Edge / Safari */
.contact-info-form-input:-webkit-autofill,
.contact-info-form-input:-webkit-autofill:hover,
.contact-info-form-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fffaf2 inset !important;
  box-shadow: 0 0 0 1000px #fffaf2 inset !important;
  -webkit-text-fill-color: #000 !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Firefox */
.contact-info-form-input:-moz-autofill,
.contact-info-form-input:-moz-autofill:hover,
.contact-info-form-input:-moz-autofill:focus {
  box-shadow: 0 0 0 1000px #fffaf2 inset !important;
  color: #000 !important;
}

#notes {
  height: auto;
}

.tel-input-info-text {
  line-height: 100%;
  font-weight: 500;
  font-size: 18px;
  color: var(--clr-black);
}

.contact-info-form-input {
  font-family: "Open Sans", sans-serif;
}

#notes {
  text-align: left;
  vertical-align: top;
  line-height: 1.2;
  resize: vertical;
  outline: none;
  min-height: 150px;
  font-size: 18px;
  background: transparent;
}

#accept-terms {
  border: 2px solid var(--clr-primary-border) !important;
  position: absolute;
}

.accept-terms-label {
  text-indent: 32px;
  margin-left: 0 !important;
  font-size: 16px !important;
  user-select: none;
  font-weight: 600;
  color: var(--clr-input-label);
  font-family: "Montserrat", sans-serif;
}

.free-reduction {
  font-size: 16px !important;
  user-select: none;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin: 8px 0;
  color: var(--clr-black);
}

.order-form-inputs-wrapper.margin {
  margin-top: 6px;
}

.accept-terms-input::after {
  top: 2px !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 6px !important;
}

.contact-info-form-input {
  border: 2px solid var(--clr-primary-border);
  transition: border 0.3s ease;
  width: calc(100% - 27px);
  border-radius: 6px;
  padding: 12px;
  font-size: 18px;
  font-weight: 500;
  transition: border 0.3s ease;
}

.order-summary-container {
  max-width: 450px;
  width: 100%;
}

.configuration-montage-reset-btn {
  background-color: #fffbf2;
  border: 1px solid var(--clr-primary);
  color: var(--clr-primary);
  display: inline-block;
  text-align: center;
  width: -webkit-fill-available;
}

.configuration-VIN-code-container {
  margin-top: -16px;
}

.we-cover-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.we-cover-text {
  color: var(--clr-map-arrow);
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0.02em;
  transition: color 0.3s;
  font-weight: 500;
}

.we-cover-text-wrapper {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#we-cover-top-svg {
  max-width: 200px;
}

.what-we-offer-page-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.what-we-offer-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background-color: #363636;
  border-radius: 24px;
  padding-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.what-we-offer-page-img {
  width: inherit;
  border-radius: inherit;
  transition: transform 0.3s ease;
}

.container-margin-top {
  margin-top: -24px;
}

.how-it-works-page-cards-wrapper {
  margin: 0 !important;
}

.how-it-works-text {
  color: var(--clr-btn-text);
  font-weight: 600;
  font-size: 22px;
}

.how-it-works-page-text {
  max-width: unset !important;
}

.how-it-works-text ol {
  padding-left: 24px;
}

.blog-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-wrapper .blog-child:first-child {
  grid-area: 1 / 1 / 3 / 3;
}

.blog-child {
  width: 100%;
}

.blog-img {
  width: 100%;
}

.blog-page-child-wrapper {
  display: flex;
  flex-direction: column;
}

.blog-child {
  border-radius: 16px;
  padding: 2px;
  background-color: var(--clr-lang-dropdown);
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.blog-child:hover {
  transform: scale(1.004);
}

.blog-img {
  border-radius: 16px;
  width: calc(100% - 6px);
  margin: 3px;
}

.blog-page-annot-wrapper {
  padding: 18px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog {
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
  color: var(--clr-black);
  transition: color 0.3s ease;
}

.blog-annot-text {
  color: var(--clr-map-arrow);
  font-size: 16px;
  line-height: 120%;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: box;
  box-orient: vertical;
  overflow: hidden;
  line-clamp: 3;
  block-overflow: ellipsis;
  overflow: hidden;
}

.discount-wrapper {
  display: flex;
}

.discount-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.discount-wrapper,
.discount-wrapper img {
  width: 100%;
}

.discount-wrapper img {
  border-radius: 16px;
}

.contact-map {
  width: 100%;
  border-radius: 16px;
  border: none;
}

.contact-page-contaier {
  position: relative;
}

.contact-page-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-page-wrapper #mapInfo {
  display: none !important;
}

.contact-info-container-content {
  margin: 0;
}

.contacts-heading {
  color: var(--clr-pure-white);
  margin-bottom: 24px;
}

.contact-info-link {
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  padding: 32px;
  border-radius: 16px;
  height: -webkit-fill-available;
  border: 1px solid var(--clr-pure-white);
}

.contact-info-wrapper a {
  font-weight: 600;
  font-size: 20px;
  color: var(--clr-black);
}

.contact-info-container-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
  padding: 0;
}

.contact-info {
  transition: color 0.3s ease;
}

.contact-page-wrapper .map-section-heading-wrapper {
  display: none;
}

.contact-page-text-wrapper {
  display: flex;
  justify-content: center;
}

.contact-page-text {
  color: var(--clr-map-arrow);
  font-size: 18px;
  line-height: 120%;
  transition: color 0.3s ease;
  margin-top: 64px;
}

.contact-page-text a {
  color: var(--clr-primary);
}

.contact-info-icon-wrapper {
  padding: 12px;
  background-color: var(--clr-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  width: 52px;
  height: 52px;
  box-sizing: border-box;
}

.contact-info-wrapper-text-label {
  font-weight: 700;
  font-size: 16px;
  color: var(--clr-btn-text);
  font-family: "Montserrat", sans-serif;
  margin-bottom: 4px;
}

.scroll-to-top-wrapper {
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px 0 0;
  padding: 24px 6px 6px 24px;
  opacity: 0;
  transition: opacity 0.7s ease;
  cursor: pointer;
  z-index: 1000;
  pointer-events: none;
  cursor: default;
  transition: background-color 0.3s ease, opacity 0.7s ease;
}

.scroll-to-top-wrapper svg path {
  fill: var(--clr-pure-white);
  transition: fill 0.3s ease;
}

.cookies-wrapper {
  border-top: 4px solid var(--clr-primary);
  z-index: 10000;
  width: 100%;
  position: fixed;
  bottom: 0;
  padding: 24px 0;
  background-color: var(--clr-bg);
  transition: border 0.3s ease, background-color 0.3s ease;
}

.cookies-content-wrapper {
  display: flex;
  gap: 24px;
}

.cookies-content {
  color: var(--clr-btn-text);
  font-size: 18px;
  line-height: 150%;
  transition: color 0.3s ease;
  width: 100%;
}

.cookies-btn-wrapper {
  display: flex;
  gap: 8px;
  margin-left: auto;
  width: min-content;
  flex-direction: column-reverse;
}

.cookies-btn {
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 400;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
}

.cookies-btn-primary {
  background-color: transparent;
  border: 2px solid var(--clr-primary);
  color: var(--clr-primary);
}

.cookies-btn-secondary {
  background-color: var(--clr-primary);
  color: var(--clr-pure-white);
  border: 2px solid var(--clr-primary);
}

.cookies-text-container {
  display: flex;
  gap: 24px;
}

.cookies-short {
  display: none;
}

#cookieOptionModal {
  display: none;
  position: fixed;
  overflow-y: auto;
  top: 0;
  z-index: 99999;
  height: 100%;
  margin: 0;
  padding: 12px;
  background: rgba(32, 32, 32, 0.8);
  max-width: unset;
  width: calc(100% - 24px);
  justify-content: center;
}

#cookieOptionModal.active {
  display: flex;
}

.cookies-content strong {
  font-weight: 700;
}

.cookie-modal-dialog {
  max-width: 800px;
  margin: auto 0;
}

.cookie-modal-dialog .modal-content-cookies {
  padding: 32px;
  flex-direction: column;
  display: flex;
  background-color: var(--clr-bg);
  border-radius: 8px;
}

.cookie-modal-dialog .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cookie-modal-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--clr-black);
  transition: color 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.modal-header .close {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-accordion {
  border-radius: 10px;
  border: 2px solid var(--clr-primary);
}

.cookie-section-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-bottom: 2px solid var(--clr-primary);
  cursor: pointer;
}

.cookie-text-input-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-text {
  font-size: 14px;
  color: var(--clr-btn-text);
}

.cookie-section-wrapper:last-child {
  border-bottom: none;
}

.modal-info-text {
  margin-bottom: 24px;
  color: var(--clr-btn-text);
}

.cookies-btns-wrapper {
  margin-top: 16px;
  margin-left: auto;
  width: max-content;
  display: flex;
  gap: 12px;
}

.cookies-input {
  border: 2px solid var(--clr-primary) !important;
  outline: var(--clr-primary) !important;
  background: transparent !important;
}

.cookies-input:focus {
  box-shadow: none !important;
}

.cookies-input:checked {
  background: var(--clr-primary) !important;
}

.cookies-input::after {
  top: 2.5px !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 7px !important;
}

.cookies-btns-wrapper .btn {
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 400;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  cursor: pointer;
}

.cookies-btns-wrapper .btn-secondary {
  background-color: var(--clr-primary);
  color: var(--clr-pure-white);
  border: 2px solid var(--clr-primary);
}

.cookies-btns-wrapper .border-secondary {
  background-color: transparent;
  border: 2px solid var(--clr-primary) !important;
  color: var(--clr-primary);
  font-weight: 500;
}

.succes-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(19, 19, 19, 0.8);
  z-index: 99999;
}

.container-default {
  color: var(--clr-black) !important;
}

.blog-wrapper-inner {
  padding: 24px;
}

body.dark .order-summary-car-image {
  border-radius: 8px;
  margin-top: 12px;
}

.link-hidden {
  opacity: 0;
  pointer-events: none;
  user-select: none;
}

.search-result-wrapper {
  padding: 24px;
  border-radius: 16px;
  background-color: var(--clr-lang-dropdown);
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.search-results-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  height: 52px;
}

.serach-result-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--clr-black);
  transition: color 0.3s ease;
}

.search-results-header-wrapper {
  margin-bottom: 24px;
}

.search-result-page-title {
  font-weight: 600;
  display: inline-block;
  width: -webkit-fill-available;
  margin-right: 48px;
}

.link-text {
  font-size: 14px;
  color: var(--clr-btn-text);
  font-weight: 400;
}

.search-result-page-text {
  font-size: 14px;
  color: var(--clr-black);
  line-height: 150%;
  transition: color 0.3s ease;
}

.search-result-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  border-radius: 12px;
  position: relative;
  background-color: var(--clr-lang-dropdown);
}

.search-result-external-link-icon {
  transition: stroke 0.3s ease;
  stroke: var(--clr-btn-text);
  position: absolute;
  top: 24px;
  right: 24px;
}

.bike-rack-container {
  padding: 0 24px;
  margin: 0 auto;
  max-width: 1500px;
  display: flex;
  gap: 48px;
}

.bike-rack-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bike-rack-img {
  width: 100%;
  height: auto;
}

/* ŠTÍTKY V MOBILNÍ CO NABÍZÍME SEKCI */
.what-we-offer-label {
  display: none !important;
}

.blog-hp-background-img {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 16px;
  z-index: -1;
}

.map-param-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}

.map-param-icon {
  width: 24px !important;
  height: 24px !important;
  margin: 4px 0;
}

.lifetime-warranty-wrapper {
  display: flex;
  gap: 24px;
  margin: 24px 0;
}

.lifetime-warranty-wrapper div,
.lifetime-warranty-wrapper div img {
  width: 100% !important;
  border-radius: 16px;
}

.tow-types-checkboxes-wrapper > label {
  width: 100%;
}

.configuration-VIN-code-container {
  position: relative;
}

#frm-calculator-calculator-partner {
  height: 48px;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid var(--clr-primary-border);
}

#frm-calculator-calculator-partner .partner-open-svg path {
  fill: var();
}

textarea#frm-orderForm-orderForm-note.contact-info-form-input {
  resize: vertical;
  outline: none;
  height: 100px;
}

.order-form-input-wrapper.grid1 select {
  width: -webkit-fill-available;
  height: auto;
}
