/* .portfolio-wrapper .card-title, #blogbody.blog-wrapper .card-body a {
    min-height: 25px;
    overflow: hidden;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
}

.blog-wrapper .card-intro, #blogbody.blog-wrapper .card-body p {
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    min-height: 90px;
} */


#blogbody.blog-wrapper .card-body > a {
    min-height: 25px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    min-height: 60px;
    hyphens: auto;
    word-wrap: break-word; /* Für ältere Browser */
    overflow-wrap: break-word;
}

#blogbody.blog-wrapper .card-body p {
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    min-height: 60px;
}

.swiper-carousel .swiper-slide > div {
    height: 100%;
}

.h2 {
    font-size: clamp(30px, 5vw, 41px);
    line-height: 1.2;
}

.background-size-cover {
    background-size: cover;
}

h1.title-font {
    font-size: clamp(40px, 5vw, 55px);
}

h2.title-font {
    font-size: clamp(27px, 5vw, 55px);
    /* line-height: clamp(2.7rem, 6vw, 3.438rem); */
    line-height: clamp(3rem, 6vw, 3rem);
}

header .navbar .header-tel {
    color: var(--white);
}

header.sticky.sticky-active [data-header-hover=light] .navbar-nav .header-tel {
    color: var(--dark-gray);
}

.project_related_info i {
    color: black;
    margin-right: 3px;
}

.project_desc {
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    min-height: 52px;
}

/* Container der Liste */
.list {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* Eine Spalte standardmäßig */
  gap: 1.875rem; /* Abstand zwischen den Karten */
  margin-top: 1.75rem;
}

@media (min-width: 768px) {
  .list {
    grid-template-columns: repeat(2, 1fr); /* Zwei Spalten ab "md"-Breakpoint */
  }
}

/* Karte (Projekt-Item) */
.project_item {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover-Animation */
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.project_item:hover {
  transform: translateY(-4px); /* Leichtes Schweben bei Hover */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); /* Verstärkter Schatten */
}

/* Projekt-Inhalt */
.project_innner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.project_name {
  font-size: 1.125rem; /* Überschrift-Größe */
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.project_name:hover {
  color: var(--base-color); /* Farbe ändern bei Hover */
}

.project_related_info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #666;
}

/* .project_desc {
  margin-top: 1rem;
  color: #444;
  font-size: 0.9rem;
  line-height: 1.5;
} */

.list_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.project_tag {
  background-color: #f3f3f3;
  color: #333;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.project_tag:hover {
  background-color: var(--base-color);
  color: #fff;
}

/* Footer der Karte */
.project_more_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #666;
}

.project_price {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
}

.project_action {
  margin-top: 1.5rem;
}

.project_apply_btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--base-color);
  border: 2px solid var(--base-color);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.project_apply_btn:hover {
  background-color: var(--base-color);
  color: #fff;
}

/* Herz-Symbol */
.add_wishlist_btn {
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}

.add_wishlist_btn .ph-heart {
  font-size: 1.5rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.add_wishlist_btn:hover .ph-heart {
  color: var(--base-color);
}

header .navbar-brand img {
  height: auto;
  max-width: 200px;
}

header.sticky .navbar-brand {
    padding: 20px 0;
}

.project_content a {
    display: block;
    min-height: 60px;
}

.active>.page-link, .page-link.active {
    color: white;
    background-color: var(--base-color);
    border-color: var(--base-color);
}

.page-link {
    color: var(--base-color);
}



h3.title-font.small_heading {
    font-size: clamp(20px, 5vw, 1.5em);
    line-height: clamp(1.8rem, 6vw, 2.5rem);
}

.bg-base-color {
    background-color: var(--base-color);
}

.bg-custom-color {
  background-color: #f0ece6;
}

.dark-layer:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.4);
}

.job-offer-description b {
  color: black;
  display: block;
  margin-top: 3%;
}

.job-offer-description b + br {
  display: block;
  line-height: 10px;
}

.job-offer-description ul {
  padding-left: 18px;
}

.job-offer-description li {
  list-style-type: disc;
}

.job-offer-description li::marker {
  color: var(--base-color);
}

.job__overview__content i {
  min-width: 23px;
}

input#terms-check {
  width: 15px;
  height: auto;
}

.check-box {
  display: flex;
  align-items: center;
  justify-content: start;
}

select.is-invalid {
  background-image: none !important;
}

.swiper-slider-services .services-box-style-02 {
  -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
}

div#searchBox {
  width: 100%;
  max-width: 556px;
}

a#filterButton {
  min-width: 123px;
}

div#searchBox input {
  height: 48px;
}

button.ais-SearchBox-reset {
  position: absolute;
  top: 19px;
  right: 30px;
  color: transparent;
  opacity: .8;
  fill: currentColor;
  background-color: transparent;
  border: 0px solid transparent;
  padding: 0;
  width: 10px;
  height: 10px;
}

form.ais-SearchBox-form {
  position: relative;
}

span.ais-SearchBox-loadingIndicator {
  display: none;
}

/* Shop sidebar */
.shop-sidebar  li {
  position: relative;
  margin-bottom: 2px;
  padding: 0px 25px;
  width: 100%;
  cursor: pointer;
}
.shop-sidebar  li a {
  display: block;
}
.shop-sidebar  li a:hover .product-cb {
  border-color: var(--dark-gray);
}
.shop-sidebar  li a:hover .product-cb:after {
  opacity: 1;
}
.shop-sidebar li .product-cb {
  width: 15px;
  height: 15px;
  border: 1px solid var(--medium-gray);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 7px;
}
.shop-sidebar  li .product-cb:after {
  width: 11px;
  height: 11px;
  background-color: var(--base-color);
  border-radius: 2px;
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.shop-sidebar  li .item-qty {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  height: 30px;
  width: 30px;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  color: var(--dark-gray);
  line-height: 30px;
}
.shop-sidebar  li:last-child {
  margin-bottom: 0;
}
.shop-sidebar .color-filter li .product-cb {
  border: 0;
}
.shop-sidebar .color-filter li .product-cb:after {
  background-color: var(--white);
}
.shop-sidebar .fabric-filter li .product-cb {
  line-height: 0;
  overflow: hidden;
  border: 0;
}
.shop-sidebar .fabric-filter li .product-cb:after {
  background-color: var(--white);
}
.shop-sidebar .rating-filter li {
  padding-left: 0;
}
.shop-sidebar .tag-cloud a {
  padding: 5px 10px;
}

.ais-RefinementList > ul > li {
    padding: 0px;
}

.shop-sidebar .shop-filter li.custom-filter-li:hover .product-cb:after, .ais-RefinementList-item.ais-RefinementList-item--selected li.custom-filter-li .product-cb:after {
  opacity: 1;
}

#spontanBewerbung {
  background-color: white;
  border-color: white;
  color: var(--dark-gray);
  transition: background-color 0s, color 0s, transform 300ms ease-in-out;
}

.sticky-active #spontanBewerbung {
  background-color: var(--dark-gray);
  border-color: var(--dark-gray);
  color: var(--white);
}

input, select, button {
  /* height: 50px; */
}

button#sliderFormBtn {
  min-width: 115px;
}

.filter-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 350px;
  max-width: 100%;
  height: 100%;
  background: #f8f9fa;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
  padding-top: 50px;
  overflow-y: auto;
  transition: left 0.5s;
  z-index: 1050;
}
.filter-sidebar.open {
  left: 0;
}
.close-filter {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

button#filterButton {
  display: block;
  /* width: 100%; */
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  background-color: var(--base-color);
  border: 2px solid var(--base-color);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.ais-HierarchicalMenu-item--selected {
font-weight: initial;
}

span.ais-HierarchicalMenu-label {
font-size: 1rem;
color: #4b566b;
}

span.ais-HierarchicalMenu-count {
color: #7d879c !important;
font-size: 0.9rem !important;
background-color: transparent;
}

a.ais-HierarchicalMenu-link {
display: flex;
justify-content: space-between;
}

li.ais-RefinementList-item div input, li.ais-RefinementList-item div span {
display: flex;
justify-content: space-between;
padding-top: 1px;
}

li.ais-RefinementList-item div {
display: flex;
justify-content: space-between;
}

li.ais-RefinementList-item div input {
margin-right: 10px;
width: 14px;
min-width: 14px;
}

li.ais-RefinementList-item>div {
-webkit-box-align: center!important;
-ms-flex-align: center!important;
align-items: center!important;
}

span.facette-attribute * {
display: flex;
justify-content: space-between;
}

span.facette-attribute {
flex: 1 1 auto!important;
}

ul.ais-RefinementList-list {
padding-left: 0px;
}

.facet-item input {
accent-color: var(--base-color);
}

.single-filter-widget--title {
display: block;
font-size: 17px;
color: black;
font-weight: 600;
/* text-transform: uppercase; */
margin-bottom: 7px;
}

.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5); /* Abdunkelung */
z-index: 1049; /* Unterhalb der Sidebar */
}

.overlay.active {
display: block;
}

.services-tab-navigation #servicesTabs {
  border: none;
  justify-content: start!important;
  display: flex;
}

.services-tab-navigation li.nav-item {
  padding: 0px;
  margin-right: 15px;
  background-color: transparent;
  border: none;
  height: 100%;
  display: flex;
}

.services-tab-navigation .nav-tabs .nav-link.active {
  background-color: var(--base-color);
  color: var(--white);
}

.services-tab-navigation .nav-tabs .nav-link {
  background-color: var(--white);
  color: var(--base-color);
  height: 100%;
}

#job-categories .card-title {
  min-height: 60px;
}

#sliderFormWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 100px;
  start: 50%;
  transform: translate(-50%, 0);
  width: 90%;
  height: 50%; 
}

#sliderFormWrapperInner {
  display: flex;
  flex-direction: column; 
  justify-content: space-between; 
  align-items: end; 
  height: 100%; 
  max-width: 950px;
}

#sliderCurrentTitle {
  flex-shrink: 0; 
  width: 100%;
  text-align: center;
}

#sliderForm {
  flex-shrink: 0; 
  width: 100%;
}

.blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
}

.header-icon svg {
  width: 20px;
}

.circle-divider {
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: gray;
  border-radius: 50%;
  margin: 0 10px;
  vertical-align: middle;
}

.white-divider {
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #333333;
  border-radius: 50%;
  margin: 0 0px;
  vertical-align: middle;
}

.home .white-divider {
  background-color: white;
}

.slider-navigation-style-06.swiper-button-prev, .slider-navigation-style-06.swiper-button-next {
  display: flex!important;
  align-items: center;
  background-color: rgba(0,0,0, .3);
  padding: 30px 10px;
}

.slider-navigation-style-06.swiper-button-prev {
  left: 0;
}

.slider-navigation-style-06.swiper-button-next {
  right: 0;
}

.services-box-style-03 p {
  overflow: hidden;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  min-height: 90px;
}

.services-box-style-03 img {
  width: 100%;
  /* aspect-ratio: 26/21; */
  /* aspect-ratio: 1/1; */
}

.section_2_col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.img_2_col {
  height: 100%;
  object-fit: cover;
}

.wrapper_2_col {
  max-width: 1920px;
}

.marquee-slide {
  justify-content: center;
}

.marquee-slide img {
  padding: 18px;
}

.feature-box-icon {
  color: var(--base-color);
}

.product-filter-menu li.active,
.portfolio-filter li.active {
  background-color: #092640;
  color: var(--white);
}

.portfolio-filter li.active a {
  color: var(--white)!important;
}

.product-filter-menu .circle-divider {
  background-color: #ddd;
}

.portfolio-filter .circle-divider {
  background-color: #bbb;
}

.product-filter-menu li,
.portfolio-filter li {
  display: inline-block;
  margin: 0 10px;
  font-size: 15px;
  cursor: pointer;
  letter-spacing: 0.5px;
  width: auto;
  font-family: var(--alt-font);
  font-weight: 500;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  padding: 5px 12px;
  line-height: 1;
}

.product-filter-menu li a:hover, .portfolio-filter li a:hover {
  color: #092640;
}

.product-filter-menu li.active a:hover, .portfolio-filter li.active a:hover {
  color: rgba(255,255,255, .7);
}

.product-filter-menu li:first-child {
  margin-left: 0; 
}

.product-filter-menu li:last-child {
  margin-right: 0; 
}


.single-product__floating-badges {
  position: absolute;
  top: 10px;
  right: 10px;
}

.single-product__floating-badges span {
  font-size: 15px;
  color: white;
  border-radius: 50px;
  padding: 4px 10px;
  display: block;
  line-height: 1;
}

.single-product__floating-badges span.onsale {
  background-color: #ea010a;
}

.single-product__floating-badges span.new {
  background-color: #FF5C00;
}

.single-product__floating-badges span.hot {
  background-color: #263CB8;
}

.footer-container .newsletter-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}

.subscription .btn {
  right: 3px;
}

.subscription .newsletter-button {
  background-color: var(--base-color);
  color: var(--white);
  width: 105px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  padding: 13px 8px;
  height: 39px;
  line-height: .8;
  font-size: 13px;
  font-weight: 500;
  right: 14px !important;
  border: 0px;
}

.icon-placeholder {
  position: absolute;
  top: 50%;
  left: 15px; 
  transform: translateY(-50%);
  pointer-events: none; 
}

input.with-icon {
  padding-left: 38px!important; 
}

.subfooter-inner {
  border-top: 1px solid rgba(178, 197, 207, .3);
  padding-top: 15px;
  padding-bottom: 15px;
}

footer .container-fluid {
  padding-left: 45px;
  padding-right: 45px;
}

.widget-title {
  margin-bottom: 10px;
  font-weight: 600;
}

.btn.btn-rounded.btn-small {
  padding: 14px 20px;
}

.search-item-link:hover {
  color: #137281;
}

.search-item-img {
  display: flex;
  justify-content: center; 
  align-items: center; 
  width: 100px; 
  aspect-ratio: 1 / 1; 
  overflow: hidden; 
}

.search-item-img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  padding: 0px 5px;
}

.search-item-content {
  line-height: 1.2;
  margin-left: 10px
}

.footer-subscription-widget {
  max-width: 460px;
}

.home .logo-white {
  display: block!important;
}

.home .logo-dark {
  display: none!important;
}

.home .navbar .navbar-nav .nav-link {
  color: var(--white);
}

.navbar .navbar-nav .nav-link {
  color: #333333;
}

.home .header-icon .icon > a {
  color: var(--white);
}
.home .header-icon .icon > a:hover {
  color: var(--white);
}

.header-icon path {
  stroke: #333333
}

.home .header-icon path {
  stroke: white
}

.single-product__content {
  position: relative;
  padding-top: 25px;
}
.single-product__content .title {
  position: relative;
}
.single-product__content .title h3 {
  margin-bottom: 0;
}
.single-product__content .title h3 a {
  display: block;
  font-size: 17px;
  line-height: 1.2;
  /* margin-bottom: 10px; */
  font-weight: 400;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  color: #333;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
}
/* .single-product__content .price .discounted-price {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #333333;
} */
.single-product__content .price .main-price {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #333333;
  margin-right: 5px;
}
.single-product__content .price .main-price.discounted {
  color: #aaaaaa;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  text-decoration: line-through;
}
.single-product__content:hover .single-product__variations {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}
.single-product--smarthome {
  position: relative;
}
.single-product--smarthome .single-product__content {
  position: absolute;
  bottom: 30px;
  left: 15px;
  z-index: 3;
}
.single-product--wearablehome {
  position: relative;
  border: 1px solid #DDDDDD;
}
.single-product--wearablehome .single-product__floating-icons {
  top: 50px;
}
.single-product--wearablehome .single-product__floating-cart {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 5px;
}
.single-product--wearablehome .single-product__floating-cart span.title a {
  font-size: 18px;
  line-height: 28px;
  color: #d3122a;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  font-weight: 500;
}
.single-product--wearablehome .single-product__floating-cart span.title a.active:before {
  content: "\f121";
  font-family: Ionicons;
  display: inline-block;
  margin-right: 5px;
  font-size: 15px;
  font-weight: 500;
  vertical-align: middle;
}
.single-product--wearablehome .single-product__floating-cart span.title a:before {
  content: "+";
  display: inline-block;
  margin-right: 5px;
}
.single-product--wearablehome .single-product__content {
  position: absolute;
  bottom: 30px;
  left: 15px;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.single-product--wearablehome .single-product__content .title h3 a {
  -webkit-transform: none;
          transform: none;
}
.single-product--wearablehome:hover .single-product__floating-cart {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
}
.single-product--wearablehome:hover .single-product__content {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.single-product--wearablehome:hover .title h3 a {
  visibility: visible !important;
  opacity: 1 !important;
  -webkit-transform: none !important;
          transform: none !important;
}
.single-product--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/* @media only screen and (max-width: 767px) {
  .single-product--list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
} */
.single-product--list .single-product__image {
  -ms-flex-preferred-size: 200px;
      flex-basis: 200px;
  margin-right: 30px;
}
/* @media only screen and (max-width: 767px) {
  .single-product--list .single-product__image {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
} */

@media only screen and (max-width: 767px) {
  .single-product--list .single-product__image {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        margin-right: 10px;
  }
}
.single-product--list .single-product__content {
  -ms-flex-preferred-size: calc(100% - 400px);
      flex-basis: calc(100% - 400px);
  padding-top: 0;
}
@media only screen and (max-width: 767px) {
  .single-product--list .single-product__content {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .single-product__image {
    display: flex;
    align-items: center;
  }
}
.single-product--list .single-product__content .title h3 a {
  font-size: 25px;
}
@media only screen and (max-width: 991px) {
  .single-product--list .single-product__content .title h3 a {
    font-size: 18px;
  }
  .single-product--list .price {
      margin-bottom: 0px!important;
  }
}
.single-product--list .single-product__content .price {
  margin-bottom: 30px;
}
.single-product--list .single-product__content .price .main-price, .single-product--list .single-product__content .price .discounted-price {
  font-size: 16px;
}
.single-product--list .short-desc {
  margin-bottom: 30px;
}
.single-product--list:hover .single-product__image a img:nth-child(2) {
  visibility: visible;
  opacity: 1;
}
.single-product--list:hover .single-product__floating-icons span {
  visibility: visible;
  opacity: 1;
}
.single-product--list:hover .single-product__variations {
  visibility: visible;
  opacity: 1;
}

.shop-product__rating .review-link a {
  color: #7e7e7e;
}
.shop-product__rating .review-link a:hover {
  color: #333;
}
.shop-product__title h2 {
  font-size: 34px;
}

.shop-product__price .main-price {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #333;
}
.shop-product__price .main-price.discounted {
  font-size: 15px;
  color: #aaa;
  text-decoration: line-through;
  margin-right: 10px;
}
.shop-product__price .discounted-price {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #333;
}
.shop-product__short-desc {
  /* font-size: 15px; */
  line-height: 24px;
}
.shop-product__buttons .lezada-compare-button {
  font-size: 0;
  display: inline-block;
  height: 44px;
  width: 44px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #d8d8d8;
}
.shop-product__buttons .lezada-compare-button i {
  font-size: 20px;
  color: #ababab;
  line-height: 40px;
}
.shop-product__buttons .lezada-compare-button:hover {
  background-color: #333;
  border-color: #333;
}
.shop-product__buttons .lezada-compare-button:hover i {
  color: #fff;
}
.shop-product__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.variant-group {
  display: flex;
  width: 100%;
}

.variant-group select {
  width: initial;
}

.shop-product__block__title, #product_variant_attribute {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  font-size: 16px;
  line-height: 32px;
  color: #333;
  font-weight: 500;
}
@media only screen and (max-width: 479px) {
  .shop-product__block__title {
    -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
  }
}
.shop-product__block__value .shop-product-size-list .single-size {
  font-size: 24px;
  line-height: 24px;
  color: #ababab;
  margin-right: 35px;
  cursor: pointer;
}
@media only screen and (max-width: 479px) {
  .shop-product__block__value .shop-product-size-list .single-size {
    margin-right: 25px;
  }
}
.shop-product__block__value .shop-product-size-list .single-size:last-child {
  margin-right: 0;
}
.shop-product__block__value .shop-product-size-list .single-size.active {
  color: #333;
}
.shop-product__block__value .shop-product-size-list .single-size:hover {
  color: #333;
}
.shop-product__block__value .shop-product-color-list ul li a span {
  height: 24px;
  width: 24px;
}

.pro-qty {
  border-bottom: 2px solid #ccc;
  padding: 10px 0;
  margin: 0 10px 0 30px
}

.pro-qty input {
  border: none;
  width: 80px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 0;
  padding: 0 15px;
  vertical-align: middle;
  height: 28px;
}

.pro-qty .qty-btn {
  font-size: 20px;
  font-weight: 500;
  color: #333
}

.lezada-button {
  background-color: var(--base-color);
  color: #fff !important;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 0;
  border: 1px solid var(--base-color);
  font-weight: 500;
  letter-spacing: 1px;
  /*----------  small button style  ----------*/
  /*----------  medium button style  ----------*/
  /*----------  large button style  ----------*/
  /*----------  extra large button style  ----------*/
  /*----------  icon left style  ----------*/
}
.lezada-button:hover {
  background-color: transparent;
  color: var(--base-color) !important;
}
.lezada-button--small {
  font-size: 12px;
  padding: 8px 15px;
}
.lezada-button--small--style2 {
  padding: 7px 15px;
}
.lezada-button--medium {
  font-size: 14px;
  padding: 10px 45px;
}
.lezada-button--large {
  font-size: 16px;
  padding: 12px 35px;
}
.lezada-button--xl {
  font-size: 18px;
  padding: 20px 35px;
}

.quickview-title {
  font-size: 16px;
  line-height: 22px;
  color: #333;
  font-weight: 500;
  width: 170px;
}

.quick-view-other-info {
  border-top: 1px solid #e0e0e0;
  padding-top: 10px;
  padding-bottom: 10px
}

.quick-view-other-info table {
  width: 100%
}

.quick-view-other-info table tr td {
  padding-top: 0px
}

.quick-view-other-info table tr td.quickview-value a:hover {
  color: #333
}

.quick-view-other-info table tr td .quickview-social-icons li {
  display: inline-block;
  margin-right: 10px;
}

p:last-child {
  margin-bottom: 0;
}

.tab-style-04 .nav-tabs .nav-item .nav-link {
  line-height: 50px;
}

.single-icon.advance-filter-icon * {
  color: black;
  font-weight: 500;
}

input[type="checkbox"], input[type="radio"] {
  padding: initial;
}

.form-label {
  color: black;
}

div#OrderSummary .accordion-style-01 .accordion-item {
  padding: 0px;
}

div#OrderSummary .accordion-body {
  padding: 0px 20px 20px !important;
}

div#OrderSummary .table>:not(caption)>*>* {
  color: var(--medium-gray);
}

#toast_message a {
  font-size: 13px !important;
  line-height: 1;
}

.tab-style-07 .nav-tabs .nav-item .nav-link.active span, .tab-style-07 .nav-tabs .nav-item .nav-link:hover span {
  color: white;
}

.form-select {
  border-radius: 0px;
}

#helpcenterTab .accordion-button {
  padding: 10px 0px;
}

select#starFilter, .customselect {
  border: 0;
  border-bottom: 2px solid #ccc;
  padding-right: 40px;
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 14px;
  font-size: 17px;
  min-width: 116px;
}

select#starFilter {
  margin-left: 15px;
}

input#quantity::-webkit-outer-spin-button,
input#quantity::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.form-check-input:focus, .form-control:focus, .form-select:focus {
  box-shadow: none;
}

.swiper-wrapper h1, .swiper-wrapper .h1 {
  font-size: clamp(30px, 5vw, 60px);
  filter: drop-shadow(0px 0px 70px black);
  line-height: 1.3;
}

.slider-subtitle {
  filter: drop-shadow(0px 0px 30px black);
  line-height: 1.3;
}

body .my-account-area {
  padding-top: clamp(50px, 5vw, 50px);
  margin-top: 0px !important;
}

.video-container {
  object-fit: cover;
}

/* Respo */
@media (min-width: 1440px) {
  h2.title-font {
      line-height: clamp(3rem, 6vw, 4rem);
  }
}

@media (min-width: 1200px) {
  .container {
    --bs-gutter-x: 1.875rem;
    max-width: 1200px;
  }
  /* .container.wide {
    max-width: 95%;
  } */
  .container.full {
    max-width: 100%;
    padding: 0;
  }
}

@media (max-width: 992px) {

  /* div#sliderFormWrapper {
    transform: translate(-50%, -90%) !important;
  } */

  div#sliderIndustryDropdown {
    flex-basis: calc(100% - 135px);
  }

  div#sliderSearchbox {
      flex-basis: 100%;
      margin-right: 0px !important;
      margin-bottom: 10px;
  }

  div#sliderFormInner {
    flex-wrap: wrap;
  }

  ul.navbar-nav.alt-font {
    padding-bottom: 0px;
  }

  /* div#navbarNav {
      padding-bottom: 30px;
  } */

  ul.navbar-nav.alt-font.navbar-nav-2 {
    padding-top: 0px;
  }

}

@media (max-width: 991px) {

  .white-divider {
    display: none;
  }

  header .navbar-brand .mobile-logo {
    width: 125px !important;
    margin-top: 9px;
  }

  header .navbar-brand {
    padding: 0px 0;
  }

  .header-top-bar .fs-14 {
    font-size: 12px;
  }

  .navbar .navbar-nav .nav-link {
    color: #333333!important;
}
.navbar-collapse {
  left: -15px;
  width: 100vw;
  margin-top: 24px;
}

}

@media (min-width: 768px) {


    .pb-minmd-4 {
        padding-bottom: 4% !important;
    }

    .breadcrumb-area {
      margin-top: 119px;
    }

}

@media (max-width: 768px) {
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; 
  }
  .table-responsive table {
    min-width: 600px; 
  }
  .table-responsive table th,
  .table-responsive table td {
    white-space: nowrap;
  }
}

@media (max-width: 767px) {

  table.table.table-striped th, table.table.table-striped td {
    display: block;
    width: 100%;
}

  div#account-menu {
    width: 100%;
}

  .slider-one-slide-prev-1, .slider-one-slide-next-1 {
    visibility: hidden;
  }

  #pageContent h1, #pageContent h2, #pageContent h3, #pageContent h4, #pageContent h5, #pageContent h6 {
    margin-bottom: 15px;
  }

  .navbar-collapse {
      left: 0px;
  }

  .footer-subscription-widget {
    width: 100%;
    margin-bottom: 40px;
  }

footer.footer-container {
    padding-top: 50px!important;
}

#footerNewsletterWrapper {
    display: flex;
    text-align: center;
    justify-content: center;
}

.footer-contact {
  margin-bottom: 50px;
}

    h1, .h1 {
        font-size: 3.375rem;
        line-height: 4rem;
    }

    .btn.btn-large {
        font-size: 14px;
        padding: 10px 20px;
    }

    div#pop-lang a {
        display: block;
        margin-bottom: 10px;
    }
    
    div#pop-lang span.separator {
        display: none;
    }

    .nav-tabs li, .portfolio-filter li.nav-item {
        display: inline-block !important;
        margin-bottom: 5px !important;
        padding: 0px 10px 10px !important;
        width: initial !important;
    }

    .portfolio-filter {
        display: flex!important;
        justify-content: center;
    }
    
    .portfolio-filter li.nav-item {
        margin: 0!important;
    }

    .consultation-text {
        display: block;
        min-height: 60px;
    }

    .consultation-cta {
        display: block;
        text-align: center;
    }
}

@media (max-width: 575px) {
  .subscription .newsletter-button {
    width: 60px;
  }
  div#section_address {
    margin: 10px 0 0px;
  }
  input#agb {
    margin-top: 0px;
}

  input#agb + label {
      line-height: 1.6;
  }
}

@media (max-width: 550px) {
  .product-filter-menu .circle-divider {
    display: none;
  }

  .product-filter-menu {
    flex-wrap: wrap;
  }
  .product-filter-menu {
      margin-bottom: 30px !important;
  }
  .product-filter-menu li {
    margin-bottom: 20px;
  }
  
}
@media (max-width: 425px) {
  .navbar-brand {
    display: flex;
    align-items: center;
}
  header .navbar-brand img {
    max-width: 126px;
  }
}

/** Impressions **/

.colum_padding_bottom_small {
  padding-bottom: clamp(10px, 5vw, 0px);
}

section {
  padding-top: 20px !important;
}

/* ultra-wide-screen */

@media(min-width: 1920px) {
  .grid.ultra-wide-screen li {
    width: 25%;
  }
}