@font-face {
  font-family: "Roboto Condensed";
  src: url("/common/static/fonts/RobotoCondensed/RobotoCondensed-Regular.woff2") format("woff2"), url("/common/static/fonts/RobotoCondensed/RobotoCondensed-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: RobotoCondensed-Bold;
  src: url("/common/static/fonts/RobotoCondensed/RobotoCondensed-Bold.ttf");
}
@font-face {
  font-family: RobotoCondensed-Italic;
  src: url("/common/static/fonts/RobotoCondensed/RobotoCondensed-Italic.ttf");
}
@font-face {
  font-family: RobotoCondensed-Light;
  src: url("/common/static/fonts/RobotoCondensed/RobotoCondensed-Light.ttf");
}
@font-face {
  font-family: "BebasNeue-Regular";
  src: url("/common/static/fonts/bebas-neue/BebasNeue-Regular.woff2") format("woff2"), url("/common/static/fonts/bebas-neue/BebasNeue-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: RussoOne-Regular;
  src: url("/common/static/fonts/Russo_One/RussoOne-Regular.ttf");
}
@font-face {
  font-family: "Russo One";
  src: url("/common/static/fonts/Russo_One/RussoOne-Regular.woff2") format("woff2"), url("/common/static/fonts/Russo_One/RussoOne-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Exo2;
  src: url("/common/static/fonts/Exo_2/Exo2-VariableFont_wght.ttf");
}
@font-face {
  font-family: Comfortaa-Regular;
  src: url("/common/static/fonts/Comfortaa/Comfortaa-Regular.ttf");
}
@font-face {
  font-family: Comfortaa-Bold;
  src: url("/common/static/fonts/Comfortaa/static/Comfortaa-Bold.ttf");
}
@font-face {
  font-family: Race-sport;
  src: url("/common/static/fonts/race-sport/Race-sport.ttf");
}
@font-face {
  font-family: cross-boxed;
  src: url("/common/static/fonts/cross-boxed/cross-boxed.ttf");
}
@font-face {
  font-family: Urbanist-Bold;
  src: url("/common/static/fonts/Urbanist/Urbanist-Bold.ttf");
}
@font-face {
  font-family: Urbanist-Regular;
  src: url("/common/static/fonts/Urbanist/Urbanist-Regular.ttf");
}
@font-face {
  font-family: Urbanist-Light;
  src: url("/common/static/fonts/Urbanist/Urbanist-Light.ttf");
}
@font-face {
  font-family: Urbanist-Thin;
  src: url("/common/static/fonts/Urbanist/Urbanist-Thin.ttf");
}
@font-face {
  font-family: Axiforma-Regular;
  src: url("/common/static/fonts/Axiforma/Axiforma-Light.ttf");
}
@font-face {
  font-family: Hind-bold;
  src: url("/common/static/fonts/Hind/Hind-Bold.ttf");
}
.carousel .car-cat-item {
  width: 204px;
  flex: 0 0 auto;
  text-align: center;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  padding: 10px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.carousel .car-cat-item img {
  width: 100px;
  margin-bottom: 5px;
}
.carousel .car-cat-item h2 {
  margin: 5px;
  font-size: calc(1.22em * var(--font-scale-factor));
  margin-top: -10px;
}
.carousel .car-cat-item:hover {
  box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.2);
  border: 1px solid rgb(149, 149, 149);
  transition: all 0.3s ease;
}

aside {
  width: 330px;
}

article {
  width: 970px;
  margin-bottom: 30px;
  height: fit-content;
}

.catalogue-title {
  color: #2b2b2b;
}
.catalogue-title h2 {
  font-family: "RobotoCondensed-Bold", sans-serif;
  font-size: calc(2.1rem * var(--font-scale-factor));
  margin: 0;
  padding-top: 0px;
  line-height: 40px;
}
.catalogue-title h3 {
  font-size: calc(1.3rem * var(--font-scale-factor));
  margin: 0;
  color: #4d4d4d;
  font-family: "RobotoCondensed-Light", sans-serif;
  line-height: 3;
}
.catalogue-title .catalogue-result {
  color: #4d4d4d;
  font-family: "RobotoCondensed-Light", sans-serif;
  width: 100%;
  height: 65px;
}

.filters-container .accordion-container {
  padding: 0 10px 10px 10px;
  font-size: 0.91rem;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 250px;
}

.catalogue-description {
  width: 810px;
  font-family: "RobotoCondensed-Light", sans-serif;
  color: #2b2b2b;
  background: white;
  padding: 20px;
  margin-top: 10px;
  border-radius: 8px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  position: relative;
}
.catalogue-description p {
  font-size: 1rem;
  margin: 0;
  line-height: 1.3;
}
.catalogue-description .description-text {
  max-height: 80px;
  overflow: hidden;
  transition: max-height 0.6s ease;
  position: relative;
}
.catalogue-description .description-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(to bottom, transparent, white);
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.catalogue-description.expanded .description-text {
  max-height: 1000px;
}
.catalogue-description.expanded .description-text::after {
  opacity: 0;
}
.catalogue-description.expanded .toggle-description .show-more {
  display: none;
}
.catalogue-description.expanded .toggle-description .show-less {
  display: inline;
}
.catalogue-description .toggle-description {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-size: 0.91rem;
  padding: 10px 0 0 0;
  font-family: "RobotoCondensed-Bold", sans-serif;
  transition: color 0.3s ease;
  text-decoration: underline;
}
.catalogue-description .toggle-description:hover {
  color: #0056b3;
  text-decoration: underline;
}
.catalogue-description .toggle-description .show-less {
  display: none;
}

.catalogue-banner {
  margin-top: 50px;
  border-radius: 8px;
}

#sort-select {
  margin-top: 10px;
}

.sort-label {
  padding: 22px 15px 0px 0px;
  font-size: 1.1rem;
  color: rgba(173, 173, 173, 0.9215686275);
  font-family: "RobotoCondensed-Bold";
}

.add-vehicle-container {
  width: 100%;
  background: radial-gradient(circle, #5e5e5e, #313131);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.add-vehicle-container .add-vehicle-title {
  color: #FFB300;
  font-family: "RobotoCondensed-Bold", sans-serif;
  font-size: calc(1.22rem * var(--font-scale-factor));
}
.add-vehicle-container .default-button {
  font-weight: 100 !important;
  width: 160px;
}
.add-vehicle-container .add-vehicle-using-vin {
  font-size: calc(1rem * var(--font-scale-factor));
  color: #d1d0d0;
  font-family: "RobotoCondensed-Light", sans-serif;
  cursor: pointer;
  text-decoration: underline;
}
.add-vehicle-container .selects-holder {
  margin-top: 10px;
  font-weight: 700;
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.products-container .product {
  width: calc(34% - 20px);
  background: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  height: 520px;
  transition: all 0.3s ease;
}
.products-container .product:hover {
  box-shadow: 0px 0px 9px rgba(10, 10, 0, 0.7);
}
.products-container .product .default-button {
  width: 100%;
  margin-top: 15px;
}
.products-container .product .warranty {
  font-size: 0.82rem;
  color: #797979;
  font-family: "RobotoCondensed-Light", sans-serif;
  text-decoration: underline;
  cursor: pointer;
}
.products-container .product .star-rating {
  display: flex;
  gap: 2px;
  margin-top: 8px;
  max-width: 8px;
}
.products-container .product .rating-text {
  font-size: 0.8rem;
  color: #000000;
  font-family: "RobotoCondensed", sans-serif;
  margin-left: 5px;
  margin-top: -1px;
}
.products-container .product .product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.products-container .product .product-image img {
  width: 156px;
  height: auto;
  border-radius: 4px;
  margin-bottom: 10px;
}
.products-container .product .product-name {
  font-size: 1rem;
  color: #2b2b2b;
  font-family: "RobotoCondensed-Bold", sans-serif;
  margin-bottom: 5px;
  margin-top: 5px;
  cursor: pointer;
}
.products-container .product .product-name span {
  font-size: 0.96rem;
  color: #4d4d4d;
  font-family: "RobotoCondensed-Light", sans-serif;
}
.products-container .product .product-price {
  font-size: 1.53rem;
  color: #D40000;
  font-family: "cross-boxed", sans-serif;
  text-align: center;
  font-weight: 200;
  letter-spacing: 1.7px;
  background: #efefef;
  padding-top: 5px;
}
.products-container .product .product-price sup {
  font-size: 0.8rem;
  vertical-align: super;
  padding-top: 5px;
}
.products-container .product .product-price span {
  font-family: "RobotoCondensed-Bold", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}
.products-container .product .part-no {
  font-size: 0.82rem;
  color: #797979;
  font-family: "RobotoCondensed-Light", sans-serif;
  margin-top: 5px;
}

/*# sourceMappingURL=catalogue-catalogue-base.css.map */
