.bundle-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0 12px;
    padding: 12px 14px;
    background: #fff8e8;
    border: 1px solid #f0d48a;
    border-left: 4px solid #e0a100;
    border-radius: 8px;
    box-sizing: border-box;
}

.bundle-alert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    margin-top: 2px;
}

.bundle-alert-text {
    font-size: 13px;
    line-height: 1.5;
    color: #5f4a1a;
    font-weight: 500;
}

@media (max-width: 768px) {
    .bundle-alert {
        padding: 10px 12px;
        gap: 8px;
    }

    .bundle-alert-text {
        font-size: 12px;
        line-height: 1.45;
    }

    .bundle-alert-icon {
        font-size: 15px;
    }
}

.stocks-bundle,
.stocks-bundle-full,
.bundle-with-variants {
    display: none !important;
}

.bundle-add-btn {
    margin-top: 10px;
    width: 100%;
    background: #ff7a00;
    color: #fff;
    border: none;
    padding: 10px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.bundle-add-btn:hover {
    background: #e56b00;
}

.summary-bundle {
    background: #f8f8f8; /* jaśniej, bardziej elegancko */
    padding: 14px 18px;
    border-radius: 8px;
    margin-top: 14px;
    border: 1px solid #e6e6e6;
}

/* GÓRNY WIERSZ */
.summary-bundle-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline; /* 🔥 lepsze wyrównanie ceny do tekstu */
    gap: 10px;
}

/* LEWA */
.summary-bundle-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* GWIAZDKA */
.summary-bundle-title .star {
    margin-left: 2px;
    font-weight: 600;
}

/* PRAWA (CENA) */
.summary-bundle-price {
    font-size: 24px; /* lekko większa */
    font-weight: 700;
    color: #111;
    letter-spacing: 0.3px;
}

/* DOLNY TEKST */
.summary-bundle-note {
    margin-top: 6px;
    font-size: 12px;
    color: #ff7a00;
    font-weight: 500;
    line-height: 1.4;
}

.promo-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-left: 4px solid #ff7a00;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 6px;
}

.promo-left img {
    width: 80px;
    height: auto;
}

.promo-right {
    display: flex;
    flex-direction: column;
}

.promo-title {
    font-weight: 700;
    font-size: 15px;
    color: #111;
    margin-bottom: 3px;
}

.promo-desc {
    font-size: 13px;
    color: #333;
}

.promo-note {
    font-size: 11px;
    color: #777;
    margin-top: 3px;
}

.bundle-btn {
    margin-top: 12px;
    width: 100%;
    padding: 12px 16px;
    background: #e60023; /* możesz zmienić pod brand */
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bundle-btn:hover {
    background: #cc001f;
}

.bundle-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#gratis-list .price-breakdown {
    margin-top: 6px;
    font-size: 13px;
}

#gratis-list .price-breakdown div {
    margin-top: 2px;
}

#gratis-list .name a {
    color: #111;
    text-decoration: none;
}

#gratis-list .name a:hover {
    text-decoration: underline;
    color: #e60023;
}

#gratis-list .promo-badge {
    display: inline-block;
    margin-top: 6px;
    background: linear-gradient(135deg, #e60023, #ff4d4f);
    color: #fff;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* INFO TEKST */
#gratis-list .bundle-info {
    font-size: 12px;
    color: #333;
    margin-top: 4px;
}

/* GWIAZDKA */
#gratis-list .bundle-note {
    font-size: 11px;
    color: #888;
    margin-top: 6px;
}

.productlist .variant {
    display: none !important;
}

/* ===== GŁÓWNY BOX ===== */
#gratis-box {
    margin-top: 30px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
}

/* ===== TYTUŁ ===== */
#gratis-box > div:first-child {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ===== PRODUKT GŁÓWNY ===== */
#gratis-box .main-product {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 2px solid #111;
}

#gratis-box .main-product img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

#gratis-box .main-product-title {
    font-weight: 700;
    font-size: 14px;
}

#gratis-box .main-product-label {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

#gratis-box .main-product-price {
    font-weight: 700;
    margin-top: 6px;
    font-size: 15px;
}

/* ===== GRATIS ITEM ===== */
#gratis-list > div:not(.summary-bundle) {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

#gratis-list img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

#gratis-list .name {
    font-weight: 600;
    font-size: 14px;
}

#gratis-list .qty {
    font-size: 12px;
    color: #777;
    margin-top: 2px;
}

/* ===== CENY ===== */
#gratis-list .price-label {
    margin-top: 6px;
    font-size: 12px;
    color: #999;
}

#gratis-list .price-old {
    text-decoration: line-through;
    color: #aaa;
    margin-right: 8px;
    font-size: 13px;
}

#gratis-list .price-new {
    font-weight: 700;
    color: #e60023; /* czerwony jak promo */
    font-size: 15px;
}

/* ===== PODSUMOWANIE ===== */
#gratis-list .summary {
    margin-top: 20px;
    padding: 18px !important;
    background: linear-gradient(135deg, #f7f7f7, #eeeeee);
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== WYRÓŻNIENIE CENY ZESTAWU ===== */
#gratis-list .summary-price {
    font-size: 20px;
    color: #111;
}

/* ===== BONUS: badge gratis ===== */
#gratis-box::before {
    content: "ZESTAW";
    display: inline-block;
    background: #e60023;
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
}

#gratis-box.promo-stihl::before {
    content: "PROMOCJA STIHL";
    background: #ff7a00;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ===== BUNDLE BOX (dopasowany do gratis-box) ===== */
#bundle-box {
    margin-top: 30px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
}

#bundle-box .bundle-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ===== ELEMENTY ===== */
.bundle-items {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.bundle-item {
    text-align: center;
    width: 120px;
}

.bundle-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.bundle-name {
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
}

/* ===== LABEL ===== */
.bundle-label {
    font-size: 12px;
    margin-top: 4px;
    font-weight: 700;
    color: #e60023;
}

/* ===== PLUS ===== */
.bundle-plus {
    font-size: 26px;
    font-weight: 700;
    color: #111;
}

/* ===== BADGE ===== */
#bundle-box::before {
    content: "PROMOCJA ZESTAWU";
    display: inline-block;
    background: #2ecc71;
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
}

#gratis-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gratis-overlay-content{
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.gratis-text{
    margin-top: 10px;
}

.gratis-spinner{
    width: 36px;
    height: 36px;
    border: 4px solid #ddd;
    border-top: 4px solid #000;
    border-radius: 50%;
    margin: 0 auto;
    animation: gratis-spin 1s linear infinite;
}

@keyframes gratis-spin{
    from{ transform: rotate(0deg); }
    to{ transform: rotate(360deg); }
}

.tech-footnotes{
  font-family: Montserrat, sans-serif;
  margin-top: 10px;          /* odstęp od tabeli */
  padding-top: 10px;         /* jeśli wolisz padding zamiast marginesu */
  font-size: 12px;           /* mniejsza czcionka */
  line-height: 1.25;
  color: #000;
}

.tech-footnotes span{
  display: block;            /* jeden pod drugim */
  margin: 0 0 6px 0;         /* odstęp między przypisami */
}

.tech-footnotes span:last-child{
  margin-bottom: 0;
}

.tech-footnotes sup{
  font-size: 10px;           /* jeszcze mniejszy indeks */
  margin-right: 4px;
}


/* Pozycjonowanie względem nav (ważne) */
nav.innermenu { position: relative; }

/* ====== PANEL ====== */
#hm804-mega.hm804-mega{
  position: absolute;
  left: 0;          /* JS ustawia dokładnie pod 804 */
  top: calc(100% + 8px);
  z-index: 999999;

  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  border-radius: 12px;

  padding: 10px;
  display: none;

  /* żeby było “bardziej jak mega menu” */
  min-width: 280px;
}

/* Kolumny */
#hm804-mega .hm804-cols{
  display: flex;
  align-items: stretch;
  gap: 0; /* separatory robią robotę */
}

/* Wspólne dla kolumn */
#hm804-mega .hm804-col{
  min-width: 280px;            /* trochę szerzej */
  padding: 6px 8px;
}

/* Separator między kolumnami */
#hm804-mega .hm804-col + .hm804-col{
  border-left: 1px solid rgba(0,0,0,.06);
}

/* Scroll tylko na level1 */
#hm804-mega .hm804-col.level1{
  max-height: 360px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Listy */
#hm804-mega ul{ margin:0; padding:0; list-style:none; }
#hm804-mega li{ margin:0; padding:0; }

/* Linki */
#hm804-mega a{
  display:block;
  padding: 7px 10px;
  text-decoration:none;
  border-radius: 8px;
  line-height: 1.25;
}

/* Hover: delikatny (czytelniej niż samo underline) */
#hm804-mega a:hover{
  background: rgba(0,0,0,.05);
  text-decoration: none;
}

/* ACTIVE: wyraźnie pokazuje gdzie jesteś */
#hm804-mega a.is-active{
  background: rgba(0,0,0,.08);
  font-weight: 700;
}

/* ====== ROZWIJANIE KOLUMN 2/3 (nie zajmują miejsca dopóki nie są otwarte) ====== */
#hm804-mega .hm804-col.level2,
#hm804-mega .hm804-col.level3{
  width: 0;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
  border-left: none;
  overflow: hidden;

  opacity: 0;
  transform: translateX(-8px);
  pointer-events: none;

  transition:
    width .22s ease,
    opacity .18s ease,
    transform .18s ease;
}

/* otwarte */
#hm804-mega .hm804-col.level2.is-open,
#hm804-mega .hm804-col.level3.is-open{
  width: 280px;
  min-width: 280px;

  padding-left: 8px;
  padding-right: 8px;
  border-left: 1px solid rgba(0,0,0,.06);

  overflow: visible;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* (opcjonalnie) ładniejszy scrollbar na webkit */
#hm804-mega .hm804-col.level1::-webkit-scrollbar{
  width: 10px;
}
#hm804-mega .hm804-col.level1::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.25);
  border-radius: 10px;
  border: 3px solid #fff;
}
#hm804-mega .hm804-col.level1::-webkit-scrollbar-track{
  background: transparent;
}

/* MOBILE/TABLET: nie ruszamy */
@media (max-width: 991px){
  #hm804-mega{ display:none !important; }
}

@media (min-width: 992px) {
  /* Ukryj domyślne submenu Shopera tylko dla kategorii 804 (desktop) */
  #hcategory_804 > .submenu.level1 {
    display: none !important;
  }
}


/* ------------- OPIS STIHL ----------- */
/* (opcjonalnie) Montserrat 900 italic; usuń, jeśli motyw już go ładuje */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,900&display=swap");

:root { --stihl-accent: #FF6A13; } /* pomarańcz STIHL (możesz podmienić) */

/* Kontener opisu */
.stihl-desc{
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 16px 24px;
}

/* ===== HERO (Zdjęcie główne) ===== */
.stihl-hero{ margin: 8px 0 20px; }
.stihl-hero__media{
  /* PODMIEŃ NA WŁAŚCIWY BANER STIHL */
  background: url("https://mamynarzedzia.pl/userdata/public/assets/banners/banner_stihl.png") center center no-repeat;
  background-size: contain;          /* nie przycina */
  border-radius: 10px;
  aspect-ratio: 1013 / 330;          /* proporcje banera */
  width: 100%;
  overflow: hidden;
}

/* ===== Sekcje ===== */
.stihl-section{ margin: 24px 0; }

.stihl-section__title{
  text-align: left;
  font: italic normal 900 22px/27px Montserrat, Arial, sans-serif;
  letter-spacing: 0;
  color: var(--stihl-accent);
  position: relative;
  padding-top: 50px;
}
.stihl-section__title::after{
  content: "";
  display: block;
  margin-top: 10px;                   /* 10px pod nagłówkiem */
  border-top: 1px solid var(--stihl-accent); /* kreska */
  margin-bottom: 41px;
}

.stihl-section__body{ padding-top: 12px; }
  
/* ===== Sekcja "Zestaw zawiera" ===== */
.stihl-kit .stihl-section__body {
  padding-top: 8px;
}

/* Lista zestawu */
.stihl-kit__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 12px 24px; /* wiersze / kolumny */
}

/* Pojedynczy element listy */
.stihl-kit__item {
  position: relative;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #000;
  padding-left: 36px; /* miejsce na ikonkę + odstęp do tekstu */
}

/* Ikonka zestawu zamiast kropek/pasków */
.stihl-kit__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;   /* dopasuj do wymiaru ikonki */
  height: 20px;  /* dopasuj do wymiaru ikonki */
  background: url("/userdata/public/assets/banners/ikonka-zestaw.png") no-repeat center;
  background-size: contain;
}

/* Notatka pod listą */
.stihl-kit__note {
  margin-top: 14px;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: rgba(0,0,0,.75);
}

/* Mobile: jedna kolumna */
@media (max-width: 720px) {
  .stihl-kit__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ===== Wyposażenie standardowe ===== */
.stihl-equip .stihl-section__body{ padding-top: 8px; }

.stihl-equip__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;                 /* odstęp między wierszami */
}

.stihl-equip__item{
  display: grid;
  grid-template-columns: 120px 1fr; /* miniatura ~120 i treść */
  gap: 20px;
  align-items: start;
}

.stihl-equip__img{
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  background: #eee;
  flex-shrink: 0;
}

.stihl-equip__content{ min-width: 0; } /* żeby tekst dobrze się łamał */

/* Nazwa cechy (np. Innowacyjny kosz na trawę) */
.stihl-equip__name {
  margin: 0 0 6px;
  text-align: left;
  font: italic normal 900 16px/19px Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0;
  color: #252525;
}


/* Opis cechy */
.stihl-equip__text {
  margin: 0;
  text-align: left;
  font: normal normal normal 13px/19px Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0;
  color: #000000;
}

/* akcentowa linia pod tytułem sekcji już rysowana przez .stihl-section__title::after
   (kolor: var(--stihl-accent, #FF6A13)) */

/* Mobile */
@media (max-width: 720px){
  .stihl-equip__item{
    grid-template-columns: 92px 1fr; /* mniejsza miniatura */
    gap: 14px;
  }
  .stihl-equip__img{
    width: 92px; height: 92px; border-radius: 10px;
  }
  .stihl-equip__name{ font-size: 18px; }
  .stihl-equip__text{ font-size: 13px; line-height: 1.55; }
}

/* Bardzo wąsko */
@media (max-width: 420px){
  .stihl-equip__item{
    grid-template-columns: 1fr;      /* obraz nad tekstem */
  }
  .stihl-equip__img{
    width: 100%; height: auto; aspect-ratio: 1/1;
  }
}

/* ===== Tabela akumulatorów ===== */
.stihl-bat__wrap{
  overflow-x: auto;                /* przewijanie na mobile */
}

.stihl-bat__table{
  width: 100%;
  border-collapse: separate;       /* potrzebne do radiusów na komórkach */
  border-spacing: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  color: #000;
}

/* --- NAGŁÓWEK: jedna wspólna ramka + zaokrąglone tylko skrajne rogi --- */
.stihl-bat__table thead th{
  padding: 14px 12px;
  text-align: center;
  font-weight: 700;
  background: #fff;
  border-top: 1px solid var(--stihl-accent, #FF6A13);
  border-bottom: 1px solid var(--stihl-accent, #FF6A13);
  border-left: 0;
  border-right: 0;
  vertical-align: middle;
}

/* lewy i prawy brzeg ramki + zaokrąglenia tylko na skrajach */
.stihl-bat__table thead th:first-child,
.stihl-bat__table thead th.cell-left{
  border-left: 1px solid var(--stihl-accent, #FF6A13);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.stihl-bat__table thead th:last-child,
.stihl-bat__table thead th.cell-right{
  border-right: 1px solid var(--stihl-accent, #FF6A13);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* opis w nagłówkach */
.stihl-bat__table thead th small{
  display: block;
  margin-top: 2px;
  font-weight: 400;
  font-size: 11px;
  color: #666;
}

/* pasy tła dla kolumn (2 i 4) */
.stihl-bat__table thead th.col-band{ background: #f6f6f6; }
.stihl-bat__table tbody td:nth-child(2),
.stihl-bat__table tbody td:nth-child(4){ background: #f7f7f7; }

/* --- BODY --- */
.stihl-bat__table tbody td{
  padding: 16px 12px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #e9e9e9;
  background: #fff;
}

/* 1. kolumna: nazwa + ikona z CSS (bez <img>) */
.stihl-bat__table thead th.cell-left,
.stihl-bat__table tbody td.bat-accu{
  min-width: 150px;    /* SZERZEJ, żeby AK 30 S mieściło się w jednym wierszu */
}

.stihl-bat__table tbody td.bat-accu{
  position: relative;
  text-align: left;
  font-weight: 700;
  padding-left: 84px;  /* miejsce na ikonę + odstęp */
  white-space: nowrap; /* nie łam nazw (np. AK 30 S) */
  background: #fff;    /* nadpisz ewentualny pas */
}

/* pseudo-ikona (wspólne) */
.stihl-bat__table tbody td.bat-accu::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 60px;          /* szerokość miniatury */
  height: 45px;         /* wysokość miniatury */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 8px;
}

/* konkretne modele — PODMIEŃ ścieżki, jeśli inne */
.stihl-bat__table tbody td.bat-accu.ak10::before{
  background-image: url("https://mamynarzedzia.pl/userdata/public/assets/aku/AK30S.jpg");
}
.stihl-bat__table tbody td.bat-accu.ak20::before{
  background-image: url("https://mamynarzedzia.pl/userdata/public/assets/aku/AK30S.jpg");
}
.stihl-bat__table tbody td.bat-accu.ak30::before{
  background-image: url("https://mamynarzedzia.pl/userdata/public/assets/aku/AK30S.jpg");
}

/* ostatnia kolumna: pogrubiona i do prawej */
.stihl-bat__table tbody td.bat-strong{
  text-align: right;
  font-weight: 700;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 900px){
  .stihl-bat__table{ font-size: 13px; }
  .stihl-bat__table thead th{ padding: 12px 10px; }
  .stihl-bat__table tbody td{ padding: 12px 10px; }
  .stihl-bat__table tbody td.bat-accu{ padding-left: 74px; }
  .stihl-bat__table tbody td.bat-accu::before{ width: 50px; height: 38px; }
}

@media (max-width: 520px){
  .stihl-bat__table{ font-size: 12px; }
  .stihl-bat__table tbody td.bat-accu{
    padding-left: 66px;
    min-width: 160px;     /* zawęź, ale nadal trzymaj jedną linię gdy się mieści */
    white-space: normal;  /* pozwól łamać, jeśli bardzo wąsko */
  }
  .stihl-bat__table tbody td.bat-accu::before{
    width: 44px; height: 34px; left: 10px; border-radius: 6px;
  }
}


/* ===== Specyfikacja (kafelki zalet) ===== */
.stihl-benefits{
  display: flex;
  flex-wrap: wrap;
  gap: 40px;                          /* odstęp między kafelkami */
}

.stihl-benefit{
  flex: 0 0 300px;                    /* max 3 w rzędzie przy ~1000px+ */
  min-height: 57px;
  background: #F6F6F6;
  border-radius: 5px;
  font: normal normal bold 14px/18px Montserrat, sans-serif;
  color: #000;
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px 16px 10px 55px;       /* +10px, aby tekst miał 20px od ikonki */
}

.stihl-benefit::before{
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("/userdata/public/assets/banners/icon_check.png") center center no-repeat;
  background-size: contain;
}

/* ===== Pliki do pobrania ===== */
.stihl-files {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stihl-files__link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;

  padding: 10px 16px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #f6f6f6;                 /* ← szare tło */

  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #000;
  text-decoration: none;

  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

/* Ikona PDF */
.stihl-files__link::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 27px;
  background: url("/userdata/public/assets/banners/icon_pdf.svg") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

/* Hover – delikatnie ciemniejsze szare i akcent na ramce */
.stihl-files__link:hover {
  background: #ececec;                 /* ciemniejsze szare */
  border-color: var(--stihl-accent, #FF6A13);
  color: #000;                          /* zostaje czarny dla czytelności */
}

/* Focus (klawiatura) – wyraźny akcent */
.stihl-files__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,106,19,.25);
  border-color: var(--stihl-accent, #FF6A13);
}


/* ===== Mobile ===== */
@media (max-width: 600px){
  .stihl-hero{ margin: 8px 0 12px; }   /* mniejszy odstęp pod banerem */
  .stihl-hero__media{
    background-size: contain;          /* zachowaj 100% obrazu */
    aspect-ratio: auto;                /* nie wymuszaj proporcji na siłę */
    height: 180px;                     /* stała wysokość na tel. (bez cropu) */
  }
  .stihl-benefit{
    flex: 1 1 100%;   /* każdy kafelek pełna szerokość */
    max-width: 100%;  /* nie ograniczaj do 300px */
  }
  .stihl-section__title{
    padding-top: 0;
  }
}
/* -------------KONIEC OPIS STIHL ----------- */


/* ------------- OPIS CEDRUS ----------- */
/* (opcjonalnie) Montserrat 900 italic; usuń, jeśli motyw już go ładuje */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,900&display=swap");

:root { --cedrus-accent: #F47920; }

/* Kontener opisu */
.cedrus-desc{
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 16px 24px;
}

/* ===== HERO (Zdjęcie główne) ===== */
.cedrus-hero{ margin: 8px 0 20px; }
.cedrus-hero__media{
  background: url("https://mamynarzedzia.pl/userdata/public/assets/banners/banner_cedrus.png") center center no-repeat;
  background-size: contain;          /* nie przycina */
  border-radius: 10px;
  aspect-ratio: 1013 / 330;          /* proporcje banera */
  width: 100%;
  overflow: hidden;
}

/* ===== Sekcje ===== */
.cedrus-section{ margin: 24px 0; }

.cedrus-section__title{
  text-align: left;
  font: italic normal 900 22px/27px Montserrat, Arial, sans-serif;
  letter-spacing: 0;
  color: #F47920;
  position: relative;
  padding-top: 50px;
}
.cedrus-section__title::after{
  content: "";
  display: block;
  margin-top: 10px;              /* 10px pod nagłówkiem */
  border-top: 1px solid #F47920; /* kreska */
  margin-bottom: 41px;
}

.cedrus-section__body{ padding-top: 12px; }

/* ===== Specyfikacja (kafelki zalet) ===== */
.cedrus-benefits{
  display: flex;
  flex-wrap: wrap;
  gap: 40px;                     /* odstęp między kafelkami */
}

.cedrus-benefit{
  flex: 0 0 300px;               /* max 3 w rzędzie przy ~1000px+ */
  min-height: 57px;
  background: #F6F6F6;
  border-radius: 5px;
  font: normal normal bold 14px/18px Montserrat, sans-serif;
  color: #000;
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px 16px 10px 55px;  /* +10px, aby tekst miał 20px od ikonki */
}

.cedrus-benefit::before{
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("/userdata/public/assets/banners/icon_check.png") center center no-repeat;
  background-size: contain;
}

/* ===== Dane techniczne (układ 50/50) ===== */
.tech-row{
  display: flex;
  border-radius: 5px;
  padding: 10px 0;
}

.tech-row:nth-child(odd){ background: #F6F6F6; }
.tech-row:nth-child(even){ background: #FFFFFF; }

.tech-attr{
  flex: 0 0 50%;                 /* lewa połowa */
  text-align: right;
  font: bold 13px/13px Montserrat, sans-serif;
  color: #000;
  padding-right: 24px;           /* 24px po prawej strony atrybutu */
  box-sizing: border-box;
  white-space: nowrap;
}

.tech-val{
  flex: 0 0 50%;                 /* prawa połowa */
  text-align: left;
  font: normal 13px/13px Montserrat, sans-serif;
  color: #000;
  padding-left: 24px;            /* 24px po lewej strony wartości */
  box-sizing: border-box;
}

/* ===== Pliki do pobrania (disabled – widoczne, ale nieklikalne) ===== */
.cedrus-files__item button[disabled]{
  opacity: .75;
  cursor: not-allowed;
  border: 1px dashed var(--cedrus-accent);
  background: transparent;
  padding: 8px 12px;
  border-radius: 8px;
}

@media (max-width: 600px){
  .cedrus-hero{ margin: 8px 0 12px; }   /* mniejszy odstęp pod banerem */
  .cedrus-hero__media{
    background-size: contain;           /* zachowaj 100% obrazu */
    aspect-ratio: auto;                 /* nie wymuszaj proporcji na siłę */
    height: 180px;                      /* stała wysokość na tel. (bez cropu) */
  }
    .cedrus-benefit{
    flex: 1 1 100%;   /* każdy kafelek pełna szerokość */
    max-width: 100%;  /* nie ograniczaj do 300px */
  }
    .cedrus-section__title{
    padding-top: 0;
  }
}
  
/* -------------KONIEC OPIS CEDRUS ----------- */
  
#alior-raty-calc-button {
  cursor: pointer !important;
}

#alior-raty-product,
#alior-product-page-container {
  pointer-events: auto !important;
}

#alior-raty-product {
  background-color: #fdc542;
  border-radius: 8px;
  margin-bottom: -10px !important;
}

#box_mainproducts .boxhead {
  margin-block: 3rem;
}

::marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: auto !important;
    font-size: 1.5em; /* Zwiększa rozmiar fontu */
}


#alior-product-page-container {
    width: 100% !important;
    text-align: center; /* Wyśrodkowanie zawartości */
    padding: 10px 0; /* Dodatkowy odstęp góra/dół dla lepszego wyglądu */
    display: block; /* Upewniamy się, że element nie jest ukryty */
}

.video-container {
    position: relative;
    width: 70%;
    max-width: 700px; /* Możesz dostosować */
    margin: 0 auto; /* Wyśrodkowanie */
    padding-bottom: 39.375%; /* 70% * 56.25% dla proporcji 16:9 */
    height: 0;
    display: flex;
    justify-content: center;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

leaselink-button {
    display: block; /* Zapewnia, że element zajmuje całą szerokość */
    width: 100%; /* Ustawia szerokość na 100% rodzica */
    box-sizing: border-box; /* Uwzględnia padding i border w szerokości */
}

.lease-card img {
    border-radius: 8px; /* Zaokrąglone rogi */
    overflow: hidden; /* Zapobiega wystawaniu zawartości poza zaokrąglone rogi */
    margin-top: 5px;
    width: 100%;
    border: 1px solid #880090; /* Obramowanie w kolorze #880090 o grubości 2px */
}

.slider-raty {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  aspect-ratio: 1920 / 200; /* Ustalono proporcje obrazu */
  max-height: 171px;
}

.slider-raty .slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-raty .slide {
  flex: 0 0 100%; /* Ustawienie szerokości slajdu na 100% */
  box-sizing: border-box;
}

.slider-raty .slide img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

/* Style dla przycisków */
.slider-raty button.prev,
.slider-raty button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
  font-size: 18px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.slider-raty button.prev {
  left: 10px;
}

.slider-raty button.next {
  right: 10px;
}

.slider-raty button.prev:hover,
.slider-raty button.next:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

/* Zwiększenie obszaru kliknięcia przycisków */
.slider-raty button {
  outline: none;
}

@media (max-width: 768px) {
    .slider-raty button.prev,
    .slider-raty button.next {
        display: none; /* Ukrycie przycisków na urządzeniach mobilnych */
    }
}

@keyframes glowing {
    0% { color: #000000; }
    50% { color: #ff6600; }
    100% { color: #000000; }
}

.info-faktura-2024 {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 600; /* Semi-bold */
    color: #ff6600;
    background-color: #fff;
    border: 1px solid #ff6600;
    border-radius: 15px;
    padding: 10px 20px;
    display: inline-block;
    text-align: center;
    animation: glowing 3s infinite ease-in-out;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

.accesories {
  margin-top: 20px;
}

#loading-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 12px;
    backdrop-filter: blur(5px); /* Zamazane tło */
}

.spinner {
    border: 10px solid #f3f3f3; /* Light grey */
    border-top: 10px solid #f47920; /* Black */
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loading-screen p {
    margin-top: 20px;
    font-size: 20px;
    color: #000000; /* Black */
    text-align: center;
  	font-weight: bold;
}

#paynow_formularz button {
	height: 55px;
    border-radius: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 23px;
    transition: 250ms;
    width: 200px;
  color: #ffffff;
  margin: 0 auto;
	background: #000000;
}
/* cookies */
.green-left-section .info{
    overflow: hidden;
}
.consents_popup .consents__wrapper {
    top: 0;
    /* align-items: center; */
}
.consents_popup .consents__modal {
    width: auto;
    /* max-width: 70vw; */
}

.consents__wrapper {
    position: fixed;
    z-index: 999999;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 -1px 3px 0px rgba(0,0,0,0.25);
}
.consents__modal {
    padding: 20px 40px 60px 40px;
    background-color: black;
    color:white;
    width: 100%;
    max-height: 80vh;
    font-size:13px;
    line-height:18.5px;
}
.consents__modal p{
    max-width: 1000px;
}

.consents__modal p a{
    color:white;
    text-decoration:underline;
}
.consents__basic-view {
    display: block;
    align-items: center;
    max-height: 80vh;
    width: 100%;
}
.consents__advanced-view {
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top:30px;
    padding-bottom: 65px;
}
.consents__advanced-content {
    overflow: auto;
}
.consents__content {
    flex: 1 1 auto;
    overflow: auto;
    width: 100%;
}
.consents__buttons {
    flex: 0 0 auto;
    margin-top: 20px;
}
.consents__buttons .btn,
.consents__advanced-buttons .btn{
    height:38px;
    border-radius:19px;
    font-size:13px;
    font-weight: 700;
    margin-right:20px;
    padding: 0 30px;
}

.consents__buttons .btn:last-child,
.consents__advanced-buttons .btn:last-child{
    margin-right:0;
}

.consents__buttons .js__accept-all-consents,
.consents__advanced-buttons .js__show-basic-view{
    color:black;
    background:#F4C686;
    border:1px solid #F4C686;
}

.consents__buttons .js__show-advanced-view,
.consents__advanced-buttons .js__save-consents{
    border:1px solid white;
    background:transparent;
    color:white;
}

.consents__heading {
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 5px;
}

.consents__basic-view .consents__heading{
    min-height: 63.5px;
    display: flex;
    align-items: center;
}

.consents__basic-view .consents__heading:after{
    content:'';
    background:url('/userdata/public/assets//cookie.svg') transparent no-repeat center;
    background-size:49px;
    display: inline-block;
    width:49px;
    height:57.5px;
    margin-left: 35px;
    position: relative;
    top:-8px;
}

.consents__text {
    margin-bottom: 1rem;
}
.consents__link {
    text-decoration: underline;
    color:white;
    font-weight: 700;
    line-height:18.5px;
    display: inline-block;
    margin-top: 2px;
}
.consents__consent {
    display: flex;
    margin-bottom: 1rem;
}
.consents__consent p{
    font-size:11px;
    line-height:16px;
}

.consents__consent .consents__text{
    font-weight:700;
    font-size:14px;
}

.consents__consent:nth-of-type(1){
    border-bottom:1px solid #292929;
}
.consents__consent-description {
    margin-top: 1px;
    margin-left: 10px;
}
.consents__advanced-buttons {
    /* text-align: center; */
    margin-top: 30px;
}
.consents__mask {
    display: block;
    position: fixed;
    overflow: hidden;
    z-index: 999998;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
}

@media screen and (max-width: 768px) {
    .consents__modal{
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
    .consents__basic-view {
        display: flex;
        flex-direction: column;
   }
}
@media screen and (max-width: 540px) {
    .consents__modal,
    .consents__advanced-view,
    .consents__basic-view{
        max-height:100vh;
    }
    .consents__buttons,
    .consents__advanced-buttons{
        width: 100%;
    }
    .consents__buttons .btn,
    .consents__advanced-buttons .btn{
        /* width: 100%;
        min-height: 44px; */
        padding:0 10px;
        width:calc(50% - 13px);
   }
    .consents__buttons :first-child {
        margin-bottom: 10px;
   }
}

/* 1 cta nawigacyjne */
.owl-nav button{
    background-color:#F47920;
}
.owl-nav button:hover{
    background-color:#F47920;
}
/* 2 - inne cta */
.btn-2{
    background:#000;
    font-size:16px;
    color:white;
}
.btn-2:hover{
    background:#313139;
}
/* 3 - cta addtobasket */
.btn-3 span,
.btn-3{
    background:#000000;
    font-size:16px;
    color:white;
}
.btn-3 span:hover,
.btn-3:hover{
    background:#F47920;
}


.owl-carousel,
.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative;
}
.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1;
}
.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: none;
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
    display: block;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}
.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}
.owl-carousel.owl-hidden {
    opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}
.owl-carousel.owl-rtl {
    direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
    float: right;
}
.owl-carousel .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
    z-index: 0;
}
.owl-carousel .owl-animated-out {
    z-index: 1;
}
.owl-carousel .fadeOut {
    animation-name: fadeOut;
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.owl-height {
    transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 0.4s ease;
}
.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
    max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}
.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 0.1s ease;
}
.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
    display: none;
}
.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 0.4s ease;
}
.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}
a,
abbr,
acronym,
address,
applet,
b,
big,
blockquote,
body,
button,
canvas,
center,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
font,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
object,
ol,
p,
pre,
q,
s,
samp,
small,
span,
strike,
strong,
sub,
sup,
tt,
u,
ul,
var {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0 none;
    font-size: 100%;
    background: 0 0;
    box-sizing: border-box;
}
a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    text-decoration: underline;
}
button {
    cursor: pointer;
}
.px1 {
    display: none;
}
.none {
    display: none;
}
img {
    max-width: 100%;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
.r--l-flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.r--l-flex.r--l-flex-vcenter {
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
#shoper-foot,
#turn-classic,
.info-message_hidden {
    display: none;
}
.alert {
    min-height: 60px;
    display: flex;
    align-items: center;
    margin: 10px 0 20px 0;
    padding: 20px;
    position: relative;
}
.alert p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: -0.26px;
    line-height: 16px;
    text-align: center;
    width: 100%;
    padding: 0 40px;
}
.alert button span {
    display: none;
}
.alert button {
    position: relative;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}
.alert button::after {
    content: "";
    width: 15px;
    height: 15px;
    background: url(/userdata/public/assets/SVG/close.svg) transparent no-repeat;
    display: inline-block;
    background-size: 15px;
    position: relative;
    top: 2px;
}
.alert-info {
    background: #dbedff;
}
.alert-info p {
    color: #00548f;
}
.alert-success {
    background: #f0f8ed;
}
.alert-success p {
    color: #568345;
}
.alert-error {
    background: #fff1f1;
}
.alert-error p {
    color: red;
}
.alert-warning {
    background: #ffeccd;
}
.alert-warning p {
    color: #ec9f03;
}
.skinpreview {
    position: fixed;
    top: 0;
    right: 0;
    padding: 5px 10px;
    background: #000;
    color: #fff;
    opacity: 0.8;
    border-bottom-left-radius: 10px;
    z-index: 9999999999999;
    cursor: pointer;
}
.availability_notify_info img {
    max-width: 500px;
    max-height: 120px;
}
@media screen and (max-width:529px){
    .availability_notify_info img {
        max-width:100%;
    }
}
.availability_notify_form h3 {
    text-align: center;
    margin: 15px 0;
}


.availability_notify_form input {
    height: 57px;
    border-radius: 40px;
    background-color: #f4f4f4;
    border: none;
    width: 100%;
    max-width: 250px;
    margin: 10px 0 0 0;
    display: block;
    margin: 10px auto 0 auto;
}
@media screen and (max-width:529px){
    .availability_notify_form input {
        height:40px;
    }
}
.availability_notify_form button {
    width: 100%;
    max-width: 250px;
    margin-top: 4px !important;
}

.availability_notify_form > p:not(.availability_stocks) {
    font-size: 0;
}
.availability_notify_form > p:nth-last-child(1) {
    font-size: 16px;
    text-align: center;
}
@media screen and (max-width:529px){
    .availability_notify_form > p:nth-last-child(1) {
        font-size:14px;
    }
}
.mask:not(.mask-inactive) {
    background: #000;
    opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
}
.modal {
    display: none;
}
.modal.modal-visible {
    display: block;
    z-index: 9999;
    background: #fff;
    left: 50% !important;
    transform: translateX(-50%);
    border-radius: 30px;
}

@media screen and (min-width:530px){
    .modal.modal-visible{
        transform:translateX(-50%) translateY(-50%) !important;
        top:50% !important;
        }
    }
    
@media screen and (max-width:529px){
    .modal.modal-visible {
    border-radius:0 !important
    }
}

.modal .modal-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
}
.modal .modal-close {
    width: 30px;
    height: 30px;
}
.modal .modal-close::before {
    content: "";
    background: url(/userdata/public/assets/SVG/close.svg) transparent no-repeat center;
    cursor: pointer;
    background-size: 15px;
    width: 30px;
    height: 30px;
    display: inline-block;
    position: relative;
    right: -5px;
    top: 2px;
}
.modal .modal-close .modal-close-txt {
    display: none;
}
.modal .modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 31px;
}
@media screen and (max-width:529px){
    .modal .modal-header h3 {
        font-size: 16px;
    line-height: 20px;
    padding-top: 5px;
    }
}
.modal-body {
    padding: 10px 30px 20px 30px;
}
.modal-body .edition-form-field {
    display: flex;
    flex-direction: column;
}
.modal-body .edition-form-field label {
    margin-bottom: 5px;
    font-size: 14px;
    color: #515151;
}
.modal-body .edition-form-field input {
    height: 57px;
    border-radius: 40px;
    background-color: #f4f4f4;
    border: none;
    margin-bottom: 15px;
    box-sizing: border-box;
    max-width: calc(100vw - 60px);
    padding: 0 30px;
}
.modal-body .edition-form-field textarea {
    height: 100px;
    border-radius: 20px;
    background-color: #f4f4f4;
    border: none;
    padding: 20px;
    width: auto;
    margin-bottom: 20px;
    resize: none;
    box-sizing: border-box;
    max-width: calc(100vw - 60px);
}
.modal-body .ask-for-product fieldset div:nth-child(6),
.modal-body .ask-for-product fieldset > label {
    font-size: 13px;
    color: gray;
    display: block;
}
.modal-body .edition-form-field input:focus,
.modal-body .edition-form-field textarea {
    outline: 0;
}
.modal-body button[type="submit"] {
    height: 64px;
    border-radius: 39px;
    background-color: #313139;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 23px;
    padding: 0 70px;
    margin: 20px auto;
    display: block;
}

@media screen and (max-width:529px){
    .modal-body button[type="submit"] {
        height: 45px;
        font-size: 14px;
    }
}

.modal-body .availability_notify_info{
text-align: center;
}

.modal.promopricemodal{
    box-shadow: 0 3px 99px rgba(0, 0, 0, 0.16);
    border-radius: 20px;
    background-color: white;
    padding: 25px 30px 0 30px;
}

.modal.promopricemodal .modal-header{
    display: none;
}

.modal.promopricemodal .modal-body{
    padding:12px;
}
.promoprice-header{
    border-radius: 20px;
    background-color: #ffffff;
    padding: 25px 35px 20px 35px;
    margin-bottom:15px;
}
.promoprice-header-title{
    color: #000000;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    margin-bottom:5px;
}

.promoprice-header-mainprice{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom:2px;
}

.promoprice-header-mainprice .mainprice{
    color: #ff1400;
    font-size: 30px;
    font-weight: 700;
    line-height: 19px;
    margin-right:5px;
}

.promoprice-header-mainprice p:nth-child(2){
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
    height: 23px;
    background-color: #ff1400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.promoprice-header-pricenetto{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:12.5px;
}

.promoprice-header-pricenetto p{
    color: #646464;
    font-size: 13px;
    font-weight: 400;
    line-height: 19px;
    text-align: center;
}
.promoprice-header-pricenetto p:nth-child(2){
    font-weight:700;
}
.promoprice-header-moreinfo{
    font-size: 13px;
    line-height: 14px;
    text-align: center;
}

.promoprice-header-subtitle{
    font-size: 10px;
    color: #585858;
    font-weight: 400;
    text-align: center;
    margin-bottom:15px;
}

.promoprice-header-addtobasket{
    height: 64px;
    border-radius: 39px;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 23px;
    text-align: center;
    cursor: pointer;
}

.promoprice-body-title{
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 30px;
    text-align: center;
}
.promoprice-body-subtitle{
    text-align: center;
    margin-bottom: 15px;
}

.promoprice-body-divisions{
    display: flex;
    justify-content: center;
}

.promoprice-body-divisions-col div{
    border-bottom:1px solid #e1e1e1;
    padding:5px;
}

@media screen and (max-width:400px){
    .promoprice-body-divisions-col div{
        font-size:10px;
    }
}
.promoprice-body-divisions-col div:first-child{
    border-bottom:0;
    color: #000000;
    font-size: 8px;
    font-weight: 400;
    line-height: 0px;
    text-align: left;
  
    width: 65px;
    display: block;
    height: 25px;
    line-height: 10px;
    margin: 0 auto;
}

.promoprice-body-divisions-col:first-child{
    color: #ff1400;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;

}

.promoprice-body-divisions-col:first-child div:first-child{
    margin:0;
    text-align:left;
}


.promoprice-body-divisions-col:nth-child(2){
    color: black;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: right;
}

.promoprice-body-divisions-col:nth-child(3){
    color:#9e9e9e;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
}

.promoprice-body-divisions-col:nth-child(3) div{
    text-align:center;
}

.promoprice-body-divisions-col:nth-child(3) div:first-child{
    width:100px;
}

.promoprice-body-divisions-col:nth-child(4){
    color: #646464;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
}

.promoprice-body-divisions-col:nth-child(4) div:first-child{
    margin:0;
    margin-left:auto;
    text-align:right;
}


.promoprice-body-divisions-col:nth-child(4) div{
    text-align:right;
    margin-right: 0;
}

@media screen and (min-width:500px){
    .promoprice-body-divisions-col:nth-child(4) div{
        padding-left:20px;
    }
    .promoprice-body-divisions-col:nth-child(3) div{
        padding-left:35px;
    }
}

@media screen and (max-width:499px){
    .promoprice-body-divisions-col:nth-child(4) div{
        padding-left:5px;
    }
    .promoprice-body-divisions-col:nth-child(3) div{
        padding-left:5px;
    }
}

.promopricemodal.modal .modal-footer .close-modal{
    cursor: pointer;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    text-align:center;
    text-decoration: underline;
    margin:10px 0 25px 0;
}

@media screen and(max-width:500px){
    .modal.promopricemodal {
        padding:15px 5px 0 5px;
    }
    .promoprice-body-divisions-col div:first-child{
        width:auto;
    }
    .promoprice-body-divisions-col:nth-child(3) div{
        padding-left:0px;
    }
  .promoprice-body-divisions-col:nth-child(3) div:first-child {
    width:auto;
  }
  .promoprice-body-divisions-col:nth-child(4) div{
    padding-left:0;
  }
  .promoprice-body-divisions-col div {
    font-size: 10px !important;
  }
}

.promopricemodal.modal .modal-footer .close-modal {
    cursor: pointer;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    text-align: center;
    text-decoration: underline;
    margin: 10px 0 25px 0;
}
.modal-footer {
    padding: 20px 20px 30px 20px;
}
.modal-footer .btn {
    height: 64px;
    border-radius: 39px;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 23px;
    text-align: center;
    padding: 0 20px;
    min-width: 200px;
    display: inline-block;
    line-height: 64px;
}
@media (min-width: 768px) {
    .up {
        cursor: pointer;
        position: fixed;
        right: 50px;
        height: 35px;
        width: 35px;
        background: url(/userdata/public/assets/SVG/blackrightarrow.svg) #f4f4f4 no-repeat center;
        transform: rotate(-90deg);
        background-size: 15px;
    }
  .mobile-info-data {
  display: none;
}
}
@media (max-width: 767px) {
    .up {
        display: none;
    }
  .desktop-info-data {
    display: none;
  }
  .new-fav-boxes {
    gap: 10px !important;
  }
  .header-tel {
    justify-content: center !important;
    flex-direction: column;
    align-items: flex-start !important;
  }
  .new-top-color-tel {
    flex-direction: row-reverse;
    height: 80px;
  }
  .header-tel > div:first-of-type {
    display: none;
  }
  .header-tel-info {
    border: none !important;
    margin: 0 !important;
  }
  .header-tel-info strong {
    display: none !important;
  }
  .header-tel p {
    font-size: 13px !important;
	line-height: 15px !important;
    color: #0E3B44 !important;
  }
  .header-tel a {
    font-weight: 700 !important;
    font-size: 13px !important;
    line-height: 16px !important;
    color: white !important;
  }
  .new-banner-mainpage {
    text-align: center;
  }
  .new-category-box2 img {
    object-fit: cover !important;
  }
  .new-category-box {
    grid-template-columns: 1fr !important;
    height: auto !important;
  }
  .new-category-box1 {
    padding-block: 71px;
  }
  .img-header-mobile {
    order: 1;
    padding-bottom: 10%;
  }
  .new-search-top {
    order: 4;
  }
  .panel-header {
    order: 3;
  }
  header .logo-bar .basket {
    order: 3;
  }
 
  header .logo-bar .toggler-menu {
    order: 4;
  }
}
@font-face {
    font-family: "Montserrat";
    font-display: swap;
}

body {
    max-width: 100vw;
    overflow-x: hidden;
    font-family: 'Montserrat';
    color: #000;
}
@media (min-width: 768px) {
    .container,
    .row {
        max-width: 1640px;
        margin: 0 auto;
    }
}
@media (max-width: 1659px) {
    .bottom-footer.row,
    .breadcrumbs,
    .main.row,
    .top.row,
    footer,
    header {
        padding: 0 15px;
    }
}
header .logo-bar {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
  	justify-content: space-around;
}
@media (min-width: 980px) {
    header .logo-bar {
        padding: 20px 0;
    }
}
@media (max-width: 979px) and (min-width: 768px) {
    header .logo-bar {
        padding: 10px 0;
    }
}
@media (max-width: 767px) {
    header .logo-bar {
        padding: 15px 0 0 0;
    }
}
@media (min-width: 768px) {
    header .logo-bar {
        position: relative;
    }
}
@media (max-width: 767px) {
    header .logo-bar .link-logo-img {
        width: 132px;
        flex-grow: 1;
      	order: 2;
    }
  	
}
.header-icon {
    padding: 0 12px;
}
@media (max-width: 979px) and (min-width: 768px) {
    .header-icon {
        padding: 10px 12px 0 12px;
    }
}
@media (min-width: 768px) {
    header .logo-bar .contact-header {
        margin-left: 30px;
        position: relative;
        height: 57px;
        padding: 10px 0 0;
    }
    header .logo-bar .contact-header > a {
        display: block;
        height: 100%;
        padding: 0 12px;
    }
    header .logo-bar .contact-header img {
        max-width: 27px;
    }
    header .logo-bar .contact-header .contact-header-tooltip {
        position: absolute;
        z-index: 1;
        min-width: 250px;
        left: -105px;
        display: none;
    }
    header .logo-bar .contact-header .contact-header-tooltip-links {
        display: flex;
        flex-direction: column;
        box-shadow: 0 13px 60px rgba(0, 0, 0, 0.16);
        border-radius: 20px;
        background-color: #fff;
        padding: 25px 35px;
    }
    header .logo-bar .contact-header .contact-header-tooltip-links > a {
        padding: 5px 0;
    }
    header .logo-bar .contact-header .contact-header-tooltip-links .contact-header-tooltip-contact {
        padding: 15px 0 5px 0;
    }
    header .logo-bar .contact-header .contact-header-tooltip-links .contact-header-tooltip-contact a {
        font-size: 20px;
        font-weight: 700;
        display: block;
        margin: 1px 0;
    }
    header .logo-bar .contact-header .contact-header-tooltip-links .contact-header-tooltip-contact p.small {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    header .logo-bar .contact-header {
        display: none;
    }
    header .logo-bar .contact-header .contact-header-tooltip {
        display: none;
    }
}
@media (min-width: 768px) {
    header .logo-bar .toggler-menu {
        display: none;
    }
}
@media (max-width: 767px) {
    header .logo-bar .toggler-menu {
        padding-right: 5px;
        padding-left: 36px;
        padding-top: 5px;
    }
    header .logo-bar .toggler-menu img {
        display: inline-block;
        width: 55px;
    }
    header .logo-bar .toggler-menu.active {
        background: url(/userdata/public/assets/SVG/Group%20301.svg) transparent no-repeat center;
        background-size: 55px;
        background-position: 36px 5px;
    }
    header .logo-bar .toggler-menu.active img {
        opacity: 0;
    }
}
header .logo-bar .basket {
    position: relative;
}
@media (min-width: 980px) {
    header .logo-bar .basket {
        padding: 10px 12px;
    }
}
header .logo-bar .basket a {
    text-decoration: none;
}
header .logo-bar .basket b {
    font-size: 0;
}
header .logo-bar .basket > .count > .countlabel > b {
    position: absolute;
    top: 2.5px;
    right: -2px;
}
header .logo-bar .basket > .count .countlabel > b span {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 19px;
    display: inline-block;
    position: absolute;
    top: 2.5px;
    right: 7px;
    text-align: center;
    width: 20px;
    height: 20px;
    background-color: #F47920;
    border-radius: 100%;
}
@media (min-width: 1650px) {
    .basket-contain {
        right: 20px;
    }
}
@media (min-width: 768px) and (max-width: 1649px) {
    .basket-contain {
        right: 0;
    }
}
@media (max-width: 767px) {
    .basket-contain {
        display: none !important;
    }
}
@media (min-width: 768px) {
    .basket-contain {
        position: absolute;
        z-index: 999;
        background-color: #fff;
        display: none;
        min-width: 416px;
        left: inherit !important;
        margin-top: 2px;
        box-shadow: 0 13px 60px rgba(0, 0, 0, 0.16);
        border-radius: 20px;
    }
    .basket-contain .basket-products {
        padding: 1em 1em 5px 1em;
    }
    .basket-contain .basket-products ul {
        list-style: none;
    }
    .basket-contain .basket-products li {
        position: relative;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -moz-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .basket-contain .basket-products li img {
        max-width: 70px;
        margin-right: 0.8em;
    }
    .basket-contain .basket-products li .product-name {
        display: inline-block;
        width: 40%;
        vertical-align: middle;
        color: #383838;
        font-size: 13px;
        font-weight: 400;
        font-style: normal;
        letter-spacing: normal;
        line-height: 15px;
        text-align: left;
    }
    .basket-contain .basket-products li .product-info {
        display: inline-block;
        text-align: right;
        width: 23%;
        padding: 1.5em 0;
        color: #000;
        font-size: 13px;
        font-style: normal;
        letter-spacing: normal;
        line-height: 12px;
        text-align: right;
    }
    .basket-contain .basket-products li .product-info .product-price {
        font-weight: 700;
    }
    .basket-contain .basket-products li .remove-product a {
        font-size: 0;
    }
    .basket-contain .basket-products li .remove-product a::before {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        background: url(/userdata/public/assets/SVG/cross.svg) transparent no-repeat center;
        background-size: 10px;
        width: 35px;
        height: 100%;
    }
    .basket-contain .basket-summery {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -moz-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 12px 1.3em 1.3em 1.3em;
    }
    .basket-contain .basket-summery a {
        box-sizing: border-box;
        padding: 5px 10px;
        vertical-align: middle;
        width: 70%;
        text-align: center;
        display: inline-block;
        background-color: #000;
        height: 41px;
        line-height: 30px;
        border-radius: 100px;
        background-color: #000;
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        font-style: normal;
        letter-spacing: normal;
        text-transform: uppercase;
        transition: 250ms;
    }
    .basket-contain .basket-summery a:hover {
        text-decoration: none;
        background-color: #313139;
    }
    .basket-contain .basket-summery .basket-price {
        box-sizing: border-box;
        color: #000;
        font-size: 1.2em;
        text-align: right;
        max-width: 30%;
        width: 30%;
        vertical-align: middle;
        display: inline-block;
        color: #000;
        font-size: 20px;
        font-weight: 700;
        font-style: normal;
        letter-spacing: normal;
        line-height: normal;
    }
    .basket-contain .basket-summery .basket-price.basket-price-discount .price-total strong {
        font-size: 16px;
        font-weight: 400;
        text-decoration: line-through;
    }
}
@media (min-width: 1551px) {
    .menu {
        /* padding-right: 8.5%; */
    }
}
@media (max-width: 1550px) and (min-width: 768px) {
    .menu {
        padding-right: 20px;
    }
}
@media (max-width: 979px) {
    .menu {
        flex-grow: 1;
    }
}
@media (max-width: 767px) {
    .menu {
        order: 6;
        position: absolute;
        top: 188px;
        width: 100%;
        left: 0;
        display: none;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    }
    .menu.active {
        display: block;
    }
    .menu .menu-list {
        background-color: #fff;
        color: #fff;
        width: 100%;
        position: relative;
        z-index: 9999;
    }
    .menu .menu-list li {
        padding: 0;
        margin: 0;
        text-align: left;
        border-bottom: 1px solid #ededed;
        position: relative;
        cursor: pointer;
    }
    .menu .menu-list li.home-link-menu-li {
        display: none;
    }
    .menu .menu-list li a {
        font-size: 16px;
        font-weight: 400;
        font-style: normal;
        letter-spacing: -0.32px;
        line-height: 37px;
        text-align: left;
        padding: 2.5px 25px;
        display: inline-block;
        width: 100%;
        position: relative;
    }
    .menu .menu-list li .h3 {
        display: block;
    }
    .menu .menu-list li .more-categories {
        background: url(/userdata/public/assets/SVG/grayrightarrow.svg) transparent no-repeat center;
        background-size: 9px;
        display: block;
        width: 55px;
        height: 44px;
        position: absolute;
        top: 0;
        right: 0;
    }
    .menu .menu-list li.parent.active > .more-categories {
        transform: rotate(-90deg);
        width: 44px;
        height: 55px;
        top: -5px;
        right: 5px;
    }
    .menu .menu-list li a.active {
        background-color: #000;
        color: #fff;
    }
    .menu .menu-list li ul {
        background: #fff;
    }
    .menu .menu-list li ul li li a {
        padding-left: 40px;
    }
    .menu .menu-list li ul li li li a {
        padding-left: 80px;
    }
    .menu .menu-list li ul li:first-child {
        border-top: 1px solid #ededed;
    }
    .menu .menu-list > li > .h3 > a > span {
        font-weight: 700;
        letter-spacing: -0.4px;
        font-size: 20px;
    }
    .menu .menu-list li:last-child {
        border-bottom: none;
    }
    .menu .menu-list li ul:last-child li:last-child {
        border-bottom: none;
    }
    .menu .menu-list li.parent > .submenu {
        display: none;
    }
    .menu .menu-list li.parent.active > .submenu {
        display: block;
    }
}
@media (min-width: 768px) {
    .menu {
        margin: 0 20px;
        z-index: 10;
        position: relative;
    }
    .menu .innermenu {
        height: 45px;
        line-height: 45px;
        position: relative;
        z-index: 10;
    }
    .menu .innermenu .menu-list {
        overflow: hidden;
        list-style: none;
    }
    .menu .innermenu .menu-list > li > .h3 a span {
        font-style: italic;
font-weight: 700;
font-size: 18px;
line-height: 20px;
      color: #252525;
    }
    .menu .innermenu .menu-list li {
        float: left;
        padding: 0;
        line-height: 25px;
    }
    .menu .innermenu .menu-list > li.parent > .h3 {
        position: relative;
    }
    .menu .innermenu .menu-list > li.parent > .h3::after {
        content: "";
        position: absolute;
        background: url(/userdata/public/assets/svg-icons/strzalka-menu.svg) transparent no-repeat;
        width: 12px;
        height: 8px;
        right: -3%;
        top: 50%;
    }
    .menu .innermenu .menu-list li .h3 {
        font-size: 1.4em;
        margin-bottom: 0;
        line-height: normal;
    }
    .menu .innermenu .menu-list li .h3 a {
        padding: 8px 15px;
        display: inline-block;
        position: relative;
    }
    .menu .innermenu .menu-list li .h3 a:hover {
        text-decoration: underline;
    }
    .menu .innermenu .menu-list li ul {
        display: none;
        list-style: none;
    }
    .menu .innermenu .menu-list li ul li {
        font-size: 14px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .menu .innermenu .menu-list li ul li:nth-child(1) {
        padding-top: 25px;
    }
    .menu .innermenu .menu-list li ul li:nth-last-child(1) {
        padding-bottom: 25px;
    }
    .menu .innermenu .menu-list li ul li.parent a {
        position: relative;
    }
    .menu .innermenu .menu-list li ul li.parent > span a::after {
        content: "";
        position: absolute;
        right: 13px;
        top: 13px;
        background: url(/userdata/public/assets/SVG/grayrightarrow.svg) transparent no-repeat;
        width: 6px;
        height: 9px;
    }
    .menu .innermenu .menu-list li ul li .h3 {
        font-size: 1em;
        margin: 0;
    }
    .menu .innermenu .menu-list li ul li .h3 a {
        display: block;
        padding: 0.35em 1em;
    }
    .menu .innermenu .menu-list li ul li .h3 a span {
        color: #000;
        font-size: 16px;
        letter-spacing: -0.32px;
      	font-weight: 400;
        line-height: 40px;
        text-align: left;
    }
    .menu .innermenu .menu-list li.home-link-menu-li {
        display: none;
    }
    .menu .innermenu .parent:hover > div > ul {
        display: inline-block;
        position: absolute;
        z-index: 1;
        box-shadow: 0 13px 60px rgba(0, 0, 0, 0.16);
        border-radius: 20px;
        background-color: #fff;
        list-style: none;
        width: 251px;
        top: 51px;
    }
    .menu .innermenu .parent:hover > div > ul li {
        float: none;
        width: 103%;
    }
    .menu .innermenu .parent:hover > div > ul li.parent:hover > div > ul {
        right: -103%;
        top: -1px;
        width: 100%;
        min-height: 100%;
        margin-right: 3px;
    }
    .menu .innermenu .parent:hover > div > ul li.parent:hover > div > ul::before {
        border-bottom: 1px solid gray;
        border-top: medium none;
        height: 9px;
        left: -6px;
        top: 23px;
        width: 9px;
    }
    .menu .innermenu .parent:hover > div > ul li.parent:hover > div > ul.sub-right {
        right: 100%;
    }
    .menu .innermenu .parent:hover > div > ul li.parent:hover > div > ul.sub-right::before {
        border-top: 1px solid gray;
        border-right: 1px solid gray;
        border-left: medium none;
        border-bottom: medium none;
        left: 98.3%;
    }
    .menu .innermenu .parent:hover::after {
        content: "";
        position: absolute;
        display: block;
        height: 5em;
        width: 20%;
    }
}
.search__container {
    float: right;
    flex-grow: 1;
    width: 526px;
}
@media (max-width: 979px) and (min-width: 768px) {
    .search__container {
        margin: 10px 0;
    }
}
@media (max-width: 979px) {
    .search__container {
        width: 100%;
        max-width: 100%;
        order: 5;
    }
}
@media (max-width: 767px) {
    .search__container {
        margin: 11px 0 10px 0;
    }
}
.search__container .search-form .search-input {
    height: 55px;
    min-height: 55px;
    background-color: white;
    border-radius: 27.5px;
}

.search__container .search-form .btn {
    width: 63px;
    height: 55px;
    padding: 0;
    border-radius: 27.5px;
    display: flex;
    text-align: right;
  	background-color: #F47920;
}
.search__container .search-form .btn::before {
    content: "";
    background: url(/userdata/public/assets//Group%20119.svgg) transparent no-repeat;
    width: 23px;
    height: 25px;
    background-size: 25px;
    display: inline-block;
}
.search__icon_main-color.icon-reload {
    display: none;
}
.search__container .search-form .btn span {
    display: none;
}
.search {
    position: relative;
    color: #000;
}
@media (max-width: 767px) {
    .search {
        display: block !important;
    }
}
.search_open .search__content {
    display: block;
    border-radius: 20px;
}
.search__loader {
    -webkit-animation: loader-spin 1s infinite ease-in-out;
    animation: loader-spin 1s infinite ease-in-out;
}
.search__btn-search {
    width: 100%;
    min-height: 100%;
    padding: 12px;
}
.search__btn-search .search__icon {
    color: #fff;
}
.search__input {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    height: 44px;
}
.search .btn {
    height: 46px;
}
.search__input[type="search"] {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #797979;
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    line-height: 20px;
    text-align: left;
    height: 50px;
    line-height: 20px;
    padding: 15px 15px 15px 40px;
    margin: 0;
    min-height: calc(100% - 50px);
    width: calc(100% - 50px);
    -webkit-transition: border linear 0.2s;
    -moz-transition: border linear 0.2s;
    -o-transition: border linear 0.2s;
    transition: border linear 0.2s;
    display: inline-block;
    vertical-align: middle;
}
.search__input[type="search"]::-webkit-search-cancel-button,
.search__input[type="search"]::-webkit-search-decoration,
.search__input[type="search"]::-webkit-search-results-button,
.search__input[type="search"]::-webkit-search-results-decoration {
    display: none;
}
.search__input[type="search"]:focus {
    outline: 0;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.search__input-area {
    background-color: #fff;
    padding: 0;
    padding-left: 7.5px;
}
.search__input-area-item .icon-close::before {
    content: "";
    background: url(/userdata/public/assets/SVG/close.svg) transparent no-repeat;
    background-size: 13px;
    width: 35px;
    height: 13px;
    display: inline-block;
    cursor: pointer;
}
.search__input-area_error {
    border-color: red;
}
.search__input-area-item_grow {
    flex-grow: 1;
}
.search__votestars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
}
.search__votestars-item {
    color: #000;
}
.search__list-icon {
    margin-right: 1em;
}
.search__list-nested {
    margin-top: 15px;
}
.search__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 7.5px 11.25px 7.5px 1.5px;
    cursor: pointer;
}
.search__input__list-item:first-child,
.search__list-item:last-child {
    margin: 0;
}
.search__input__list-item:hover,
.search__list-item:active {
    background-color: #fff;
}
.search__list-item-action-btn {
    padding: 7.5px 11.25px 7.5px 15px;
    margin: -7.5px -11.25px -7.5px -1.5px;
}
.search__content {
    display: none;
    position: absolute;
    left: 0;
    min-width: 570px;
    width: 100%;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 9px 0 rgba(16, 47, 102, 0.16);
    box-shadow: 0 2px 9px 0 rgba(16, 47, 102, 0.16);
    background-color: #fff;
    z-index: 20;
}
.search__content_right {
    left: auto;
    right: 0;
}
.search__btn-load-more:hover {
    color: #000;
}
.search__btn-clear {
    cursor: pointer;
}
.search__btn_link {
    font-size: inherit;
    vertical-align: unset;
}
.search__item_content {
    will-change: opacity;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 15px;
    margin: 15px 25px;
}
.search__item-container {
    width: 100%;
}
.search__loader {
    width: 1em;
    margin-right: 20px;
}
.search__icon {
    font-size: 1em;
    color: #000;
}
.search__icon_size-1 {
    font-size: 1.3em;
    line-height: 1em;
}
.search__icon_spacing {
    padding: 0.35em 0.85em;
}
.search__message {
    padding: 7.5px;
    word-break: break-word;
}
.search__message_error {
    color: red;
}
.search__message_info {
    background-color: #ebf8ff;
}
.search__section-head {
    font-size: 0.9em;
    margin: 0;
    background-color: #fff;
}
.search__section-head_sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
}
.search__section-head_line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    color: gray;
    padding: 10px 0;
}
.search__section-head_line::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background-color: gray;
    margin-left: 15px;
}
.search__container .search__list {
    margin-bottom: 6px;
}
.search__result-icon {
    margin-right: 15px;
}
.search__result-icon img {
    max-width: 60px;
}
.search__result-note {
    font-size: 0.96em;
}
.search__result-note-item {
    color: gray;
}
.search__result-note-item:not(:lat-child) {
    margin-right: 7.5px;
}
.search__result-category-title {
    font-size: 0.8em;
    font-weight: 300;
    color: gray;
    margin-left: 6px;
}
.search__result-title-item {
    margin: 0;
    display: inline;
}
.search__result-title-item-subheading {
    font-size: 0.9em;
}
.search__result-details {
    display: inline;
}
.search__result-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: top;
    width: 100%;
}
.search__result-link:hover {
    color: #000;
}
.search__result-content {
    flex-grow: 1;
    line-height: 1.3em;
}
.search__result-item_active {
    color: #000;
}
.search__result-item_inactive {
    text-decoration: line-through;
    color: gray;
}
.search__result_bold {
    font-weight: 700;
}
.search__history-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}
.search__history-value {
    width: 100%;
}
.search__history .icon-close {
    padding: 6px;
    cursor: pointer;
}
.search__mobile-btn {
    color: #fff;
    position: fixed;
    bottom: 50px;
    right: 50px;
    border-radius: 50%;
    padding: 0.45em 0.85em;
    font-size: 1em;
    cursor: pointer;
    z-index: 10;
}
.search__mobile-btn_open {
    display: block;
    will-change: transform;
    -webkit-animation: show-mobile-btn 0.2s ease-out both;
    animation: show-mobile-btn 0.2s ease-out both;
}
.search__mobile-btn_close {
    display: none;
}
.search__mobile-btn_closing {
    will-change: transform;
    -webkit-animation: hide-mobile-btn 0.2s ease-out both;
    animation: hide-mobile-btn 0.2s ease-out both;
}
.search .message_error {
    color: red;
}
.search .list_inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.search .list_inline li {
    color: gray;
}
.search .list_inline li:not(:last-child),
.search .list_linline > li {
    margin-right: 7.5px;
}
.search [data-search-section-name="suggestions"] .search__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.search .js__search-close-btn {
    display: none;
}
.search .icon-back:before {
    content: "";
    background: url(/userdata/public/assets/SVG/blackrightarrow.svg) transparent no-repeat;
    background-size: 13px;
    width: 20px;
    height: 13px;
    display: inline-block;
    cursor: pointer;
}
.search .link,
.search a {
    color: dark;
    text-decoration: none;
    cursor: pointer;
}
.search .link:hover,
.search a:hover {
    color: #000;
}
.search .link:hover img,
.search a:hover img {
    text-decoration: none;
}
.scroll_block {
    overflow: hidden;
}
@keyframes hide-mobile-btn {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}
@keyframes show-mobile-btn {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes loader-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@media (max-width: 767px) {
    .search_open {
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        margin: 0;
        z-index: 9999;
        overflow: hidden;
        max-width: inherit;
    }
    .search_open .search__item_content {
        max-height: unset;
    }
    .search_open .search__input-area {
        padding-right: 7.5px;
    }
    .search_open .search__input-area-item:first-child {
        order: 3;
    }
    .search_open .search__input-area-item:nth-child(2) {
        order: 2;
    }
    .search_open .search__input-area-item:last-child {
        order: 1;
    }
    .search_open .search__input-area .js__search-submit-btn {
        display: none;
    }
    .search_open .search__input-area .js__search-close-btn {
        display: block;
    }
    .search_open .search__input-area-item > span {
        padding: 7.5px;
    }
    .search_open-empty .search__content {
        opacity: 0.7;
    }
    .search__content {
        min-width: 100%;
        max-width: inherit;
        height: calc(100% - 46px);
        overflow-y: scroll;
        max-height: inherit;
    }
    #box_404 .search_open {
        margin: 0;
        max-width: 100%;
    }
    .rwd header .logo-bar form.mini-search.search_open {
        margin: 0;
    }
}
.breadcrumbs .innerbreadcrumbs ul {
    list-style: none;
}
@media screen and (max-width: 979px) {
    .breadcrumbs .innerbreadcrumbs ul {
        margin-bottom: 10px;
    }
}
.breadcrumbs .innerbreadcrumbs ul li {
    margin-right: 10px;
    display: inline;
}
.breadcrumbs .innerbreadcrumbs ul li .raq {
    margin-right: 8px;
}
.breadcrumbs .innerbreadcrumbs ul li span {
    opacity: 0.6;
    color: #000;
    font-size: 11px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.24px;
    line-height: 20px;
}
.breadcrumbs .innerbreadcrumbs ul li.bred-1,
.breadcrumbs .innerbreadcrumbs ul li.bred-2 .raq {
    display: none;
}

@media (min-width: 768px) {
    footer {
        padding-top: 25px;
    }
}
@media (max-width: 767px) {
    footer {
        padding-top: 15px;
    }
}
footer .innerfooter ul.overall {
    list-style: none;
}
footer .innerfooter ul.overall li.footer-contact-info {
    display: flex;
    align-items: flex-start;
}
footer .innerfooter ul.overall li.footer-contact-info img {
    margin-top: 15px;
}
footer .innerfooter ul.overall li.footer-contact-info .footer-contact-right {
    margin-left: 40px;
    margin-top: 10px;
}
footer .innerfooter ul.overall li.footer-contact-info .footer-contact-right-top {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 6px;
}
footer .innerfooter ul.overall li.footer-contact-info .footer-contact-right-center {
    color: #202127;
    font-weight: 700;
    letter-spacing: 0.36px;
    line-height: 36px;
    margin-bottom: 2px;
}
footer .innerfooter ul.overall li.footer-contact-info .footer-contact-right-center a:hover {
    text-decoration: none;
}
footer .innerfooter ul.overall li.footer-contact-info .footer-contact-right-bottom {
    color: #202127;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.13px;
    line-height: 20px;
}
@media (min-width: 768px) {
    footer .innerfooter ul.overall li.footer-contact-info .footer-contact-right-center {
        font-size: 36px;
    }
    footer .innerfooter ul.overall {
        display: flex;
    }
    footer .innerfooter ul.overall li.flex-5 {
        width: 25%;
        margin-left: 10px;
    }
    footer .innerfooter ul.overall li.footer-contact-info {
        width: 32%;
        margin-left: 0;
    }
    footer .innerfooter ul.overall li ul li.head {
        margin-top: 10px;
        margin-bottom: 25px;
        color: #FFFFFF;
        font-size: 18px;
        font-weight: 700;
      	line-height: 20px;
        letter-spacing: 0.16px;
      	font-style: italic;
    }
    footer .innerfooter ul.overall li ul li a {
        color: #656565;
        font-size: 16px;
      	color: #FFFFFF;
        font-weight: 400;
        font-style: normal;
        letter-spacing: 0.13px;
        line-height: 40px;
        text-align: left;
    }
  footer .innerfooter ul.overall li ul li a:hover {
    	color: #F47920;
    	text-decoration: none;
    	font-weight: 700;
  }
}
@media (max-width: 767px) {
    footer .innerfooter ul.overall li.footer-contact-info .footer-contact-right-center {
        font-size: 24px;
    }
    footer .innerfooter ul li ul li a,
    footer .innerfooter ul li ul li.head {
        color: white;
        text-align: left;
    }
  	footer .innerfooter ul li ul li.head.active {
        color: #F47920;
    }
    footer .innerfooter ul.overall li ul li a {
        font-size: 16px;
		line-height: 40px;
        letter-spacing: 0.13px;
    }
    footer .innerfooter ul.overall li ul li {
        margin-left: 17.5px;
        position: relative;
    }
    footer .innerfooter ul.overall li ul li.head {
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.16px;
        text-transform: uppercase;
        padding: 10px 0;
        margin-left: 0;
    }
    footer .innerfooter ul.overall li ul li.hidden::before {
        content: "";
        background: url(/userdata/public/assets/SVG/Vector%204.svg) transparent no-repeat;
        background-size: 12px;
        width: 12px;
        height: 12px;
        position: absolute;
        top: 15px;
        right: 5px;
        display: inline-block;
    }
    footer .innerfooter ul.overall li ul li.active::before {
        content: "";
        background: url(/userdata/public/assets/SVG/Vector%206%20%281%29.svg) transparent no-repeat;
        background-size: 12px;
        width: 12px;
        height: 12px;
        position: absolute;
        top: 15px;
        right: 5px;
        display: inline-block;
    }
    
    footer .innerfooter ul.overall li ul li:last-child {
        margin-bottom: 10px;
    }
    footer .innerfooter ul.overall li.footer-contact-info {
        justify-content: center;
    }
}
footer .innerfooter ul.overall li ul {
    list-style: none;
}
.footer-copyright {
    text-align: center;
    margin: 6em 0 0 0;
}
.footer-copyright .footer-socials {
    margin-bottom: 15px;
}
.footer-copyright .footer-socials a {
    padding: 12px;
}
.footer-copyright .copyright {
    color: white;
    font-size: 11px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.11px;
    line-height: 28px;
    text-align: center;
}
.footer-copyright .copyright a {
    color: white;
}
@media (min-width: 768px) {
    #rwd-banners {
        display: flex;
        margin-bottom: 20px;
    }
    @media (max-width: 767px) {
        #rwd-banners {
            flex-wrap: wrap;
        }
    }
    .rwd-banners-box {
        height: 397px;
        position: relative;
    }
    .rwd-banners-box span {
        display: block;
    }
    .rwd-banners-box a {
        height: 100%;
        width: 100%;
        display: block;
    }
    .rwd-banners-box:hover {
        opacity: 0.75;
        transition: 250ms;
    }
    .rwd-banners-box:hover a {
        text-decoration: none;
    }
    .rwd-banners-box:nth-child(1) {
        border: 7px solid #f4f4f4;
        display: flex;
        width: 50%;
        justify-content: flex-end;
    }
    .rwd-banners-box:nth-child(1) a {
        display: flex;
        width: 100%;
        align-items: flex-end;
        justify-content: flex-end;
        flex-direction: column;
        text-align: right;
        background: url(/userdata/public/assets/images/lampy_min.png) transparent no-repeat left center;
        padding: 50px 50px 50px 10px;
    }
    .rwd-banners-box:nth-child(1) img {
        position: absolute;
        z-index: -1;
        max-width: 50%;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .rwd-banners-box-first {
        width: 70%;
    }
    .rwd-banners-box-first span {
        color: #313139;
    }
    .rwd-box-first-tag {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.32px;
        line-height: 24px;
        border: 3px solid #f2d19a;
        border-radius: 16px;
        text-transform: uppercase;
        padding: 0 20px;
        min-width: 119px;
        text-align: center;
        margin-bottom: 8px;
    }
    .rwd-box-first-title {
        font-size: 38px;
        font-weight: 400;
        letter-spacing: -0.4px;
    }
    .rwd-box-first-brand {
        font-size: 63px;
        font-weight: 700;
        letter-spacing: -0.4px;
        line-height: 45px;
        margin-bottom: 32px;
    }
    .rwd-box-first-subtitle {
        font-size: 20px;
        font-weight: 200;
        letter-spacing: -0.4px;
    }
    .rwd-banners-box:nth-child(2) {
        
        background-color: #fae9d0;
        width: calc(25% - 10px);
        margin-left: 10px;
    }
    
    .rwd-banners-box:nth-child(3) a {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 50px;
    }
    .rwd-box-center-percent {
        color: #313139;
        font-size: 98px;
        font-weight: 700;
        letter-spacing: -1.96px;
        line-height: 113px;
        text-align: right;
    }
    .rwd-banners-box:nth-child(3) {
        margin-left: 10px;
        width: calc(25% - 10px);
        background-color: #fae9d0;
        background-size: 100%;
    }
    .rwd-banners-box:nth-child(3) img {
        position: absolute;
        top: 30px;
        left: 0;
    }
    .rwd-box-center-title,
    .rwd-box-last-title {
        color: #313139;
        font-weight: 700;
        font-style: normal;
        letter-spacing: -0.4px;
        font-size: 20px;
        text-align: right;
    }
    .rwd-box-center-subtitle,
    .rwd-box-last-subtitle {
        color: #656565;
        font-size: 20px;
        font-weight: 400;
        letter-spacing: -0.4px;
        line-height: 23px;
        text-align: right;
    }
}
@media (max-width: 1279px) and (min-width: 768px) {
    .rwd-banners-box:nth-child(1) a {
        background-size: 50%;
    }
    .rwd-banners-box:nth-child(1) a {
        padding: 20px 20px 20px 10px;
    }
    .rwd-banners-box:nth-child(2) a,
    .rwd-banners-box:nth-child(3) a {
        padding: 20px;
    }
    .rwd-banners-box:nth-child(3) {
        background-position: center 40%;
    }
    .rwd-box-first-title {
        font-size: 26px;
    }
    .rwd-box-first-brand {
        font-size: 45px;
        margin-bottom: 20px;
    }
    .rwd-box-first-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .rwd-box-center-title,
    .rwd-box-last-title {
        font-size: 16px;
    }
    .rwd-box-center-subtitle,
    .rwd-box-last-subtitle {
        font-size: 16px;
        line-height: 18px;
    }
    .rwd-box-last-subtitle {
        margin-bottom: 7px;
    }
}
@media (max-width: 767px) {
    #rwd-banners {
        display: none;
    }
}
#hot-categories {
    display: flex;
    flex-wrap: wrap;
}
@media (min-width: 768px) {
    #hot-categories {
        margin: 45px 0 20px 0;
    }
}
@media (max-width: 767px) {
    #hot-categories {
        margin: 0 0 20px 0;
    }
}
.hot-categories-title {
    width: 100%;
    font-weight: bold;
    letter-spacing: -0.4px;
    line-height: 36px;
    text-align: left;
    margin-bottom: 20px;
    height: 36px;
}
@media (min-width: 768px) {
    .hot-categories-title {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .hot-categories-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
}
.hot-categories-box {
    min-height: 142px;
    max-height: 142px;
}
.hot-categories-box a {
    display: block;
    height: 100%;
}
.hot-categories-box a img {
    height: 100%;
    width: 100%;
}
.hot-categories-box:hover {
    opacity: 0.75;
    transition: 250ms;
}
.hot-categories-box:hover a {
    text-decoration: none;
}
@media (min-width: 768px) {
    .hot-categories-box img {
        margin-left: 0px;
    }
}
.hot-categories-box em {
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
    font-style: normal;
    display: block;
    margin: 10px 0;
}
@media (min-width: 1180px) {
    .hot-categories-box {
        margin-right: 10px;
        width: calc((100% - 50px) / 6);
    }
    .hot-categories-box:nth-child(7) {
        margin-right: 0;
    }
}
@media (max-width: 1179px) and (min-width: 768px) {
    .hot-categories-box {
        margin-right: 10px;
        width: calc((100% - 20px) / 3);
    }
    .hot-categories-box:nth-child(2),
    .hot-categories-box:nth-child(3),
    .hot-categories-box:nth-child(4) {
        margin-bottom: 10px;
    }
    .hot-categories-box:nth-child(4),
    .hot-categories-box:nth-child(7) {
        margin-right: 0;
    }
}
@media (max-width: 767px) {
    .hot-categories-box {
        margin-right: 10px;
        width: calc((100% - 10px) / 2);
    }
    .hot-categories-box:nth-child(2),
    .hot-categories-box:nth-child(3),
    .hot-categories-box:nth-child(4),
    .hot-categories-box:nth-child(5) {
        margin-bottom: -30px;
    }
    .hot-categories-box:nth-child(3),
    .hot-categories-box:nth-child(5),
    .hot-categories-box:nth-child(7) {
        margin-right: 0;
    }
}
#box_articlelist,
#box_articlelistsmall {
    margin: 55px 0 45px 0;
    position: relative;
}
@media (min-width: 1640px) {
    #box_articlelist,
    #box_articlelistsmall {
        overflow: hidden;
        min-height: 597px;
        max-height: 597px;
    }
}
@media (max-width: 1639px) {
    #box_articlelist,
    #box_articlelistsmall {
        min-height: 500px;
    }
}
#box_articlelist.loading:after,
#box_articlelistsmall.loading:after {
    content: "";
    background: url(/userdata/public/assets/SVG/loader.svg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    z-index: 50;
    width: 98px;
    height: 98px;
}
#box_articlelist .innerbox,
#box_articlelistsmall .innerbox {
    transition: opacity 250ms;
}
#box_articlelist.loading .innerbox,
#box_articlelistsmall.loading .innerbox {
    opacity: 0;
    transition: opacity 250ms;
}
#box_articlelist .boxhead,
#box_articlelist .boxhead-news-list-title,
#box_articlelistsmall .boxhead {
    font-size: 28px;
    font-weight: 700;
}
#box_articlelist .boxhead-news-list-title {
    display: inline-block;
    flex-grow: 1;
    min-width: fit-content;
    margin-right: 50px;
}
#box_articlelist .subboxhead,
#box_articlelistsmall .subboxhead {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}
#box_articlelist .boxhead-news-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 979px) {
    #box_articlelist .boxhead-news-list {
        flex-direction: column;
    }
    #box_articlelist .boxhead-news-list .boxhead-news-list-title {
        margin-bottom: 30px;
        margin-right: 0;
    }
}
#box_articlelist #box_article_categories ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}
#box_articlelist #box_article_categories .innerbox {
    margin-top: 0;
}
#box_articlelist #box_article_categories ul li a {
    color: #313139;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 40px;
    text-align: right;
    padding: 0 20px;
    border: 1px solid #000;
    border-radius: 28px;
    border: 1px solid #313139;
    height: 45px;
    display: block;
    margin-right: 8px;
    margin-bottom: 8px;
}
@media (max-width: 1179px) {
    #box_articlelist .subboxhead,
    #box_articlelistsmall .subboxhead {
        flex-direction: column;
    }
    #box_articlelist .subboxhead a,
    #box_articlelistsmall .subboxhead a {
        text-align: right;
        margin-top: 15px;
    }
}
#box_articlelist .subboxhead a,
#box_articlelist .subboxhead p,
#box_articlelistsmall .subboxhead a,
#box_articlelistsmall .subboxhead p {
    font-size: 20px;
    font-weight: 400;
    color: #313139;
}
#box_articlelist .subboxhead a img,
#box_articlelistsmall .subboxhead a img {
    margin-left: 5px;
}
#box_articlelist .innerbox,
#box_articlelistsmall .innerbox {
    display: flex;
    margin-top: 25px;
}
#box_articlelist .innerbox article .article-content > .article-image-wrap,
#box_articlelistsmall .innerbox article .article-content > .article-image-wrap {
    position: relative;
    min-height: 120px;
}
#box_articlelist .innerbox article .article-categories,
#box_articlelistsmall .innerbox article .article-categories {
    position: absolute;
    bottom: 25px;
    left: 25px;
    width: calc(100% - 50px);
}
#box_articlelist .innerbox article .article-categories a,
#box_articlelistsmall .innerbox article .article-categories a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.32px;
    line-height: 24px;
    background: #fff;
    border-radius: 16px;
    padding: 8px 20px;
    text-transform: uppercase;
}
#box_articlelist .innerbox article .article-name,
#box_articlelistsmall .innerbox article .article-name {
    padding: 25px 35px 10px 35px;
    display: block;
}
#box_articlelist .innerbox article .article-date,
#box_articlelistsmall .innerbox article .article-date {
    padding: 5px 35px 25px 35px;
    display: block;
    color: #656565;
    font-size: 13px;
    font-weight: 400;
    line-height: 15px;
}
@media (min-width: 768px) {
    #box_articlelist .innerbox article,
    #box_articlelistsmall .innerbox article {
        width: calc((100% - 40px) / 3);
    }
    #box_articlelist .innerbox.owl-loaded article,
    #box_articlelistsmall .innerbox.owl-loaded article {
        width: auto;
    }
    #box_articlelist .innerbox article:nth-of-type(3),
    #box_articlelistsmall .innerbox article:nth-of-type(3) {
        margin-right: 0;
    }
    #box_articlelist .innerbox article .article-name,
    #box_articlelistsmall .innerbox article .article-name {
        font-size: 24px;
        font-weight: 400;
    }
}
@media (max-width: 767px) {
    #box_articlelist .innerbox article .article-name,
    #box_articlelistsmall .innerbox article .article-name {
        font-size: 20px;
        font-weight: 400;
    }
}
#box_article .article-header,
#box_article .article-info {
    max-width: 770px;
}
#box_article .article-name {
    color: #383838;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
}
@media screen and (min-width: 768px) {
    #box_article .article-name {
        font-size: 42px;
        line-height: 53px;
    }
}
@media screen and (max-width: 767px) {
    #box_article .article-name {
        font-size: 24px;
        line-height: 35px;
        margin-bottom: 10px;
    }
}
#box_article .article-info .article-date {
    color: #000;
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 15px;
    text-align: left;
    opacity: 0.7;
}
#box_article .article-content {
    margin: 30px 0;
}
#box_article .article-content > b,
#box_article .article-content > div,
#box_article .article-content > em,
#box_article .article-content > h1,
#box_article .article-content > h2,
#box_article .article-content > h3,
#box_article .article-content > h4,
#box_article .article-content > p:not(.main-image),
#box_article .article-content > span,
#box_article .article-content > strong {
    max-width: 770px;
    margin: 25px auto;
}
#box_article .article-content b,
#box_article .article-content p {
    font-size: 20px;
    line-height: 30px;
}
.box_mamezi_product .products {
    display: flex;
    flex-wrap: wrap;
    margin: 0 !important;
}
.box_mamezi_product .products .product {
    margin-bottom: 10px;
}
.box_mamezi_product .products .product .buttons,
.box_mamezi_product .products .product .manufacturer,
.box_mamezi_product .products .product .price span,
.box_mamezi_product .products .product .tags {
    display: none;
}
.box_mamezi_product .products .product .img-wrap {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box_mamezi_product .products .product .prodname {
    margin-bottom: 5px;
    overflow: hidden;
    color: #4a4a4a;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.32px;
    line-height: 20px;
    text-align: left;
    height: 40px;
    display: block;
}
.box_mamezi_product .products .product .price {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.box_mamezi_product .products .product .price del {
    margin-right: 5px;
}
.box_mamezi_product .products .product .price del,
.box_mamezi_product .products .product .price em {
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.36px;
    line-height: 17px;
    text-align: left;
}
@media screen and (min-width: 550px) {
    .box_mamezi_product .products .product {
        width: calc(100% / 3 - (20px / 3)) !important;
        margin-left: 0 !important;
    }
    .box_mamezi_product .products .product:nth-child(3n + 1),
    .box_mamezi_product .products .product:nth-child(3n + 2) {
        margin-right: 10px;
    }
}
@media screen and (max-width: 549px) {
    .box_mamezi_product .products .product {
        width: calc(100% / 2 - 5px) !important;
        margin-left: 0 !important;
    }
    .box_mamezi_product .products .product:nth-child(2n + 1) {
        margin-right: 10px;
    }
}
.shop_news_category_list #box_articlelist,
.shop_news_list #box_articlelist {
    max-height: 100%;
    min-height: auto;
}
.shop_news_category_list #box_articlelist .innerbox,
.shop_news_list #box_articlelist .innerbox {
    flex-wrap: wrap;
}
.shop_news_category_list #box_articlelist .innerbox .item,
.shop_news_list #box_articlelist .innerbox .item {
    margin-bottom: 10px;
}
@media screen and (min-width: 980px) {
    .shop_news_category_list #box_articlelist .innerbox .item,
    .shop_news_list #box_articlelist .innerbox .item {
        width: calc(100% / 3 - (20px / 3));
    }
    .shop_news_category_list #box_articlelist .innerbox .item:nth-child(3n + 1),
    .shop_news_category_list #box_articlelist .innerbox .item:nth-child(3n + 2),
    .shop_news_list #box_articlelist .innerbox .item:nth-child(3n + 1),
    .shop_news_list #box_articlelist .innerbox .item:nth-child(3n + 2) {
        margin-right: 10px;
    }
}
@media screen and (max-width: 979px) and (min-width: 550px) {
    .shop_news_category_list #box_articlelist .innerbox .item,
    .shop_news_list #box_articlelist .innerbox .item {
        width: calc(100% / 2 - 5px);
    }
    .shop_news_category_list #box_articlelist .innerbox .item:nth-child(3n + 1),
    .shop_news_list #box_articlelist .innerbox .item:nth-child(3n + 1) {
        margin-right: 10px;
    }
}
@media screen and (max-width: 549px) {
    .shop_news_category_list #box_articlelist .innerbox .item,
    .shop_news_list #box_articlelist .innerbox .item {
        width: 100%;
    }
}
#masonrygallery {
    min-height: 600px;
}
.gallery-masonry {
    width: 100%;
}
.gallery-masonry.loading {
    min-height: 600px;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.gallery-masonry.loading::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: url(/userdata/public/assets/SVG/loader.svg) #fff no-repeat 50% 250px;
    z-index: 1;
}
.item {
    width: 100%;
}
.gallery-masonry p,
.gallery-masonry strong {
    color: #000;
    font-size: 61px;
    font-style: normal;
    letter-spacing: -1.22px;
    line-height: 67px;
    text-align: left;
}
.gallery-masonry div.item a {
    display: block;
    margin: 20px 0 15px 0;
}
.gallery-masonry div.item a em {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 50px;
    height: 54px;
    border-radius: 35px;
    border: 2px solid #313139;
    padding: 0 38px;
    display: inline-block;
}
#features {
    display: flex;
    justify-content: center;
}
@media screen and (min-width: 980px) {
    #features {
        margin: 35px 0;
    }
}
@media screen and (max-width: 979px) {
    #features {
        margin: 35px 0 15px 0;
    }
}
@media screen and (max-width: 1239px) {
    #features {
        flex-direction: column;
        align-items: center;
    }
    #features .features-right {
        margin-top: 25px;
    }
}
#features .features-left ul {
    list-style: none;
    display: flex;
}
#features .features-left ul li {
    display: flex;
    align-items: center;
    color: #797979;
    font-weight: 400;
    text-align: right;
}
@media screen and (min-width: 980px) {
    #features .features-left ul li {
        margin-right: 70px;
        line-height: 34px;
        font-size: 16px;
    }
    #features .features-left ul li:last-child {
        margin-right: 0;
    }
    #features .features-left ul li img {
        margin-right: 8px;
    }
}
@media screen and (max-width: 979px) {
    #features .features-left ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    #features .features-left ul li {
        flex-direction: column;
        justify-content: space-between;
        line-height: 20px;
        margin-left: 28px;
        font-size: 13px;
    }
    #features .features-left ul li:first-child {
        width: 100%;
        display: block;
        text-align: center;
        margin-bottom: 15px;
        margin-left: 0;
    }
    #features .features-left ul li:nth-child(2) {
        margin-left: 0;
    }
    #features .features-right img {
        max-width: 213px;
    }
}
@media screen and (max-width: 430px) and (min-width: 342px) {
    #features .features-left ul li {
        margin-left: 8px;
    }
}
@media screen and (max-width: 341px) and (min-width: 346px) {
    #features .features-left ul li {
        margin-left: 4px;
    }
}
@media screen and (max-width: 345px) {
    #features .features-left ul li {
        width: calc(50% - 15px);
    }
    #features .features-left ul li:nth-child(2),
    #features .features-left ul li:nth-child(3) {
        margin-bottom: 15px;
    }
    #features .features-left ul li:nth-child(4) {
        margin-left: 0;
    }
}
#box_newsletter {
    display: flex;
    margin: 10px 0 30px 0;
    border-top: 1px solid #ededed;
}
#box_newsletter .boxhead .boxtitle {
    font-size: 18px;
    font-weight: 700;
    line-height: 34px;
    display: block;
}
#box_newsletter .boxhead .boxintro {
    font-size: 32px;
    font-weight: 400;
    line-height: 34px;
    display: block;
}
#box_newsletter .innerbox {
    margin-top: 17.5px;
}
#box_newsletter .innerbox form fieldset:nth-of-type(1) {
    position: relative;
}
#box_newsletter .innerbox form fieldset:nth-of-type(1)::before {
    content: "";
    background: url(/userdata/public/assets/SVG/post.svg) transparent no-repeat;
    width: 24px;
    height: 18px;
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
}
#box_newsletter .innerbox form fieldset:nth-of-type(1) input {
    color: #797979;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.36px;
    line-height: 36px;
    text-align: left;
    border-radius: 40px;
    background-color: #f4f4f4;
    border: none;
    padding: 10px 60px;
    width: 100%;
    box-sizing: border-box;
}
#box_newsletter .innerbox form fieldset:nth-of-type(1) input:focus {
    outline: 0;
}
#box_newsletter .innerbox form fieldset:nth-of-type(1) button {
    width: 22px;
    height: 16px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}
#box_newsletter .innerbox form fieldset:nth-of-type(1) button::before {
    content: "";
    background: url(/userdata/public/assets/SVG/twistedarrow.svg) transparent no-repeat;
    width: 22px;
    height: 16px;
    display: inline-block;
}
#box_newsletter .innerbox form fieldset:nth-of-type(2) {
    color: #797979;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 18px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    #box_newsletter {
        padding-top: 25px;
    }
    #box_newsletter {
        flex-direction: column;
    }
    #box_newsletter .boxhead .boxintro,
    #box_newsletter .boxhead .boxtitle {
        text-align: center;
    }
    #box_newsletter .innerbox form fieldset:nth-of-type(2) {
        margin: 12px 0 0 0;
    }
}
@media screen and (min-width: 768px) {
    #box_newsletter {
        padding-top: 40px;
    }
    #box_newsletter .boxhead {
        width: 45%;
    }
    #box_newsletter .boxhead .boxintro,
    #box_newsletter .boxhead .boxtitle {
        text-align: right;
    }
    #box_newsletter .innerbox form fieldset:nth-of-type(1) {
        max-width: 535px;
        margin-left: 35px;
    }
    #box_newsletter .innerbox form fieldset:nth-of-type(2) {
        margin: 12px 0 0 5px;
    }
}
#box_bestsellers{
    margin-top:50px;
}

#box_fromCategory{
    position: relative;
}
#box_fromCategory .owl-nav button{
    z-index: 2;
}
#box_bestsellers .boxhead span,
.products-related .boxhead,
#box_fromCategory .boxhead{
    font-weight: 700;
    font-style: normal;
    letter-spacing: -0.4px;
}
#box_bestsellers .boxintro,
.products-related .subboxhead,
#box_fromCategory .subboxhead{
    color: #313139;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.4px;
    line-height: 25px;
    text-align: left;
    display: block;
}
#box_bestsellers .product > a .boximgsize,
.products-related .product > a .boximgsize,
#box_fromCategory .product > a .boximgsize{
    height: 259px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#box_bestsellers .product:hover > a .productnamewrap .productname,
.products-related .product:hover .productnamewrap,
#box_fromCategory .product:hover .productnamewrap{
    text-decoration: underline;
}
#box_bestsellers .product > a .productnamewrap .productname,
.products-related .product .productnamewrap,
#box_fromCategory .product .productnamewrap{
    height: 40px;
    overflow: hidden;
    display: block;
    color: #656565;
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.32px;
    line-height: 20px;
    text-align: left;
    margin: 15px 0;
}
#box_bestsellers .product > a .boximgsize img,
.products-related .product > a .boximgsize img,
#box_fromCategory .product > a .boximgsize img{
    width: auto;
    max-height: 100%;
}



#box_bestsellers .product .price,
.products-related .product .price,
#box_fromCategory .product .price{
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
}

#box_bestsellers .product .price .price-left,
.products-related .product .price .price-left,
#box_fromCategory .product .price .price-left{
    height: 28px;
    width: 30px;
    background: red;
    position: relative;
    margin-right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#box_bestsellers .product .price .price-discount-wrap-triangle,
.products-related .product .price .price-discount-wrap-triangle,
#box_fromCategory .product .price .price-discount-wrap-triangle{
    position: absolute;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 10px solid red;
    right: -10px;
}

#box_bestsellers .product .price .price-left p,
.products-related .product .price .price-left p,
#box_fromCategory .product .price .price-left p{
    color:white;
    font-weight: 700;
    font-size: 14px;
    padding-bottom: 1px;
    padding-left: 3px;
}

#box_bestsellers .product .price .price-right,
.products-related .product .price .price-right,
#box_fromCategory .product .price .price-right{
    display: flex;
    align-items: center;
    padding-bottom:2px;
    flex-direction: column;
    margin-top:-4px;
}

#box_bestsellers .product .price em,
.products-related .product .price em,
#box_bestsellers .product .price del,
.products-related .product .price del,
#box_fromCategory .product .price em,
#box_fromCategory .product .price del{
    color: #000;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.36px;
    line-height: 17px;
    text-align: left;
}

#box_bestsellers .product .price em.price-crossed,
.products-related .product .price em.price-crossed,
#box_fromCategory .product .price em.price-crossed{
    text-decoration: line-through;
    margin-right:0;
}
#box_bestsellers .product .price del,
.products-related .product .price del,
#box_fromCategory .product .price del{
    margin-left: 0px;
    margin-right:6px;
}

#box_bestsellers .product .price,
.products-related .product .price,
#box_fromCategory .product .price{
    padding-bottom: 15px;
}
#box_bestsellers .product .price del,
#box_bestsellers .product .price em,
.products-related .product .price del,
.products-related .product .price em,
#box_fromCategory .product .price del,
#box_fromCategory .product .price em{
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.36px;
    line-height: 12px;
    text-align: left;
  	color: #F47920;
}
#box_bestsellers .product button span,
#box_bestsellers .product form fieldset .shaded_inputwrap,
#box_bestsellers .product form fieldset .unit,
.products-related .product button span,
.products-related .product form fieldset .shaded_inputwrap,
.products-related .product form fieldset .unit,
#box_fromCategory .product button span,
#box_fromCategory .product form fieldset .shaded_inputwrap,
#box_fromCategory .product form fieldset .unit{
    display: none;
}
@media screen and (min-width: 768px) {
    
    #box_bestsellers {
        margin-bottom: 120px;
    }
    .products-related,
    #box_fromCategory{
        margin-bottom: 80px;
    }
    #box_bestsellers .boxhead span,
    .products-related .boxhead,
    #box_fromCategory .boxhead{
        font-weight: 700;
        font-size: 22px;
        line-height: 34px;
      	font-style: italic;
    }
    #box_bestsellers .boxintro,
    .products-related .subboxhead,
    #box_fromCategory .subboxhead{
        font-size: 20px;
        margin-bottom: 25px;
        margin-top:8px;
    }
    #box_bestsellers .product button,
    .products-related .product button,
    #box_fromCategory .product button{
        position: absolute;
        border: 0;
        bottom: -63px;
        right: 30px;
        width: 44px;
        height: 44px;
        border-radius: 100%;
        transition: 250ms;
    }

    #box_bestsellers .product button.availability-notifier-btn,
    .products-related .product button.availability-notifier-btn,
    #box_fromCategory .product button.availability-notifier-btn{
        background-color:white;
    }

    #box_bestsellers .product:hover button,
    .products-related .product:hover button,
    #box_fromCategory .product:hover button{
        bottom: 9px
    }
    #box_bestsellers .product button.addtobasket::before,
    .products-related .product button.addtobasket::before,
    #box_fromCategory .product button.addtobasket::before{
        content: "";
        background: url(/userdata/public/assets/SVG/whitebasket.svg) transparent no-repeat;
        width: 26px;
        height: 23px;
        display: inline-block;
        position: relative;
        top: 9px;
    }
    #box_bestsellers .product button.availability-notifier-btn::before,
    .products-related .product button.availability-notifier-btn::before,
    #box_fromCategory .product button.availability-notifier-btn::before{
        content: "";
        background: url('/userdata/public/assets/SVG/availability.svg') transparent no-repeat;
        width: 44px;
        height: 44px;
        display: inline-block;
        position: relative;
        top: 0px;
    }
}
@media screen and (max-width: 767px) {
    .products-related,
    #box_fromCategory{
        margin-bottom: 30px;
    }
    #box_bestsellers .boxhead span,
    .products-related .boxhead,
    #box_fromCategory .boxhead{
        font-size: 20px;
        line-height: 16px;
    }
    #box_bestsellers .boxintro {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .products-related .subboxhead,
    #box_fromCategory .subboxhead{
        font-size: 16px;
        margin-bottom: 0;
    }

    #box_bestsellers .boxintro,
    .products-related .subboxhead,
    #box_fromCategory .subboxhead{
        margin-top:3px;
    }
    #box_bestsellers .product form,
    .products-related .product form,
    #box_fromCategory .product form{
        display: none;
    }
}

.owl-nav button {
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    transition: 250ms;
}
.owl-nav button:hover {
    background: #F47920 !important;
}
.owl-nav button span {
    background: url(/userdata/public/assets/svg-icons/strzalka-biala-prawo.svg) transparent no-repeat center;
    width: 8px;
    height: 11px;
    display: inline-block;
}
.owl-nav button.owl-prev {
    left: 0;
}
.owl-nav button.owl-prev .owl-left {
    transform: rotate(180deg);
}
.owl-nav button.owl-next {
    right: 0;
}
.owl-nav button.disabled {
    display: none;
}
#box_mainproducts .boxhead {
    display: flex;
    flex-wrap: wrap;
}
#box_mainproducts .boxhead .category-name {
    font-weight: 400;
    font-style: normal;
    text-align: left;
    margin-bottom: 20px;
    flex-grow: 1;
}
@media screen and (min-width: 767px) {
    #box_mainproducts .boxhead .category-name {
        min-width: 400px;
        margin-right: 30px;
        font-size: 36px;
        line-height: 36px;
        letter-spacing: -0.72px;
    }
    .filter-toggler{
        display: none;
    }
}
@media screen and (max-width: 767px) {
    #box_mainproducts .boxhead .category-name {
        display: flex;
        justify-content: space-between;
        width: 100%;
        font-size: 24px;
        line-height: 27px;
        letter-spacing: -0.48px;
    }
    .filter-toggler{
        display: inline-block;
        margin-bottom:25px;
    }
    .filter-toggler span{
        font-size: 16px;
        font-weight: 700;
        line-height: 40px;
        text-align: right;
        font-weight: bold;
        border: 1px solid black;
        border-radius: 28px;
        cursor: pointer;
        display: inline-block;
        text-align: center;
        padding: 1.5px 20px 3px 20px;
        background:#f4f4f4;
    }

    #box_filter .checkactive.inactive{
        display: none;
    }
}
.sort-and-view {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap:wrap;
}
.sortlinks {
    display: flex;
    align-items: center;
    width:100%;
}
@media screen and (min-width: 768px) {
    .products-sort-container {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        order: 3;
    }
    .products-sort-container .products-active-sort {
        margin: 0 20px 0 30px;
        display: flex;
    }
    .products-sort-container .products-active-sort > span {
        display: none;
    }
    .products-sort-container .products-active-sort p {
        font-size: 14px;
        font-weight: 400;
        letter-spacing: -0.28px;
        line-height: 36px;
        margin-right: 8px;
    }
    .products-sort-container .products-sort-options {
        min-width: 200px;
        transform: translateX(-74px) translateY(13px);
        background: #fff;
        border: 1px solid #000;
        padding: 20px;
        border-radius: 30px;
        display: none;
        z-index:1;
    }
    #box_filter .prodview {
        list-style: none;
        display: flex;
        align-items: center;
        order: 4;
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 767px) {
    .products-sort-container,
    .sort-and-view .prodview {
        display: none;
    }
}
.prodview li.selected {
    display: none;
}
.prodview .photo a {
    width: 23px;
    height: 19px;
    display: inline-block;
}
.prodview .photo a:after {
    content: "";
    background: url(/userdata/public/assets/SVG/boxesview.svg) transparent no-repeat;
    width: 20px;
    height: 20px;
    display: inline-block;
}
.prodview .full a {
    width: 23px;
    height: 19px;
    display: flex;
}
.prodview .full a:after {
    content: "";
    background: url(/userdata/public/assets/SVG/listview.svg) transparent no-repeat;
    width: 23px;
    height: 19px;
    display: flex;
}
#box_filter {
    transition: 250ms;
    opacity: 1;
    display: block;
}
#box_filter .innerbox .resetFilters {
    order: 1;
    margin-right: 15px;
    margin-left:10px;
    height: 45px;
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    align-items: center;
}
#box_filter .innerbox .resetFilters::before {
    content: "";
    background: url(/userdata/public/assets/SVG/redcross.svg) transparent no-repeat;
    background-size: 8px;
    width: 8px;
    height: 8px;
    margin-top: 1.5px;
    margin-right: 5px;
    display: inline-block;
}
#box_filter .innerbox .multiselect {
    position: relative;
    margin: 0 5px 10px 0;
    order: 2;
}
#box_filter.loading {
    opacity: 0;
    display: none;
}



#box_filter ul h5{
    margin-bottom:15px;
}
#box_filter .filter-wrap{
    max-height: 315px;
    overflow-y: scroll;
    margin: 25px 20px 32px 30px;
    padding-right: 10px;
}
#box_filter .filter-wrap::-webkit-scrollbar {
    width:3px;
}

#box_filter  .filter-wrap::-webkit-scrollbar-track{
    background: #f4f4f4;
    border-radius: 100%;
}

#box_filter .filter-wrap::-webkit-scrollbar-thumb {
    background: #333;
  }

  #box_filter .filter-wrap::-webkit-scrollbar-thumb {
    background: #000;
  }

#box_filter .innerbox #filter_price ul {
    min-width: 260px;
}
#box_filter ul:not(.prodview) li a {
    display: flex;
    margin-bottom: 8px;
    width: 100%;
    display: flex;
    position: relative;
}
#box_filter ul:not(.prodview) li a:before {
    content: "";
    width: 19px;
    height: 19px;
    min-width: 19px;
    box-sizing: border-box;
    border: 1px solid #707070;
    display: inline-block;
    margin-top: 2px;
    border-radius: 100%;
    margin-right: 12px;
}

#box_filter ul:not(.prodview) li.selected a::before {
    background-color: #000;
    border: none;
}
#box_filter ul:not(.prodview) li.selected a::after {
    content: "";
    background: url(/userdata/public/assets/SVG/checkbox.svg) transparent no-repeat;
    width: 9px;
    height: 8px;
    position: absolute;
    left: 5px;
    top: 8px;
}
#box_filter .innerbox {
    display: flex;
    flex-wrap: wrap;
}

@media screen and (min-width:768px){
    #box_filter ul:not(.prodview) {
        display: none;
        list-style: none;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    
        min-width: 200px;
        top: 55px;
        border-radius:15px;
        z-index: 1;
        box-shadow: 0 3px 99px rgba(0, 0, 0, 0.16);
        background-color: #fff;
    }
}
@media screen and (max-width:767px){
    #box_filter ul {
        display: none;
        list-style: none;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    
        min-width: 200px;
        top: 55px;
        border-radius:15px;
        z-index: 1;
        box-shadow: 0 3px 99px rgba(0, 0, 0, 0.16);
        background-color: #fff;
    }
}

@media screen and (min-width: 768px) {
    #box_filter .innerbox {
        justify-content: flex-end;
    }
}
#box_filter .innerbox .checkactive:first-child .multiselect {
    position: relative;
}
#box_filter .innerbox .checkactive:first-child .multiselect > span {
    padding-left: 45px !important;
    position: relative;
}
#box_filter .innerbox .checkactive:first-child .multiselect > span > span {
    display: none;
}
#box_filter .innerbox .checkactive:first-child .multiselect > span:before {
    content: "";
    background: url(/userdata/public/assets/SVG/categoriesicon.svg) no-repeat transparent;
    position: absolute;
    width: 19px;
    height: 19px;
    display: inline-block;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
}
#box_filter .innerbox .multiselect > span {
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
    text-align: right;
    border: 1px solid #000;
    border-radius: 28px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    padding: 1.5px 20px;
}
#box_filter .innerbox .multiselect#filter > span,
#box_filter .innerbox .multiselect#filter_category_1 > span {
    padding-left: 45px;
}

@media screen and (max-width:500px){
    #box_filter{
        position: relative;
    }
    #box_filter .multiselect{
        position: inherit !important;
    }
    #box_filter ul{
        box-sizing: border-box;
        width: 80% !important;
        top:0 !important;
    }
}
.floatcenterwrap {
    width: 100%;
}
.paginator-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.paginator {
    display: flex;
    list-style: none;
    padding: 0 20px 2px 20px;
    border-radius: 35px;
    border: 2px solid #2f2f2f;
}
.paginator a,
.paginator span {
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
}
@media screen and (min-width: 500px) {
    .paginator {
        margin: 0 30px;
    }
    .paginator li {
        padding: 3.5px 12px;
    }
}
@media screen and (max-width: 501px) {
    .paginator {
        margin: 0 20px;
    }
    .paginator li {
        padding: 3.5px 8px;
    }
}
.paginator li.selected span {
    text-decoration: underline;
}
.paginator-wrap .first img {
    transform: rotate(180deg);
}
.paginator-wrap .first img,
.paginator-wrap .last img {
    width: 12px;
}
.categorydesc {
    margin: 10px 0 0 0;
}

@media screen and (min-width: 767px) {
    #box_mainproducts > .innerbox {
        margin-top: 15px;
    }
}
#box_mainproducts .products.viewphot {
    display: flex;
    flex-wrap: wrap;
}
#box_mainproducts .products.viewphot .product {
    overflow: hidden;
}
#box_mainproducts .products .product:hover .productname {
    text-decoration: underline;
}
#box_mainproducts .products.viewphot .product .product-inner-wrap {
    display: flex;
    flex-direction: column;
}
#box_mainproducts .products.viewphot .product .prodimage .img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
#box_mainproducts .products.viewphot .prodname {
    height: 41px;
    overflow: hidden;
    margin: 15px 0 10px 0;
}
#box_mainproducts .products.viewphot .prodname .productname {
    color: black;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.32px;
    line-height: 20px;
    text-align: left;
}
#box_mainproducts .products.viewphot .product .price {
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
}

#box_mainproducts .products.viewphot .price .price-left {
    height: 28px;
    width: 30px;
    background: red;
    position: relative;
    margin-right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#box_mainproducts .products.viewphot .price .price-left .price-discount-wrap-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 10px solid red;
    right: -10px;
}
#box_mainproducts .products.viewphot .price .price-left p{
    color:white;
    font-weight: 700;
    font-size: 14px;
    padding-bottom: 1px;
    padding-left: 3px;
}

#box_mainproducts .products.viewphot .price .price-right{
    display: flex;
    align-items: center;
    padding-bottom:2px;
}

#box_mainproducts .products.viewphot .product .price em,
#box_mainproducts .products.viewphot .product del {
    color: #F47920;
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.36px;
    line-height: 20px;
    text-align: left;
}

#box_mainproducts .products.viewphot .product .price em.price-crossed{
    text-decoration: line-through;
    margin-right:6px;
}
#box_mainproducts .products.viewphot .product del {
    margin-left: 0px;
    margin-right:6px;
}
@media screen and (max-width: 767px) {
    
  	#box_mainproducts .products.viewphot .product form .shaded_inputwrap {
      display: none;
    }
  	#box_mainproducts .products.viewphot .product form .unit {
      display: none;
    }
  	#box_mainproducts .products.viewphot .product form .addtobasket {
      display: none;
    }
  	#box_mainproducts .products.viewphot .product form .availability-notifier-container {
      display: none;
    }
  	#box_mainproducts .products.viewphot .product .product-inner-wrap {
      padding-top: 2rem;
    }
}
@media screen and (min-width: 768px) {
    #box_mainproducts .products.viewphot .product .basket > fieldset .shaded_inputwrap,
    #box_mainproducts .products.viewphot .product .basket > fieldset .unit {
        display: none;
    }
    #box_mainproducts .products.viewphot .product form {
        position: relative;
    }
    #box_mainproducts .products.viewphot .product form button {
        position: absolute;
        right: 0;
        bottom: -74px;
        transition: 250ms;
        border-radius: 100%;
    }
    #box_mainproducts .products.viewphot .product:hover form button {
        bottom: 0;
    }
    #box_mainproducts .products.viewphot .product form button.addtobasket span {
        border-radius: 100%;
        height: 44px;
        width: 44px;
        display: inline-block;
        transition: 250ms;
    }

    #box_mainproducts .products.viewphot .product form button.availability-notifier-btn span {
        background: white;
        border-radius: 100%;
        height: 44px;
        width: 44px;
        display: inline-block;
        transition: 250ms;
    }
    #box_mainproducts .products.viewphot .product form button.availability-notifier-btn span:hover {
        background-color: white;
    }
}

@media screen and (max-width:500px){
    #box_mainproducts .product .price .price-right{
        flex-direction: column;
        margin-top:-4px;
    }
    #box_mainproducts .product .price .price-right em.price-crossed{
        margin-right:0 !important;
    }
    #box_mainproducts .products.viewphot .product .price{
        margin-top:4px;
    }
}
#box_mainproducts .products.viewphot .product form button.addtobasket span::before {
    content: "";
    background: url(/userdata/public/assets/SVG/whitebasket.svg) transparent no-repeat center;
    width: 44px;
    height: 40px;
    display: inline-block;
}

#box_mainproducts .products.viewphot .product form button.availability-notifier-btn span::before {
    content: "";
    background: url(/userdata/public/assets/SVG/availability.svg) transparent no-repeat center;
    width: 44px;
    height: 44px;
    display: inline-block;
}

@media screen and (min-width: 1200px) {
    #box_mainproducts .products.viewphot .product {
        width: calc(25% - 30px);
        margin-right: 40px;
        margin-bottom: 50px;
    }
    #box_mainproducts .products.viewphot .product .prodimage .img-wrap {
        height: 400px;
    }
    #box_mainproducts .products.viewphot .product .prodimage .img-wrap img {
        width: auto;
        max-height: 100%;
    }
    #box_mainproducts .products.viewphot .product:nth-child(4n) {
        margin-right: 0;
    }
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
    #box_mainproducts .products.viewphot .product {
        width: calc((100% / 3) - 20px);
        margin-right: 30px;
        margin-bottom: 40px;
    }
    #box_mainproducts .products.viewphot .product .prodimage .img-wrap {
        height: 350px;
    }
    #box_mainproducts .products.viewphot .product .prodimage .img-wrap img {
        width: auto;
        max-height: 100%;
    }
    #box_mainproducts .products.viewphot .product:nth-child(3n) {
        margin-right: 0;
    }
}
@media screen and (max-width: 767px) {
    #box_mainproducts .products.viewphot .product {
        width: 100%;
        margin-right: 10px;
        margin-bottom: 25px;
    }
    #box_mainproducts .products.viewphot .product .prodimage .img-wrap img {
        width: auto;
        max-height: 100%;
    }
    #box_mainproducts .products.viewphot .product:nth-child(2n) {
        margin-right: 0;
    }
}
@media screen and (max-width: 767px) and (min-width: 500px) {
    #box_mainproducts .products.viewphot .product .prodimage .img-wrap {
        height: 350px;
    }
}
@media screen and (max-width: 499px) and (min-width: 380px) {
    #box_mainproducts .products.viewphot .product .prodimage .img-wrap {
        height: 250px;
    }
}
@media screen and (max-width: 379px) {
    #box_mainproducts .products.viewphot .product .prodimage .img-wrap {
        height: 150px;
    }
}
#box_mainproducts .products.viewfull {
    display: flex;
    flex-direction: column;
    max-width: 1100px;
    margin: 0 auto;
}
#box_mainproducts .products.viewfull .product {
    margin-bottom: 40px;
}
#box_mainproducts .products.viewfull .description > div {
    display: flex;
}
#box_mainproducts .products.viewfull .description > div .img-wrap {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#box_mainproducts .products.viewfull .description > div img {
    max-height: 100%;
    width: auto;
}
#box_mainproducts .products.viewfull .description > div > .viewfull-wrap {
    display: flex;
    flex-wrap: nowrap;
}
#box_mainproducts .products.viewfull .viewfull-wrap .viewfull-wrap-left .prodname {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.4px;
    line-height: 30px;
    text-align: left;
    margin-bottom: 15px;
    display: block;
}
#box_mainproducts .products.viewfull .viewfull-wrap .viewfull-wrap-left .product-short-description p {
    margin-bottom: 20px;
    color: #4a4a4a;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 20px;
}
#box_mainproducts .products.viewfull .viewfull-wrap .viewfull-wrap-left > p span {
    color: #4a4a4a;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.32px;
    line-height: 20px;
    text-align: left;
}

#box_mainproducts .products.viewfull .viewfull-wrap .viewfull-wrap-left > p span:first-child {
    font-weight: 700;
}

#box_mainproducts .products.viewfull .viewfull-wrap form {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

#box_mainproducts .products.viewfull .viewfull-wrap button{
    border-radius:100%;
    margin-top:8px;
    margin-left:15px;
}
#box_mainproducts .products.viewfull .viewfull-wrap button.addtobasket span{
    width: 44px;
    height: 44px;
    display: inline-block;
    /* background: #000; */
    border-radius: 100%;
}

#box_mainproducts .products.viewfull .viewfull-wrap button.availability-notifier-btn span {
    width: 44px;
    height: 44px;
    display: inline-block;
    background: white;
    border-radius: 100%;
}

#box_mainproducts .products.viewfull .viewfull-wrap .price > div {
    display: flex;
    flex-direction: row;
    flex-wrap:wrap;
    margin-right:15px;
}

#box_mainproducts .products.viewfull .viewfull-wrap .price .price-left{
    height: 60px;
    width: 45px;
    background: red;
    position: relative;
    margin-right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#box_mainproducts .products.viewfull .viewfull-wrap .price .price-left p{
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    transform: translateX(2px);
}

#box_mainproducts .products.viewfull .viewfull-wrap .price .price-left div{
    position: absolute;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 10px solid red;
    right: -10px;
}

#box_mainproducts .products.viewfull .viewfull-wrap .price .price-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#box_mainproducts .products.viewfull .viewfull-wrap .price .price-right-bottom .promoPrice,
#box_mainproducts .products.viewfull .viewfull-wrap .price .price-crossed{
    text-decoration: line-through;
}

#box_mainproducts .products.viewfull .viewfull-wrap .price em {
    font-size: 17px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.36px;
    line-height: 22px;
    display: block;
}

#box_mainproducts .products.viewfull .viewfull-wrap .price del{
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.36px;
    line-height: 20px;
    display: block;
}

#box_mainproducts .products.viewfull .viewfull-wrap button.addtobasket span::before {
    content: "";
    width: 44px;
    height: 40px;
    display: inline-block;
    background: url(/userdata/public/assets/SVG/whitebasket.svg) transparent no-repeat center;
}

#box_mainproducts .products.viewfull .viewfull-wrap button.availability-notifier-btn span::before {
    content: "";
    width: 44px;
    height: 44px;
    display: inline-block;
    background: url('/userdata/public/assets/SVG/availability.svg') transparent no-repeat center;
}

#box_mainproducts .products.viewfull .viewfull-wrap .viewfull-wrap-right form .shaded_inputwrap,
#box_mainproducts .products.viewfull .viewfull-wrap .viewfull-wrap-right form .unit {
    display: none;
}

@media screen and (min-width: 768px) {
    #box_mainproducts .products.viewfull .description > div > .viewfull-wrap {
        width: calc(100% - 240px);
    }
    #box_mainproducts .products.viewfull .viewfull-wrap .viewfull-wrap-left {
        width: calc(100% - 220px);
    }
    #box_mainproducts .products.viewfull .viewfull-wrap .viewfull-wrap-right {
        width: 260px;
        margin-left: 20px;
    }
    #box_mainproducts .products.viewfull .description > div .img-wrap {
        width: 240px;
    }
    #box_mainproducts .products.viewfull .description > div > .viewfull-wrap {
        padding: 0 0 0 20px;
    }

    #box_mainproducts .products.viewfull .viewfull-wrap form {
        justify-content: flex-end;
    }
}
@media screen and (max-width: 767px) {
    #box_mainproducts .products.viewfull .description > div {
        flex-wrap: wrap;
    }
    #box_mainproducts .products.viewfull .description > div > .viewfull-wrap {
        flex-direction: column;
    }
    #box_mainproducts .products.viewfull .description > div > .viewfull-wrap,
    #box_mainproducts .products.viewfull .description > div > .viewfull-wrap .viewfull-wrap-left,
    #box_mainproducts .products.viewfull .viewfull-wrap .viewfull-wrap-right {
        width: 100%;
    }
    #box_mainproducts .products.viewfull .viewfull-wrap .viewfull-wrap-right form button {
        position: relative;
        right: 15px;
    }
    #box_mainproducts .products.viewfull .description > div .prodimage {
        width: 100%;
        display: block;
    }
    #box_mainproducts .products.viewfull .price {
        margin-top: 15px;
    }
    #box_mainproducts .products.viewfull .viewfull-wrap .viewfull-wrap-left .prodname {
        margin-top: 20px;
    }
}
#discount-banner {
    border-radius: 20px;
    background-color: #fae9d0;
    padding: 7px 30px;
    margin-top: 10px;
    display: flex;
    position: relative;
    transition:250ms;
    height:auto;
}

#discount-banner.inactive{
    display: none !important;
}
.discount-banner-left {
    text-align: right;
}
.discount-banner-left p {
    color: #313139;
}
.discount-banner-right {
    display: flex;
    flex-wrap: wrap;
}
.discount-banner-right-box {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    width: 25%;
}
.discount-banner-right-box strong {
    width: 40px;
    display: inline-block;
}
.discount-banner-right-description {
    color: #313139;
    text-align: left;
    margin-top: 5px;
}
.discount-banner-right-box > p {
    display: inline-block;
}

.discount-banner-close{
    position: absolute;
    right:30px;
    top:50%;
    transform:translateY(-50%);
    width:30px;
    height:30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (min-width: 1250px) {
    .discount-banner-left {
        padding-right: 130px;
        width: 40%;
    }
    .discount-banner-left p:nth-child(1) {
        font-size: 28px;
        line-height: 39px;
    }
    .discount-banner-left p:nth-child(2) {
        font-size: 20px;
        line-height: 20px;
    }
    .discount-banner-right {
        width: calc(60% - 130px);
    }
}
@media screen and (max-width: 1249px) and (min-width: 980px) {
    .discount-banner-left {
        padding-right: 30px;
        width: 35%;
    }
    .discount-banner-left p:nth-child(1) {
        font-size: 20px;
        line-height: 39px;
    }
    .discount-banner-left p:nth-child(2) {
        font-size: 16px;
        line-height: 20px;
    }
    .discount-banner-right {
        width: calc(75% - 30px);
    }
}
@media screen and(min-width:980px) {
    .discount-banner-right-box {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        text-align: left;
        width: 25%;
    }
    .discount-banner-right-description {
        font-size: 13px;
        line-height: 20px;
    }
}
@media screen and (max-width: 979px) {
    #discount-banner {
        flex-direction: column;
    }
    .discount-banner-left,
    .discount-banner-right {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .discount-banner-right {
        margin-top: 10px;
    }
    .discount-banner-left p:nth-child(1) {
        font-size: 20px;
        line-height: 25px;
    }
    .discount-banner-left p:nth-child(2) {
        font-size: 16px;
        line-height: 20px;
    }
    .discount-banner-right-box {
        font-size: 13px;
        font-weight: 400;
        line-height: 18px;
        width: 50%;
        text-align: center;
    }
    .discount-banner-right-box > p {
        width: 90px;
        text-align: left;
    }
    .discount-banner-right-description {
        order: 10;
        font-size: 10px;
        line-height: 15px;
    }
}
@media screen and (min-width: 321px) and (max-width: 979px) {
    #discount-banner {
        padding: 7px 10px;
        margin-top: 0;
        margin-bottom: 25px;
    }
    .discount-banner-right-box:nth-child(1) {
        order: 1;
    }
    .discount-banner-right-box:nth-child(2) {
        order: 5;
    }
    .discount-banner-right-box:nth-child(3) {
        order: 2;
    }
    .discount-banner-right-box:nth-child(4) {
        order: 6;
    }
    .discount-banner-right-box:nth-child(5) {
        order: 3;
    }
    .discount-banner-right-box:nth-child(6) {
        order: 7;
    }
    .discount-banner-right-box:nth-child(7) {
        order: 4;
    }
    .discount-banner-right-box:nth-child(8) {
        order: 8;
    }
}
@media screen and (max-width: 320px) {
    .discount-banner-right-box {
        width: 100%;
    }
    .discount-banner-right-box:nth-child(1) {
        order: 1;
    }
    .discount-banner-right-box:nth-child(2) {
        order: 3;
    }
    .discount-banner-right-box:nth-child(3) {
        order: 5;
    }
    .discount-banner-right-box:nth-child(4) {
        order: 7;
    }
    .discount-banner-right-box:nth-child(5) {
        order: 2;
    }
    .discount-banner-right-box:nth-child(6) {
        order: 3;
    }
    .discount-banner-right-box:nth-child(7) {
        order: 6;
    }
    .discount-banner-right-box:nth-child(8) {
        order: 8;
    }
}
#box_productfull .product-container {
    display: flex;
    margin-top: 30px;
    margin-bottom: 35px;
}
#box_productfull .product-container .product-container-leftcol > .productimg {
    display: flex;
    flex-direction: row-reverse;
    position: relative;
}
#box_productfull .product-container .productimg {
    display: flex;
}
#box_productfull .product-container .productimg > div {
    transition: 250ms;
    opacity: 1;
}
#box_productfull .product-container .productimg.loading > div {
    opacity: 0;
}
#box_productfull .product-container .productimg.loading:after {
    content: "";
    background: url(/userdata/public/assets/SVG/loader.svg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    z-index: 50;
    width: 98px;
    height: 98px;
}
#box_productfull .productimg .custom-gallery .owl-item a {
    display: flex;
    align-items: center;
    justify-content: center;
}
#box_productfull .productimg .custom-gallery .owl-item a img {
    width: auto;
}
#box_productfull .product-container .productimg .innersmallgallery ul {
    display: flex;
}
#box_productfull .productimg .custom-gallery .owl-item a img {
    max-height: 900px;

}
@media screen and (min-width: 1401px) {
    #box_productfull .productimg .custom-gallery .owl-item a img {
        max-width:900px;
    }
    #box_productfull .product-container .product-container-leftcol {
        width: calc(100% - 627px);
        margin-right: 100px;
    }
    #box_productfull .product-container .product-container-leftcol > .productimg {
        margin-bottom: 35px;
        min-height: 450px;
    }
    #box_productfull .productimg .custom-gallery {
        width: calc(100% - 132px);
    }
    #box_productfull .product-container .productimg .innersmallgallery ul {
        flex-direction: column;
    }
    #box_productfull .product-container .productimg .smallgallery {
        width: 122px;
        margin: 0 10px 0 0;
    }
    #box_productfull .product-container .productimg .smallgallery .innersmallgallery ul li {
        margin-bottom: 10px;
        max-height: 122px;
        justify-content: center;
    }
    #box_productfull .product-container .productimg .smallgallery .innersmallgallery ul li img {
        max-height: 122px;
        cursor: pointer;
    }
}
@media screen and (max-width: 1400px) and (min-width: 980px) {
    #box_productfull .product-container .product-container-leftcol {
        width: calc(100% - 425px);
        margin-right: 25px;
    }
    #box_productfull .product-container .product-container-leftcol > .productimg {
        margin-bottom: 35px;
        min-height: 40vw;
    }
    #box_productfull .productimg .custom-gallery {
        width: calc(100% - 132px);
    }
    #box_productfull .product-container .productimg .innersmallgallery ul {
        flex-direction: column;
    }
    #box_productfull .product-container .productimg .smallgallery {
        width: 122px;
        margin: 0 10px 0 0;
    }
    #box_productfull .product-container .productimg .smallgallery .innersmallgallery ul li {
        margin-bottom: 10px;
        max-height: 122px;
        justify-content: center;
    }
    #box_productfull .product-container .productimg .smallgallery .innersmallgallery ul li img {
        max-height: 122px;
        cursor: pointer;
    }
}
@media screen and (max-width: 979px) {
    #box_productfull .product-container .product-container-leftcol {
        width: 100%;
        flex-direction: column;
    }
    #box_productfull .product-container .product-container-leftcol > .productimg {
        margin-bottom: 20px;
        min-height: 80vw;
    }
    #box_productfull .productimg .custom-gallery {
        width: 100%;
        margin-bottom: 10px;
    }
    #box_productfull .product-container,
    #box_productfull .product-container .product-container-leftcol > .productimg {
        flex-wrap: wrap;
    }
    #box_productfull .productimg .custom-gallery .owl-item a img {
        max-height: 600px;
    }
    #box_productfull .product-container .productimg .smallgallery {
        width: 100%;
    }
    #box_productfull .product-container .productimg .smallgallery .innersmallgallery ul li {
        margin-bottom: 10px;
        margin-right: 10px;
        max-height: 38px;
        justify-content: center;
        max-width: 38px;
    }
    #box_productfull .product-container .productimg .smallgallery .innersmallgallery ul li img {
        max-height: 38px;
        cursor: pointer;
    }
}
@media screen and (min-width: 980px) {
    .product-container .product-details-wrap {
        width: 527px;
    }
}
@media screen and (max-width: 979px) {
    .product-container .product-details-wrap {
        width: 100%;
        margin-bottom: 50px;
    }
}
@media screen and (min-width: 1401px) {
    .product-details-wrap .product-h1-wrap {
        position: relative;
    }
    .product-details-wrap .product-h1-wrap .product-back {
        position: absolute;
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        left: -65px;
    }
    .product-details-wrap .product-h1-wrap .product-back a {
        display: block;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    .product-details-wrap .product-h1-wrap .product-back::before {
        content: "";
        background: url(/userdata/public/assets/SVG/back.svg) transparent no-repeat center;
        position: absolute;
        display: inline-block;
        width: 27px;
        height: 19px;
    }
}
@media screen and (max-width: 1400px) {
    .product-back {
        display: none;
    }
}
@media screen and (min-width: 1000px) {
    .product-details-sticky{
        width:100%;
    }
    .product-details-sticky.active {
        position: fixed;
        top: 20px;
        max-width: 527px;
        width: 527px;
    }
    .product-details-wrap.active {
        display: flex;
        align-items: flex-end;
    }
}
.product-details-wrap .product-h1-wrap h1 {
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
    margin-top: 10px;
}
.product-details-wrap .boxhead-informations {
    display: flex;
    flex-wrap: wrap;
}

.products .product .product-more-info-bar{
    display: flex;
}
.boxhead-informations .stocks-availability,
.boxhead-informations .availability,
.products .product .availability{
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
    padding: 5px 10px 4px 20px;
    border-radius: 11px;
    position: relative;
    margin-right: 20px;
}

.products .product .availability{
    margin-right:0;
    margin-top:5px;
}

@media screen and (max-width:480px){
    .products .product .availability::before{
        left:12.5px !important;
    }
    .products .product .availability{
        width:50%;
        padding-left: 30px;
    }
}

.boxhead-informations .stocks-availability::before,
.boxhead-informations .availability::before,
.products .product .availability::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 100%;
}
.boxhead-informations .stocks-availability.green,
.boxhead-informations .availability.green,
.products .product .availability.green
{
    background: #e3f1c3;
}
.boxhead-informations .stocks-availability.green::before,
.boxhead-informations .availability.green::before,
.products .product .availability.green::before{
    background: #97ba4b;
}
.boxhead-informations .stocks-availability.orange,
.boxhead-informations .availability.orange,
.products .product .availability.orange{
    background: #e3f1c3;
}
.boxhead-informations .stocks-availability.orange::before,
.boxhead-informations .availability.orange::before,
.products .product .availability.orange::before{
    background: #97ba4b;
}
.boxhead-informations .stocks-availability.red,
.boxhead-informations .availability.red,
.products .product .availability.red{
    background: #ec9f03;
}
.boxhead-informations .stocks-availability.red::before,
.boxhead-informations .availability.red::before,
.products .product .availability.red::before{
    background: #ec0315;
}

.boxhead-informations .shipping-costs{
    color: #313139;
    font-size: 13px;
    font-weight: 400;
    line-height: 17px;
    text-align: left;
    display: flex;
    padding: 4px 10px 4px 0;
}

.boxhead-informations .availability{
    margin-right:10px;
}
.boxhead-informations .availability .first{
    font-weight:700;
    margin-right:3px;
}

.boxhead-informations .shipping-costs::before {
    content: "";
    background: url(/userdata/public/assets/SVG/delivery.svg) transparent no-repeat;
    width: 22px;
    height: 16px;
    position: relative;
    display: inline-block;
    margin-right: 4px;
}
.boxhead-informations .shipping-costs strong {
    margin-left: 2px;
    margin-right: 2px;
}
.boxhead-informations .shipping-costs span {
    margin-left: 4px;
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    .product-details-wrap .boxhead-informations {
        margin-top: 10px;
    }
    .boxhead-informations .shipping-costs,
    .boxhead-informations .stocks-availability,
    .boxhead-informations .availability  {
        margin-top: 10px;
    }
}
.product-details-wrap .code-ean {
    color: #646464;
    font-size: 13px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
  	display: flex;
  	gap: 3rem;
}
.product-details-wrap .code-ean-wrapper {
  margin-block: 3rem;
  display: grid;
  gap: 1rem;
}
.product-details-wrap .code-ean > div:nth-child(1) {
  color: #0E3B44;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
.product-details-wrap .code-ean > div:nth-child(2) {
 color: #000;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
}
.product-details-wrap .evaluation {
    align-items: center;
    height: 30px;
    margin-bottom: 8px;
	display: none;

}
.product-details-wrap .evaluation .vote-message {
    font-size: 12px;
    font-style: normal;
    margin-right: 5px;
    color: #646464;
}
.votestars img[class*="star"],
.votestars-commentsmodule img[class*="star"] {
    display: inline-block;
    width: 21px;
    height: 19px;
    margin: 0 0 2px 0;
    float: left;
}
.product-details-wrap .evaluation .votestars img[class*="star"] {
    cursor: pointer;
}
.votestars img.star0,
.votestars-commentsmodule img.star0 {
    background: url(/userdata/public/assets/SVG/emptystar.svg) transparent no-repeat;
}
.votestars img.star1,
.votestars-commentsmodule img.star1 {
    background: url(/userdata/public/assets/SVG/fullstar.svg) transparent no-repeat;
}
.votestars img.star0-5,
.votestars-commentsmodule img.star0-5 {
    background: url(/userdata/public/assets/SVG/star0-5_temp.png) transparent no-repeat;
    background-size: 17px;
}
.price-wrap {
    display: flex;
}
.product-details-wrap .price-wrap .price-discount-wrap {
    height: 60px;
    width: 45px;
    background: red;
    position: relative;
    margin-right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-details-wrap .price-wrap .price-discount-wrap .price-discount-wrap-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 10px solid red;
    right: -10px;
}

.product-details-wrap .price-wrap .price-discount-wrap p {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    transform: translateX(2px);
}

.product-details-wrap .basket {
    display: flex;
    flex-direction: column;
}
.product-details-wrap .basket .price-without-promo {
    font-size: 13.5px;
    text-decoration: line-through;
    color: #000;
    height: 20px;
}


.product-details-wrap .basket .price em {
    font-size: 13px;
    line-height: 19px;
    font-size: 30px;
    font-weight: 700;
    font-style: normal;
    margin-right: 5px;
}

.product-details-wrap .basket .price-netto {
    color: #646464;
    font-size: 13px;
    font-weight: 400;
    line-height: 19px;
    text-align: left;
    margin-top: 4px;
}

.product-details-wrap .basket .price-netto .main-price {
    font-style: normal;
}
.productinfo-alert {
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}
.productinfo-alert p {
    opacity: 0.7;
    color: #000;
    font-size: 10px;
    font-weight: 400;
}
.productinfo-alert.loaded::before {
    content: "";
    background: url(/userdata/public/assets/SVG/alert.svg) transparent no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 5px;
}
.check-promoprice {
    margin-top: 10px;
    display: flex;
    align-items: center;
}
.check-promoprice p {
    font-size: 16px;
    line-height: 15px;
    text-decoration: underline;
    cursor: pointer;
    display: inline-block;
    margin-right: 5px;
}
.check-promoprice::after {
    content: "?";
    width: 20px;
    height: 20px;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 100%;
    color: #050505;
    font-size: 12px;
    font-weight: 700;
}
.product-details-wrap .stocks {
    margin: 15px 0 0 0;
  	display: none;
}
@media screen and (min-width: 500px) {
    .product-details-wrap .stocks > .f-row {
        display: flex;
        align-items: center;
        margin-bottom: 5px;
    }
    .product-details-wrap .stocks > .f-row label {
        width: 90px;
    }
    .product-details-wrap .stocks > .f-row .stock-options {
        width: calc(100% - 90px);
    }
}
.product-details-wrap .stocks label {
    margin: 10px 0 8px 0;
    display: block;
    color: #646464;
    font-size: 14px;
}
.product-details-wrap .stocks select {
    width: 100%;
    height: 50px;
    border-radius: 39px;
    border: none;
    color: #565656;
    padding: 0 20px;
    cursor: pointer;
    background: url(/userdata/public/assets/SVG/select.svg) #f4f4f4 no-repeat 95% 50%;
    -webkit-appearance: none;
    appearance: none;
}
.product-details-wrap .stocks select:focus {
    outline: 0;
}
.product-details-wrap .stocks option {
    width: 100%;
    height: 50px;
    border-radius: 39px;
    border: none;
    color: #565656;
    padding: 0 20px;
}
.product-details-wrap .option_color .stock-color a {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: 5px;
    border: 1px solid gray;
}
.product-details-wrap .option_color .stock-color a.current {
    border-width: 2px;
}
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}
.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
    border-width: 0 2px 0 2px;
    border-style: solid;
    border-color: #394a6d;
}
.custom-select__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    font-size: 20px;
    font-weight: 300;
    color: #3b3b3b;
    height: 60px;
    line-height: 60px;
    background: #fff;
    cursor: pointer;
    border-width: 2px 0 2px 0;
    border-style: solid;
    border-color: #394a6d;
}
.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 2px solid #394a6d;
    border-top: 0;
    background: #fff;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
}
.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.custom-option {
    position: relative;
    display: block;
    padding: 0 22px 0 22px;
    font-size: 22px;
    font-weight: 300;
    color: #3b3b3b;
    line-height: 60px;
    cursor: pointer;
    transition: all 0.5s;
}
.custom-option:hover {
    cursor: pointer;
    background-color: #b2b2b2;
}
.custom-option.selected {
    color: #fff;
    background-color: #305c91;
}
.product-details-wrap .basket .availability-notifier-container .button_wrap button {
    width: 100%;
}
.product-details-wrap .basket .availability-notifier-container .button_wrap button.addtobasket span {
    height: 64px;
    border-radius: 39px;
    /* background-color: #000; */
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    display: block;
    line-height: 64px;
    transition: 250ms;
}

.product-details-wrap .basket .availability-notifier-container .button_wrap button.availability-notifier-btn span {
    height: 64px;
    border-radius: 39px;
    background: white;
    color: black;
    border: 3px solid black;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    display: block;
    line-height: 64px;
    transition: 250ms;
}

.product-details-wrap .basket .availability-notifier-container .button_wrap button span:hover {
    background-color: white;
}
.product-details-wrap .basket .addtobasket-container {
    display: flex;
}
.product-details-wrap .basket .addtobasket-container .number-wrap input:focus {
    outline: 0;
    box-shadow: none;
}
.product-details-wrap .basket .addtobasket-container .number-wrap input {
    width: 88px;
    height: 55px;
    border-radius: 39px;
    border: 1px solid #f4f4f4;
    background-color: #f4f4f4;
    text-align: center;
    box-sizing: border-box;
    color: #050505;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    margin-right: 5px;
}
.product-details-wrap .basket .addtobasket-container .button_wrap {
    flex-grow: 1;
}

.product-details-wrap .basket .addtobasket-container .button_wrap button span,
.product-details-wrap .basket .addtobasket-container .button_wrap button{
    height: 55px;
    border-radius: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 23px;
    transition: 250ms;
    width: 100%;
}

.product-contact-wrap {
    position: relative;
}
.product-contact-wrap::before {
    content: "";
    background: url(/userdata/public/assets/SVG/mamynarzedzia/i_fast_contact_big.svg) transparent no-repeat;
    background-size: 36px;
    width: 36px;
    height: 41px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 5px;
  	display: none;
}
.product-contact-wrap p {
    font-size: 16px;
    line-height: 22px;
}
.product-contact-wrap a {
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 0.2px;
    font-weight: 700;
    display: block;
}
.product-contact-wrap span {
    color: #313139;
    font-size: 13px;
    letter-spacing: 0.13px;
    line-height: 20px;
    display: block;
}
.product-contact-wrap a.question {
    opacity: 0.89;
    color: #313139;
    font-size: 14px;
    line-height: 10px;
    font-weight: 400;
    position: relative;
    padding-left: 25px;
    margin-top: 15px;
    display: block;
}
.product-contact-wrap a.question::before {
    content: "";
    background: url(/userdata/public/assets/SVG/mamynarzedzia/i_envelope_small.svg) transparent no-repeat;
    width: 17px;
    height: 13px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 3px;
}
.relatedHeader {
    order: 9;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 23px;
    text-align: left;
    margin: 20px 0 25px 0;
    position: relative;
    overflow: hidden;
}
.relatedHeader p {
    display: inline-block;
    padding-right: 30px;
    background: #fff;
}
.relatedHeader::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #e3e3e3;
    transform: translateY(-50%);
    margin-top: 3px;
}
#customRelated {
    order: 10;
}
#customRelated .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
}
#box_description {
    margin-bottom: 30px;
}
#box_description .boxhead {
    font-weight: 700;
}
#box_description .subboxhead {
    margin-bottom: 40px;
}
#box_description .product-description-box {
    display: flex;
    align-items: center;
}
#box_description .product-description-box-img {
    width: 350px;
}
#box_description .product-description-box p {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.4px;
    line-height: 28px;
    margin-bottom: 15px;
}
#box_description .product-description-box p.small {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.32px;
    line-height: 28px;
}

#box_description .productfiles{
    list-style: none;
}

#box_description .productfiles h5{
    font-size: 22px;
    font-weight: 700;
    margin-bottom:15px;
  	line-height: 34px;
  	margin-top: 5em;
}
#box_description .productfiles li a{
    display: flex;
    align-items: center;
}
#box_description .productfiles li{
    margin-bottom: 5%;
}

#box_description .productfiles li span{
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}
#box_description .productfiles li a::before{
    content:'';
    background: url('/userdata/public/assets/svg-icons/pdf-icon.svg') transparent no-repeat;
    display: inline-block;
    width:13px;
    height:17px;
    margin-right:15px;
}
@media screen and (min-width: 1301px) {
    #box_description .boxhead {
        font-style: italic;
        font-weight: 700;
        font-size: 22px;
        line-height: 34px;
      	padding-top: 4%;
      	padding-bottom: 2%;
    }
    #box_description .subboxhead {
        font-size: 20px;
    }
    #box_description .product-description-box-text {
        width: calc(100% - 350px);
    }
    #box_description .product-description-box-text:nth-child(1) {
        padding-right: 70px;
    }
    #box_description .product-description-box-text:nth-child(2) {
        padding-left: 70px;
    }
    .box-description-btn {
        display: none;
    }
}
@media screen and (max-width: 1301px) {
    #box_description .innerbox {
        position: relative;
        overflow: hidden;
        transition: 250ms;
    }
    
    #box_description .innerbox.active::before {
        display: none;
    }
    #box_description .boxhead {
        font-size: 20px;
      	background-color: #F6F6F6;
      	padding-top: 10%;
    	padding-bottom: 5%;
    }
    #box_description .subboxhead {
        font-size: 16px;
    }
    #box_description .product-description-box {
        flex-wrap: wrap;
    }
    #box_description .product-description-box-img {
        order: 2;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    #box_description .product-description-box-text {
        width: 100%;
        order: 1;
        margin-bottom: 15px;
    }
    .box-description-btn {
        position: absolute;
        bottom: 10px;
        padding: 20px;
        text-align: center;
        width: 100%;
    }
    #box_description .innerbox.active .box-description-btn {
        bottom: -21px;
    }
}
#box_productdeliveries {
    display: none !important;
}
#box_productdata {
    margin-bottom: 40px;
    padding-block: 3em;
}
#box_productdata .boxhead {
    font-weight: 700;
}
#box_productdata table {
    width: 100%;
}
#box_productdata table tr td {
    width: 50%;
    color: #313139;
    font-size: 14px;
  	font-weight: 700;
    letter-spacing: -0.32px;
    line-height: 40px;
}
#box_productdata table tr td span {
    display: block;
}
#box_productdata table tr td:first-child {
    text-align: left;
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
}
@media screen and (min-width: 768px) {
    #box_productdata .boxhead {
        font-size: 28px;
    }
    #box_productdata .subboxhead {
        font-size: 20px;
        margin-bottom: 20px;
    }
    #box_productdata table tr td:first-child {
        padding-right: 15px;
    }
    #box_productdata table tr td:nth-child(2) {
        padding-left: 15px;
    }
}
@media screen and (max-width: 767px) {
    #box_productdata .boxhead {
        font-size: 20px;
    }
    #box_productdata .subboxhead {
        font-size: 16px;
        margin-bottom: 15px;
    }
    #box_productdata table tr td:first-child {
        padding-right: 3px;
    }
    #box_productdata table tr td:nth-child(2) {
        padding-left: 3px;
    }
}
#box_productcomments {
    border-radius: 57px;
    border: 7px solid #f4f4f4;
}
.box-productcomments-info {
    display: flex;
    justify-content: space-between;
}
.box-productcomments-stats {
    display: flex;
    align-items: center;
}
.box-productcomments-stats-stars {
    display: inline-block;
    margin-right: 3px;
    padding-top: 5px;
}
.box-productcomments-stats-stars .votestars img {
    margin: 0;
}
.box-productcomments-info-add {
    display: flex;
    align-items: center;
}
.box-productcomments-info-add .add-comment-boxhead {
    font-size: 20px;
}
.box-productcomments-info-add .add-comment-btn {
    font-weight: 700;
    border-radius: 39px;
    cursor: pointer;
    transition: 250ms;
}

#box_productcomments .productcomment {
    max-width: 900px;
    margin: 20px auto 25px auto;
    display: flex;
}
#box_productcomments .productcomment .reviewer {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.32px;
    height: 36px;
}
#box_productcomments .productcomment .reviewer::before {
    content: "";
    background: url(/userdata/public/assets/SVG/user.svg) transparent no-repeat;
    background-size: 36px;
    width: 36px;
    height: 36px;
    display: inline-block;
    position: relative;
}
#box_productcomments .comment-modal {
    position: fixed;
    top: 0;
    z-index: 9999;
    left: 0;
    right: 0;
    bottom: 0;
}
#box_productcomments .comment-modal form {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #a4a4a494;
}
#box_productcomments .comment-modal form > fieldset {
    background: #fff;
    box-shadow: 0 3px 99px rgba(0, 0, 0, 0.16);
    border-radius: 20px;
    width: 100%;
    text-align: center;
    max-width: 536px;
    padding: 60px 50px;
    position: relative;
}
#box_productcomments .comment-modal .comment-modal-header {
    font-size: 28px;
    font-weight: 700;
    line-height: 31px;
    text-align: center;
    margin-bottom: 20px;
}
#box_productcomments .comment-modal input {
    width: 261px;
    height: 57px;
    border-radius: 40px;
    background-color: #f4f4f4;
    border: none;
    margin-bottom: 10px;
    padding: 0 25px;
    font-size: 16px;
    box-sizing: border-box;
}
#box_productcomments .comment-modal textarea {
    width: 260px;
    height: 150px;
    border-radius: 20px;
    background-color: #f4f4f4;
    border: none;
    margin-bottom: 10px;
    padding: 20px 25px;
    box-sizing: border-box;
    font-size: 16px;
}
#box_productcomments .comment-modal input:focus,
#box_productcomments .comment-modal textarea:focus {
    outline: 0;
}
#box_productcomments .comment-modal button {
    width: 260px;
    height: 64px;
    border-radius: 39px;
    border: none;
    font-weight: 700;
    line-height: 23px;
    text-align: center;
    transition: 250ms;
}
#box_productcomments .comment-modal button:hover {
    background: #313139;
}
#box_productcomments .comment-modal-close {
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}
#box_productcomments .comment-modal-close::before {
    content: "";
    background: url(/userdata/public/assets/SVG/close.svg) transparent no-repeat;
    background-size: 15px;
    width: 15px;
    height: 15px;
    display: inline-block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
@media screen and (min-width: 1301px) {
    #box_productcomments {
        padding: 30px 50px;
    }
    #box_productcomments .boxhead {
        font-size: 28px;
        font-weight: 700;
    }
    #box_productcomments .subboxhead {
        display: none;
    }
    #box_productcomments .productcomment {
        align-items: center;
    }
    #box_productcomments .productcomment .reviewer {
        width: 250px;
        margin-right: 15px;
    }
    #box_productcomments .productcomment .description {
        width: calc(100% - 250px);
    }
    .box-productcomments-stats-rating {
        margin-right: 8px;
        font-size: 20px;
    }
    .box-productcomments-stats-quantity {
        opacity: 0.7;
        font-size: 20px;
    }
    .box-productcomments-info-add .add-comment-boxhead {
        margin-right: 12.5px;
    }
    .box-productcomments-info-add .add-comment-btn {
        padding: 19px 52.5px;
    }
    #box_productcomments .productcomment .reviewer {
        flex-direction: row-reverse;
    }
    #box_productcomments .productcomment .reviewer::before {
        margin-left: 10px;
    }
    #box_productcomments .productcomment .description {
        margin: 0;
        width: 80%;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: -0.32px;
        line-height: 28px;
    }
}
@media screen and (max-width: 1300px) {
    #box_productcomments {
        padding: 35px 40px 15px 40px;
    }
    #box_productcomments .boxhead {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
    }
    #box_productcomments .subboxhead {
        font-size: 16px;
        font-weight: 400;
        letter-spacing: -0.32px;
        line-height: 20px;
        margin-bottom: 12px;
    }
    .box-productcomments-info {
        flex-wrap: wrap;
    }
    .box-productcomments-stats {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
    .box-productcomments-stats-rating {
        width: 100%;
        font-size: 16px;
        text-align: center;
    }
    .box-productcomments-stats-quantity {
        opacity: 0.7;
        font-size: 16px;
    }
    .box-productcomments-info-add {
        flex-direction: column;
        width: 100%;
        margin: 10px 0 20px 0;
    }
    .box-productcomments-info-add .add-comment-boxhead {
        margin-bottom: 8px;
    }
    .box-productcomments-info-add .add-comment-btn {
        padding: 13.5px 52.5px;
    }
    #box_productcomments .productcomment {
        flex-direction: column;
    }
    #box_productcomments .productcomment .reviewer {
        margin-bottom: 8px;
    }
    #box_productcomments .productcomment .reviewer::before {
        margin-right: 10px;
    }
    #box_productcomments .productcomment .description {
        margin: 0;
        font-size: 13px;
        font-weight: 400;
        letter-spacing: -0.26px;
        line-height: 18px;
    }
}
.products-in-sets {
    margin-bottom: 50px;
}
.products-in-sets .boxhead {
    font-weight: 700;
}
.products-in-sets .product .boximgsize > a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.products-in-sets .product .boximgsize img {
    width: auto;
    max-height: 100%;
}
.products-in-sets .product .productname a {
    color: #656565;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 20px;
    height: 40px;
    display: block;
    margin-top: 10px;
}
.products-in-sets .product .price del,
.products-in-sets .product .price em {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.36px;
    line-height: 17px;
    font-style: normal;
}
.products-in-sets .product .price em {
    margin-right: 5px;
}

.products-in-sets .product .price{
    display: flex;
    flex-wrap: wrap;
    padding-top:10px;
}

.products-in-sets .price .price_left{
    height: 28px;
    width: 30px;
    background: red;
    position: relative;
    margin-right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-in-sets .product .price .price-discount-wrap-triangle{
    position: absolute;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 10px solid red;
    right: -10px;
}

.products-in-sets .product .price .price_left p{
    color:white;
    font-weight: 700;
    font-size: 14px;
    padding-bottom: 1px;
    padding-left: 3px;
}

.products-in-sets .product .price .price-right{
    display: flex;
    align-items: center;
    padding-bottom:2px;
}

.products-in-sets .product .price em,
.products-in-sets .product .price del{
    color: #000;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.36px;
    line-height: 17px;
    text-align: left;
}

.products-in-sets .product .price em.price-crossed{
    text-decoration: line-through;
    margin-right:6px;
}
.products-in-sets .product .price del{
    margin-left: 0px;
    margin-right:6px;
}



@media screen and (min-width: 1400px) {
    .products-in-sets .product .boximgsize {
        height: 390px;
    }
}
@media screen and (max-width: 1399px) {
    .products-in-sets .product .boximgsize {
        height: 290px;
    }
}
@media screen and (min-width: 768px) {
    .products-in-sets .boxhead {
        font-size: 28px;
        margin-bottom: 7.5px;
    }
    .products-in-sets .subboxhead {
        font-size: 20px;
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 767px) {
    .products-in-sets .boxhead {
        font-size: 20px;
        margin-bottom: 7.5px;
    }
    .products-in-sets .subboxhead {
        font-size: 16px;
        margin-bottom: 10px;
    }
}
.basket-accesories-modal {
    margin: 0;
}
.basket-accesories-modal .accessories-title {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 23px;
    text-align: left;
    margin: 35px 0 5px 0;
    display: block;
    position: relative;
    overflow: hidden;
}
.basket-accesories-modal .accessories-title p {
    display: inline-block;
    padding-right: 30px;
    background: #fff;
}
.basket-accesories-modal .accessories-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #e3e3e3;
    transform: translateY(-50%);
    margin-top: 3px;
}
.basket-accesories-modal .products-group {
    display: flex;
    flex-direction: column;
}
.basket-accesories-modal .products-group .product-container {
    background-color: #fff;
    padding: 8px 0;
    box-sizing: border-box;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.basket-accesories-modal .products-group .product-container.hidden-by-default {
    display: none;
}
.basket-accesories-modal .products-group .product-container .product-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.basket-accesories-modal .products-group .product-container .product-wrapper .product-image-container {
    margin: 0 12px 0 0;
}
.basket-accesories-modal .products-group .product-container .product-wrapper .product-image-container .product-link {
    display: flex;
    height: 50px;
    width: 40px;
    align-items: center;
    justify-content: center;
}
.basket-accesories-modal .products-group .product-container .product-wrapper .product-image-container .product-link img {
    max-height: 50px;
    width: auto;
}
.basket-accesories-modal .products-group .product-container .product-wrapper .product-name-container {
    width: 165px;
}
.basket-accesories-modal .products-group .product-container .product-wrapper .product-name-container .product-link {
    display: block;
}
.basket-accesories-modal .products-group .product-container .product-wrapper .product-name-container .product-link .product-name {
    color: #212121;
    font-size: 14px;
    letter-spacing: 0.05px;
    line-height: normal;
}
.basket-accesories-modal .products-group .product-container .product-wrapper .product-availability-container,
.basket-accesories-modal .products-group .product-container .product-wrapper .product-buttons-container .form-basket .quantity_wrap {
    display: none;
}
.basket-accesories-modal .products-group .product-container .product-wrapper .product-price-container {
    min-width: 80px;
    margin: 0 10px 3px 20px;
    display:flex;
}
.basket-accesories-modal .products-group .product-container .product-wrapper .product-price-container em {
    color: #212121;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05px;
    line-height: normal;
    font-style: normal;
}

.basket-accesories-modal .product-price-container .price-left{
    height: 28px;
    width: 30px;
    background: red;
    position: relative;
    margin-right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:4px;
}

@media screen and (max-width:979px){
    .basket-accesories-modal .product-price-container .price-left{
        margin: 3px 15px 0 auto;
    }
}

.basket-accesories-modal .product-price-container .price-left p{
    color: #fff;
    font-weight: 700;
    transform: translateX(2px);
    font-size: 14px;
}

.basket-accesories-modal .product-price-container .price-left > div{
    position: absolute;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 10px solid red;
    right: -10px;
}

.basket-accesories-modal .product-price-container .price-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.basket-accesories-modal .product-price-container .price-right-top{
    font-size:12.5px;
}

.basket-accesories-modal .product-price-container .price-right-bottom{
    font-size:13.5px;
}


.basket-accesories.modal .product-price-container .product-price-right .product-price-
.basket-accesories-modal .products-group .product-container .product-wrapper .product-buttons-container {
    margin: 0 0 0 41px;
}

.basket-accesories-modal .products-group .product-container .product-wrapper .product-buttons-container .form-basket {
    margin-top: 0 !important;
}
.basket-accesories-modal .products-group .product-container .product-wrapper .product-buttons-container .form-basket .addtobasket-container {
    display: flex;
    justify-content: flex-end;
    padding-top: 0;
    margin-bottom: 0;
    border-top: 0;
}
.addtobasket-container.none {
    display: none !important;
}
.basket-accesories-modal .products-group .product-container .product-wrapper .product-buttons-container {
    width: 40px;
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}
.basket-accesories-modal .products-group .product-container .product-wrapper .product-buttons-container .form-basket .button_wrap button {
    font-size: 0;
    border-radius: 100%;
    width: 36px;
    height: 36px;
    position: relative;
    transition: 250ms;
}

.basket-accesories-modal .products-group .product-container .product-wrapper .product-buttons-container .form-basket .button_wrap button::after {
    content: "";
    background: url(/userdata/public/assets/SVG/whitebasket.svg) transparent no-repeat center;
    background-size: 18px;
    width: 26px;
    height: 23px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.basket-accesories-modal .accesories-modal .products-group .reveal-more-container {
    padding: 10px 0;
    text-align: right;
    box-sizing: border-box;
}
.basket-accesories-modal .accesories-modal .products-group .reveal-more-container::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 5px;
    margin: 0 0 1px 5px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(/userdata/public/assets/SVG/accessories-toggle-arrow.svg);
}
@media screen and (max-width: 979px) {
    .accesories-container .product-wrapper {
        width: 100%;
    }
    .accesories-container .product-wrapper .product-name-container {
        width: 60% !important;
    }
    .accesories-container .product-wrapper .product-name {
        font-size: 13px !important;
    }
    .accesories-container .product-wrapper .product-price-container {
        width: 20% !important;
        min-width: 110px !important;
        margin: 0 0 0 10px !important;
        text-align: right;
    }
    .accesories-container .product-wrapper .product-price-container em {
        font-size: 13px !important;
    }
    .accesories-container .product-wrapper .product-buttons-container {
        margin: 0 0 0 10px !important;
    }
}
@media screen and (min-width: 768px) {
    .fixed-bottom-bar {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .fixed-bottom-bar {
        height: 67px;
        box-shadow: 0 -3px 99px #00000016;
        background-color: #fff;
        position: fixed;
        bottom: -1px;
        z-index: 60;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 20px;
    }
    .fixed-bottom-bar .shipping-costs {
        color:#676767;
        font-size: 13px;
        line-height: 17px;
    }
    .fixed-bottom-bar .shipping-costs .lowest-cost {
        font-weight: 700;
        margin-left: 5px;
    }
    .fixed-bottom-bar .shipping-costs strong {
        margin: 0 2px;
    }
    .fixed-bottom-bar .fixed-bottom-form div {
        height: 40px;
        border-radius: 39px;
        padding: 0 20px;
        font-weight: 700;
        line-height: 40px;
        text-align: center;
    }
    .fixed-bottom-info .price-wrap .price-discount-wrap {
        height: 35px;
        width: 40px;
        background: red;
        position: relative;
        margin-right: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .fixed-bottom-info .price-wrap .price-discount-wrap .price-discount-wrap-triangle {
        position: absolute;
        width: 0;
        height: 0;
        border-top: 17px solid transparent;
        border-bottom: 17px solid transparent;
        border-left: 10px solid red;
        right: -10px;
    }
    
    .fixed-bottom-info .price-wrap .price-discount-wrap p {
        color: #fff;
        font-weight: 700;
        font-size: 16px;
        transform: translateX(2px);
    }
    
    .fixed-bottom-info .price-without-promo {
        font-size: 13.5px;
        text-decoration: line-through;
        color: #000;
        height: 15px;
    }
    
    .fixed-bottom-info .price em {
        line-height: 19px;
        font-size: 20px;
        font-weight: 700;
        font-style: normal;
        margin-right: 5px;
    }
    
    .fixed-bottom-info .price-netto,
    .fixed-bottom-info .price del {
        display: none;
    }
}
.shop-gallery {
    transition-property: width, height, transform, opacity;
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    top: 0;
    background: #fff;
}
.shop-gallery .shop-gallery-skin {
    background-color: #fff;
    position: relative;
    height: calc(100vh - 58px);
}
.shop-gallery .shop-gallery-skin .shop-gallery-title {
    display: none;
}
.shop-gallery .shop-gallery-skin .shop-gallery-inner {
    position: relative;
    /* margin: 0 11px; */
    margin: 0;
    height: calc(100vh - 58px);
    display: flex;
    align-items: center;
}
.shop-gallery .shop-gallery-skin .shop-gallery-inner .shop-gallery-img-container {
    margin: 0 auto;
    /* padding: 0 30px; */
    padding: 0;
    text-align: center;
}
.shop-gallery .shop-gallery-skin .shop-gallery-inner .shop-gallery-img-container .shop-gallery-img {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    max-width: 100%;
    max-height: calc(100vh - 100px);
}
.shop-gallery .shop-gallery-skin .shop-gallery-inner .shop-gallery-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    cursor: pointer;
}
.shop-gallery .shop-gallery-skin .shop-gallery-inner .shop-gallery-nav.shop-gallery-nav-prev::after {
    content: "";
    height: 20px;
    position: absolute;
    left: 10px;
    top: 50%;
    width: 20px;
    margin-top: -8px;
    background: url(/userdata/public/assets/SVG/whitearrow.svg) #000 no-repeat center;
    border-radius: 100%;
    background-size: 5.5px;
    transform: rotate(180deg);
}
.shop-gallery .shop-gallery-skin .shop-gallery-inner .shop-gallery-nav.shop-gallery-nav-next::after {
    content: "";
    height: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    width: 20px;
    margin-top: -8px;
    background: url(/userdata/public/assets/SVG/whitearrow.svg) #000 no-repeat center;
    border-radius: 100%;
    background-size: 5.5px;
}
.shop-gallery .shop-gallery-skin .shop-gallery-inner .shop-gallery-nav.shop-gallery-nav-next {
    left: 50%;
}
.shop-gallery .shop-gallery-resize {
    display: none;
}
.shop-gallery .shop-gallery-close {
    position: absolute;
    right: 15px;
    top: 15px;
    padding: 0.4em 0.7em 0.5em 0.7em;
    font-size: 0;
    cursor: pointer;
    width: 25px;
    height: 25px;
    border: 1px solid #707070;
    border-radius: 100%;
}
.shop-gallery .shop-gallery-close::after {
    content: "";
    background: url(/userdata/public/assets/SVG/graycross.svg) transparent no-repeat;
    background-size: 10px;
    width: 10px;
    height: 10px;
    display: inline-block;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.shop-gallery .shop-gallery-preview {
    overflow: hidden;
    background-color: #fff;
    position: relative;
    padding: 10px 20px 10px 20px;
}
.shop-gallery .shop-gallery-preview.none {
    display: block !important;
}
.shop-gallery .shop-gallery-preview .shop-gallery-container {
    overflow: hidden;
    padding-bottom: 1px;
    padding-top: 1px;
    position: relative;
}
.shop-gallery .shop-gallery-preview .shop-gallery-container .shop-gallery-slider {
    -webkit-transition: left 0.4s linear;
    -moz-transition: left 0.4s linear;
    -o-transition: left 0.4s linear;
    transition: left 0.4s linear;
    position: relative;
    left: 0;
}
.shop-gallery .shop-gallery-preview .shop-gallery-item-preview img {
    max-width: 100%;
    max-height: 100%;
}
.shop-gallery .shop-gallery-preview .shop-gallery-item-preview {
    width: 36px;
    height: 36px;
    display: inline-block;
    vertical-align: top;
    margin-right: 7px;
    cursor: pointer;
}
.shop-gallery .shop-gallery-preview .shop-gallery-item-preview img {
    max-width: 100%;
    max-height: 100%;
}
@media screen and (min-width: 980px) {
    .shop-gallery-skin {
        width: calc(100% - 150px);
        height: 100vh !important;
    }
    .shop-gallery .shop-gallery-skin .shop-gallery-inner {
        height: 100vh !important;
    }
    .shop-gallery-preview {
        width: 150px;
        position: absolute !important;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }
    .shop-gallery-img-container {
        width: 100% !important;
        padding: 0 70px !important;
    }
    .shop-gallery-item-preview {
        width: 64px !important;
        height: 64px !important;
        margin-bottom: 10px;
    }
    .shop-gallery-container .shop-gallery-slider {
        display: flex;
        flex-direction: column;
    }
    .shop-gallery .shop-gallery-close {
        top: 60px !important;
        right: -80px !important;
        width: 59px;
        height: 59px;
    }
    .shop-gallery .shop-gallery-close::after {
        background-size: 13px;
        width: 13px;
        height: 13px;
    }
    .shop-gallery .shop-gallery-skin .shop-gallery-inner .shop-gallery-nav.shop-gallery-nav-next::after,
    .shop-gallery .shop-gallery-skin .shop-gallery-inner .shop-gallery-nav.shop-gallery-nav-prev::after {
        height: 50px;
        top: 50%;
        width: 50px;
        background-size: 10px;
    }
    .shop-gallery .shop-gallery-skin .shop-gallery-inner .shop-gallery-nav.shop-gallery-nav-next::after {
        right: 15px;
    }
    .shop-gallery .shop-gallery-skin .shop-gallery-inner .shop-gallery-nav.shop-gallery-nav-prev::after {
        left: 15px;
    }
}
.box_infopage .boxhead span {
    font-size: 36px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.72px;
    line-height: 36px;
    text-align: left;
}
.box_infopage .innerbox {
    max-width: 1100px;
    margin: 45px auto 60px auto;
}
.box_infopage .innerbox .flex-wrap {
    display: flex;
}
.box_infopage .innerbox strong {
    font-size: 28px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: -0.32px;
    line-height: 36px;
    text-align: left;
    margin-bottom: 20px;
    display: block;
}
.box_infopage .innerbox p {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.4px;
    line-height: 30px;
    text-align: left;
}
.box_infopage .innerbox p img {
    margin-right: 8px;
}
.box_infopage .innerbox p a {
    text-decoration: underline;
}
.box_infopage .innerbox p.smallfont {
    font-size: 16px;
}
.box_infopage .innerbox p.minifont {
    font-size: 13px;
}
@media screen and (min-width: 901px) {
    .box_infopage .innerbox .flex-wrap .flex-wrap-70 {
        width: 65%;
        margin-right: 30px;
    }
    .box_infopage .innerbox .flex-wrap .flex-wrap-30 {
        width: 35%;
    }
}
@media screen and (max-width: 900px) {
    .box_infopage .innerbox .flex-wrap {
        flex-direction: column;
    }
    .box_infopage .innerbox .flex-wrap .flex-wrap-30 {
        text-align: center;
        margin-top: 30px;
    }
}
#box_404 .boxhead {
    font-size: 28px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: 31px;
    text-align: left;
    margin: 10px 0 25px 0;
}
#box_404 .innerbox input {
    height: 57px;
    border-radius: 40px;
    background-color: #f4f4f4;
    padding: 0 30px;
    margin: 15px 0;
    max-width: 420px;
}
#box_filter ul li input {
    max-width: 100%;
    border: none;
    background: #ededed;
    border-radius: 40px;
    height: 30px;
    padding: 0 15px;
    box-sizing: border-box;
}
#box_filter ul li input:focus {
    outline: 0;
}
#box_filter #filter_price ul li a {
    font-size: 14px;
}
#box_filter ul li input:focus {
    outline: 0;
}
#box_filter #filter_price ul li span {
    font-size: 14px;
}
#box_filter ul li input:focus {
    outline: 0;
}
#box_filter #filter_price ul li button {
    font-size: 14px;
    background: #000;
    height: 30px;
    line-height: 30px;
    padding: 0 15px;
    color: #fff;
    margin: 5px 0;
    border-radius: 30px;
}
#box_filter ul li.showmore {
    cursor: pointer;
    text-decoration: underline;
}

/* related  - ostatni box */

.more-products{
    height: 259px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 15px;
    padding-top:30px;
}

.more-products span,
.more-products strong{
    font-size:20px;
    display: block;
}

.more-products p{
    font-size:16px;
    border: 2px solid #F47920;
    border-radius: 30px;
    display: flex;
    align-items: center;
    font-size: 16px;
    padding:3px 8px;
    margin-top: 18px;
    padding: 10.5px 25px 11.5px 30px;
    box-sizing: border-box;
}
.more-products p img{
    max-width: 9px;
    margin-left:6px;
    margin-top:1px;
}

@media screen and (max-width: 979px) {
	.desktop-only {
		display: none;
	}
    #box_slider_65 {
      display:none;
    }
  	.hot-categories-box a img {
      height: 70%;
    }
}
@media screen and (min-width: 980px) {
	.mobile-only {
    	display: none;
  	}
  	#box_slider_66 {
      display:none;
    }
}

.products.viewfull .viewfull-wrap-left .avail .availability{
    padding-left:0;
    padding-right:0;
}
.discount_info{
    min-height:25px;
}
.discount_info:not(.disabled){
    border:1px solid #eee;
    border-radius:40px;
    position: relative;
    font-size:14px;
    padding:3px 5px 2px 30px;
    margin-bottom:-8px;
    margin-top:10px;
}
@media screen and (max-width:600px){
    .discount_info:not(.disabled){
        padding-top:4px;
        font-size:11px;
    }
}
.discount_info:not(.disabled):before{
    content:'%';
    background:red;
    border-radius:100%;
    width:23px;
    color:white;
    height:23px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:12px;
    left:0;
    top:0;
}
.accesories-container .discount_info{
    font-size:11px;
    margin-bottom:5px;
    padding-top:4px;
}

.bottomborder .basket .price-wrap .discount_info{
    order:2;
    margin-top:-2px;
    height:25px;
    margin-left:5px;
}
.fixed-bottom-info .discount_info{
    display: none;
}

.viewfull-wrap-right .discount_info{
    font-size:12px;
}
@media screen and (max-width:600px){
    .viewfull-wrap-right .discount_info{
        width:100%;
    }
}
.products.viewphot .discount_info:not(.disabled){
    border:none;
}
.products.viewphot .discount_info:not(.disabled) span{
    border:1px solid #eee;
    border-radius:80px;
    padding:3px 5px 2px 30px;
    margin-left:-30px;
}

#headlink9:hover{
    text-decoration: none;
}
#headlink9 span{
    
    font-weight:700;
    position: relative;
    letter-spacing: -0.36px;
    font-size:18px;
    
}

@media screen and (min-width:768px){
    #headlink9 span:after{
        content:'';
        position: absolute;
        bottom:-4px;
        width:100%;
        height:2px;
        background: rgb(241, 208, 155);
        left:0;
    }
}

/* 09.08.2021 */

@media screen and (min-width: 768px) {
    .categorydesc h3 {
        color: #000;
        font-size: 28px;
        font-weight: 700;
        line-height: 26px;
        margin: 20px 0;
    }

}
@media screen and (max-width: 767px) {
    .categorydesc h3 {
        color: #000;
        font-size: 24px;
        font-weight: 700;
        font-style: normal;
        letter-spacing: normal;
        line-height: 26px;
        text-align: left;
        margin: 20px 15px;
    }
}

.categorydesc{
    position: relative;
    z-index: 0;
}
.categorydesc-categorieswrap .categorydesc-categoriesbox{
    border-radius: 20px;
    background-color: #f0f0f0;
    height:146px;
    position: relative;
    text-align: right;
}
.categorydesc-categorieswrap .categorydesc-categoriesbox.color{
    background-color:#fae9d0;
}


.categorydesc-categorieswrap .categorydesc-categoriesbox a{
    display: block;
}

.categorydesc-categorieswrap .categorydesc-categoriesbox em{
    font-size:16px;
    font-weight: 700;
    letter-spacing: -0.36px;
    line-height: 19px;
    color:black;
    position: absolute;
    left:20px;
    bottom:12px;
    font-style: normal;
  	text-align: left;
}
.categorydesc-categorieswrap .categorydesc-categoriesbox img{
    display: inline;
    width:auto;
    position: relative;
}


.categorydesc-categorieswrap .owl-stage{
    padding-left: 0 !important;
}
.categorydesc-categorieswrap .owl-next{
    right:-15px !important;
}

.categorydesc-categorieswrap .owl-prev{
    left:-15px !important;
}


@media screen and (min-width:768px){
    .filters-mask{
        display: none;
    }
}
@media screen and (max-width:767px){
    .shop_product_list .main.row{
        padding:0 !important;
    }
    .shop_product_list .main.row #box_mainproducts > .boxhead h1,
    .shop_product_list .main.row #box_mainproducts > .innerbox{
        padding:0 15px;
    }
    .shop_product_list .main.row #box_mainproducts #discount-banner{
        margin:0 15px;
    }
    .categorydesc-categorieswrap .owl-stage-outer{
        overflow-x:scroll;
    }
    .categorydesc-categorieswrap .owl-stage-outer .owl-item{
        max-width:260px !important;
        width:260px !important;
    }
    h3.hidemobile{
        display: none;
    }
    .categorydesc-categorieswrap{
        margin-bottom:10px;
    }

    #box_mainproducts > .boxhead{
        overflow:hidden;
    }
    #box_filter .innerbox {
        flex-wrap:nowrap;
    }
    #box_filter .innerbox .checkactive span{
        white-space: nowrap;
    }
    #box_filter .innerbox .checkactive:first-child .multiselect{
        margin-left:15px;
    }
    .sort-and-view{
        overflow-x:scroll;
    }
    #box_filter ul{
        position: fixed;
        top:208px !important;
    }
    .filtersMask:not(.active){
        display: none;
    }
    .filtersMask{
        background:black;
        position: fixed;
        z-index: 1;
        top:0;
        bottom:0;
        right:0;
        left:0;
        opacity:0.5;
        width: 100% !important;
        height:100% !important;
    }
}
@media screen and (max-width:767px){
.categorydesc-categoriesbox img {
  height: 90px !important;
}
.categorydesc-categoriesbox {
  height: 90px !important;
}
.categorydesc-categoriesbox em {
  bottom: 12px !important;
  font-size: 14px !important;
  left: 13px !important;
  text-align: left !important;
  line-height: 19px !important;
}
}
.slides {
  list-style: none;
}
#box_newsletter .innerbox form fieldset:nth-of-type(1)::before {
  background: url(/userdata/public/assets/SVG/mamynarzedzia/i_envelope.svg) transparent no-repeat !important; 
}
h1 {
  font-style: italic;
  font-size: 28px;
  font-weight: bold;
}

.footer.row{
  max-width: 100%;
}
footer .innerfooter ul.overall li ul li.head #footgroup5 {
  color: white;
}
#box_bestsellers .product > a .productnamewrap .productname, .products-related .product .productnamewrap, #box_fromCategory .product .productnamewrap {
  color: black;
}
#box_bestsellers .product .price del, #box_bestsellers .product .price em, .products-related .product .price del, .products-related .product .price em, #box_fromCategory .product .price del, #box_fromCategory .product .price em {
  font-weight: bold !important;
}
#box_productdata .boxhead{
  font-size: 28px;
}
#box_productdata table tr td {
  color: black;
}
.nasz-sklep{
  color: #000000 !important;
}
.newsletter-title{
  color: #F47920 !important;
  font-size: 32px;
}
#box_newsletter .boxhead .boxtitle {
  font-style: italic;
  font-weight: inherit;
}
#footgroup5 ul li a{
  color: white;
}
#footgroup5 ul li {
  color: white;
}

.check-promoprice {
  display: none;
}
/* modal wybór banku */
.header_line_right {
    display: flex;
    align-items: center;
}
.header_uppercase {
    text-transform: uppercase;
}
.p-all-1 {
    padding: .5rem;
}
.op-gateway:not(:last-child) {
    margin-right: 0.35em;
}
.mb-1 {
    margin-bottom: .5rem;
}
.mt-1 {
    margin-top: .5rem;
}
.op-gateway, .op-gateway *, .op-gateway *::before, .op-gateway *::after {
    box-sizing: border-box;
}
.op-gateway {
    margin: 0;
    max-width: 123px;
    width: 100%;
    cursor: pointer;
    max-width:115px;
}
.op-gateway__image-container {
    width: 100%;
    height: 123px;
    border: 1px solid #ececec;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.op-gateway:first-child .op-gateway__image {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.op-gateway__image {
    width: 100%;
    padding: 1em;
}
.op-gateway__description {
    padding: .5em .1em .5em .1em;
    max-width: 100%;
    word-break: break-word;
}
.op__container section ul{
    flex-wrap:wrap;
    justify-content: center;
}
.modal .modal-body {
    overflow-y: auto;
    overflow-x: hidden;
}
#box_basketlist #cart-options > div .payment .description {
  font-size: 11px !important;
}

.online_payment{
    flex-wrap:wrap;
}
#payments-online-container .online_payment{
    padding-right:0px !important;
}
.online_payment .name{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding-left: 0;
    width: calc(100% - 63px);
}
.online_payment .name label{
    flex-grow:1;
}

.online_payment .description{
    width: 100%;
    margin-top:-8px !important;
}
.online_payment .description a{
    color: #4a4a4a;
}

.online_payment .value{
    display: none;
}

/* 17.05 galeria */
@media screen and (min-width:768px){
    .smallgallery .innersmallgallery ul li{
        height: 122px; 
    }
    .smallgallery .innersmallgallery ul:not(.loaded) li:nth-child(n+5){
        display: none;
    }

    .smallgallery .innersmallgallery ul.loaded li:not(.active){
        display: none;
    }

    .smallgallery .innersmallgallery .nav-btn{
        width: 44px;
        height: 44px;
        border-radius: 100%;
        background:black;
        transition: 250ms;
        margin: 0 auto;
        cursor: pointer;
    }

    .smallgallery .innersmallgallery .nav-btn.hidden{
        opacity:0.1;
    }

    .smallgallery .innersmallgallery .nav-btn.prev-btn{
        margin-bottom: 12px;
        transform: rotate(-90deg);
    }

    .smallgallery .innersmallgallery .nav-btn.next-btn{
        margin-top: 5px;
        transform: rotate(90deg);
    }

    .smallgallery .innersmallgallery .nav-btn span{
        background: url('/userdata/public/assets/SVG/whitearrow.svg') transparent no-repeat center;
        width: 44px;
        height: 44px;
        display: inline-block;
    }
}
@media screen and (max-width:767px){
    .innersmallgallery ul li:nth-child(n+9){
        display: none;
    }
}

/* bundles */
#box_bundle{
    margin-top:40px;
}
#box_bundle .boxhead{
    margin-bottom:25px;
    cursor: pointer;
}
#box_bundle .boxhead h3{
    font-size:20px;
    font-weight:700;
    line-height:23px;
    font-style:italic;
    position: relative;
}

#box_bundle .boxhead h3:after{
    content:'';
    background: url('/userdata/public/assets//showbundle.png')  transparent no-repeat center;
    width: 54px;
    height: 46px;
    position: absolute;
    top:50%;
    right:0;
    transform:translateY(-50%);
}

#box_bundle .innerbox .product{
    display: flex;
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

#box_bundle .innerbox .product .imgwrap{
    min-width: 50px;
    margin-right:10px;
    width:50px;
}

#box_bundle .innerbox .product .product-content{
    width:calc(100% - 60px);
}

#box_bundle .innerbox .product .product-content .product-name{
    font-style:italic;
    font-size:13px;
    font-weight: 700;
    line-height:17px;
    margin-bottom: 10px;
}

#box_bundle .innerbox .product .product-content .details{
    display: flex;
    flex-direction: column;
}

#box_bundle .innerbox .product .product-content .details > p{
    display: flex;
    justify-content: space-between;
    align-items:center;
    margin-bottom: 10px;
}

#box_bundle .innerbox .product .product-content .details > p span{
    width:50%;
}
#box_bundle .innerbox .product .product-content .details > p .first{
    font-size:13px;
}

#box_bundle .innerbox .product .product-content .details > p .second{
    font-size:16px;
    font-weight:700;
}

#box_bundle.hideall .boxhead h3:after{
    transform:translateY(-50%) rotate(180deg);
}
#box_bundle.hideall .innerbox{
    display: none;
}
/* -- nowy wyglad sklepu -- */

.new-banner-mainpage {
  position: relative;
  width: 100vw;
  margin-left: -50vw;
  left: 50%;
}

/* nowe ulubione */

.new-fav-boxes {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  flex: 1 1 100%;
  max-width: 1640px;
}
.new-fav-boxes-box {
  width: 387px;
  height: 400px;
  background-color: #F6F6F6;
  position: relative;
}
.new-fav-boxes-box:hover {
  box-shadow: inset 0px 0px 0px 2px #F47920;
}
.new-fav-boxes-box p {
  font-weight: 700;
  font-size: 22px;
  line-height: 20px;
  font-style: italic;
  padding-top: 30px;
  padding-left: 37px;
}
.new-fav-boxes-box h4 {
  position: absolute;
  bottom: 26px;
  left: 37px;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  text-decoration: none;
  color: black;
  border-bottom: 2px solid #F47920;
  padding-bottom: 12px;
}
.new-fav-boxes-box a {
  position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
}
.new-fav-boxes-box a:hover {
  text-decoration: none;
}
.new-fav-boxes-box span {
  border-bottom: 2px solid #F47920;
  padding-bottom: 20px;
}
.new-fav-boxes-box img {
  position: absolute;
  mix-blend-mode: darken;
}
.img-one img {
  bottom: 1em;
}
.img-two img {
  bottom: 3em;
}

.img-four img {
  bottom: 5em;
  left: 4em;
}
.img-five img {
  right: 0;
  top: 1em;
}
.img-six img {
  bottom: 0;
}
.img-seven img {
  right: 0;
  bottom: 0;
}
.img-eight img {
  top: 0;
  right: 0;
}
.img-nein img {
  right: 0;
  top: 0;
}
.img-ten img {
  top: 4rem;
  right: 0;
}
.img-eleven img {
  top: 0;
}
.img-tweleve img {
  top: 0;
  right: 0;
}

/* Nowe boxy */

.new-category-box {
  display: grid;
  grid-template-columns: 31.2% 1fr;
  max-width: 1640px;
  margin-block: 50px;
  height: 161px;
}
.new-category-box1 {
  background-color: #F47920;
  display: flex;
  padding-left: 2em;
  align-items: center;
  color: white;
  font-weight: 700;
  font-size: 28px;
  line-height: 20px;
  max-height: 161px;
  font-style: italic;
}
.new-category-box2 {
  max-height: 161px;
}
.new-category-box2 img {
  max-width: unset;
  width: 100%;
  height: 161px;
}

/* nowy footer */

.background-image-footer {
  margin: 0 calc(50% - 50vw);
    padding: 0 calc(50vw - 50%);
    background: black;
}
.footer-payments {
  	display: flex;
    gap: 20px;
    max-width: 1640px;
    margin: 0 auto;
    align-items: center;
    margin-bottom: 6em;
    flex-wrap: wrap;
}
.footer-payments p {
  font-style: italic;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    padding-left: 10px;
    color: white;
}

/* nowy header */

.new-top-color {
  margin: 0 calc(50% - 50vw);
    padding: 0 calc(50vw - 50%);
    background: #252525;
}
.new-search-top {
  flex: 1;
}
.panel-header {
  margin-left: 8%;
}
.link-logo-img {
  margin-right: 8%;
}

/* nowa karta produktu */

.payments-raty-wrapper {
  display: flex;
  margin-bottom: 20px;
  margin-top: 15px;
  gap: 29px;
  flex-wrap: wrap;
}
.payments-raty-wrapper a{
  width: 100%;
  text-decoration: none;
}
.payments-raty {
  display: flex;
  height: 40px;
  flex: 1;
  border: 1px solid #DDDDDD;
  border-radius: 20px;
  justify-content: space-between;
}
.payments-raty1 {
  gap: .5rem;
}
.payments-raty1 img {
  margin-left: 50px;
  height: 90%;
}
.payments-raty1,
.payments-raty3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}
.payments-raty2 {
  width: 40px;
  background: #D13239;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.payments-raty4 {
  width: 40px;
  background: #0E3B44;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.new-page-listing ul {
  list-style-image: url('/userdata/public/assets/svg-icons/li-icon.svg');
  padding-left: 20px;
}
.new-page-listing li {
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
}

.contact-new {
  display: grid;
  position: relative;
  max-width: 527px;
  height: 185px;
  margin-top: 70px;
}
.contact-new img:first-of-type {
  position: absolute;
  bottom: 0;
  right: 0;
}
.contact-new img {
  position: absolute;
  bottom: 0;
  right: 12%;
}
.product-contact-wrap .question {
  display: none;
}
.contact-new-row1 {
  height: 93px;
}
.contact-new-row1 h2 {
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  line-height: 34px;
  margin-top: 10px
}
.contact-new-row1 p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 34px;
}
.contact-new-row2 {
  display: flex;
  flex-direction: column;
  height: 93px;
  width: 80%;
  background: #F6F6F6;
  border-radius: 12px;
  
}
.contact-new-row2 p {
  color: #F47920;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: 20px; /* 142.857% */
  padding-left: 33px;
}
.contact-new-row2 a {
  font-weight: 700;
  font-size: 16px;
  line-height: 34px;
  text-decoration: none;
  color: black;
  padding-left: 33px;
}

/* nowy opis */
.new-description-tittle {
  padding-bottom: 5%;
}
.new-description-tittle h2 {
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  line-height: 34px;
}
.new-description-tittle p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.new-description-tittle h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  margin-block: 33px;
}
.new-description-tittle ul {
  list-style-image: url(/userdata/public/assets/svg-icons/li-icon.svg);
  padding-left: 20px;
}
.new-description-tittle li {
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
}
.new-description-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1031px;
}
.new-description {
  display: flex;
  gap: 20px;
}
.new-description h2 {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}
.new-description p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.new-description-col2 img {
  max-width: 116px;
}
.new-title h2 {
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 20px;
  margin-top: 5%;
}
@media screen and (max-width: 555px) {
  .payments-raty {
    width: 100%;
  }
  .new-description-wrapper {
    grid-template-columns: 1fr;
  }
  .new-description-col2 img {
    max-width: 72px;
  }
  #box_description .productfiles h5 {
    margin-top: 3em;
  }
  #box_productdata table tr td {
    width: 80%;
  }
  .footer-payments p {
    width: 100%;
  }
}
@media screen and (max-width: 455px) {
  .contact-new-row1 h2 {
    margin-left: 12px;
    font-size: 18px;
  }
  .contact-new-row1 p {
    margin-left: 12px;
  }
  .contact-new-row2 {
    height: 83px;
    justify-content: center;
  }
  .contact-new-row2 a {
    font-size: 12px;
    padding-left: 12px;
    line-height: 20px;
  }
  .contact-new-row2 p {
    font-size: 12px;
    padding-left: 12px;
    margin-top: 6px;
  }
  .contact-new img:first-of-type {
    width: 50%;
  }
}

/* FAQ */

.faq-container {
  margin: 0;
  padding: 4rem;
  width: 48rem;
}
.accordion .accordion-item {
  border-bottom: 1px solid #F6F6F6;
}
.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #F6F6F6;
}
.accordion .accordion-title::before {
  display: block;
  position: absolute;
  content: '';
  background-image: url(https://mamynarzedzia.pl/userdata/public/assets//Group%20289.svg);
  top: 2px;
  left: 10px;
  width: 20px;
  height: 40px;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: black;
  font-weight: 400;
  font-size: 14px;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #F47920;
}
.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #F47920;
  border: 1px solid #F47920;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 3em;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 11px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 10px;
  left: 6px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 6px;
  left: 10px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded='true'] {
  color: #F47920;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
  padding-left: 40px;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-weight: 400;
  font-size: 14px;
  background-color: #F6F6F6;
  padding: 10px;
}

/* Slidery na główną */

.box_mamezi_product .productname {
  display: flex;
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
}
.box_mamezi_product .manufacturer {
  display: none;
}
.box_mamezi_product .price {
  margin-top: 20px;
}
.box_mamezi_product .price span {
  display: none;
}
.box_mamezi_product .price em {
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  color: #F47920;
}
.box_mamezi_product .shaded_inputwrap {
  display: none;
}
.box_mamezi_product .unit {
  display: none;
}
.box_mamezi_product .buttons {
  display: none;
}
.box_mamezi_product .tags {
  display: none;
}
.box_mamezi_product .product-inner-wrap {
  display: grid;
  justify-content: center;
}
.productdetails-more-details .question {
  display: none;
}
.inpost_paczkomaty_machines .near {
  display: flex;
  flex-direction: row-reverse;
  padding-block: 10px;
  justify-content: space-between;
}
.inpost_paczkomaty_machines .near input {
  	height: 20px !important;
    width: 25% !important;
}
.inpost_paczkomaty .alert {
  margin-block: 40px;
}

#box_basketaddress .basket-step-border > .f-row h4 {
  margin-top: 40px !important;
}
.inpost_paczkomaty_info {
  padding-bottom: 40px;
}
.inpost_paczkomaty_machines .near input[type=checkbox]:checked+label::before {
  content: '';
    background: url(/userdata/public/assets/SVG/checkbox.svg) transparent no-repeat;
    position: absolute;
    width: 9px;
    height: 8px;
    z-index: 1;
    top: 4px;
    left: 3px;
}

.inpost_paczkomaty_machines .near input[type=radio]:checked+label::after {
    background-color: #000;
    border: none;
}
.basket-step-border .innerbox ul li.loyalty-el {
  display: none;
}
.new-top-color-tel {
  margin: 0 calc(50% - 50vw);
    padding: 0 calc(50vw - 50%);
    background: #F47920;
  display: flex;
    justify-content: flex-end;
    height: 80px;
    align-items: center;
}
.header-tel {
  display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 80px;
}
.header-tel p {
  font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #0E3B44;
    padding-right: 20px;
}
.header-tel a {
      font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: white;
}

/* modal addtobasket */
.addtobasket-modal{
    border-radius:0 !important;
    padding: 20px 20px;
    box-sizing: border-box;
    width: 100% !important;
    max-width: 500px;
    height:auto !important;
    @media screen and (max-width:599px){
        width: 100% !important;
        max-width: 100% !important;
        transform: translateX(-50%) translateY(-50%) !important;
        top: 50% !important;
        padding:0;
    }
}
.addtobasket-modal .modal-header{
    padding-right:10px;
    padding-bottom:30px;
}
.addtobasket-modal .modal-header h3{
    font-style: italic;
    font-size: 22px;
    line-height: 30px;
    margin-right: 20px;
}

.addtobasket-modal .modal-header .modal-close:before{
    background:url('https://mamynarzedzia.pl/userdata/public/assets/SVG/closewhite.svg') #F47920 no-repeat center;
    border-radius:5px;
    right:0;
    top:0;
}

.addtobasket-modal .modal-body .ajax-basket-container{
    display: flex;
}

.addtobasket-modal .modal-body .ajax-product-block{
    display: flex;
    align-items: center;
  	flex-direction: column;
}

.addtobasket-modal .modal-body .ajax-product-block .photo{
    max-width: 200px;
    aspect-ratio: 1;
    object-fit: contain;
}

.addtobasket-modal .modal-body .ajax-product-block .ajax-product-block-info h3{
    font-size:13px;
    font-weight:700;
    margin-bottom: 10px;
}

.addtobasket-modal .modal-body .ajax-product-block .ajax-product-block-info strong{
    font-size:16px;
}

.addtobasket-modal .modal-body .ajax-product-block .ajax-product-block-info strong .type{
    font-weight: 400;
    font-size:13px;
}

.addtobasket-modal .modal-body .ajax-product-block .ajax-product-block-info .ajax-stocks{
    font-size:13px;
    font-weight: 400;
  	display: none;
}

.addtobasket-modal .modal-footer .ajax-product-block{
    text-align: center;
    .btn{
        border:2px solid #F47920;
        font-size:16px;
        background:transparent;
        color:black;
        font-style:italic;
        width: 100%;
        max-width:350px;
        text-align:center;
        height: 55px;
        line-height: 52px;
    }
}
.new-top-color-tel a:first-child {
  display: none;
}
/* tabele */
.table-wrapper-mobile {
  display: grid;
    justify-content: center;
    align-items: center;
}
.table-data-mobile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-weight: 700;
font-size: 14px;
line-height: 40px;
  margin-block: 1rem;
}
.table-data-mobile > div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 1rem;
  padding-block: 2rem;
}
.table-data-black {
  background: black;
  color: white;
  font-weight: 700;
font-size: 12px;
line-height: 20px;
}
.table-data-grey {
  background: #F6F6F6;
}
.border-bottom {
  border-bottom: 1px solid #D6D6D6;
}
.border-top {
  border-top: 1px solid #D6D6D6;
}
#table-data-more {
  display: none;
}
.table-wrapper-mobile button {
  background-color: unset;
    border: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 40px;
}
@media screen and (min-width: 1275px) {
  .table-wrapper-mobile {
    display: none;
  }
}
.table-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1082px;
}
.table-title
{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  height: 141px;
  background-color: black;
  color: white;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}
.table-data-img {
  justify-content: space-around !important;
}
.table-title > div,
.table-data > div{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 2rem;
}
.table-data {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  font-weight: 700;
  font-size: 14px;
  line-height: 40px;
  color: black;
  border-bottom: 1px solid #D6D6D6;
}

.table-data-background {
  background: #F6F6F6;
}
@media screen and (max-width: 1274px) {
  .table-wrapper {
    display: none;
  }
}
/* tabele koniec */
.display-yes {
  display: flex !important;
}
.box-slider .pageslider .slides li {
  display: block;
    overflow: hidden;
    height: 100%;
    float: left;
  position: relative;
}
.box.box-slider .pageslider {
  display: block;
}
.box-slider .pageslider {
  position: relative;
    overflow: hidden;
}
.box-slider .pageslider .slides {
  overflow: hidden;
}
.box-slider .slider-nav {
  bottom: 0.3em;
    overflow: hidden;
    position: absolute;
    text-align: center;
    width: 100%;
  display: none;
}
.header-ekomi {
  display: none;
}
.header-tel img {
  margin-right: 10px;
  margin-top: 3px;
  display: none;
}
.header-tel-info {
  border-right: 1px solid white;
    margin-right: 15px;
}

.header-tel-info strong {
  color: white;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 1.12px;
}
.header-tel-info p {
  color: white;
font-family: Montserrat;
font-size: 11px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.77px;
}
.poradnik-stihl-wrapper {
  display: grid;
}
.poradnik-stihl-wrapper h3 {
      color: #000;
    font-family: Montserrat;
    font-size: 1.375rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.25rem;
}
.poradnik-stihl-container {
  display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-block: 3rem;
}
.poradnik-stihl-container > * {
  flex: 1 1 48%;
    height: 18rem;
}
.sithl-poradnik-jeden-produkt {
  flex: 1 1 100% !important; 
  height: 35rem !important;
}
@media (max-width: 767px) {
  .sithl-poradnik-jeden-produkt {
    height: 18rem !important;
  }
}
/* Start - dodatkowe produkty by imodules.pl */

.im_other_summary {
	 background: #fafafa;
	 border: solid 1px #333;
	 border-color: #e9e9e9;
	 display: flex;
	 padding: 15px 30px;
	 grid-gap: 20px;
	 justify-content: space-between;
	 margin-bottom: 10px;
}
 .im_other_summary span {
	 font-weight: 600;
}
 .im_other_summary .im_other_summary-value {
	 font-size: 20px;
	 font-weight: 600;
	 color: #f77070;
	 display: flex;
	 align-items: center;
}
 .im_other_products {
	 margin-bottom: 20px;
	 display: grid;
}
 .im_other_products.toggleload .item_others {
	display:none;
}
 .im_other_products .togglenav {
	    font-weight: 600;
   cursor:pointer;
    text-align: center;
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    line-height: 20px;
    display: flex;
        justify-content: center;
}
 .im_other_products.toggleload .item_others.order0 {
	display:grid;
}
 .im_other_products.toggleload .item_others.order1 {
	display:grid;
}
 .im_other_products h4 {
	     font-weight: 700;
    font-size: 22px;
    line-height: 34px;
    font-style: italic;
   margin-bottom:20px;
}
 .im_other_products .item_others {
	 display: grid;
	 grid-template-columns: 110px 1fr 180px 250px;
	 padding: 5px;
	 box-sizing: border-box;
	 grid-gap: 10px;
	 line-height: 60px;
	 margin-bottom: 5px;
	 background: #fff;
	 transition: all .4s ease;
}
 .im_other_products .item_others.noimage {
	 grid-template-columns: 1fr 80px 150px;
	 line-height: 30px;
}
 .im_other_products .item_others.noimage .item_img {
	 display: none;
}
 .im_other_products .item_others.noimage .item_name {
	 padding-left: 20px;
}
 @media screen and (max-width: 1600px) {
	 .im_other_products .item_others {
		 grid-template-columns: 70px auto 1fr;
		 line-height: 20px;
		 grid-column-gap: 20px;
	}
	 .im_other_products .item_others .item_price {
		 min-width: 80px;
		 text-align: left !important;
	}
	 .im_other_products .item_others .item_quantity {
		 text-align: left !important;
	}
	 .im_other_products .item_others.noimage {
		 grid-template-columns: auto 1fr;
	}
	 .im_other_products .item_others.noimage .item_img {
		 display: none;
	}
}
 @media screen and (max-width: 767px) {
	 .im_other_products .item_others {
		 grid-column-gap: 10px;
	}
	 .im_other_products .item_others .item_price {
		 min-width: 70px;
		 text-align: left !important;
	}
	 .im_other_products .item_others .item_quantity {
		 text-align: left !important;
	}
	 .im_other_products .item_others.noimage {
		 grid-template-columns: auto 1fr;
	}
	 .im_other_products .item_others.noimage .item_img {
		 display: none;
	}
}
 .im_other_products .item_others:hover {
	 background: #fafafa;
}
 .im_other_products .item_others .item_name {
	 line-height: 20px;
	 display: flex;
	 align-items: center;
   color: #000;
font-family: Montserrat;
font-size: 16px;
font-style: italic;
font-weight: 600;
line-height: 20px;
   max-width: 300px;
}

#ajax-product-block-info .image-container {
  width: 15% !important;
}

 @media screen and (max-width: 1600px) {
	 .im_other_products .item_others .item_name {
		 grid-column-start: 2;
		 grid-column-end: 5;
	}
}
 .im_other_products .item_others .item_img {
	 overflow: hidden;
	 border-radius: 0px;
	 text-align: center;

}
 .im_other_products .item_others .item_img a {
	 display:flex;
   align-items:center;
   height:110px;
}
 .im_other_products .item_others .item_img img {
	 border-radius: 0px;
	 max-width: 95%;
}
 @media screen and (max-width: 1600px) {
	 .im_other_products .item_others .item_img {
		 grid-row-start: 1;
		 grid-row-end: 3;
		 line-height: 20px;
	}
}
 .im_other_products .item_others .item_price {
	 font-weight: 600;
	 text-align: center;
   color: #000;
font-family: Montserrat;
font-size: 18px;
font-style: italic;
font-weight: 700;
line-height: 20px;
       display: flex;
    align-items: center;
}
 .im_other_products .item_others .item_checkbox {
	 display: flex;
	 justify-content: center;
	 align-items: center;
}
 .im_other_products .item_others .item_checkbox a {
	 display: block;
	 border: solid 1px #333;
	 border-color: #cdcdcd;
	 border-radius: 20px;
	 width: 50px;
	 height: 25px;
	 border-radius: 25px;
	 padding: 2px;
	 box-sizing: border-box;
	 cursor: pointer;
}
 .im_other_products .item_others .item_checkbox a:after {
	 content: '';
	 width: 25px;
	 display: block;
	 height: 19px;
	 border-radius: 21px;
	 background: #cdcdcd;
	 transition: all .3s ease;
	 position: relative;
	 left: 0px;
}
 .im_other_products .item_others .item_checkbox a.active {
	 border-color: #f77070;
}
 .im_other_products .item_others .item_checkbox a.active:after {
	 background: #f77070;
	 left: 19px;
}
 .im_other_products .item_others .item_quantity {
	 text-align: center;
       display: flex;
    align-items: center;
}
 .im_other_products .item_others .item_quantity a:hover{
	 text-decoration:none;
}
 .im_other_products .item_others .item_quantity a {
	 display: inline-block;
	 line-height: 25px;
	 height: 25px;
	 width: 25px;
	 background: #0E3B44;
	 font-weight: 300;
   font-family: Montserrat;
	 font-size: 10px;
	 padding: 0px;
	 color: #fff;
	 box-sizing: border-box;
	 cursor: pointer;
	 border-radius: 20px;
	 text-align: center;
   font-size: 20px;
    font-weight: 500;
}
 .im_other_products .item_others .item_quantity a:first-child:before {
	 content: "-";
}
 .im_other_products .item_others .item_quantity a:last-child:before {
	 content: "+";
}
 .im_other_products .item_others .item_quantity input {
	 border: none;
	 display: inline-block;
	 width: 30px;
	 text-align: center;
	 background: none;
}
 @media screen and (max-width: 1600px) {
	 .im_other_products .item_others .item_quantity input {
		 height: 20px;
		 min-height: 20px;
	}
}
 .modal_other_products {
	 margin-top: 75px;
}
 .modal_other_products .modal_item {
	 display: inline-block;
	 position: relative;
	 height: 55px;
}
 .modal_other_products .modal_item img {
	 max-height: 50px;
	 margin-right: 10px;
}
 .modal_other_products .modal_item span {
	 position: absolute;
	 display: block;
	 text-align: center;
	 background: #e4e4e4;
	 font-size: 11px;
	 width: 15px;
	 line-height: 15px;
	 border-radius: 15px;
}
 
/* END - dodatkowe produkty by imodules.pl */
.mxArticle .mxInNumbers .mx_tile {
  height: 83% !important;
}
.header-stihl-link {
  position: relative;
}
.header-stihl-link a {
  position: absolute;
    right: 0;
    width: 25%;
    height: 100%;
}
.wce_comparator-window [data-wce-grid-cols]>* {
  margin: unset !important;
}
.wce_comparator-window .wce_comparator-headrow {
  background-color: #0e3b44!important;
}
.wce_comparator-window .wce_comparator-btns a.wce_diff:before {
  color: white!important;
}
.wce_comparator-window .wce_comparator-btns a.wce_clear:before {
  color: white!important;
}
.wce_comparator-window .wce_comparator-btns a.wce_close:before {
  color: white!important;
  transform: unset!important;
}
.wce_comparator-btns span {
  color: white!important;
  text-decoration: none!important;
}
.wce_comparator-btns a:hover {
  color: white!important;
}
.wce_comparator-window .wce_no-info {
  color: red!important;
}
.wce_comparator-preview .wce_ribbon .wce_name {
  color: white!important;
}
.wce_comparator-preview .wce_ribbon .wce_comparator-counter {
  color: white!important;
}
.wce_comparator-preview .wce_ribbon::before, .wce_comparator-btn:before {
  color: white!important;
}
.wce_comparator-preview .wce_ribbon {
  background-color: #0e3b44!important;
  border: 2px solid #F47920!important;
  z-index: 1!important;
}
.product-inner-wrap .wce_comparator-preview .wce_ribbon::before, .wce_comparator-btn:before {
  color: #0e3b44!important;
  margin-left: .3rem!important;
  transform: unset!important;
    color: white!important;
}
.wce_comparator-btn {
  display: flex!important;
    gap: 0.3rem!important;
    border: 1px solid #F47920!important;
    width: 40%!important;
    justify-content: center!important;
    padding-block: 0.2rem!important;
    border-radius: 3px!important;
    text-decoration: none!important;
    background-color: #F47920!important;
    color: white!important;
}
.wce_comparator-btn span {
  display: unset!important;
  font-size: 13px!important;
  font-weight: 500!important;
}
.modal.wce_comparator-alert.wce_alert-warning .modal-header {
  border-top-left-radius: 1rem!important;
    border-top-right-radius: 1rem!important;
    background: #0e3b44!important;
    color: white!important;
  display: flex!important;
    justify-content: center!important;
}
.wce_comparator-alert .modal-close {
  display: none!important;
}
.modal.wce_comparator-alert .modal-body {
  display: flex!important;
    align-items: center!important;
    justify-content: center!important;
    margin-top: 1rem!important;
}
.modal.wce_comparator-alert .btn {
  background: #F47920!important;
}
.modal.wce_comparator-alert.wce_alert-info .modal-header {
  border-top-left-radius: 1rem!important;
    border-top-right-radius: 1rem!important;
    background: #0e3b44!important;
  display: flex!important;
  justify-content: center!important;
  color: white!important;
}
.wce_comparator-wrap {
  display: flex!important;
  justify-content: center!important;
  padding-top: 1rem!important;
  padding-bottom: 0.5rem!important;
}
.wce_comparator-window [data-wce-grid-cols] .wce_diff-row {
  background: #c9c9c9!important;
}
.availability-notifier-container a:nth-of-type(1) {
  display: none !important;
}
.availability-notifier-container .wce_comparator-wrap a {
  display: flex !important;
}
.modProdimage-button .wce_comparator-btn {
  display: none!important;
}
@media screen and (max-width: 767px) {
  	.modal.modal-visible {
        height: auto!important;
    left: 50%!important;
    top: 50%!important;
      border-radius: 30px!important;
}
 
  .wce_comparator-btn {
    width: 65%!important;
  }
}
#box_basketaddress .nip .shaded_inputwrap {
  margin-bottom: 3rem;
}
.hide-osoba-formularz span:nth-of-type(1) {
  display: none;
}
.hide-osoba-formularz label[for="address_type1"] {
  display: none;
}

/* tabelka iMOW */

.table-container-imow {
    width: 100%;
    overflow-x: auto;
}

.table-container-imow table {
    width: 100%;
    border-collapse: collapse;
}

.table-container-imow th, .table-container-imow td {
    border-left: 1px solid #bcbcbc;
    text-align: left;
    padding: 8px;
    font-size: 10pt;
}

.table-container-imow th:first-child, .table-container-imow td:first-child {
    border-left: none;
    font-weight: bold;
}

.table-container-imow th {
    background-color: black;
    color: white;
    font-size: 10pt;
}

.table-container-imow tr:nth-child(even) {
    background-color: #ffffff;
}

.table-container-imow tr:nth-child(odd) {
    background-color: #ededed;
}
.bundle-fixed-cart-container {
  display: none;
}

/* box główna */
.stihl-cert-wrapper {
  display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 calc(50% - 50vw);
    padding: 0 calc(50vw - 50%);
    background: #F4F4F4;
    height: 641px;
  	margin-block: 30px;
}
.sthil-cert-box {
  display: grid;
    grid-template-columns: 30% 1fr;
  height: 100%;
}
.sthil-cert-box-col1 {
  display: flex;
    flex-direction: column;
    justify-content: center;
}
.sthil-cert-box-col1 h2 {
  font-size: 36px;
    color: black;
}
.sthil-cert-box-col1 p {
  font-size: 14px;
    line-height: 20px;
    color: #0E3B44;
}
.sthil-cert-box-col2 {
  display: flex;
    justify-content: center;
  position: relative;
  z-index: 1;
  align-items: center;
}
.sthil-cert-box-col2 img:nth-of-type(1) {
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
}
.sthil-cert-box-col2 img:nth-of-type(2) {
  width: 62%;
}
@media (max-width: 767px) {
  .sthil-cert-box {
    grid-template-columns: 1fr;
  }
  .sthil-cert-box-col1 {
    gap: 2rem;
  }
  .sthil-cert-box-col1 h2 {
    font-size: 24px;
  }
   .sthil-cert-box-col1 p {
     text-align: justify;
   }
  .sthil-cert-box-col2 img:nth-of-type(1) {
    display: none;
  }
  .sthil-cert-box-col2 img:nth-of-type(2) {
    width: 90%;
  }
}
.new-slider-mainpage {
    width: 100%;
    height: 43vh;
    overflow: hidden;
    position: relative;
}

.new-slider-mainpage img, .new-slider-mainpage a {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1; /* Wszystkie nowe obrazy/linki są domyślnie niewidoczne */
    object-fit: contain;
    transition: opacity 1s ease-in-out;
}

.new-slider-mainpage a.active {
    opacity: 1; /* Tylko aktywne linki stają się widoczne */
}
/* Wyłącz przejście dla elementu z klasą no-transition */
.new-slider-mainpage a.no-transition {
    transition: none !important;
}

/* Akcesoria */
#product-info {
    border: 1px solid #f47920; /* Obramowanie */
    border-radius: 12px; /* Zaokrąglenie */
  	margin-bottom: 30px;
}


#product-info #recommended-accessories-header {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: bold;
    font-style: italic;
  	margin-top: 20px;
    margin-left: 31px;
  	text-align: center;
}

#product-info #recommended-accessories-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #777777;
 	margin-top: 3px;
    margin-left: 31px;
  	margin-right: 52px;
  	display: none;
}

#product-info .group-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #000000;
    font-weight: bold;
    font-style: italic;
	margin-left: 31px;
  	margin-top: 20px;
}

#product-info .group-container .arrow-icon {
    margin-left: auto; /* Pcha strzałkę na koniec kontenera */
    margin-right: 31px; /* Zachowanie odstępu z prawej strony */
    width: 12px;
    height: 6px;
    cursor: pointer;
}

#product-info .group-content .quantity-input {
    width: 55px; /* Szerokość */
    height: 50px; /* Wysokość */
    background-color: #f6f6f6; /* Kolor tła */
    border: none; /* Usunięcie obramowania */
    border-radius: 27.5px; /* Zaokrąglenie */
    padding: 0; /* Usunięcie wewnętrznego marginesu */
    text-align: center; /* Wysrodkowanie tekstu */
    font-family: 'Montserrat', sans-serif; /* Czcionka */
    font-size: 16px; /* Rozmiar czcionki */
    font-weight: bold; /* Pogrubienie */
    font-style: italic; /* Kursywa */
    color: #000000; /* Kolor czcionki */
  	margin-left: 5px;
}

#product-info .product-container .product-image-container {
    width: 55px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    margin-left: 15px;
    margin-right: 7px;
}

#product-info .product-container .product-image {
    max-width: 55px;
    object-fit: contain;
}

#product-info .product-container .product-name img {
    margin-right: 5px; /* Odległość od prawej krawędzi */
}

#product-info .product-container {
  display: flex;
    align-items: center; /* Wyśrodkowanie pionowe */
    justify-content: center; /* Wyśrodkowanie poziome, jeśli potrzebne */
    height: 100%; /* Możesz określić wysokość, jeśli nie jest już określona */
}
#product-info .product-container .product-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: bold;
    font-style: italic;
    color: #000000;
    display: flex;
    align-items: center;
    margin-left: 5px;
    border-radius: 27.5px;
    padding: 15px;
    margin-right: 24px;
}

#product-info .price-container {
    display: flex; /* Użyj flexbox */
    justify-content: space-between; /* Wyśrodkuj elementy w poziomie */
    align-items: center; /* Wyśrodkuj elementy w pionie */
  	margin-right: 31px;
}

#product-info .price-container div {
    font-family: 'Montserrat', sans-serif; /* Czcionka */
    font-size: 14px; /* Rozmiar czcionki */
    font-weight: bold; /* Pogrubienie */
    color: #F47920; /* Kolor czcionki */
    margin: 0; /* Reset marginesu */
}

#product-info .product-container .price-container {
    margin-left: auto; /* Przesunięcie marginesu z lewej strony, aby element był na prawym krańcu */
}

#product-info .group-divider {
    border: none; /* Usunięcie domyślnego obramowania */
    border-top: 2px solid #d5d5d5; /* Ustawienie koloru i grubości linii */
    margin-top: 20px; /* Odległość od poprzedniego elementu */
  	margin-left: 18px;
  	margin-right: 22px;
}

#product-info .other-accessories-container {
    display: flex; /* Ustawienie na flexbox */
    align-items: center; /* Wyśrodkowanie w pionie */
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    color: #000000;
    margin-top: 20px;
  	margin-bottom: 20px;
}

#product-info .other-accessories-text {
    margin-left: 31px;
 	align-items: center; /* Wyśrodkowanie w pionie */
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    color: #000000;/* Oddalenie tekstu od lewej krawędzi */
}

#product-info .other-accessories-arrow {
    width: 12px;
    height: 6px;
    margin-left: auto; /* Przesunięcie strzałki na koniec */
    margin-right: 31px; /* Margines od prawej krawędzi */
    cursor: pointer;
}

#product-info .podsumowanie-container {
    background-color: #f47920; /* kolor tła f47920 */
    padding-left: 31px; /* przesunięcie tekstu o 31px w prawo */
    padding-top: 27px; /* przesunięcie tekstu o 27px w dół */
  	padding-bottom: 9px;
  	margin-top: -10px;
}

#product-info .podsumowanie-text {
    color: white; /* kolor biały tekstu */
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    font-family: "Montserrat", sans-serif;
}

#product-info .summary-container {
    background-color: #f47920; /* kolor tła f47920 */
    color: white; /* kolor biały tekstu */
    font-size: 16px; /* rozmiar 16 */
    font-weight: bold; /* pogrubienie */
    font-style: italic; /* kursywa */
    font-family: "Montserrat", sans-serif; /* czcionka Montserrat */
    border-bottom-right-radius: 9px; /* zaokrąglenie prawego dolnego rogu */
    border-bottom-left-radius: 9px; /* zaokrąglenie lewego dolnego rogu */
    padding-right: 31px; /* zachowanie przestrzeni po prawej stronie */
    padding-top: 5px; /* górny padding */
    padding-bottom: 9px; /* dolny padding */
  	padding-left: 30px;
}

#product-info .summary-container span {
    color: white; /* kolor biały tekstu */
    font-size: 16px; /* rozmiar 16 */
    font-weight: bold; /* pogrubienie */
    font-style: italic; /* kursywa */
    font-family: "Montserrat", sans-serif; /* czcionka Montserrat */
}

#product-info #selected-products-list-container {
    background-color: #F47920; /* Pomarańczowe tło */
    padding: 10px; /* Odstępy wokół zawartości */
    display: flex; /* Ustawienie flex dla kontenera */
    flex-direction: column; /* Elementy w kontenerze układają się w kolumnie */
    align-items: center; /* Wyśrodkowanie zawartości w poziomie */
    font-family: 'Montserrat', sans-serif; /* Ustawienie czcionki Montserrat */
    width: 100%; /* Pełna szerokość kontenera */
}

/* Styl dla każdego elementu listy produktów */
#product-info .product-summary-item {
    display: grid;
    grid-template-columns: 7% 72% 1fr;
    align-items: center; /* Wyśrodkowanie elementów w pionie */
    width: 100%; /* Pełna szerokość kontenera */
    color: white; /* Biały kolor tekstu */
    font-size: 12px; /* Rozmiar czcionki */
    font-weight: bold; /* Pogrubienie czcionki */
    font-style: italic; /* Kursywa */
    margin: 5px 0; /* Odstępy między elementami listy */
    margin-left: 29px; /* Lewy margines */
    padding-bottom: 5px; /* Padding na dole dla kreski */
    position: relative; /* Pozycjonowanie względne dla pseudoelementu */
}

#product-info .product-summary-item::after {
    content: ''; /* Niezbędne do wyświetlenia pseudoelementu */
    position: absolute; /* Pozycjonowanie absolutne względem nadrzędnego */
    left: 0; /* Przyleganie do lewej strony */
    right: 31px; /* Odstęp 31px od prawej strony */
    bottom: 0; /* Umieszczenie na dole elementu */
    height: 1px; /* Wysokość kreski */
    background-color: white; /* Kolor biały */
}

#product-info .product-quantity-list {
    position: relative; /* Ustawienie kontekstu pozycjonowania dla pseudoelementu */
    padding-right: 8px; /* Odstęp od kreski */
}

#product-info .product-quantity-list::after {
    content: ''; /* Niezbędne do wyświetlenia pseudoelementu */
    position: absolute; /* Pozycjonowanie względem elementu nadrzędnego */
    right: 0; /* Przyleganie do prawej strony */
    top: 50%; /* Wyśrodkowanie w pionie */
    transform: translateY(-50%); /* Precyzyjne wyśrodkowanie */
    height: 20px; /* Wysokość kreski */
    width: 1px; /* Grubość kreski */
    background-color: white; /* Kolor biały */
}

#product-info .product-name-list {
    padding: 5px; /* Odstępy wewnątrz elementów */
    margin-left: 11px; /* Odstęp od białej kreski o szerokości 11px */
    color: white; /* Kolor tekstu */
    font-family: 'Montserrat', sans-serif; /* Ustawienie czcionki Montserrat */
    font-size: 12px; /* Rozmiar czcionki */
    font-weight: bold; /* Pogrubienie czcionki */
    font-style: italic; /* Kursywa */
}

#product-info .product-price-list {
    font-family: 'Montserrat', sans-serif; /* Ustawienie czcionki Montserrat */
    font-size: 12px; /* Rozmiar czcionki */
    font-weight: bold; /* Pogrubienie czcionki */
    color: white; /* Kolor tekstu */
    text-align: right; /* Wyrównanie tekstu do prawej strony */
    margin-left: auto; /* Automatyczny margines z lewej strony, pcha element do prawej */
    margin-right: 31px;
}

#product-info #total-summary {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    padding: 5px 0;
}

#product-info #summary-accessories  {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    padding: 5px 0;
}

#product-info .accessories-price,
.total-quantity {
    float: right;
}

#product-info .quantity-button-plus {
    margin-left: 5px;
    font-weight: bold;
}

#product-info .quantity-button-minus {
  	margin-left: 20px;
    font-weight: bold;  
}

#product-info .summary-container button {
    /* Stylowanie tła i obramowania */
    background-color: transparent;
    border: 2px solid white;
    border-radius: 27.5px;
    /* Stylowanie tekstu */
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    color: #ffffff !important;
    /* Wyrównanie tekstu */
    text-align: center;
    /* Wymiary przycisku */
    padding: 10px 20px;
    /* Kursor */
    cursor: pointer;
    /* Efekty przejścia */
    transition: background-color 0.3s, color 0.3s;
  	margin-top: 44px;
  	margin-bottom: 34px;
  	width: 100%;
  	display: none;
}

/* Efekt po najechaniu myszą */
#product-info .summary-container button:hover {
    background-color: white;
    color: #000; /* Zmiana koloru tekstu po najechaniu */
}

#product-info .total-label,
.accessories-label { 
	margin-left: 120px;
}

#product-info .products-counter {
    margin-left: 10px; /* Dodatkowy odstęp od tytułu */
  	margin-right: 10px;
  	margin-top: 20px;
}

#product-info .unavailable {
    display: none;
}

.group-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Zapewnia rozłożenie treści na oba krańce */
    width: 100%; /* Zapewnia, że kontener rozciąga się na pełną szerokość dostępnego miejsca */
}

#product-info .total-quantity {
    margin-left: auto;
}

#product-info .accessories-price {
    margin-left: auto;
}

#product-info .other-accessories-container {
  display: none;
}

#product-info .other-accessories-button {
  	display: none;
}
.additional-products-text {
  	font-style: italic;
    font-size: 22px;
    line-height: 30px;
    margin-right: 70px;
    font-weight: 700;
    margin-top: 2rem;
  	width: 100%;
}
.ajax-product-block-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Wyrównuje elementy do lewej strony */
    gap: 10px; /* Ustawia odstępy pomiędzy elementami */
    align-items: center; /* Wyśrodkowanie elementów w pionie */
}

.image-container {
    width: calc(20% - 10px); /* Oblicza szerokość tak, by pomieścić 5 elementów na szerokość minus luka */
    position: relative;
    display: flex;
    justify-content: center; /* Wyśrodkowanie obrazu poziomo */
    align-items: center; /* Wyśrodkowanie obrazu pionowo */
    background-color: white;
    height: 70px; /* Ustawia wysokość kontenera obrazu */
}
.image-container img {
  width: 100%;
}
.addtobasket-modal .modal-body .ajax-product-block .photo {
  max-width: 150px;
}
.addtobasket-modal .modal-header {
  padding-bottom: .5rem;
  padding-top: 1rem;
}
#product-info .total-summary-container {
    background-color: #F47920;
    color: white;
    font-size: 16px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    align-items: flex-end;
    flex-direction: column;
    padding-left: 200px; /* Rozpoczęcie odległości od lewej krawędzi */
}

#product-info .total-summary-quantity,
#product-info .total-summary-price {
    display: flex;
    align-items: center; /* Umieścić elementy w pionie */
    font-style: italic;
    justify-content: flex-start; /* Rozpoczęcie diva od lewej strony */
  	padding-bottom: 8px;
}

#product-info .total-summary-quantity span,
#product-info .total-summary-price span {
    color: white;
    font-size: 16px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    margin-left: auto; /* Przesunięcie spana do prawej strony */
    margin-right: 30px; /* Dodatkowy odstęp między tekstem a spanem */
    font-style: normal;
}

.js__show-more-machines {
    font-weight: bold;
    text-decoration: underline;
}

.basket-step-border {
  max-width: 1400px !important;
  margin: 0 auto !important;
}

@media screen and (max-width: 767px) {
  #product-info .product-summary-item {
    grid-template-columns: 7% 70% 1fr;
    margin-left: 0px;
  }
  #product-info .product-summary-item::after {
    right: 0px;
  }
  #product-info .product-quantity-list {
    padding-right: 20px;
  }
  #product-info .product-price-list {
    margin-right: 0px;
  }
  #product-info .total-label, .accessories-label {
    margin-left: 0px;
  }
  #product-info .summary-container {
    padding-right: 0px;
    padding-left: 0px;
    padding-inline: 10px;
  }
  #product-info #total-summary {
    font-size: 14px;
  }
  #product-info .summary-container span {
    font-size: 14px;
  }
  #product-info #summary-accessories {
    font-size: 14px;
  }
  .product-container {
    justify-content: center;
  }
  #box_productfull .product-container {
    flex-wrap: nowrap;
  }
  #product-info .group-content .quantity-input {
    margin-left: 10px;
  }
  #product-info .product-container .product-name {
    padding: 0;
    margin-right: 10px;
    margin-left: 0;
  }
  #product-info .product-container .price-container {
    margin-right: 10px;
  }
  #product-info #recommended-accessories-description {
    margin-left: 10px;
  }
  #product-info #recommended-accessories-header {
    margin-left: 10px;
  }
  #product-info .group-container h2 {
    margin-left: 10px;
  }
  #product-info .group-divider {
    margin-left: 10px;
    margin-right: 10px;
  }
  #product-info .other-accessories-text {
    margin-left: 10px;
  }
  #product-info .group-container .arrow-icon {
    margin-top: 20px;
    margin-right: 10px;
  }
  #product-info .other-accessories-arrow {
    margin-right: 10px;
  }
  #product-info .podsumowanie-container {
    padding-left: 10px;
  }
  #product-info .total-summary-container {
    background-color: #F47920;
    color: white;
    font-size: 16px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    align-items: flex-end;
    flex-direction: column;
    padding-left: 80px; /* Rozpoczęcie odległości od lewej krawędzi */
}
  #product-info .total-summary-quantity span, #product-info .total-summary-price span {
    color: white;
    font-size: 16px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    margin-left: auto;
    margin-right: 0px;
    font-style: normal;
    padding-right: 13px;
}
  .ajax-product-block-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
  }
  .additional-products-text {
    font-style: italic;
    font-size: 22px;
    line-height: 30px;
    /* margin-right: 70px; */
    font-weight: 700;
    margin-top: 2rem;
    width: 100%;
}
  
  .ajax-product-block-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Wyrównuje elementy do lewej strony */
    gap: 10px; /* Ustawia odstępy pomiędzy elementami */
    align-items: center; /* Wyśrodkowanie elementów w pionie */
}

.image-container {
    width: calc(20% - 10px); /* Oblicza szerokość tak, by pomieścić 5 elementów na szerokość minus luka */
    position: relative;
    display: flex;
    justify-content: center; /* Wyśrodkowanie obrazu poziomo */
    align-items: center; /* Wyśrodkowanie obrazu pionowo */
    background-color: white;
    height: 70px; /* Ustawia wysokość kontenera obrazu */
}
.image-container img {
  width: 100%;
}
  #product-info .quantity-button-minus {
    display: none;
  }
    #product-info .quantity-button-plus {
    display: none;
  }
  
#product-info .quantity-select {
    width: 50px;
    height: 45px;
    background-color: #f6f6f6;
    border: none;
    border-radius: 27.5px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    color: #000;
    margin-left: 5px;
}
}
.payment.paynow-integrated .description img {
  display: none;
}
.btn.btn-red.paynowSelectBank {
  cursor: pointer;
}
.btn.btn-red.paynowSelectBank:hover {
  text-decoration: underline;
}
.btn.btn-red.pn-btn.right {
    background-color: black;
    width: 12rem;
    padding: 1rem;
    border-radius: 39px;
    color: white;
    display: flex;
    justify-content: center;
  	cursor: pointer;
}
#box_productsafety {
  padding-bottom: 2rem;
  font-size: 12px;
}
#box_productsafety h3{
  font-size: 16px;
    margin-bottom: 5px;
}

.caraty-product-simulator {
    background-color: #009597;
    border-radius: 8px;
    padding: 8px 0;
  	height: 50px;
    width: 100%;
    box-sizing: border-box;
    text-align: center; /* wyśrodkowanie zawartości */
}

.caraty-product-simulator-default {
    top: 15px !important;
    margin-bottom: 18px;
    width: 100%;
}