/* --------------------- 
bootstrap variables
--------------------- */
:root {
  /*custom colors*/
  --brand: #000162;
  --primary: #000162;
  --secondary: #2b2929;
  --tertiary: #000162;
  --white: #ffffff;
  --black: #212529;
  --neutral: #e8e8e8;
  --light: #d2d2d2;
  --dark: #212529;
  /* boostrap colors */
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #ffffff;
  --bs-gray: #9C9C9C;
  --bs-gray-dark: #4A4A4A;
  /* theme colors */
  --bs-primary: var(--primary);
  --bs-secondary: #2b2929;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f0f0f0;
  --bs-dark: #212529;
  --bs-font-sans-serif: Arial, sans-serif;
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* borders */
  --bs-border-radius: 0rem;
  /* overwriting bootstrap colors*/
  --bs-link-color-rgb: $body-color;
  --bs-heading-color: var(--primary);
}

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


.img-cover {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.primary-bg {
  background-color: #f2f2f2;
  color: #333;
}

.secondary-bg {
  background-color: #2b2929;
  color: #f0f0f0;
}

.faller-gradient {
  background-image: linear-gradient(to right, #000162 0%, #000162 51%, #000162 100%);
  color: #ffffff;
}

/* --------------------- 
limiting the container-fluid width 
to ensure ultra-wide screen support
--------------------- */
@media (min-width: 1800px) {
  .container-fluid {
    width: 1780px;
  }
}

/* --------------------- 
custom width container for a more uneven, line breaking layout
use wisely...
--------------------- */
@media (min-width: 1300px) {
  .container.custom-container {
    max-width: 100%;
    margin: unset;
  }
}
@media (min-width: 1600px) {
  .container.custom-container {
    max-width: 1400px;
  }
}

/* --------------------- 
used on bootstrap rows to stretch the columns 
and is inner wrappers to fit the column biggest in height
--------------------- */
.row-eq-height {
  align-items: stretch;
}
.row-eq-height > div {
  align-items: stretch;
}
.row-eq-height > div > div {
  height: 100%;
}

body.faller-colors h1,
body.faller-colors h2,
body.faller-colors h3,
body.faller-colors h4,
body.faller-colors h5,
body.faller-colors h6,
body.faller-colors .h1,
body.faller-colors .h2,
body.faller-colors .h3,
body.faller-colors .h4,
body.faller-colors .h5,
body.faller-colors .h6 {
  font-weight: bold;
}

.subtitle {
    color: var(--primary);
    text-transform: uppercase;
}

.heading-large {
    font-size: 2.6rem;
    font-weight: 700;
    color: #acacac;
}

@media (max-width: 768px) {
  .heading-large {
    font-size: 2.0rem;
    font-weight: 700;
  }
}

.company-seo h2 {
    margin-bottom: 2rem;
}

.btn {
  font-weight: 700;
  text-align: center;
}
.btn:not(.small) {
  text-transform: uppercase;
}

.faller-btn-primary {
  background-size: 200% auto;
  color: #ffffff;
  background-image: linear-gradient(to right, #000162 0%, #000162 51%, #000162 100%);
  transition: 0.2s all ease-in;
}
.faller-btn-primary:hover {
  background-position: right center;
  color: #ffffff;
}
.faller-btn-primary:disabled {
  background-image: linear-gradient(to right, #212529 0%, #f0f0f0 51%, #212529 100%);
}

.faller-btn-outline,
.btn-outline {
  border: 2px solid #212529;
  background-color: transparent;
  transition: 0.2s all ease-in;
}
.faller-btn-outline:hover,
.btn-outline:hover {
  background-color: #212529;
  color: #f0f0f0;
}
.faller-btn-outline:hover svg path,
.btn-outline:hover svg path {
  fill: #f0f0f0;
}
.faller-btn-outline.negative,
.btn-outline.negative {
  border-color: #ffffff;
  color: #ffffff;
}
.faller-btn-outline.negative:hover,
.btn-outline.negative:hover {
  color: #212529;
  background-color: #ffffff;
}

.btn-list .btn {
  width: 100%;
}
.btn-list .btn:not(:last-child) {
  margin-bottom: 1rem;
}

.uf-btn-outline, .btn-outline {
    border: 2px solid var(--light);
    color: var(--light);
    transition: all 0.4s;
}

.uf-btn-outline:hover, .btn-outline:hover{
  border: 2px solid var(--primary);
  color: var(--primary);
}

/* --------------------- 
overwriting bootstrap buttons
--------------------- */
.btn-outline-primary {
  --bs-btn-color: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-color: var(--white);
  --bs-btn-hover-bg: var(--primary);
  --bs-btn-hover-border-color: var(--primary);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: var(--white);
  --bs-btn-active-bg: var(--primary);
  --bs-btn-active-border-color: var(--primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--primary);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--primary);
  --bs-gradient: none;
}

.btn-primary {
  --bs-btn-color: var(--light);
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-color: var(--primary);
  --bs-btn-hover-bg: var(--secondary);
  --bs-btn-hover-border-color: var(--secondary);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--white);
  --bs-btn-active-bg: var(--secondary);
  --bs-btn-active-border-color: var(--secondary);
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: var(--white);
  --bs-btn-disabled-bg: var(--primary);
  --bs-btn-disabled-border-color: var(--primary);
  border: 2px solid #26345b;
}

.btn-primary:hover {
  color: var(--white);
  background: var(--primary);
}

.btn-secondary {
  --bs-btn-color: var(--dark);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: var(--secondary);
  --bs-btn-hover-color: var(--white);
  --bs-btn-hover-bg: var(--secondary);
  --bs-btn-hover-border-color: var(--secondary);
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: var(--white);
  --bs-btn-active-bg: var(--secondary);
  --bs-btn-active-border-color: var(--primary);
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: var(--white);
  --bs-btn-disabled-bg: #355785;
  --bs-btn-disabled-border-color: var(--secondary);
  --bs-btn-border-width: 2px;
}

/* --------------------- 
custom buttons
--------------------- */
.icon-btn {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.icon-btn:not(.btn) {
  --btn-color: var(--dark);
  color: var(--btn-color);
}
.icon-btn:not(.btn) svg * {
  fill: var(--btn-color);
}
.icon-btn:not(.btn):hover {
  --btn-color: var(--primary);
}

.card {
  -ms-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
}

.card-footer.seamless {
  border-top: unset;
  background-color: inherit;
}

/* --------------------- 
Custom form styling
--------------------- */
.custom-form.negativ .form-control::-moz-placeholder {
  color: #f0f0f0;
}
.custom-form.negativ .form-control::placeholder {
  color: #f0f0f0;
}
.custom-form.negativ textarea::-moz-placeholder {
  color: #f0f0f0;
}
.custom-form.negativ textarea::placeholder {
  color: #f0f0f0;
}
.custom-form .row:not(:last-of-type) {
  margin-bottom: 1rem;
}
.custom-form .form-control {
  background-color: #ffffff;
}

/* --------------------- 
Footer Form
--------------------- */
#ajax-kontakt-footer .btn {
  width: 100%;
  height: 100%;
}
#ajax-kontakt-footer .form-control {
  background-color: transparent;
}

/* --------------------- 
faded background overlay
**NOTE: overlay is mostly overlapping child elements => set them to a higher z-index to show them **
--------------------- */
.bg-overlay {
  --overlay-opacity: 1;
  --color: var(--white);
  --bg-color-1: rgba(0, 0, 0, 0.6);
  --bg-color-2: rgba(255, 255, 255, 0);
  position: relative;
  overflow: hidden;
}
.bg-overlay > * {
  color: var(--color);
}
.bg-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, var(--bg-color-1) 0%, var(--bg-color-2) 100%);
  opacity: var(--overlay-opacity);
  transition: all 0.5s;
  z-index: 0;
}
.bg-overlay.overlay-hover {
  --overlay-opacity: 0;
}
.bg-overlay.overlay-hover:hover {
  --color: var(--light);
  --overlay-opacity: 1;
}

.bg-image-box {
  min-height: 25vh;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 1s;
}
.bg-image-box.img-hover-zoom {
  overflow: hidden;
  transition: all 1s;
  background-size: 100%;
}
.bg-image-box.img-hover-zoom:hover {
  background-size: 120%;
}
.bg-image-box.color-on-hover {
  filter: grayscale(0.8);
}
.bg-image-box.color-on-hover:hover {
  filter: unset;
}

.content-hover-box {
  position: relative;
}
.content-hover-box .manu-logo img {
  max-height: 5rem;
}
.content-hover-box .hover-content {
  color: #ffffff;
  z-index: 1;
  width: 100%;
  position: absolute;
  left: 0;
  top: 35%;
  transition: all 0.5s;
}
.content-hover-box .hover-content * {
  transition: all 0.5s;
}
.content-hover-box .hover-content .text-on-hover {
  padding: 1.5rem;
  opacity: 0;
}
.content-hover-box:hover .text-on-hover {
  opacity: 1;
}

.company-info .wrapper {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.company-info .icon {
  display: inline-block;
}
.company-info .address {
  margin-left: 1.8rem;
}

.device-filter {
  background-color: #ffffff;
  padding: 0.5rem;
}
.device-filter .form-group {
  margin-bottom: 1rem;
}
.device-filter .form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.device-filter .btn {
  display: block;
  width: 100%;
}

#widgetOffcanvas .sticky-filter {
  position: fixed;
  z-index: 10;
}

/* --------------------- 
    Go to top Button
--------------------- */
.to-top {
  background-color: var(--primary);
  color: #f0f0f0;
  border-radius: 0.15rem;
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  cursor: pointer;
  z-index: 99;
  width: 2.1em;
  height: 2.1em;
  line-height: 2.1;
  bottom: 3%;
  right: 30px;
  transition: 0.4s;
  transform: translateY(15%);
}
.to-top:hover {
  transform: translateY(-3px);
}

.breadcrumb-area {
  display: flex;
  align-items: flex-end;
  background: #f2f2f2;
  transition: 0.5s all;
  color: #ffffff;
  padding-top: 2rem;
  margin-bottom: 1rem;
  min-height: 100px;
  border-radius: 0 0 0 2rem;
}
@media (max-width: 768px) {
  .breadcrumb-area {
    padding-top: 6.5rem;
  }
}
@media (min-width: 992px) {
  .breadcrumb-area {
    border-radius: 0 0 0 4rem;
    min-height: calc(90px + 1rem);
  }
}
.breadcrumb-area a {
  color: var(--dark);
}
.breadcrumb-area:hover a {
  color: var(--secondary);
}
.breadcrumb-area .divider {
  color: #868991;
}
.breadcrumb-area.gradient {
  background: linear-gradient(330deg, #07244C 50%, #26345b 100%);
}
@media (max-width: 768px) {
  .breadcrumb-area h1 {
    font-size: calc(1.375rem + 0.5vw);
  }
}

.navbar .nav-item {
  position: relative;
}
.navbar .nav-item .ul-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .navbar .nav-item .ul-dropdown-menu {
    display: none;
  }
  .navbar .nav-item .ul-dropdown-menu.active {
    display: block;
  }
}
@media (min-width: 992px) {
  .navbar .nav-item .ul-dropdown-menu {
    position: absolute;
    left: 0;
    z-index: 99;
    min-width: 250px;
    max-width: 320px;
    top: auto;
    opacity: 0;
    transition: transform 0.3s ease-out;
    transform: translateY(10%);
    -ms-box-shadow: 5px 5px 24px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 5px 5px 24px 15px rgba(0, 0, 0, 0.15);
    visibility: hidden;
  }
  .navbar .nav-item .ul-dropdown-menu .ul-dropdown-menu {
    top: 0;
    opacity: 0;
    left: 200px;
    visibility: hidden;
    transform: translateY(5px);
  }
  .navbar .nav-item:hover > .ul-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* --------------------- 
data-display (table)
--------------------- */
.vehicle-data .table-wrapper {
  width: 100%;
}
.vehicle-data table,
.vehicle-data tbody {
  width: 100%;
  background: transparent;
}
.vehicle-data td {
  padding: 0.5rem 1rem;
}
.vehicle-data .table-striped tr:nth-child(odd) {
  background-color: #b9b9b9;
}
.vehicle-data .table-striped tr:nth-child(even) {
  background-color: #D6D7DA;
}

.condition-wrapper {
  display: flex;
  gap: 1rem;
  justify-content: center;
  text-align: center;
}
.condition-wrapper > div {
  width: 16.6666666667%;
}

.condition-indicator {
  display: flex;
  gap: 10px;
}
.condition-indicator span {
  background-color: #bbbbbb;
  width: 1.4rem;
  height: 1rem;
  display: block;
  border-radius: 5px 0px;
}
.condition-indicator.neu span {
  background-color: #59a101;
}
.condition-indicator.sehr-gut span:nth-child(-n+5) {
  background-color: #59a101;
}
.condition-indicator.gut span:nth-child(-n+4) {
  background-color: #76b729;
}
.condition-indicator.normal span:nth-child(-n+3) {
  background-color: #76b729;
}
.condition-indicator.schlecht span:nth-child(-n+2) {
  background-color: #f59133;
}

/* --------------------- 
Default elements
--------------------- */
.custom-swiper {
  position: relative;
}
.custom-swiper .swiper-nav {
    position: absolute;
    bottom: 10px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    left: auto;
    font-size: 1rem;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
}
.custom-swiper .swiper-nav.next {
  right: 10px;
}
.custom-swiper .swiper-nav.prev {
  right: 50px;
}
.custom-swiper .swiper-nav.swiper-button-disabled {
  color: #f0f0f0;
  background-color: rgba(0, 0, 0, 0.3);
}

.swiper-slide img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 650px;
  -o-object-fit: cover;
  object-fit: cover;
}

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

@media (max-width: 1024px) {
  .swiper-slide img {
    max-height: 380px;
  }
}

@media (max-width: 768px) {
  .swiper-slide img {
    max-height: 270px;
  }
}

@media (max-width: 425px) {
  .swiper-slide img {
    max-height: 160px;
  }
}

#productSwiperIndex .swiper-slide img {
  display: block;
  width: auto;
  max-height:170px;
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

/* --------------------- 
Gallery
--------------------- */
.device-gallery .main-image {
  border-radius: 10px 10px;
}

/* --------------------- 
wrapper gallery + core
--------------------- */
.product-core {
  box-shadow: 0px 10px 13px -7px #212529, 0px 5px 15px -7px rgba(0, 0, 0, 0);
  padding-bottom: 2rem;
}
.product-core .content-wrapper > div {
  margin-top: 0.5rem;
}

/* --------------------- 
core information
--------------------- */
.core-data-wrapper {
  padding-top: 0.5rem;
}

/* --------------------- 
Image Slider on productlist
--------------------- */
.device-images {
  position: relative;
  overflow: hidden;
}
.device-images .swiper-slide {
  position: relative;
  overflow: hidden;
  display: table;
  table-layout: fixed;
  width: 100%;
  min-height: 200px;
}
.device-images .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 0px;
  max-width: 100%;
  min-width: 100%;
  max-height: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.device-images .image-counter {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

/* --------------------- 
image slider on productdetail
--------------------- */
.device-gallery .main-image {
  position: relative;
  overflow: hidden;
}
.device-gallery .main-image .zoom-overlay {
  position: absolute;
  width: 100%;
  height: 4rem;
  top: 0;
  left: 0;
  z-index: 11;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.8s all;
}
.device-gallery .main-image:hover .zoom-overlay {
  opacity: 1;
}
.device-gallery .thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
  overflow: hidden;
}
.device-gallery .thumbs .swiper-slide {
  width: 10%;
  height: 100%;
  opacity: 0.4;
}
.device-gallery .thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.gallery-column {
  transition: 0.5s all ease-out;
}

.gallery-column {
  transition: 0.5s all ease-out;
}

.product-spec-list {
  color: #ffffff;
  padding: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.875rem;
  background-color: var(--primary);
}
.product-spec-list svg path {
  fill: #ffffff;
}
.product-spec-list.soft {
  background-color: #F2F2F2;
  color: #2b2929;
}
.product-spec-list.soft svg path {
  fill: #2b2929;
}
.product-spec-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-spec-list svg {
  max-width: 1.5rem;
  height: 2rem;
}
.product-spec-list .volt svg {
  max-height: 1.5rem;
}
.product-spec-list .load-weight svg {
  max-width: 1.1rem;
}
.product-spec-list .time svg {
  max-height: 1.4rem;
}

#quick_search {
  --bottom-color: var(--dark);
}
#quick_search .search-input,
#quick_search .input-group-text {
  background-color: transparent;
  border-color: transparent;
  color: var(--dark);
  font-size: 0.8rem;
  min-width: 3rem;
}
#quick_search .input-group {
  border-bottom: 1px solid var(--white);
  justify-content: space-between;
}
#quick_search svg,
#quick_search svg * {
  fill: var(--dark);
}
#quick_search .search-input::-moz-placeholder {
  color: var(--bottom-color);
}
#quick_search .search-input::placeholder {
  color: var(--bottom-color);
}
#quick_search .search-input:focus-visible {
  outline: none;
}
#quick_search .search-input:focus-visible::-moz-placeholder {
  color: #D6D7DA;
}
#quick_search .search-input:focus-visible::placeholder {
  color: #D6D7DA;
}
#quick_search .input-group-text:hover svg * {
  fill: var(--primary);
}

@media (min-width: 992px) {
  .list-card .product-spec-list {
    margin-top: 1rem;
    background-color: transparent;
    align-items: stretch;
    padding-left: 0;
    gap: 0;
  }
  .list-card .product-spec-list.soft li {
    background-color: #F2F2F2;
  }
  .list-card .product-spec-list li {
    background-color: var(--primary);
    padding: 0.3rem;
    min-width: 4.5rem;
  }
  .list-card .product-spec-list li.volt, .list-card .product-spec-list li.time {
    padding-top: 1rem;
  }
}

.sticky-contact {
  position: fixed;
  top: calc(50% - 110px);
  right: -386px;
  z-index: 20;
  display: flex;
  align-items: center;
  color: #ffffff;
  transition: all 0.2s;
}
.sticky-contact:hover {
  right: 0;
}
.sticky-contact > div {
  background-color: #2b2929;
}
.sticky-contact .hover-icon {
  padding: 1rem;
  padding-left: 1.3rem;
}
.sticky-contact .hover-icon svg {
  width: 2.2rem;
  fill: #ffffff;
}
.sticky-contact .content {
  padding: 1rem;
}

.user-wrapper {
  position: relative;
}
.user-wrapper .user-name {
  display: none;
}
.user-wrapper.onHover .user-info {
  display: none;
}
@media (max-width: 768px) {
  .user-wrapper.onHover .user-info {
    display: inline-block;
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
  }
}
.user-wrapper.onHover .user-info p {
  color: black;
  margin: unset;
  line-height: 1.2;
}
.user-wrapper.onHover .user-info p:last-of-type {
  margin-bottom: 1.2rem;
}
.user-wrapper.onHover .user-info p,
.user-wrapper.onHover .user-info a {
  font-size: 0.9rem;
}
@media (min-width: 765px) {
  .user-wrapper.onHover .user-name {
    display: block;
    position: absolute;
    bottom: 3rem;
    padding: 1rem;
    text-align: center;
    width: 100%;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
  }
}
.user-wrapper.onHover:hover .user-name {
  display: none;
}
.user-wrapper.onHover:hover .user-info {
  display: block;
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0 1rem 2rem 1rem;
}

@media (min-width: 765px) {
  .widget .user-wrapper.onHover .user-name {
    bottom: 1rem;
    padding: 0.5rem 0;
  }
}
.widget .user-wrapper .user-img img {
  max-height: 10rem;
  width: auto;
}

/* --------------------- 
swiper js navigation styling
--------------------- */
.swiper-body {
  position: relative;
  --nav-border-color: var(--dark);
  --svg-color: var(--dark);
}
.swiper-body.has-nav {
  padding-bottom: 4rem;
}
.swiper-body.negative {
  --svg-color: var(--white);
}
.swiper-body.themed {
  --svg-color: var(--primary);
  --nav-border-color: var(--primary);
}

.swiper-nav {
    position: absolute;
    bottom: 10px;
    left: 0;
    z-index: 11;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    padding: 0 1rem;
    opacity: 0.6;
}
.swiper-nav:not(.start) {
  right: 0;
}
.swiper-nav.start {
  left: 0;
}
.swiper-nav.circle .nav-btn {
  border: 1px solid var(--nav-border-color);
  border-radius: 100%;
}
.swiper-nav.small {
  --nav-btn-width: 2rem;
  --nav-btn-height: 2rem;
}
.swiper-nav.small svg {
  width: calc(var(--nav-btn-width) / 2);
}
.swiper-nav svg {
  fill: var(--svg-color);
}
.swiper-nav .nav-btn {
  background-color: transparent;
  width: var(--nav-btn-width);
  height: var(--nav-btn-height);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s all;
}
.swiper-nav .nav-btn:hover {
  opacity: 1;
}
.swiper-nav .nav-btn.next svg {
  transform: rotate(180deg);
  margin-left: 4px;
}
.swiper-nav .nav-btn.prev svg {
  margin-right: 4px;
}

.swiper-pag {
  position: absolute;
  bottom: 1.7rem;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.swiper-pag.line-pagination .pag-item {
  width: 2.8rem;
  height: 0.25rem;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  background-color: #9C9C9C;
}
.swiper-pag.line-pagination .pag-item.pag-active {
  background-color: #ffffff;
}

/* --------------------- 

links, badges
--------------------- */

.footer-badges-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.footer-badges-wrapper .cat {
    background-color: var(--dark);
    color: var(--light);
    font-size: 0.875rem;
    padding: 4px;
}
.footer-badges-wrapper .cat:hover {
  color:  var(--white);
}

footer {
  padding-top: 6rem;
  padding-bottom: 2rem;
  color: var(--light);
  background-image: url(../../assets/images/ueg-standort.jpg);
  background-color: #333;
  background-size: cover;
  background-blend-mode: soft-light;
}
footer h5 {
  color: var(--white);
}
footer a {
  color: inherit;
  text-decoration: none;
}
footer a:hover {
  color: var(--white);
}
footer ul {
  list-style-type: none;
  margin: unset;
  padding: unset;
}

.footer-content {
  padding-bottom: 2rem;
}

.standard .flag, .social-info .flag {
    max-width: 20px;
    margin-right: 5px;
}

@media (max-width: 991px) {
  .footer-content > div {
    margin-bottom: 2rem;
  }
}

.copyright {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding-top: 1rem;
  margin-top: 4rem;
  border-top: 1px solid;
}
.copyright .legal-links a {
  margin-right: 0.5rem;
}

.copyright svg, .copyright svg * {
    fill: var(--light);
}

.cr-liftfinder a {
  color: var(--light);
}

/* --------------------- 
    Header
--------------------- */
header {
  background-color: #ffffff;
}

/* --------------------- 
menu navigation
--------------------- */
.navbar {
  color: #0f0f0f;
  --icon-color: var(--dark);
  /* --------------------- 
  main navbar
  --------------------- */
  /* --------------------- 
  burger menu
  --------------------- */
  /* --------------------- 
  sublinks
  --------------------- */
}
.navbar .nav-item .manu-link-logo {
    max-height: 1.7rem;
}
@media (min-width: 1024px) {
  .navbar .navbar-nav {
    gap: 0.7rem;
    padding-top: 30px;
  }
}
@media (min-width: 1400px) {
  .navbar .navbar-nav {
    gap: 0.8rem;
    padding-top: 34px;
  }
}
.navbar .nav-item.active .nav-link {
  color: #26345b;
  border-bottom: 2px solid #26345b;
}
@media (max-width: 992px) {
  .navbar .nav-item .first-level,
  .navbar .nav-item .ul-dropdown-menu .nav-item {
    border-bottom: 1px solid;
  }
  .navbar .nav-item .first-level {
    border-bottom-color: black;
  }
  .navbar .nav-item .ul-dropdown-menu .nav-item {
    border-bottom-color: #c6c6c6;
  }
}
.navbar .nav-item .inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar .nav-item .nav-link {
  transition: 0.4s font-size;
}
.navbar .nav-item .nav-link.first-level {
  font-weight: 500;
  color: hsla(0, 0%, 40%, .85);
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .navbar .nav-item .nav-link.first-level {
    border-bottom: 2px solid transparent;
    font-size: 1.05rem;
  }
  .navbar .top-menu:not(.offCan) .nav-link.first-level,
  .navbar .top-menu:not(.offCan) li {
    font-size: 0.85rem;
  }
}
.navbar .nav-item .nav-link .fa {
  font-size: 0.875rem;
}
.navbar .nav-item:hover .nav-link.first-level {
  border-color: var(--secondary);
}
.navbar .navbar-toggler {
  border: none;
}
.navbar .navbar-toggler svg * {
  stroke: var(--icon-color);
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
  border: none;
}
.navbar .ul-dropdown-menu .nav-item {
  padding: 0.2rem 0.8rem;
}
.nav-link {
  padding: 0.2rem 0;
}
.navbar .ul-dropdown-menu .nav-item:hover {
  background-color: rgba(230, 230, 230, 0.2);
}
.navbar.transparent-nav:not(.fixed-top) {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  background-color: rgba(255, 255, 2455,0.95);
  --icon-color: var(--dark);
}
@media (min-width: 992px) {
  .navbar.transparent-nav:not(.fixed-top) .nav-link.first-level {
    color: #333;
  }
  .navbar.transparent-nav:not(.fixed-top) .nav-link.first-level:hover {
    border-color: var(--secondary);
  }
}
.navbar.fixed-top {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: rgba(242, 242, 242,0.95) !important;
  transition: background-color 0.7s ease !important;
}
.navbar.fixed-top .navbar-brand img {
   max-width: 22rem !important;
  height: auto;
}
.navbar.fixed-top .nav-link {
  font-size: 1rem;
}
.navbar.fixed-top .nav-link.first-level {
  color: var(--dark);
}

@media (max-width: 1024px) {
  
  .logo {
    max-width: 25rem !important;
  }
}

/* --------------------- 
    phone, mail and contact links
--------------------- */
.header-topline {
  font-size: 0.875rem;
}
.header-topline .quick-contacts {
  background-color: var(--bs-light);
  color: var(--black);
}
.header-topline .quick-contacts svg {
  max-width: 1rem;
}
.header-topline .quick-contacts div {
  display: flex;
}
.header-topline .quick-contacts > div {
  justify-content: space-between;
}

header .company-info {
  padding: 0.5rem 0;
  gap: 1rem;
}
@media (max-width: 991px) {
  header .company-info {
    font-size: 0.8rem;
    justify-content: space-around;
  }
}
header .company-info .wrapper {
  align-items: center;
}

/* --------------------- 
    Logos
--------------------- */
.header-bar {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  .header-bar img {
    max-width: 8rem;
  }
}

.logo {
  max-width: 35rem;
}

.logo_2 {
  max-width: 16rem;
}

/* --------------------- 
search
--------------------- */
.header-search .input-group-text {
  background-color: transparent;
  border-left: none;
}
.header-search .form-control {
  border-right: none;
  min-width: 220px;
}

.breadcrumb-area {
  background-color: #e3e3e3;
}
.breadcrumb-area .breadcrumb-list {
  padding: 0.5rem 0;
  margin: unset;
}

.page-title-area {
  margin-bottom: 2rem;
}

/* --------------------- 
components
--------------------- */
.super-large-container {
  padding-left: unset;
  padding-right: unset;
  padding-top: 4rem;
  overflow: hidden;
  background-color: #f2f2f2;
  /* --------------------- 
  the div holding all together
  --------------------- */
  /* --------------------- 
  content inside the view width,
  faking its inside a regular container, centered on the screen
  --------------------- */
  /* --------------------- 
  visual effect of the content growing larger than the view width is
  --------------------- */
}
.super-large-container .super-wrapper {
  display: flex;
  gap: 2rem;
}
@media (max-width: 992px) {
  .super-large-container .super-wrapper {
    flex-wrap: wrap;
  }
}
.super-large-container .content {
  margin: 0 0.5rem;
}
@media (min-width: 1000px) {
  .super-large-container .content {
    
  }
  .super-large-container .oversized-content {
    
  }
}
.super-large-container .oversized-content {
  overflow: hidden;
}

/* --------------------- 
    Base Styling
--------------------- */
section {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.home section {
  margin-bottom: 6rem;
}

/* --------------------- 
    Swiper Slider
--------------------- */
#homeSlider {
  overflow: hidden;
  position: relative;
}
#homeSlider .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#homeSlider .content {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 10%), linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 100%);
}
#homeSlider .content p {
  font-size: 1.3rem;
}
#homeSlider .swiper-nav {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding: 1rem;
}
#homeSlider .swiper-nav .nav-btn {
  background-color: transparent;
  border: 1px solid #ffffff;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s all;
}
#homeSlider .swiper-nav .nav-btn svg {
  fill: #ffffff;
}
#homeSlider .swiper-nav .nav-btn:hover {
  background-color: #ffffff;
}
#homeSlider .swiper-nav .nav-btn:hover svg {
  fill: #212529;
}
#homeSlider .swiper-nav .nav-btn.next svg {
  transform: rotate(180deg);
  margin-left: 4px;
}
#homeSlider .swiper-nav .nav-btn.prev svg {
  margin-right: 4px;
}

/* --------------------- 
    Working fields
--------------------- */
.working-fields-area .product-swiper-container {
  overflow: hidden;
}

.working-field-wrapper {
  margin-bottom: 3rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.working-field-wrapper:nth-child(odd) {
  flex-direction: row-reverse;
}
.working-field-wrapper .content {
  max-width: 80%;
}
@media (min-width: 992px) {
  .working-field-wrapper .overlap-content {
    margin-left: -150px;
  }
  .working-field-wrapper .overlap-content .content {
    text-align: right;
  }
  .working-field-wrapper:nth-child(odd) {
    background-color: #e3e3e3;
  }
  .working-field-wrapper:nth-child(odd) .overlap-content {
    margin-right: -150px;
  }
  .working-field-wrapper:nth-child(odd) .overlap-content .content {
    text-align: left;
  }
}

/* --------------------- 
    About us
--------------------- */
/* --------------------- 
    Benefits (inside about us)
--------------------- */
.benefit-area {
  padding-left: 3rem;
}
.benefit-area img {
  max-height: 4rem;
}
.benefit-area .benefits {
  align-items: stretch;
  gap: 3rem;
}
.benefit-area .benefit-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-weight: 700;
  flex: 1 1 100%;
  position: relative;
}
@media (min-width: 992px) {
  .benefit-area .benefit-item {
    flex: 1 1 45%;
  }
}
.benefit-area .benefit-item .year {
  color: var(--primary);
  font-weight: 900;
  font-size: 2rem;
  background-color: #ffffff;
  border-radius: 100%;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits .benefit-wrapper {
    position: relative;
    padding: 12px;
    margin-top: 12px;
    margin-bottom: 3rem;
    display: flex
;
    flex-direction: column;
    align-items: center;
    background-color: #ececec;
}

.benefits .icon-number {
    display: flex
;
    justify-content: center;
    align-items: center;
    padding-right: 2px;
    border-radius: 100%;
    background-color: var(--primary);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: -20px;
    left: 44%;
}

/* --------------------- 
Banner
--------------------- */
.banner-section {
  position: relative;
  overflow: hidden;
}
.banner-section .banner-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.banner-section .bg-image {
  background-size: cover;
  min-height: 60vh;
}
.banner-section .content {
  position: absolute;
  color: #ffffff;
  z-index: 1;
  bottom: 20%;
  left: 15%;
  max-width: 500px;
}
.banner-section .content .heading {
  margin-bottom: 2rem;
}
.banner-section .content .subheading {
  font-size: 1.8rem;
}
.banner-section .content .btn {
  margin-top: 1rem;
  color: #ffffff;
}

@media (max-width: 768px) {
  .banner-section .bg-image {
    min-height: 44vh !important;
  }
}

@media (max-width: 425px) {
  .banner-section .content {
    bottom: 8vh !important;
  }
  .banner-section .content .heading-xlarge {
    font-size: 1.8rem !important;
  }
  .banner-section .content .subheading {
    font-size: 0.8rem;
    max-width: 90% !important;
  }
  .banner-section .bg-image {
    min-height: 26vh !important;
  }
  .banner-section .content {
    left: 30% !important;
  }
  .company-spec > div {
    min-height: 360px !important;
  }
  .company-specs {
    margin-right: 1.2rem !important;
    margin-left: 1.2rem !important;
  }
  .logo {
    max-width: 16rem !important;
  }
}

@media (max-width: 1024px) {
  .banner-section .content {
    bottom: 10vh;
  }
  .banner-section .content .heading-xlarge {
    font-size: 2.7rem;
  }
  .banner-section .content .subheading {
    font-size: 1.2rem;
    max-width: 80%;
  }
  .banner-section .bg-image {
    min-height: 50vh;
  }
  .banner-section .content {
    left: 22%;
  }
  .company-spec > div {
    min-height: 360px;
  }
}

/* --------------------- 
    News
--------------------- */
.news-area .card-img-top {
  height: 15rem;
  overflow: hidden;
  display: flex;
}
.news-area .card-img-top img {
  align-self: center;
}

/* --------------------- 
    Brands
--------------------- */
.brands-area .brands {
  margin-top: 4rem;
  justify-content: center;
  align-items: center;
}
.brands-area .brands img {
  max-height: 5rem;
}

/* --------------------- 
sections (after seo)
--------------------- */
.company-section-area .section-element {
  color: #ffffff;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.company-section-area .section-element .content-box {
  --bg-color-1: rgba(0, 0, 0, 1);
  --bg-color-2: rgba(255, 255, 255, 0);
  padding: 4rem;
  width: 100%;
  background: linear-gradient(0deg, var(--bg-color-1) 0%, var(--bg-color-2) 100%);
}
.company-section-area .section-element .content-box .faller-btn-outline {
  border-color: #ffffff;
  color: #ffffff;
}

/* --------------------- 
pagination
--------------------- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-top: 2rem;
  margin-bottom: 4rem;
}
.pagination .page-numbers,
.pagination .page-nav {
  padding: 0.5rem 1rem;
  color: inherit;
  line-height: 1.2;
  min-height: 2.5rem;
}
.pagination .page-numbers a,
.pagination .page-nav a {
  color: inherit;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover,
.pagination .page-nav.current,
.pagination .page-nav:hover {
  color: #212529;
  background-color: #ffffff;
}
.pagination .page-nav {
  border: 1px solid #ffffff;
}

/* --------------------- 
sorting
--------------------- */
.sort-area {
  margin-bottom: 2rem;
  background-color: #ffffff;
  padding: 1rem;
}
.sort-area .sort-wrapper {
  padding: 1rem 0;
}
.sort-area .sort-list {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
  margin: unset;
}

/* --------------------- 
device list
--------------------- */
.device-list > div {
  margin-bottom: 1.5rem;
}

/* --------------------- 
Device Cards
--------------------- */
.device-card {
  overflow: hidden;
  margin-bottom: 1.6rem;
  /* --------------------- 
  price
  --------------------- */
  /* --------------------- 
  grid view
  --------------------- */
  /* --------------------- 
  list view
  --------------------- */
}
.device-card .device-images {
  overflow: hidden;
}
.device-card .card-title {
  min-height: 3rem;
  margin: unset;
  font-size: 1.25rem;
}
.device-card .card-title a {
  color: inherit;
  text-decoration: none;
}
.device-card .device-price span {
  font-size: 0.875rem;
}
.device-card .price {
  margin: unset;
  font-size: 1rem;
  font-weight: normal;
}
.device-card .price span {
  margin-left: 3px;
  font-weight: 400;
  font-size: 0.875rem;
}
.device-card.grid-card .action-wrapper {
  width: 100%;
}
.device-card.grid-card .action-wrapper .btn {
  display: block;
}
.device-card.grid-card .side-notes > * {
  margin: unset;
}
.device-card.list-card {
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 1.5rem;
}
.device-card.list-card .data {
  align-self: end;
}
.device-card.list-card .list-group {
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.device-card.list-card .list-group .list-group-item {
  width: 50%;
  padding-left: 0;
}
.device-card.list-card .side-notes {
  display: flex;
  gap: 1rem;
}

@media (max-width: 992px) {
  .device-card.list-card .list-card-wrapper {
    -ms-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
  }
  .device-card.list-card .data-wrapper .core-details,
  .device-card.list-card .data-wrapper .device-price,
  .device-card.list-card .data-wrapper .product-spec-list {
    padding: 1rem;
  }
  .device-card.list-card .device-footer {
    display: flex;
    gap: 1rem;
  }
  .device-card.list-card .device-footer .action-wrapper {
    margin-right: 0.5rem;
  }
  .device-card.list-card .device-footer .action-wrapper .btn {
    font-size: 0.875rem;
  }
  .device-card.list-card .product-spec-list {
    background-color: #F2F2F2;
  }
}
@media (min-width: 992px) {
  .device-card.list-card .data-wrapper {
    align-items: center;
    padding: 1rem 0.5rem;
    background-color: #ffffff;
  }
  
  .device-card.list-card .action-wrapper {
    margin-top: 1rem;
    justify-content: center;
    text-align: center;
  }
  .device-card.list-card .device-price {
    justify-content: center;
  }
}
.device-card .device-price {
  display: flex;
  flex-wrap: wrap;
}
.device-card .device-price h6 {
  margin-bottom: unset;
}
.device-card .device-price span {
  font-weight: 400;
  font-size: 0.875rem;
}

/* --------------------- 
sidebar
--------------------- */
@media (min-width: 992px) {
  .device-list-area .sidebar {
    margin-top: 97px;
  }
}

/* --------------------- 
product base information
--------------------- */
.product-base {
  position: relative;
  padding-top: 2rem;
}
.product-base.bg-colored {
  background: #ffffff;
}

.core-data-wrapper {
  margin-top: 2rem;
}
.core-data-wrapper > div {
  margin-bottom: 1.5rem;
}

/* --------------------- 
 price
--------------------- */
.price-wrapper {
  display: flex;
  gap: 0.5rem;
  flex-direction: row;
  align-items: baseline;
}

/* --------------------- 
actions
--------------------- */
.action-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.5rem;
}
.action-wrapper .rent-btn svg {
    height: 25px;
    width: auto;
}

/* --------------------- 
contact persons
--------------------- */
.contact-area .contact-card {
  position: relative;
  overflow: hidden;
}
.contact-area .contact-card .card-body {
  background: rgba(255, 255, 255, 0.8);
  margin-top: -70px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.contact-area .contact-card .card-body .card-title {
  margin: unset;
}

.device-details-area .contact-area .card-body {
  margin-top: -85px;
}
.device-details-area .contact-area .btn {
  font-size: 0.9rem;
}

/* --------------------- 
Vehicle data
--------------------- */
.vehicle-data-area {
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.vehicle-data {
  /* --------------------- 
  display as table
  --------------------- */
}
.vehicle-data .table {
  margin-bottom: unset;
}
.vehicle-data .data-display td:first-of-type {
  width: 250px;
}
.vehicle-data .data-display:last-of-type {
  border-color: var(--bs-table-striped-bg);
}
.vehicle-data.core-data-wrapper .data-display td:first-of-type {
  width: 142px;
  padding-left: 0;
}

.vehicle-data-section {
  margin-top: 4rem;
  position: relative;
}
.vehicle-data-section .vehicle-data {
  margin-bottom: 1.5rem;
}
.vehicle-data-section .vehicle-data .wrapper {
  background: #ffffff;
  padding: 1rem;
  height: 100%;
}
.vehicle-data-section .heading h3 {
  font-weight: 500;
}
.vehicle-data-section table {
  width: 100%;
}
.vehicle-data-section table tr {
  width: 100%;
}
.vehicle-data-section table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #F2F2F2;
}
.vehicle-data-section table td:first-of-type {
  font-weight: 700;
}
.vehicle-data-section table.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.vehicle-data-section .equipment:not(:last-of-type)::after {
  content: ",";
}

.vehicle-data .heading {
  color: #acacac;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}
.vehicle-data .wrapper {
  border: 1px solid var(--bs-border-color);
  border-radius: 20px 0;
  overflow: hidden;
  height: 100%;
}
.vehicle-data .wrapper .heading {
  min-width: 170px;
}

@media (min-width: 1200px) {
  .vehicle-data-section .sticky-content {
    position: sticky;
    top: 130px;
  }
}

@media (min-width: 992px) {
  .sidebar.offcanvas-lg .offcanvas-body {
    display: block;
  }
}

/* --------------------- 
logos
--------------------- */
.manu-logo {
  max-width: 12rem;
}

/* --------------------- 
category overview
--------------------- */
.category-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 15px;
}
.category-card .overlay-card-text {
  --bg-color-1: rgba(0, 0, 0, 1);
  --bg-color-2: rgba(255, 255, 255, 0);
  min-height: 4rem;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 1rem 1.5rem;
}
.category-card .main-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.category-card .cat-img img {
  max-height: 240px;
  border-radius: 15px 0 0 0;
}
.category-card .toggle-btn {
  cursor: pointer;
}
.category-card .toggle-btn svg {
  fill: #ffffff;
  transition: all 0.2s;
  width: 0.9rem;
  transform: rotate(180deg);
  margin-left: 1rem;
}
.category-card .card-title {
  line-height: unset;
  font-size: 1.1rem;
}

/* --------------------- 
overview
--------------------- */
.manufacturer-card {
  overflow: hidden;
  min-height: 15vh;
  background-color: #ffffff;
}
.manufacturer-card img {
  transition: all 1s;
}
.manufacturer-card:hover img {
  transform: scale(1.1);
}

/* --------------------- 
device list
--------------------- */
.manufacturer-product-card {
  position: relative;
  border-radius: 15px;
}
@media (min-width: 992px) {
  .manufacturer-product-card img {
    max-height: 200px;
  }
}

/* --------------------- 
device files
--------------------- */
.manufacturer-device-details-area .file-area {
  display: flex;
  gap: 1rem;
}
.manufacturer-device-details-area .img-wrapper img {
  max-height: 600px;
}
.manufacturer-device-details-area .manu-logo {
  max-height: 60px;
}

.file-area a {
  color: inherit;
}

/* --------------------- 
device detail
--------------------- */
/* --------------------- 
description
--------------------- */
.manufacturer-device-details-area .description {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.manufacturer-device-details-area .description .tabs-navigation .nav-link,
.manufacturer-device-details-area .description .nav-tabs {
  border: unset;
}
.manufacturer-device-details-area .description .tab-content {
  background: #ffffff;
  padding: 2rem;
}

/* --------------------- 
related products
--------------------- */
.related-products-area {
  background: #d7d7d7;
  padding: 2rem 0;
}

.uf-border {
    border-radius: 15px 15px;
    overflow: hidden;
}

.img-zoom img {
    transition: all 0.7s;
}

.img-zoom:hover img {
    transform: scale(1.1);
}

.tab-content {
    background: #ffffff;
    padding: 2rem;
}

.nav-tabs .nav-link {
    color: var(--bs-nav-tabs-link-active-color);
    background-color: #f3f3f3;
    border-color: var(--bs-nav-tabs-link-active-border-color);
}

.CMSSwiper {
    background: #ffffff;
    max-width:600px;
    margin-left: 0px;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary);
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

.accordion-button:not(.collapsed) {
    background-color: #d2d2d2;
    color: var(--primary);
}

.accordion {
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.05rem rgba(224, 35, 44, 0.5);
}

.negativ .form-control {
    color: #fff;
}

.form-select_small {
    font-size: 0.8rem;
}

.owl-carousel {
  position: relative;
}

.owl-carousel.owl-theme .owl-item {
  position: relative;
}

.owl-carousel.owl-theme .owl-nav .owl-prev {
  left: 0;
}

.owl-carousel.owl-theme .owl-nav .owl-next {
  right: 0;
}

.owl-carousel.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  top: 45%;
  font-size: 2rem;
  width: 2rem;
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--color-white);
}

.owl-carousel.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--color-primary);
}

@media (max-width: 765px) {
  .owl-carousel.owl-theme .owl-nav {
    opacity: 0;
  }
}

.manufacturer-area .overview-wrapper {
    display: block;
    width: 100%;
    height: auto;
}

.manufacturer-area .overview-card {
    padding: 1.5rem;
    height: auto;
    border: 0.09rem solid var(--bs-light);
}

.manufacturer-area .overview-card img {
    max-height: 2.3rem;
    max-width: 100%;
}

.navbar-toggler, .navbar-toggler:hover {
   border: 0px;
}

.device-card.grid-card.member .action-wrapper {
    width: 100%;
    flex-direction: column;
    align-items: unset;
}

.device-card.grid-card.member .action-wrapper .btn {
    padding: 12px 35px;
    border-radius: 0;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
}

#MTVideo {
    width: 100vw;
    height: 70vh;
    object-fit: cover;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

/* --------------------- 
CUSTOM
--------------------- */

nav.sidebar {
    position: fixed;
    right: 0;
    top: 50vh;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    z-index: 999;
}

.sidebar .phone-badge {
    background-color: #3c3c3c;
}

.sidebar .mail-badge {
    background-color: #e30d14;
}

.sidebar .contact-badge {
    background-color: #dadada;
    color: #3c3c3c;
}

.sidebar .wa-badge {
    background-color: #25e47b;
    color: #fff;
}

.sidebar a:hover {
    transform: none;
}

.sidebar a {
	  font-size: 16px;
	  /* display: flex; */
	  /* align-items: center; */
	  width: 255px;
	  text-decoration: none;
	  color: #fff;
	  font-size: 16px;
	  transform: translateX(215px);
	  transition: transform 500ms ease-in-out;
}

.sidebar a [class*="fa-"] {
		font-size: 30px;
		padding: 5px;
}

.sidebar a [class*="fab fa-"] {
		font-size: 34px;
		padding: 5px;
}

.cta-box {
	border:1px solid #e1e1e1;
	padding:40px 15px;
	width:100%;
	position:relative;
	background:#fafafa;
}

.nav-link.toggle i {
    position: absolute;
    top: 22px;
    right: 10px;
    transform: translateY(-50%);
}

.nav-link.subsub.toggle {
    padding-top: 0px;
    padding-bottom: 0px;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

