@media (min-width: 979px){
header {
	padding-top: 15px;
}
    .bars__item {
    margin: -25px 0 0;
    position: relative;
    width: 100vw;
    left: calc(-1*(100vw - 100%) / 2) !important;
}
}
@media (max-width: 979px){

.bars__item {
    margin: -10px 0 0;
    position: relative;
    width: 105vw;
    left: calc(-1*(105vw - 100%) / 2) !important;
}
}

header .navbar-nav {
    justify-content: space-evenly;
}


.promo-section {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}


.promo-item {
  flex: 0 0 220px; 
  background-color: #ffffff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s ease, border 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 280px; 
}

.promo-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  background-color: #eee;
}

.promo-item h3 {
  font-size: 16px;
  margin: 12px 0 4px;
  color: #222;
  height: 40px; 
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.promo-item p {
  font-size: 14px;
  color: #555;
  height: 40px; 
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}


.promo-item:hover {
  border: 2px solid #ff8500;
  transform: translateY(-4px);
}


@media (max-width: 1024px) {
  .promo-section {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
  }

  .promo-section::-webkit-scrollbar {
    height: 8px;
  }

  .promo-section::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
  }

  .promo-item {
    flex: 0 0 70%; 
  }
}

#menu_buttons2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
}

#menu_buttons2 .product-card {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: row;
}


#menu_buttons2 .product-card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}


#menu_buttons2 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.7); 
    z-index: -1;
    transition: background-color 0.5s ease;
    pointer-events: none;
}


#menu_buttons2 .product-card:hover .overlay {
    background-color: rgba(255, 127, 0, 0.7); 
}


#menu_buttons2 .product-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -100%; 
    width: 100%;
    height: 4px;
    background-color: #ff7f00; 
    transition: left 0.4s ease-out;
}

#menu_buttons2 .product-card:hover::after {
    left: 0; 
}


#menu_buttons2 .product-card-left {
    display: flex;
    flex-direction: column;
    width: 60%;
    justify-content: space-evenly;
    z-index: 1;
}

#menu_buttons2 .product-card-left .main-text, .sub-text{
    text-decoration: none;
    color: #fff;
}

#menu_buttons2 .product-card-left .main-text:hover, .sub-text:hover{
    text-decoration: none;
    color: #fff;
}

#menu_buttons2 a{
    text-decoration: none;
    color: #fff;
}

#menu_buttons2 a:hover{
    text-decoration: none;
    color: #fff;
}



#menu_buttons2 .product-card-right {
    position: relative;
    width: 40%;
}


#menu_buttons2 .product-card-right img {
    position: absolute;
    right: -30px;
    width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}


#menu_buttons2 .product-card:hover img {
    transform: translateY(-10px);
}

#menu_buttons2 .main-text {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

#menu_buttons2 .sub-text {
    font-size: 16px;
    margin-bottom: 20px;
    color: #f1f1f1;
}

#menu_buttons2 .cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    text-align: center;
}

#menu_buttons2 .cta-button:hover {
    background-color: #333;
}

#menu_buttons2 .menu_button_wrapper {
    margin-bottom: 2rem !important;   
}

.big_label:after, .headline:after{
    display: none;
}


.big_label, .headline{
    flex-direction: row;
}

.big_label__wrapper, .headline__wrapper{
    justify-content: start;
}

del.omnibus_price__value{
    text-decoration: none;
}

#benefit_zone {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    gap: 80px;
    flex-wrap: wrap;
    border-radius: 20px;
}

.benefit_element {
    display: flex;
    align-items: center;
    max-width: 250px;
}

.benefit_square {
    background-color: #ff8000; 
    width: 50px;
    height: 50px;
    border-radius: 12px; 
    margin-right: 15px;
}

.benefit_text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.benefit_text span {
    font-size: 14px;
    color: #666;
}

.benefit_icon{
    max-width: 72px;
    padding: 10px;
    border-radius: 8px;
    margin-right: 20px;
}

.scriptEcosystem{
    font-family: var(--font-family-headline);
    disply:flex;
    flex-wrap: wrap;
  }
  
  .fullEcoProduct{
    left: 50%;
    margin-left: -50vw;
    width: 100vw;
    position: relative;
  }

  .scriptEcosystem .title{
    text-align: center;
    font-weight: 500;
    font-size: 2em;
    padding: 0 0 0.7em 0;
  }

.scriptEcosystem .subtitle {
    text-align: center;
    font-weight: 400;
    font-size: 1.1em;
    padding: 0 0 0.7em 0;
}

.scriptEcosystem .paragraph {
    text-align: left;
    padding: 0 0 0.7em 0;
}

  .scriptEcosystem .imgsrc{
    text-align: center;
    width: 100%;
  }

  .scriptEcosystem .imgsrc img{
    width: 100%;
    padding: 0 0 0.7em 0;
    border-radius: 15px
  }
  
  

  .scriptEcosystem .malymdruczkim{
    text-align: left;
    font-weight: 200;
    font-size: 0.8em;
    color: gray;
  }

@media  (max-width: 750px){
.scriptEcosystem .malymdruczkim{
    font-size: 0.5em;
  }
}

.scriptEcosystem .column{
display: flex;
flex-direction: row;
justify-content: space-between;  
flex-wrap: wrap;
}

.scriptEcosystem .reverse{
flex-direction: row-reverse !important;
}

.scriptEcosystem .onepart {
flex-direction: column;
display: flex;
justify-content: space-between;
}

.scriptEcosystem .center {
justify-content: center !important;
}

.scriptEcosystem .onepart img {
width: 100%;
}

.scriptEcosystem .onepart .title{
font-size: 1.3em;	
padding: 0.5em 0 0.5em 0;
}

.scriptEcosystem .onepart .subtitle{
font-size: 1.0em;
padding: 0.5em 0 0.5em 0;
}

.scriptEcosystem .onetwo{
flex-basis: 50%;
}

.scriptEcosystem .onetwo-w{
flex-basis: 48%;
}

.scriptEcosystem .onethird{
flex-basis: 33%;
}

.scriptEcosystem .onethird-w{
flex-basis: 30%;
}

.scriptEcosystem .onequarter{
flex-basis: 25%;
}

.scriptEcosystem .onequarter-w{
flex-basis: 24%;
}
.scriptEcosystem .onequarter-space{
  flex-basis: 20%;
  margin: 1em;
}  

.scriptEcosystem .onesix{
flex-basis: 16%;
}

.scriptEcosystem .onesix-w{
flex-basis: 15%;
}

.scriptEcosystem .oneten{
flex-basis: 10%;
}

.scriptEcosystem .oneten-w{
flex-basis: 9%;
}


@media only screen and (max-width: 750px) { 
.scriptEcosystem .onetwo{
  flex-basis: 100%;
}
.scriptEcosystem .onetwo-w{
  flex-basis: 100%;
}

.scriptEcosystem .onethird{
  flex-basis: 100%;
}

.scriptEcosystem .onethird-w{
  flex-basis: 100%;
}

.scriptEcosystem .onequarter{
  flex-basis: 50%;
}

.scriptEcosystem .onequarter-w{
  flex-basis: 45%;
}	

.scriptEcosystem .onequarter-space{
  flex-basis: 40%;
}	

.scriptEcosystem .onesix{
  flex-basis: 33.33%;
}

.scriptEcosystem .onesix-w{
  flex-basis: 30%;
}

.scriptEcosystem .oneten{
  flex-basis: 20%;
}

.scriptEcosystem .oneten-w{
  flex-basis: 18%;

}    
}

@media (min-width: 801px) {
    .scriptEcosystem {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .module {
        position: relative;
        margin-bottom: 20px;
        width: 100%;
    }
    .text-container {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        padding: 10px;
        color: white;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
        max-width: 450px;
    }
    .module.left .text-container {
        left: 5%;
    }
    .module.right .text-container {
        right: 5%;
    }
    .module.up .text-container {
        top: 5%;
        left: 50%;
        transform: translateX(-50%) translateY(0);
    }
    .imgsrc img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 800px) {
    .scriptEcosystem {
        display: block;
        text-align: center;
    }
    .module {
        margin-bottom: 10px;
    }
    .text-container {
        position: static;
        margin-top: 0;
        padding: 10px;
        color: black;
        background-color: transparent;
        text-align: center;
    }
    .module.left .text-container {
        margin-bottom: 10px;
    }
    .imgsrc img {
        width: 100%;
        height: auto;
    }
}
    
    .fade-in {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 1s ease-out, transform 1s ease-out;
    }
    
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
          /* ukryte */
  
  .projector_buy__number_amounts, .stock__availabilty_count, #order2_info_sub4, .trait, .traits{ display: none !important; }
  

.cop_documents {
    display: none !important;
}


span[class^="invoice-info-msg-"] {
  display: none;
}

.cop_remarks__item.--delivery{
    display: none;
}

#points_login, #client_cards{
    display: none;
}

.hotspot:not(.--slider_gallery):not(.--list):not(.--added) .products__wrapper {
    padding: 10px 30px;
}

.hotspot .product__icon {
    background: unset;
}

.hotspot .product__icon:hover {
    border-width: 1px;
    border-style: solid;

    border-image: initial;
}

.article__image_wrapper img{
    object-fit: cover;
    border-radius: 20px;
}

.custom-basket-productinfo{
    margin-top: 6px;
    background: #ff8500;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: .6rem 1rem;
    text-transform: uppercase;
    border-radius: 25px;
}

.custom-basket-productinfo a:hover{
    color: #e2e2e2;
}

.custom-basket-productinfo a{
    color: #fff;
}

#ceneo-widget
{
    display: none !important;
}

.projector_ean_code_display{
    font-size: 12px;
    color: #787878;
}

label[for="invoice_for_another_address"] {
  display: none;
}


.product__prices.--omnibus-higher .price.--main{
    color: #ff8500;
}