diff --git a/themes/InterBlue/assets/css/accessibility.css b/themes/InterBlue/assets/css/accessibility.css new file mode 100644 index 00000000..b7903e86 --- /dev/null +++ b/themes/InterBlue/assets/css/accessibility.css @@ -0,0 +1 @@ +#accessibility-button{position:fixed;bottom:20px;right:20px;background:#6366f1;color:#fff;border-radius:50%;width:50px;height:50px;font-size:24px;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:9999;box-shadow:0 0 10px rgba(0,0,0,.2)}#accessibility-panel{position:fixed;top:0;right:0;width:280px;height:100%;background:#f9f9f9;box-shadow:-2px 0 10px rgba(0,0,0,.1);transform:translateX(100%);transition:transform .3s ease;z-index:9998;display:flex;flex-direction:column}#accessibility-panel #close-accessibility-panel{border:0;height:30px;width:30px;border-radius:6px}#accessibility-panel.open{transform:translateX(0)}.panel-header{display:flex;justify-content:space-between;align-items:center;background:#6366f1;color:#fff;padding:1rem;font-weight:bold}.panel-body{padding:1rem;display:flex;flex-direction:column;gap:10px}#toggle-contrast{padding:10px;font-size:16px;cursor:pointer}/*# sourceMappingURL=accessibility.css.map */ \ No newline at end of file diff --git a/themes/InterBlue/assets/css/accessibility.css.map b/themes/InterBlue/assets/css/accessibility.css.map new file mode 100644 index 00000000..c33e8f91 --- /dev/null +++ b/themes/InterBlue/assets/css/accessibility.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["accessibility.scss"],"names":[],"mappings":"AAAA,sBACE,cAAA,CACA,WAAA,CACA,UAAA,CACA,kBAAA,CACA,UAAA,CACA,iBAAA,CACA,UAAA,CACA,WAAA,CACA,cAAA,CACA,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,cAAA,CACA,YAAA,CACA,kCAAA,CAGF,qBACE,cAAA,CACA,KAAA,CACA,OAAA,CACA,WAAA,CACA,WAAA,CACA,kBAAA,CACA,qCAAA,CACA,0BAAA,CACA,6BAAA,CACA,YAAA,CACA,YAAA,CACA,qBAAA,CAEA,gDACE,QAAA,CACA,WAAA,CACA,UAAA,CACA,iBAAA,CAIJ,0BACE,uBAAA,CAGF,cACE,YAAA,CACA,6BAAA,CACA,kBAAA,CACA,kBAAA,CACA,UAAA,CACA,YAAA,CACA,gBAAA,CAGF,YACE,YAAA,CACA,YAAA,CACA,qBAAA,CACA,QAAA,CAGF,iBACE,YAAA,CACA,cAAA,CACA,cAAA","file":"accessibility.css","sourcesContent":["#accessibility-button {\r\n position: fixed;\r\n bottom: 20px;\r\n right: 20px;\r\n background: #6366f1;\r\n color: white;\r\n border-radius: 50%;\r\n width: 50px;\r\n height: 50px;\r\n font-size: 24px;\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n cursor: pointer;\r\n z-index: 9999;\r\n box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);\r\n}\r\n\r\n#accessibility-panel {\r\n position: fixed;\r\n top: 0;\r\n right: 0;\r\n width: 280px;\r\n height: 100%;\r\n background: #f9f9f9;\r\n box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);\r\n transform: translateX(100%);\r\n transition: transform 0.3s ease;\r\n z-index: 9998;\r\n display: flex;\r\n flex-direction: column;\r\n\r\n #close-accessibility-panel {\r\n border: 0;\r\n height: 30px;\r\n width: 30px;\r\n border-radius: 6px;\r\n }\r\n}\r\n\r\n#accessibility-panel.open {\r\n transform: translateX(0);\r\n}\r\n\r\n.panel-header {\r\n display: flex;\r\n justify-content: space-between;\r\n align-items: center;\r\n background: #6366f1;\r\n color: white;\r\n padding: 1rem;\r\n font-weight: bold;\r\n}\r\n\r\n.panel-body {\r\n padding: 1rem;\r\n display: flex;\r\n flex-direction: column;\r\n gap: 10px;\r\n}\r\n\r\n#toggle-contrast {\r\n padding: 10px;\r\n font-size: 16px;\r\n cursor: pointer;\r\n}"]} \ No newline at end of file diff --git a/themes/InterBlue/assets/css/accessibility.scss b/themes/InterBlue/assets/css/accessibility.scss new file mode 100644 index 00000000..3a957a81 --- /dev/null +++ b/themes/InterBlue/assets/css/accessibility.scss @@ -0,0 +1,66 @@ +#accessibility-button { + position: fixed; + bottom: 20px; + right: 20px; + background: #6366f1; + color: white; + border-radius: 50%; + width: 50px; + height: 50px; + font-size: 24px; + display: flex; + align-items: center; + justify-content: center; + cursor: pointer; + z-index: 9999; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); +} + +#accessibility-panel { + position: fixed; + top: 0; + right: 0; + width: 280px; + height: 100%; + background: #f9f9f9; + box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1); + transform: translateX(100%); + transition: transform 0.3s ease; + z-index: 9998; + display: flex; + flex-direction: column; + + #close-accessibility-panel { + border: 0; + height: 30px; + width: 30px; + border-radius: 6px; + } +} + +#accessibility-panel.open { + transform: translateX(0); +} + +.panel-header { + display: flex; + justify-content: space-between; + align-items: center; + background: #6366f1; + color: white; + padding: 1rem; + font-weight: bold; +} + +.panel-body { + padding: 1rem; + display: flex; + flex-direction: column; + gap: 10px; +} + +#toggle-contrast { + padding: 10px; + font-size: 16px; + cursor: pointer; +} \ No newline at end of file diff --git a/themes/InterBlue/assets/css/custom.css b/themes/InterBlue/assets/css/custom.css index 05f18453..93b61c31 100644 --- a/themes/InterBlue/assets/css/custom.css +++ b/themes/InterBlue/assets/css/custom.css @@ -1 +1 @@ -.img-fluid,.img-thumbnail{max-width:100%;height:auto}section#slider{padding-top:25px}#wrapper{background-color:#fff;padding-top:25px;padding-bottom:50px}#header .header-nav #_desktop_contact_link{display:inline-block;font-weight:500}#header .header-nav #_desktop_contact_link .contact-info-phone,#header .header-nav #_desktop_contact_link .contact-info-email,#header .header-nav #_desktop_contact_link .contact-info-open-hours{float:left;margin-right:25px}#header .header-nav #_desktop_contact_link .contact-info-phone a{color:#f57e20}#header .header-nav #_desktop_contact_link .contact-info-phone a:hover{color:#2fb5d2}#header .header-nav #_desktop_contact_link i{margin-right:4px}#header .header-nav #_desktop_contact_link #contact-link{margin-top:.9375rem}.html-block-content{margin-bottom:40px}.block-categories li[data-depth="0"]{position:relative;border-bottom:1px solid #c4c4c4}.block-categories .category-sub-menu li[data-depth="0"]>a{padding-top:13px;padding-bottom:13px;position:relative;z-index:30;width:auto !important;display:inline-block;border-bottom:none}.block-categories .navbar-toggler{width:100%;height:4em;padding:0;padding0-top:13px;padding-bottom:0px;margin-top:-11px;font-size:.9375rem;line-height:1;background:rgba(0,0,0,0) no-repeat 50%;background-size:auto;background-size:24px 24px;border:1px solid rgba(0,0,0,0);border-radius:0;position:absolute;z-index:29}.block-categories .navbar-toggler i{float:right;margin-top:11px}#custom-text{text-align:center;background-color:#f9f9f9;margin-bottom:15px}.page-home #custom-text{display:none}#custom-text .custom-text-content{max-width:1600px;width:100%;margin-left:auto;margin-right:auto;color:#666;display:table;padding-top:20px;padding-bottom:20px}#custom-text .circle{border-radius:50%;behavior:url(PIE.htc);width:50px;height:50px;border:2px solid #13448f;display:block;margin-left:auto;margin-right:auto;background-repeat:no-repeat;background-position:center center}#custom-text .circle-1{background-image:url(../img/co-nas-wyroznia-ik-1.png);background-size:35% 35%}#custom-text .circle-2{background-image:url(../img/co-nas-wyroznia-ik-2.png);background-size:35% 35%}#custom-text .circle-3{background-image:url(../img/co-nas-wyroznia-ik-3.png);background-size:35% 35%}#custom-text .circle-4{background-image:url(../img/co-nas-wyroznia-ik-4.png);background-size:35% 35%}#custom-text h2{text-transform:uppercase;font-size:1.2rem;font-weight:700;color:#fff}#custom-text .custom-text-content H3{text-transform:uppercase;font-size:1rem;font-weight:700;margin-top:7px;margin-bottom:0px;color:#13448f}#custom-text p{font-weight:400;font-size:.8em;margin:0px;color:#666}#custom-text p .dark{color:#7a7a7a;font-weight:400}@media(max-width: 1599.9px){#custom-text .custom-text-content{padding-top:50px;padding-bottom:50px}#custom-text .circle{width:163px;height:163px;background-size:45%}#custom-text .custom-text-content H3{margin-top:10px;margin-bottom:5px}}@media(max-width: 1199.9px){#custom-text .custom-text-content{padding-top:35px;padding-bottom:35px}#custom-text .circle{width:123px;height:123px;background-size:40%}#custom-text .custom-text-content H3{margin-top:10px;margin-bottom:5px;font-size:21px}}@media(max-width: 576.9px){#custom-text .custom-text-content{padding-top:10px;padding-bottom:10px}#slider #custom-text{display:none}.page-home #custom-text{display:flex}#custom-text .circle-column p{height:50px}#custom-text .circle{width:70px;height:70px;background-size:30%}#custom-text .custom-text-content H3{margin-top:10px;margin-bottom:5px;font-size:18px}}.rev_slider_wrapper{float:left;margin-bottom:15px !important}#rev_slider_1_1_wrapper{max-width:767px;width:100%;margin-right:17px !important}#rev_slider_2_2_wrapper{max-width:378px;width:100%}.blog.blocks.displayHome .post-item{background-color:#fafafa;padding:0px;border:none}.blog.blocks.displayHome .post-item .post-item-cover img{max-width:100%;width:100%}.blog.blocks.displayHome .post-item .post-item-cover{margin-bottom:15px}.blog.blocks.displayHome .post-item .post-item-title{padding:15px;padding-bottom:0px}.blog.blocks.displayHome .post-item .post-item-title H3{margin-bottom:8px}.blog.blocks.displayHome .post-item .post-item-title a{font-size:20px;line-height:20px;color:#000;font-weight:400}.blog.blocks.displayHome .post-item .post-item-content{padding:15px}.blog.blocks.displayHome .post-item .item-readmore.pull-right{font-size:13px;font-weight:400;color:#797979;border:solid 2px #797979;padding:3px;padding-left:10px;padding-right:10px;border-radius:3px;margin-right:15px;margin-bottom:15px}.blog.blocks.displayHome .post-item .item-readmore.pull-right:hover{color:#fff;border:solid 2px #112c50;background-color:#112c50}#products .products-section-title,.featured-products .products-section-title,.product-accessories .products-section-title,.product-miniature .products-section-title{text-align:left;margin-bottom:2rem;padding-bottom:1.5rem;font-family:"Open Sans",sans-serif;font-size:2rem;font-weight:800;text-transform:uppercase;line-height:2rem;color:#000;border-bottom:solid 1px #ccc}.product-miniature{margin-left:0px !important;margin-right:0px !important}#products .thumbnail-container,.featured-products .thumbnail-container,.product-accessories .thumbnail-container,.product-miniature .thumbnail-container{width:auto !important;margin-top:15px;margin-bottom:0 !important}#products .thumbnail-container:hover,.featured-products .thumbnail-container:hover,.product-accessories .thumbnail-container:hover,.product-miniature .thumbnail-container:hover{box-shadow:none;background-color:#fbfbfb}.thumbnail.product-thumbnail{overflow:hidden;height:300px}@media(max-width: 767px){.thumbnail.product-thumbnail{height:222px}}.thumbnail.product-thumbnail img{height:100% !important;width:100% !important;-o-object-fit:contain;object-fit:contain}#products .thumbnail-container img,.featured-products .thumbnail-container img,.product-accessories .thumbnail-container img,.product-miniature .thumbnail-container img{position:relative;width:100% !important;height:auto;transition:all .8s ease;margin:0px}#products .product-description,.featured-products .product-description,.product-accessories .product-description,.product-miniature .product-description{width:auto !important;padding:10px;position:absolute;bottom:0;display:flex;align-items:flex-end;flex-wrap:wrap}@media(max-width: 767px){#products .product-description,.featured-products .product-description,.product-accessories .product-description,.product-miniature .product-description{height:auto !important}}#products .product-description .product-buttons,.featured-products .product-description .product-buttons,.product-accessories .product-description .product-buttons,.product-miniature .product-description .product-buttons{width:100%}#products .product-title,.featured-products .product-title,.product-accessories .product-title,.product-miniature .product-title{width:100%}#products .product-title h3,.featured-products .product-title h3,.product-accessories .product-title h3,.product-miniature .product-title h3{margin-bottom:0}#products .product-title H3 a,.featured-products .product-title H3 a,.product-accessories .product-title H3 a,.product-miniature .product-title H3 a{color:#000;font-size:14px;line-height:22px;text-decoration:none;text-align:left;font-weight:500;margin-top:5px;text-transform:none}@media(max-width: 767px){#products .product-title H3 a,.featured-products .product-title H3 a,.product-accessories .product-title H3 a,.product-miniature .product-title H3 a{font-size:13px}}#products .highlighted-informations,.featured-products .highlighted-informations,.product-accessories .highlighted-informations,.product-miniature .highlighted-informations{position:absolute;bottom:0px;padding-top:.625rem;z-index:300;background:#fff;text-align:center;width:100% !important;height:3.125rem;transition:bottom .3s;opacity:0}#products .product-buttons a.product-show-more-link,featured-products .product-buttons a.product-show-more-link,.product-accessories .product-buttons a.product-show-more-link,.product-miniature .product-buttons a.product-show-more-link{font-size:.85rem;font-weight:400;color:#fff;background-color:#112c50;padding:4px;height:16px;border-radius:2px;display:inline;margin-top:2px}#products .product-buttons a.product-show-more-link:hover,featured-products .product-buttons a.product-show-more-link:hover,.product-accessories .product-buttons a.product-show-more-link:hover,.product-miniature .product-buttons a.product-show-more-link:hover{background-color:#218fff;font-size:.85rem;border:none;padding:4px;height:16px}#products .product-buttons .add-to-cart-button,.featured-products .product-buttons .add-to-cart-button,.product-accessories .product-buttons .add-to-cart-button,.product-miniature .product-buttons .add-to-cart-button{color:#fff;border:solid 2px #218fff;background-color:#218fff;border-radius:2px;display:inline;margin-top:-2px;padding-bottom:4px;height:23px}#products .product-buttons .add-to-cart-button i,.featured-products .product-buttons .add-to-cart-button i,.product-accessories .product-buttons .add-to-cart-button i,.product-miniature .product-buttons .add-to-cart-button i{font-size:.85rem;color:#fff;margin-top:-15px}#products .product-miniature .discount-amount,#products .product-miniature .discount-percentage,#products .product-miniature .on-sale,#products .product-miniature .online-only,#products .product-miniature .pack,#products .product-miniature .product-flags .new,.featured-products .product-miniature .discount-amount,.featured-products .product-miniature .discount-percentage,.featured-products .product-miniature .on-sale,.featured-products .product-miniature .online-only,.featured-products .product-miniature .pack,.featured-products .product-miniature .product-flags .new,.product-accessories .product-miniature .discount-amount,.product-accessories .product-miniature .discount-percentage,.product-accessories .product-miniature .on-sale,.product-accessories .product-miniature .online-only,.product-accessories .product-miniature .pack,.product-accessories .product-miniature .product-flags .new,.product-miniature .product-miniature .discount-amount,.product-miniature .product-miniature .discount-percentage,.product-miniature .product-miniature .on-sale,.product-miniature .product-miniature .online-only,.product-miniature .product-miniature .pack,.product-miniature .product-miniature .product-flags .new{display:block;position:absolute;left:4px;padding:1px;padding-left:4px;padding-right:4px;color:#333;background:#f3f3f3;min-width:2rem;min-height:1rem;font-size:.8rem;font-weight:500}section.sposoby-dostawy .row{padding-bottom:15px}section.sposoby-dostawy .row.delivery-option{padding-bottom:0px}section.sposoby-dostawy .row .col-md-2.col-xs-12{text-align:center}section.sposoby-dostawy .row .col-md-2.col-xs-12 img{max-width:70px;margin-left:auto;margin-right:auto}section.sposoby-dostawy .h6.carrier-name{font-weight:600}section.sposoby-dostawy .carrier-delay{font-size:1rem;font-weight:300}section.sposoby-dostawy .carrier-price{font-weight:700}@media(max-width: 479.9px){#search_filters_brands{display:none}}.brands-slider{margin-top:30px}.brands-slider .nbs-flexisel-item{padding-left:15px;padding-right:15px}.brands-slider .nbs-flexisel-item a img{max-width:60%;width:100%;margoin-left:auto;margin-right:auto}@media(max-width: 479.9px){#onepagecheckoutps #customer_container .rowp{display:flex}#onepagecheckoutps #customer_container .row,#onepagecheckoutps #customer_container .row .form-group.col-xs-6.col-6.required{max-width:110%;width:100%;padding-right:0px}#onepagecheckoutps .required::after{display:none !important}#onepagecheckoutps #onepagecheckoutps_step_two_container .delivery_option_delay{display:none}div#onepagecheckoutps div#onepagecheckoutps_step_two #shipping_container .delivery_option_logo img{max-width:50px}}#back-to-top{position:fixed;bottom:60px;right:100px;z-index:99999;width:42px;height:42px;text-align:center;line-height:42px;background-color:#141414;color:#fff;cursor:pointer;border:0;border-radius:2px;text-decoration:none;opacity:0}#back-to-top:hover{background-color:#ff4800}#back-to-top.show{opacity:1}.product-quantity{align-items:center}.product-quantity .certyfikat{margin-left:15px}.sollux-custom-box{margin-bottom:30px}.sollux-custom-box img{width:100%;max-width:-moz-fit-content;max-width:fit-content}body#checkout main #main form .form-group.required::after{display:none}.product-add-to-card-button{display:flex !important;flex-direction:row;align-items:center;padding:5px 10px 6px !important;height:auto !important;-moz-column-gap:7px;column-gap:7px;margin:0 auto}.product-add-to-card-button i.material-icons{margin:0 !important}.product-add-to-card-button span{font-size:12px;font-weight:400;color:#fff;border-radius:2px;line-height:1}article.product-miniature .product-description>a{width:100%}article.product-miniature .discount-amount.discount-amount,article.product-miniature .on-sale.on-sale,article.product-miniature .discount-percentage.discount-percentage{background:#f14848 !important;color:#fff;left:0}#products .product-buttons .add-to-cart-button,.featured-products .product-buttons .add-to-cart-button,.product-accessories .product-buttons .add-to-cart-button,.product-miniature .product-buttons .add-to-cart-button{color:#fff;border:solid 2px #218fff;background-color:#218fff;border-radius:2px;display:inline;margin-top:-2px;padding:4px;display:flex;text-align:center;margin:0 auto;align-items:center;justify-items:center}#products .product-buttons .add-to-cart-button:hover,.featured-products .product-buttons .add-to-cart-button:hover,.product-accessories .product-buttons .add-to-cart-button:hover,.product-miniature .product-buttons .add-to-cart-button:hover{color:#fff;border:solid 2px #112c50;background-color:#112c50;border-radius:2px;display:inline;margin-top:-2px;padding-bottom:4px}#products .product-buttons .add-to-cart-button i,.featured-products .product-buttons .add-to-cart-button i,.product-accessories .product-buttons .add-to-cart-button i,.product-miniature .product-buttons .add-to-cart-button i{font-size:.85rem;color:#fff;margin-top:1px}.product-miniature .product-buttons .product-add-to-card-button{font-size:12px}.product-miniature .product-buttons .product-add-to-card-button i{margin-top:-2px;margin-right:2px}#header .logo{max-width:115%;width:115%;margin-top:-8px;max-height:93px;-o-object-fit:cover;object-fit:cover}#header .header-nav .blockcart{background:#218fff;cursor:pointer}#header .header-nav .blockcart:hover{background:#112c50}#header .header-nav .blockcart.inactive .cart-products-count{color:#fff}#header .header-top>.container>.row{display:flex;align-items:center;flex-wrap:wrap}#_desktop_contact_link_temp{display:none}#nav-phone-numb{display:flex;flex-direction:row;align-items:center;margin-left:10px;-moz-column-gap:5px;column-gap:5px;height:50px}#nav-phone-numb i{font-size:21px}#nav-phone-numb a{color:#f57e20}@media(max-width: 767px){footer#footer .footer-container .block-contact .hidden-sm-down{display:block !important;padding:.625rem}footer#footer .footer-container .block-contact .hidden-md-up{display:none !important}}#history .table-labeled .label{color:#232323 !important}header#header .header-banner .html-block-content{margin:0;text-align:center;background-color:#ef4141;min-height:26px;display:flex;align-items:center;justify-content:center;padding:4px 0}header#header .header-banner .html-block-content p{color:#fff;margin:0;font-size:13px}@media(max-width: 575px){.header-top-box-1{width:100%}}@media(max-width: 767px){.block_newsletter .block-newsletter-form{padding-left:10px}}.block_newsletter .block-newsletter-form .newsletter-form-fields{display:flex;flex-direction:row}@media(min-width: 767px){.bonslick-slider.slick-slider:hover button.slick-prev{opacity:1;left:10px}.bonslick-slider.slick-slider:hover button.slick-next{opacity:1;right:10px}}.bonslick-slider.slick-slider button{transition:all 250ms ease-in-out}.bonslick-slider.slick-slider button.slick-arrow{width:35px;height:35px;display:flex;align-items:center;justify-content:center;background:#fff;z-index:11;border-radius:100%;box-shadow:0 0 2px 1px rgba(0,0,0,.1)}.bonslick-slider.slick-slider button.slick-arrow::before{font-size:20px}@media(min-width: 767px){.bonslick-slider.slick-slider button.slick-prev{opacity:0;left:-10px}}@media(max-width: 767px){.bonslick-slider.slick-slider button.slick-prev{left:10px}}@media(min-width: 767px){.bonslick-slider.slick-slider button.slick-next{opacity:0;right:-10px}}@media(max-width: 767px){.bonslick-slider.slick-slider button.slick-next{right:10px}}/*# sourceMappingURL=custom.css.map */ \ No newline at end of file +.img-fluid,.img-thumbnail{max-width:100%;height:auto}section#slider{padding-top:25px}#wrapper{background-color:#fff;padding-top:25px;padding-bottom:50px}#header .header-nav #_desktop_contact_link{display:inline-block;font-weight:500}#header .header-nav #_desktop_contact_link .contact-info-phone,#header .header-nav #_desktop_contact_link .contact-info-email,#header .header-nav #_desktop_contact_link .contact-info-open-hours{float:left;margin-right:25px}#header .header-nav #_desktop_contact_link .contact-info-phone a{color:#f57e20}#header .header-nav #_desktop_contact_link .contact-info-phone a:hover{color:#2fb5d2}#header .header-nav #_desktop_contact_link i{margin-right:4px}#header .header-nav #_desktop_contact_link #contact-link{margin-top:.9375rem}.html-block-content{margin-bottom:40px}.block-categories li[data-depth="0"]{position:relative;border-bottom:1px solid #c4c4c4}.block-categories .category-sub-menu li[data-depth="0"]>a{padding-top:13px;padding-bottom:13px;position:relative;z-index:30;width:auto !important;display:inline-block;border-bottom:none}.block-categories .navbar-toggler{width:100%;height:4em;padding:0;padding0-top:13px;padding-bottom:0px;margin-top:-11px;font-size:.9375rem;line-height:1;background:rgba(0,0,0,0) no-repeat 50%;background-size:auto;background-size:24px 24px;border:1px solid rgba(0,0,0,0);border-radius:0;position:absolute;z-index:29}.block-categories .navbar-toggler i{float:right;margin-top:11px}#custom-text{text-align:center;background-color:#f9f9f9;margin-bottom:15px}.page-home #custom-text{display:none}#custom-text .custom-text-content{max-width:1600px;width:100%;margin-left:auto;margin-right:auto;color:#666;display:table;padding-top:20px;padding-bottom:20px}#custom-text .circle{border-radius:50%;behavior:url(PIE.htc);width:50px;height:50px;border:2px solid #13448f;display:block;margin-left:auto;margin-right:auto;background-repeat:no-repeat;background-position:center center}#custom-text .circle-1{background-image:url(../img/co-nas-wyroznia-ik-1.png);background-size:35% 35%}#custom-text .circle-2{background-image:url(../img/co-nas-wyroznia-ik-2.png);background-size:35% 35%}#custom-text .circle-3{background-image:url(../img/co-nas-wyroznia-ik-3.png);background-size:35% 35%}#custom-text .circle-4{background-image:url(../img/co-nas-wyroznia-ik-4.png);background-size:35% 35%}#custom-text h2{text-transform:uppercase;font-size:1.2rem;font-weight:700;color:#fff}#custom-text .custom-text-content H3{text-transform:uppercase;font-size:1rem;font-weight:700;margin-top:7px;margin-bottom:0px;color:#13448f}#custom-text p{font-weight:400;font-size:.8em;margin:0px;color:#666}#custom-text p .dark{color:#7a7a7a;font-weight:400}@media(max-width: 1599.9px){#custom-text .custom-text-content{padding-top:50px;padding-bottom:50px}#custom-text .circle{width:163px;height:163px;background-size:45%}#custom-text .custom-text-content H3{margin-top:10px;margin-bottom:5px}}@media(max-width: 1199.9px){#custom-text .custom-text-content{padding-top:35px;padding-bottom:35px}#custom-text .circle{width:123px;height:123px;background-size:40%}#custom-text .custom-text-content H3{margin-top:10px;margin-bottom:5px;font-size:21px}}@media(max-width: 576.9px){#custom-text .custom-text-content{padding-top:10px;padding-bottom:10px}#slider #custom-text{display:none}.page-home #custom-text{display:flex}#custom-text .circle-column p{height:50px}#custom-text .circle{width:70px;height:70px;background-size:30%}#custom-text .custom-text-content H3{margin-top:10px;margin-bottom:5px;font-size:18px}}.rev_slider_wrapper{float:left;margin-bottom:15px !important}#rev_slider_1_1_wrapper{max-width:767px;width:100%;margin-right:17px !important}#rev_slider_2_2_wrapper{max-width:378px;width:100%}.blog.blocks.displayHome .post-item{background-color:#fafafa;padding:0px;border:none}.blog.blocks.displayHome .post-item .post-item-cover img{max-width:100%;width:100%}.blog.blocks.displayHome .post-item .post-item-cover{margin-bottom:15px}.blog.blocks.displayHome .post-item .post-item-title{padding:15px;padding-bottom:0px}.blog.blocks.displayHome .post-item .post-item-title H3{margin-bottom:8px}.blog.blocks.displayHome .post-item .post-item-title a{font-size:20px;line-height:20px;color:#000;font-weight:400}.blog.blocks.displayHome .post-item .post-item-content{padding:15px}.blog.blocks.displayHome .post-item .item-readmore.pull-right{font-size:13px;font-weight:400;color:#797979;border:solid 2px #797979;padding:3px;padding-left:10px;padding-right:10px;border-radius:3px;margin-right:15px;margin-bottom:15px}.blog.blocks.displayHome .post-item .item-readmore.pull-right:hover{color:#fff;border:solid 2px #112c50;background-color:#112c50}#products .products-section-title,.featured-products .products-section-title,.product-accessories .products-section-title,.product-miniature .products-section-title{text-align:left;margin-bottom:2rem;padding-bottom:1.5rem;font-family:"Open Sans",sans-serif;font-size:2rem;font-weight:800;text-transform:uppercase;line-height:2rem;color:#000;border-bottom:solid 1px #ccc}.product-miniature{margin-left:0px !important;margin-right:0px !important}#products .thumbnail-container,.featured-products .thumbnail-container,.product-accessories .thumbnail-container,.product-miniature .thumbnail-container{width:auto !important;margin-top:15px;margin-bottom:0 !important}#products .thumbnail-container:hover,.featured-products .thumbnail-container:hover,.product-accessories .thumbnail-container:hover,.product-miniature .thumbnail-container:hover{box-shadow:none;background-color:#fbfbfb}.thumbnail.product-thumbnail{overflow:hidden;height:300px}@media(max-width: 767px){.thumbnail.product-thumbnail{height:222px}}.thumbnail.product-thumbnail img{height:100% !important;width:100% !important;-o-object-fit:contain;object-fit:contain}#products .thumbnail-container img,.featured-products .thumbnail-container img,.product-accessories .thumbnail-container img,.product-miniature .thumbnail-container img{position:relative;width:100% !important;height:auto;transition:all .8s ease;margin:0px}#products .product-description,.featured-products .product-description,.product-accessories .product-description,.product-miniature .product-description{width:auto !important;padding:10px;position:absolute;bottom:0;display:flex;align-items:flex-end;flex-wrap:wrap}@media(max-width: 767px){#products .product-description,.featured-products .product-description,.product-accessories .product-description,.product-miniature .product-description{height:auto !important}}#products .product-description .product-buttons,.featured-products .product-description .product-buttons,.product-accessories .product-description .product-buttons,.product-miniature .product-description .product-buttons{width:100%}#products .product-title,.featured-products .product-title,.product-accessories .product-title,.product-miniature .product-title{width:100%}#products .product-title h3,.featured-products .product-title h3,.product-accessories .product-title h3,.product-miniature .product-title h3{margin-bottom:0}#products .product-title H3 a,.featured-products .product-title H3 a,.product-accessories .product-title H3 a,.product-miniature .product-title H3 a{color:#000;font-size:14px;line-height:22px;text-decoration:none;text-align:left;font-weight:500;margin-top:5px;text-transform:none}@media(max-width: 767px){#products .product-title H3 a,.featured-products .product-title H3 a,.product-accessories .product-title H3 a,.product-miniature .product-title H3 a{font-size:13px}}#products .highlighted-informations,.featured-products .highlighted-informations,.product-accessories .highlighted-informations,.product-miniature .highlighted-informations{position:absolute;bottom:0px;padding-top:.625rem;z-index:300;background:#fff;text-align:center;width:100% !important;height:3.125rem;transition:bottom .3s;opacity:0}#products .product-buttons a.product-show-more-link,featured-products .product-buttons a.product-show-more-link,.product-accessories .product-buttons a.product-show-more-link,.product-miniature .product-buttons a.product-show-more-link{font-size:.85rem;font-weight:400;color:#fff;background-color:#112c50;padding:4px;height:16px;border-radius:2px;display:inline;margin-top:2px}#products .product-buttons a.product-show-more-link:hover,featured-products .product-buttons a.product-show-more-link:hover,.product-accessories .product-buttons a.product-show-more-link:hover,.product-miniature .product-buttons a.product-show-more-link:hover{background-color:#218fff;font-size:.85rem;border:none;padding:4px;height:16px}#products .product-buttons .add-to-cart-button,.featured-products .product-buttons .add-to-cart-button,.product-accessories .product-buttons .add-to-cart-button,.product-miniature .product-buttons .add-to-cart-button{color:#fff;border:solid 2px #218fff;background-color:#218fff;border-radius:2px;display:inline;margin-top:-2px;padding-bottom:4px;height:23px}#products .product-buttons .add-to-cart-button i,.featured-products .product-buttons .add-to-cart-button i,.product-accessories .product-buttons .add-to-cart-button i,.product-miniature .product-buttons .add-to-cart-button i{font-size:.85rem;color:#fff;margin-top:-15px}#products .product-miniature .discount-amount,#products .product-miniature .discount-percentage,#products .product-miniature .on-sale,#products .product-miniature .online-only,#products .product-miniature .pack,#products .product-miniature .product-flags .new,.featured-products .product-miniature .discount-amount,.featured-products .product-miniature .discount-percentage,.featured-products .product-miniature .on-sale,.featured-products .product-miniature .online-only,.featured-products .product-miniature .pack,.featured-products .product-miniature .product-flags .new,.product-accessories .product-miniature .discount-amount,.product-accessories .product-miniature .discount-percentage,.product-accessories .product-miniature .on-sale,.product-accessories .product-miniature .online-only,.product-accessories .product-miniature .pack,.product-accessories .product-miniature .product-flags .new,.product-miniature .product-miniature .discount-amount,.product-miniature .product-miniature .discount-percentage,.product-miniature .product-miniature .on-sale,.product-miniature .product-miniature .online-only,.product-miniature .product-miniature .pack,.product-miniature .product-miniature .product-flags .new{display:block;position:absolute;left:4px;padding:1px;padding-left:4px;padding-right:4px;color:#333;background:#f3f3f3;min-width:2rem;min-height:1rem;font-size:.8rem;font-weight:500}section.sposoby-dostawy .row{padding-bottom:15px}section.sposoby-dostawy .row.delivery-option{padding-bottom:0px}section.sposoby-dostawy .row .col-md-2.col-xs-12{text-align:center}section.sposoby-dostawy .row .col-md-2.col-xs-12 img{max-width:70px;margin-left:auto;margin-right:auto}section.sposoby-dostawy .h6.carrier-name{font-weight:600}section.sposoby-dostawy .carrier-delay{font-size:1rem;font-weight:300}section.sposoby-dostawy .carrier-price{font-weight:700}@media(max-width: 479.9px){#search_filters_brands{display:none}}.brands-slider{margin-top:30px}.brands-slider .nbs-flexisel-item{padding-left:15px;padding-right:15px}.brands-slider .nbs-flexisel-item a img{max-width:60%;width:100%;margoin-left:auto;margin-right:auto}@media(max-width: 479.9px){#onepagecheckoutps #customer_container .rowp{display:flex}#onepagecheckoutps #customer_container .row,#onepagecheckoutps #customer_container .row .form-group.col-xs-6.col-6.required{max-width:110%;width:100%;padding-right:0px}#onepagecheckoutps .required::after{display:none !important}#onepagecheckoutps #onepagecheckoutps_step_two_container .delivery_option_delay{display:none}div#onepagecheckoutps div#onepagecheckoutps_step_two #shipping_container .delivery_option_logo img{max-width:50px}}#back-to-top{position:fixed;bottom:60px;right:100px;z-index:99999;width:42px;height:42px;text-align:center;line-height:42px;background-color:#141414;color:#fff;cursor:pointer;border:0;border-radius:2px;text-decoration:none;opacity:0}#back-to-top:hover{background-color:#ff4800}#back-to-top.show{opacity:1}.product-quantity{align-items:center}.product-quantity .certyfikat{margin-left:15px}.sollux-custom-box{margin-bottom:30px}.sollux-custom-box img{width:100%;max-width:-moz-fit-content;max-width:fit-content}body#checkout main #main form .form-group.required::after{display:none}.product-add-to-card-button{display:flex !important;flex-direction:row;align-items:center;padding:5px 10px 6px !important;height:auto !important;-moz-column-gap:7px;column-gap:7px;margin:0 auto}.product-add-to-card-button i.material-icons{margin:0 !important}.product-add-to-card-button span{font-size:12px;font-weight:400;color:#fff;border-radius:2px;line-height:1}article.product-miniature .product-description>a{width:100%}article.product-miniature .discount-amount.discount-amount,article.product-miniature .on-sale.on-sale,article.product-miniature .discount-percentage.discount-percentage{background:#f14848 !important;color:#fff;left:0}#products .product-buttons .add-to-cart-button,.featured-products .product-buttons .add-to-cart-button,.product-accessories .product-buttons .add-to-cart-button,.product-miniature .product-buttons .add-to-cart-button{color:#fff;border:solid 2px #218fff;background-color:#218fff;border-radius:2px;display:inline;margin-top:-2px;padding:4px;display:flex;text-align:center;margin:0 auto;align-items:center;justify-items:center}#products .product-buttons .add-to-cart-button:hover,.featured-products .product-buttons .add-to-cart-button:hover,.product-accessories .product-buttons .add-to-cart-button:hover,.product-miniature .product-buttons .add-to-cart-button:hover{color:#fff;border:solid 2px #112c50;background-color:#112c50;border-radius:2px;display:inline;margin-top:-2px;padding-bottom:4px}#products .product-buttons .add-to-cart-button i,.featured-products .product-buttons .add-to-cart-button i,.product-accessories .product-buttons .add-to-cart-button i,.product-miniature .product-buttons .add-to-cart-button i{font-size:.85rem;color:#fff;margin-top:1px}.product-miniature .product-buttons .product-add-to-card-button{font-size:12px}.product-miniature .product-buttons .product-add-to-card-button i{margin-top:-2px;margin-right:2px}#header .logo{max-width:115%;width:115%;margin-top:-8px;max-height:93px;-o-object-fit:cover;object-fit:cover}#header .header-nav .blockcart{background:#218fff;cursor:pointer}#header .header-nav .blockcart:hover{background:#112c50}#header .header-nav .blockcart.inactive .cart-products-count{color:#fff}#header .header-top>.container>.row{display:flex;align-items:center;flex-wrap:wrap}#_desktop_contact_link_temp{display:none}#nav-phone-numb{display:flex;flex-direction:row;align-items:center;margin-left:10px;-moz-column-gap:5px;column-gap:5px;height:50px}#nav-phone-numb i{font-size:21px}#nav-phone-numb a{color:#f57e20}@media(max-width: 767px){footer#footer .footer-container .block-contact .hidden-sm-down{display:block !important;padding:.625rem}footer#footer .footer-container .block-contact .hidden-md-up{display:none !important}}#history .table-labeled .label{color:#232323 !important}header#header .header-banner .html-block-content{margin:0;text-align:center;background-color:#ef4141;min-height:26px;display:flex;align-items:center;justify-content:center;padding:4px 0}header#header .header-banner .html-block-content p{color:#fff;margin:0;font-size:13px}@media(max-width: 575px){.header-top-box-1{width:100%}}@media(max-width: 767px){.block_newsletter .block-newsletter-form{padding-left:10px}}.block_newsletter .block-newsletter-form .newsletter-form-fields{display:flex;flex-direction:row}@media(min-width: 767px){.bonslick-slider.slick-slider:hover button.slick-prev{opacity:1;left:10px}.bonslick-slider.slick-slider:hover button.slick-next{opacity:1;right:10px}}.bonslick-slider.slick-slider button{transition:all 250ms ease-in-out}.bonslick-slider.slick-slider button.slick-arrow{width:35px;height:35px;display:flex;align-items:center;justify-content:center;background:#fff;z-index:11;border-radius:100%;box-shadow:0 0 2px 1px rgba(0,0,0,.1)}.bonslick-slider.slick-slider button.slick-arrow::before{font-size:20px}@media(min-width: 767px){.bonslick-slider.slick-slider button.slick-prev{opacity:0;left:-10px}}@media(max-width: 767px){.bonslick-slider.slick-slider button.slick-prev{left:10px}}@media(min-width: 767px){.bonslick-slider.slick-slider button.slick-next{opacity:0;right:-10px}}@media(max-width: 767px){.bonslick-slider.slick-slider button.slick-next{right:10px}}body.high-contrast header#header{background:#000;height:auto;padding-bottom:0}body.high-contrast header#header .header-top{padding-top:10px}body.high-contrast header#header .header-top .top-menu a{color:#fff;text-decoration:underline}body.high-contrast header#header .header-top #search_widget input[type=text]{background:#f8e110;border:0;color:#000}body.high-contrast header#header .header-top #search_widget i{color:#000}body.high-contrast header#header .header-nav{background:#000;color:#fff}body.high-contrast header#header .header-nav #_desktop_cart .blockcart{background:#f8e110;color:#000}body.high-contrast header#header .header-nav #_desktop_cart .blockcart i,body.high-contrast header#header .header-nav #_desktop_cart .blockcart a,body.high-contrast header#header .header-nav #_desktop_cart .blockcart span{color:#000}body.high-contrast header#header .header-nav .material-icons{color:#fff}body.high-contrast header#header .header-nav a{color:#fff !important;font-weight:600;text-decoration:underline}body.high-contrast header#header .header-banner{border-bottom:1px solid #fff}body.high-contrast header#header .header-banner .html-block-content{background-color:#000}body.high-contrast section#wrapper{background:#000}/*# sourceMappingURL=custom.css.map */ \ No newline at end of file diff --git a/themes/InterBlue/assets/css/custom.css.map b/themes/InterBlue/assets/css/custom.css.map index b3135a32..ea64a178 100644 --- a/themes/InterBlue/assets/css/custom.css.map +++ b/themes/InterBlue/assets/css/custom.css.map @@ -1 +1 @@ -{"version":3,"sources":["custom.scss"],"names":[],"mappings":"AASA,0BAEC,cAAA,CACA,WAAA,CAID,eACC,gBAAA,CAID,SACC,qBAAA,CACA,gBAAA,CACA,mBAAA,CAUD,2CACC,oBAAA,CACA,eAAA,CAGD,kMAGC,UAAA,CACA,iBAAA,CAGD,iEACC,aAAA,CAGD,uEACC,aAAA,CAGD,6CACC,gBAAA,CAGD,yDACC,mBAAA,CAID,oBACC,kBAAA,CAID,qCACC,iBAAA,CACA,+BAAA,CAGD,0DACC,gBAAA,CACA,mBAAA,CACA,iBAAA,CACA,UAAA,CACA,qBAAA,CACA,oBAAA,CACA,kBAAA,CAGD,kCACC,UAAA,CACA,UAAA,CACA,SAAA,CACA,iBAAA,CACA,kBAAA,CACA,gBAAA,CACA,kBAAA,CACA,aAAA,CACA,sCAAA,CACA,oBAAA,CACA,yBAAA,CACA,8BAAA,CACA,eAAA,CACA,iBAAA,CACA,UAAA,CAGD,oCACC,WAAA,CACA,eAAA,CAID,aACC,iBAAA,CACA,wBAAA,CACA,kBAAA,CAGD,wBACC,YAAA,CAGD,kCACC,gBAAA,CACA,UAAA,CACA,gBAAA,CACA,iBAAA,CACA,UAAA,CACA,aAAA,CACA,gBAAA,CACA,mBAAA,CAGD,qBACC,iBAAA,CACA,qBAAA,CAEA,UAAA,CACA,WAAA,CACA,wBAAA,CACA,aAAA,CACA,gBAAA,CACA,iBAAA,CACA,2BAAA,CACA,iCAAA,CAGD,uBACC,qDAAA,CACA,uBAAA,CAGD,uBACC,qDAAA,CACA,uBAAA,CAGD,uBACC,qDAAA,CACA,uBAAA,CAGD,uBACC,qDAAA,CACA,uBAAA,CAGD,gBACC,wBAAA,CACA,gBAAA,CACA,eAAA,CACA,UAAA,CAGD,qCACC,wBAAA,CACA,cAAA,CACA,eAAA,CACA,cAAA,CACA,iBAAA,CACA,aAAA,CAGD,eACC,eAAA,CACA,cAAA,CACA,UAAA,CACA,UAAA,CAGD,qBACC,aAAA,CACA,eAAA,CAGD,4BACC,kCACC,gBAAA,CACA,mBAAA,CAGD,qBACC,WAAA,CACA,YAAA,CACA,mBAAA,CAGD,qCACC,eAAA,CACA,iBAAA,CAAA,CAIF,4BACC,kCACC,gBAAA,CACA,mBAAA,CAGD,qBACC,WAAA,CACA,YAAA,CACA,mBAAA,CAGD,qCACC,eAAA,CACA,iBAAA,CACA,cAAA,CAAA,CAIF,2BACC,kCACC,gBAAA,CACA,mBAAA,CAGD,qBACC,YAAA,CAGD,wBACC,YAAA,CAGD,8BACC,WAAA,CAGD,qBACC,UAAA,CACA,WAAA,CACA,mBAAA,CAGD,qCACC,eAAA,CACA,iBAAA,CACA,cAAA,CAAA,CAOF,oBACC,UAAA,CACA,6BAAA,CAGD,wBACC,eAAA,CACA,UAAA,CACA,4BAAA,CAGD,wBACC,eAAA,CACA,UAAA,CAID,oCACC,wBAAA,CACA,WAAA,CACA,WAAA,CAGD,yDACC,cAAA,CACA,UAAA,CAGD,qDACC,kBAAA,CAGD,qDACC,YAAA,CACA,kBAAA,CAGD,wDACC,iBAAA,CAGD,uDACC,cAAA,CACA,gBAAA,CACA,UAAA,CACA,eAAA,CAGD,uDACC,YAAA,CAGD,8DACC,cAAA,CACA,eAAA,CACA,aAAA,CACA,wBAAA,CACA,WAAA,CACA,iBAAA,CACA,kBAAA,CAGA,iBAAA,CACA,iBAAA,CACA,kBAAA,CAGD,oEACC,UAAA,CACA,wBAAA,CACA,wBAAA,CAKD,qKAIC,eAAA,CACA,kBAAA,CACA,qBAAA,CACA,kCAAA,CACA,cAAA,CACA,eAAA,CACA,wBAAA,CACA,gBAAA,CACA,UAAA,CACA,4BAAA,CAGD,mBACC,0BAAA,CACA,2BAAA,CAGD,yJAIC,qBAAA,CACA,eAAA,CACA,0BAAA,CAGD,iLAMC,eAAA,CACA,wBAAA,CAGD,6BACC,eAAA,CACA,YAAA,CAEA,yBAJD,6BAKE,YAAA,CAAA,CAGD,iCACC,sBAAA,CACA,qBAAA,CACA,qBAAA,CAAA,kBAAA,CAIF,yKAIC,iBAAA,CACA,qBAAA,CACA,WAAA,CACA,uBAAA,CACA,UAAA,CAGD,yJAIC,qBAAA,CACA,YAAA,CACA,iBAAA,CACA,QAAA,CACA,YAAA,CACA,oBAAA,CACA,cAAA,CAEA,yBAZD,yJAaE,sBAAA,CAAA,CAGD,6NACC,UAAA,CAIF,iIAIC,UAAA,CAEA,6IACC,eAAA,CAIF,qJAIC,UAAA,CACA,cAAA,CACA,gBAAA,CACA,oBAAA,CACA,eAAA,CACA,eAAA,CACA,cAAA,CACA,mBAAA,CAEA,yBAbD,qJAcE,cAAA,CAAA,CAIF,6KAIC,iBAAA,CACA,UAAA,CACA,mBAAA,CACA,WAAA,CACA,eAAA,CACA,iBAAA,CACA,qBAAA,CACA,eAAA,CACA,qBAAA,CACA,SAAA,CAGD,4OAIC,gBAAA,CACA,eAAA,CACA,UAAA,CACA,wBAAA,CACA,WAAA,CACA,WAAA,CAGA,iBAAA,CACA,cAAA,CACA,cAAA,CAGD,oQAIC,wBAleO,CAmeP,gBAAA,CACA,WAAA,CACA,WAAA,CACA,WAAA,CAGD,yNAIC,UAAA,CACA,wBAAA,CACA,wBA/eO,CAkfP,iBAAA,CACA,cAAA,CACA,eAAA,CACA,kBAAA,CACA,WAAA,CAGD,iOAIC,gBAAA,CACA,UAAA,CACA,gBAAA,CAID,8rCAwBC,aAAA,CACA,iBAAA,CACA,QAAA,CACA,WAAA,CACA,gBAAA,CACA,iBAAA,CACA,UAAA,CACA,kBAAA,CACA,cAAA,CACA,eAAA,CACA,eAAA,CACA,eAAA,CAMD,6BACC,mBAAA,CAGD,6CACC,kBAAA,CAGD,iDACC,iBAAA,CAGD,qDACC,cAAA,CACA,gBAAA,CACA,iBAAA,CAGD,yCACC,eAAA,CAGD,uCACC,cAAA,CACA,eAAA,CAGD,uCACC,eAAA,CAID,2BACC,uBACC,YAAA,CAAA,CAKF,eACC,eAAA,CAGD,kCACC,iBAAA,CACA,kBAAA,CAGD,wCACC,aAAA,CACA,UAAA,CACA,iBAAA,CACA,iBAAA,CAID,2BACC,6CACC,YAAA,CAGD,4HAKC,cAAA,CACA,UAAA,CACA,iBAAA,CAGD,oCACC,uBAAA,CAGD,gFAGC,YAAA,CAGD,mGAKC,cAAA,CAAA,CAKF,aACC,cAAA,CACA,WAAA,CACA,WAAA,CACA,aAAA,CACA,UAAA,CACA,WAAA,CACA,iBAAA,CACA,gBAAA,CACA,wBAAA,CACA,UAAA,CACA,cAAA,CACA,QAAA,CACA,iBAAA,CACA,oBAAA,CACA,SAAA,CAGD,mBACC,wBAAA,CAGD,kBACC,SAAA,CAGD,kBACC,kBAAA,CAEA,8BACC,gBAAA,CAIF,mBACC,kBAAA,CAEA,uBACC,UAAA,CACA,0BAAA,CAAA,qBAAA,CAWK,0DACC,YAAA,CAUR,4BACC,uBAAA,CACA,kBAAA,CACA,kBAAA,CACA,+BAAA,CACA,sBAAA,CACA,mBAAA,CAAA,cAAA,CACA,aAAA,CAEA,6CACC,mBAAA,CAGD,iCACC,cAAA,CACA,eAAA,CACA,UAAA,CACA,iBAAA,CACA,aAAA,CAMA,iDACC,UAAA,CAIF,yKAGC,6BAAA,CACA,UAAA,CACA,MAAA,CASA,yNACC,UAAA,CACA,wBAAA,CACA,wBAAA,CACA,iBAAA,CACA,cAAA,CACA,eAAA,CACA,WAAA,CACA,YAAA,CACA,iBAAA,CACA,aAAA,CACA,kBAAA,CACA,oBAAA,CAEA,iPACC,UAAA,CACA,wBAAA,CACA,wBAAA,CACA,iBAAA,CACA,cAAA,CACA,eAAA,CACA,kBAAA,CAGD,iOACC,gBAAA,CACA,UAAA,CACA,cAAA,CAQF,gEACC,cAAA,CAEA,kEACC,eAAA,CACA,gBAAA,CAMJ,cACC,cAAA,CACA,UAAA,CACA,eAAA,CACA,eAAA,CACA,mBAAA,CAAA,gBAAA,CAKC,+BACC,kBAAA,CACA,cAAA,CAEA,qCACC,kBAAA,CAIA,6DACC,UAAA,CAUF,oCACC,YAAA,CACA,kBAAA,CACA,cAAA,CAMJ,4BACC,YAAA,CAGD,gBACC,YAAA,CACA,kBAAA,CACA,kBAAA,CACA,gBAAA,CACA,mBAAA,CAAA,cAAA,CACA,WAAA,CAEA,kBACC,cAAA,CAGD,kBACC,aAAA,CAKD,yBAGG,+DACC,wBAAA,CACA,eAAA,CAMD,6DACC,uBAAA,CAAA,CASH,+BACC,wBAAA,CAOD,iDACC,QAAA,CACA,iBAAA,CACA,wBAAA,CACA,eAAA,CACA,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,aAAA,CAEA,mDACC,UAAA,CACA,QAAA,CACA,cAAA,CAOH,yBADD,kBAEE,UAAA,CAAA,CAMA,yBADD,yCAEE,iBAAA,CAAA,CAED,iEACC,YAAA,CACA,kBAAA,CAMF,yBAGG,sDACC,SAAA,CACA,SAAA,CAED,sDACC,SAAA,CACA,UAAA,CAAA,CAMJ,qCACC,gCAAA,CAEA,iDACC,UAAA,CACA,WAAA,CACA,YAAA,CACA,kBAAA,CACA,sBAAA,CACA,eAAA,CACA,UAAA,CACA,kBAAA,CACA,qCAAA,CAEA,yDACC,cAAA,CAID,yBADD,gDAEE,SAAA,CACA,UAAA,CAAA,CAED,yBALD,gDAME,SAAA,CAAA,CAID,yBADD,gDAEE,SAAA,CACA,WAAA,CAAA,CAED,yBALD,gDAME,UAAA,CAAA","file":"custom.css"} \ No newline at end of file +{"version":3,"sources":["custom.scss"],"names":[],"mappings":"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","file":"custom.css","sourcesContent":["// out: custom.css, compress: true, sourceMap: true\r\n/*\r\n * Custom code goes here.\r\n * A template should always ship with an empty custom.css\r\n */\r\n\r\n$cOrange: #ff7100;\r\n$cBlue: #218fff;\r\n\r\n.img-fluid,\r\n.img-thumbnail {\r\n max-width: 100%;\r\n height: auto;\r\n}\r\n\r\n/** Sekcje **********************************************/\r\nsection#slider {\r\n padding-top: 25px;\r\n}\r\n\r\n/** Wrapper sklepu ************************************************************************/\r\n#wrapper {\r\n background-color: #ffffff;\r\n padding-top: 25px;\r\n padding-bottom: 50px;\r\n}\r\n\r\n// @media (max-width: 479.9px) {\r\n// \t#wrapper {\r\n// \t\tpadding-top: 0px;\r\n// \t}\r\n// }\r\n\r\n/** Header sklepu - kontakt ***************************************************************/\r\n#header .header-nav #_desktop_contact_link {\r\n display: inline-block;\r\n font-weight: 500;\r\n}\r\n\r\n#header .header-nav #_desktop_contact_link .contact-info-phone,\r\n#header .header-nav #_desktop_contact_link .contact-info-email,\r\n#header .header-nav #_desktop_contact_link .contact-info-open-hours {\r\n float: left;\r\n margin-right: 25px;\r\n}\r\n\r\n#header .header-nav #_desktop_contact_link .contact-info-phone a {\r\n color: #f57e20;\r\n}\r\n\r\n#header .header-nav #_desktop_contact_link .contact-info-phone a:hover {\r\n color: #2fb5d2;\r\n}\r\n\r\n#header .header-nav #_desktop_contact_link i {\r\n margin-right: 4px;\r\n}\r\n\r\n#header .header-nav #_desktop_contact_link #contact-link {\r\n margin-top: 0.9375rem;\r\n}\r\n\r\n/** Blok html *******************************************/\r\n.html-block-content {\r\n margin-bottom: 40px;\r\n}\r\n\r\n/** Drzewko kategorii ***********************************/\r\n.block-categories li[data-depth='0'] {\r\n position: relative;\r\n border-bottom: 1px solid #c4c4c4;\r\n}\r\n\r\n.block-categories .category-sub-menu li[data-depth='0']>a {\r\n padding-top: 13px;\r\n padding-bottom: 13px;\r\n position: relative;\r\n z-index: 30;\r\n width: auto !important;\r\n display: inline-block;\r\n border-bottom: none;\r\n}\r\n\r\n.block-categories .navbar-toggler {\r\n width: 100%;\r\n height: 4em;\r\n padding: 0;\r\n padding0-top: 13px;\r\n padding-bottom: 0px;\r\n margin-top: -11px;\r\n font-size: 0.9375rem;\r\n line-height: 1;\r\n background: transparent no-repeat 50%;\r\n background-size: auto;\r\n background-size: 24px 24px;\r\n border: 1px solid transparent;\r\n border-radius: 0;\r\n position: absolute;\r\n z-index: 29;\r\n}\r\n\r\n.block-categories .navbar-toggler i {\r\n float: right;\r\n margin-top: 11px;\r\n}\r\n\r\n/** Wlasny blok tekstowy ****/\r\n#custom-text {\r\n text-align: center;\r\n background-color: #f9f9f9;\r\n margin-bottom: 15px;\r\n}\r\n\r\n.page-home #custom-text {\r\n display: none;\r\n}\r\n\r\n#custom-text .custom-text-content {\r\n max-width: 1600px;\r\n width: 100%;\r\n margin-left: auto;\r\n margin-right: auto;\r\n color: #666666;\r\n display: table;\r\n padding-top: 20px;\r\n padding-bottom: 20px;\r\n}\r\n\r\n#custom-text .circle {\r\n border-radius: 50%;\r\n behavior: url(PIE.htc);\r\n /* remove if you don't care about IE8 */\r\n width: 50px;\r\n height: 50px;\r\n border: 2px solid #13448f;\r\n display: block;\r\n margin-left: auto;\r\n margin-right: auto;\r\n background-repeat: no-repeat;\r\n background-position: center center;\r\n}\r\n\r\n#custom-text .circle-1 {\r\n background-image: url(../img/co-nas-wyroznia-ik-1.png);\r\n background-size: 35% 35%;\r\n}\r\n\r\n#custom-text .circle-2 {\r\n background-image: url(../img/co-nas-wyroznia-ik-2.png);\r\n background-size: 35% 35%;\r\n}\r\n\r\n#custom-text .circle-3 {\r\n background-image: url(../img/co-nas-wyroznia-ik-3.png);\r\n background-size: 35% 35%;\r\n}\r\n\r\n#custom-text .circle-4 {\r\n background-image: url(../img/co-nas-wyroznia-ik-4.png);\r\n background-size: 35% 35%;\r\n}\r\n\r\n#custom-text h2 {\r\n text-transform: uppercase;\r\n font-size: 1.2rem;\r\n font-weight: 700;\r\n color: #ffffff;\r\n}\r\n\r\n#custom-text .custom-text-content H3 {\r\n text-transform: uppercase;\r\n font-size: 1rem;\r\n font-weight: 700;\r\n margin-top: 7px;\r\n margin-bottom: 0px;\r\n color: #13448f;\r\n}\r\n\r\n#custom-text p {\r\n font-weight: 400;\r\n font-size: 0.8em;\r\n margin: 0px;\r\n color: #666666;\r\n}\r\n\r\n#custom-text p .dark {\r\n color: #7a7a7a;\r\n font-weight: 400;\r\n}\r\n\r\n@media (max-width: 1599.9px) {\r\n #custom-text .custom-text-content {\r\n padding-top: 50px;\r\n padding-bottom: 50px;\r\n }\r\n\r\n #custom-text .circle {\r\n width: 163px;\r\n height: 163px;\r\n background-size: 45%;\r\n }\r\n\r\n #custom-text .custom-text-content H3 {\r\n margin-top: 10px;\r\n margin-bottom: 5px;\r\n }\r\n}\r\n\r\n@media (max-width: 1199.9px) {\r\n #custom-text .custom-text-content {\r\n padding-top: 35px;\r\n padding-bottom: 35px;\r\n }\r\n\r\n #custom-text .circle {\r\n width: 123px;\r\n height: 123px;\r\n background-size: 40%;\r\n }\r\n\r\n #custom-text .custom-text-content H3 {\r\n margin-top: 10px;\r\n margin-bottom: 5px;\r\n font-size: 21px;\r\n }\r\n}\r\n\r\n@media (max-width: 576.9px) {\r\n #custom-text .custom-text-content {\r\n padding-top: 10px;\r\n padding-bottom: 10px;\r\n }\r\n\r\n #slider #custom-text {\r\n display: none;\r\n }\r\n\r\n .page-home #custom-text {\r\n display: flex;\r\n }\r\n\r\n #custom-text .circle-column p {\r\n height: 50px;\r\n }\r\n\r\n #custom-text .circle {\r\n width: 70px;\r\n height: 70px;\r\n background-size: 30%;\r\n }\r\n\r\n #custom-text .custom-text-content H3 {\r\n margin-top: 10px;\r\n margin-bottom: 5px;\r\n font-size: 18px;\r\n }\r\n}\r\n\r\n/**------------------------- STRONA GŁÓWNA ------------------------*/\r\n\r\n/** Revolution Slider **/\r\n.rev_slider_wrapper {\r\n float: left;\r\n margin-bottom: 15px !important;\r\n}\r\n\r\n#rev_slider_1_1_wrapper {\r\n max-width: 767px;\r\n width: 100%;\r\n margin-right: 17px !important;\r\n}\r\n\r\n#rev_slider_2_2_wrapper {\r\n max-width: 378px;\r\n width: 100%;\r\n}\r\n\r\n/** Blog **/\r\n.blog.blocks.displayHome .post-item {\r\n background-color: #fafafa;\r\n padding: 0px;\r\n border: none;\r\n}\r\n\r\n.blog.blocks.displayHome .post-item .post-item-cover img {\r\n max-width: 100%;\r\n width: 100%;\r\n}\r\n\r\n.blog.blocks.displayHome .post-item .post-item-cover {\r\n margin-bottom: 15px;\r\n}\r\n\r\n.blog.blocks.displayHome .post-item .post-item-title {\r\n padding: 15px;\r\n padding-bottom: 0px;\r\n}\r\n\r\n.blog.blocks.displayHome .post-item .post-item-title H3 {\r\n margin-bottom: 8px;\r\n}\r\n\r\n.blog.blocks.displayHome .post-item .post-item-title a {\r\n font-size: 20px;\r\n line-height: 20px;\r\n color: #000000;\r\n font-weight: 400;\r\n}\r\n\r\n.blog.blocks.displayHome .post-item .post-item-content {\r\n padding: 15px;\r\n}\r\n\r\n.blog.blocks.displayHome .post-item .item-readmore.pull-right {\r\n font-size: 13px;\r\n font-weight: 400;\r\n color: #797979;\r\n border: solid 2px #797979;\r\n padding: 3px;\r\n padding-left: 10px;\r\n padding-right: 10px;\r\n -webkit-border-radius: 3px;\r\n -moz-border-radius: 3px;\r\n border-radius: 3px;\r\n margin-right: 15px;\r\n margin-bottom: 15px;\r\n}\r\n\r\n.blog.blocks.displayHome .post-item .item-readmore.pull-right:hover {\r\n color: #ffffff;\r\n border: solid 2px #112c50;\r\n background-color: #112c50;\r\n}\r\n\r\n/** ----------------------- PRODUKTY ----------------------------------------------------**/\r\n/* Lista*/\r\n#products .products-section-title,\r\n.featured-products .products-section-title,\r\n.product-accessories .products-section-title,\r\n.product-miniature .products-section-title {\r\n text-align: left;\r\n margin-bottom: 2rem;\r\n padding-bottom: 1.5rem;\r\n font-family: 'Open Sans', sans-serif;\r\n font-size: 2rem;\r\n font-weight: 800;\r\n text-transform: uppercase;\r\n line-height: 2rem;\r\n color: #000;\r\n border-bottom: solid 1px #ccc;\r\n}\r\n\r\n.product-miniature {\r\n margin-left: 0px !important;\r\n margin-right: 0px !important;\r\n}\r\n\r\n#products .thumbnail-container,\r\n.featured-products .thumbnail-container,\r\n.product-accessories .thumbnail-container,\r\n.product-miniature .thumbnail-container {\r\n width: auto !important;\r\n margin-top: 15px;\r\n margin-bottom: 0 !important;\r\n}\r\n\r\n#products .thumbnail-container:hover,\r\n.featured-products .thumbnail-container:hover,\r\n.product-accessories .thumbnail-container:hover,\r\n.product-miniature .thumbnail-container:hover {\r\n -webkit-box-shadow: none;\r\n -moz-box-shadow: none;\r\n box-shadow: none;\r\n background-color: #fbfbfb;\r\n}\r\n\r\n.thumbnail.product-thumbnail {\r\n overflow: hidden;\r\n height: 300px;\r\n\r\n @media (max-width: 767px) {\r\n height: 222px;\r\n }\r\n\r\n img {\r\n height: 100% !important;\r\n width: 100% !important;\r\n object-fit: contain;\r\n }\r\n}\r\n\r\n#products .thumbnail-container img,\r\n.featured-products .thumbnail-container img,\r\n.product-accessories .thumbnail-container img,\r\n.product-miniature .thumbnail-container img {\r\n position: relative;\r\n width: 100% !important;\r\n height: auto;\r\n transition: all 0.8s ease;\r\n margin: 0px;\r\n}\r\n\r\n#products .product-description,\r\n.featured-products .product-description,\r\n.product-accessories .product-description,\r\n.product-miniature .product-description {\r\n width: auto !important;\r\n padding: 10px;\r\n position: absolute;\r\n bottom: 0;\r\n display: flex;\r\n align-items: flex-end;\r\n flex-wrap: wrap;\r\n\r\n @media (max-width: 767px) {\r\n height: auto !important;\r\n }\r\n\r\n .product-buttons {\r\n width: 100%;\r\n }\r\n}\r\n\r\n#products .product-title,\r\n.featured-products .product-title,\r\n.product-accessories .product-title,\r\n.product-miniature .product-title {\r\n width: 100%;\r\n\r\n h3 {\r\n margin-bottom: 0;\r\n }\r\n}\r\n\r\n#products .product-title H3 a,\r\n.featured-products .product-title H3 a,\r\n.product-accessories .product-title H3 a,\r\n.product-miniature .product-title H3 a {\r\n color: #000000;\r\n font-size: 14px;\r\n line-height: 22px;\r\n text-decoration: none;\r\n text-align: left;\r\n font-weight: 500;\r\n margin-top: 5px;\r\n text-transform: none;\r\n\r\n @media (max-width: 767px) {\r\n font-size: 13px;\r\n }\r\n}\r\n\r\n#products .highlighted-informations,\r\n.featured-products .highlighted-informations,\r\n.product-accessories .highlighted-informations,\r\n.product-miniature .highlighted-informations {\r\n position: absolute;\r\n bottom: 0px;\r\n padding-top: 0.625rem;\r\n z-index: 300;\r\n background: #fff;\r\n text-align: center;\r\n width: 100% !important;\r\n height: 3.125rem;\r\n transition: bottom 0.3s;\r\n opacity: 0;\r\n}\r\n\r\n#products .product-buttons a.product-show-more-link,\r\nfeatured-products .product-buttons a.product-show-more-link,\r\n.product-accessories .product-buttons a.product-show-more-link,\r\n.product-miniature .product-buttons a.product-show-more-link {\r\n font-size: 0.85rem;\r\n font-weight: 400;\r\n color: #ffffff;\r\n background-color: #112c50;\r\n padding: 4px;\r\n height: 16px;\r\n -webkit-border-radius: 2px;\r\n -moz-border-radius: 2px;\r\n border-radius: 2px;\r\n display: inline;\r\n margin-top: 2px;\r\n}\r\n\r\n#products .product-buttons a.product-show-more-link:hover,\r\nfeatured-products .product-buttons a.product-show-more-link:hover,\r\n.product-accessories .product-buttons a.product-show-more-link:hover,\r\n.product-miniature .product-buttons a.product-show-more-link:hover {\r\n background-color: $cBlue;\r\n font-size: 0.85rem;\r\n border: none;\r\n padding: 4px;\r\n height: 16px;\r\n}\r\n\r\n#products .product-buttons .add-to-cart-button,\r\n.featured-products .product-buttons .add-to-cart-button,\r\n.product-accessories .product-buttons .add-to-cart-button,\r\n.product-miniature .product-buttons .add-to-cart-button {\r\n color: #ffffff;\r\n border: solid 2px $cBlue;\r\n background-color: $cBlue;\r\n -webkit-border-radius: 2px;\r\n -moz-border-radius: 2px;\r\n border-radius: 2px;\r\n display: inline;\r\n margin-top: -2px;\r\n padding-bottom: 4px;\r\n height: 23px;\r\n}\r\n\r\n#products .product-buttons .add-to-cart-button i,\r\n.featured-products .product-buttons .add-to-cart-button i,\r\n.product-accessories .product-buttons .add-to-cart-button i,\r\n.product-miniature .product-buttons .add-to-cart-button i {\r\n font-size: 0.85rem;\r\n color: #ffffff;\r\n margin-top: -15px;\r\n}\r\n\r\n/* Flagi produktów */\r\n#products .product-miniature .discount-amount,\r\n#products .product-miniature .discount-percentage,\r\n#products .product-miniature .on-sale,\r\n#products .product-miniature .online-only,\r\n#products .product-miniature .pack,\r\n#products .product-miniature .product-flags .new,\r\n.featured-products .product-miniature .discount-amount,\r\n.featured-products .product-miniature .discount-percentage,\r\n.featured-products .product-miniature .on-sale,\r\n.featured-products .product-miniature .online-only,\r\n.featured-products .product-miniature .pack,\r\n.featured-products .product-miniature .product-flags .new,\r\n.product-accessories .product-miniature .discount-amount,\r\n.product-accessories .product-miniature .discount-percentage,\r\n.product-accessories .product-miniature .on-sale,\r\n.product-accessories .product-miniature .online-only,\r\n.product-accessories .product-miniature .pack,\r\n.product-accessories .product-miniature .product-flags .new,\r\n.product-miniature .product-miniature .discount-amount,\r\n.product-miniature .product-miniature .discount-percentage,\r\n.product-miniature .product-miniature .on-sale,\r\n.product-miniature .product-miniature .online-only,\r\n.product-miniature .product-miniature .pack,\r\n.product-miniature .product-miniature .product-flags .new {\r\n display: block;\r\n position: absolute;\r\n left: 4px;\r\n padding: 1px;\r\n padding-left: 4px;\r\n padding-right: 4px;\r\n color: #333;\r\n background: #f3f3f3;\r\n min-width: 2rem;\r\n min-height: 1rem;\r\n font-size: 0.8rem;\r\n font-weight: 500;\r\n}\r\n\r\n/** Strona z produktem ******************************************************************************/\r\n\r\n/** Przewoznicy **/\r\nsection.sposoby-dostawy .row {\r\n padding-bottom: 15px;\r\n}\r\n\r\nsection.sposoby-dostawy .row.delivery-option {\r\n padding-bottom: 0px;\r\n}\r\n\r\nsection.sposoby-dostawy .row .col-md-2.col-xs-12 {\r\n text-align: center;\r\n}\r\n\r\nsection.sposoby-dostawy .row .col-md-2.col-xs-12 img {\r\n max-width: 70px;\r\n margin-left: auto;\r\n margin-right: auto;\r\n}\r\n\r\nsection.sposoby-dostawy .h6.carrier-name {\r\n font-weight: 600;\r\n}\r\n\r\nsection.sposoby-dostawy .carrier-delay {\r\n font-size: 1rem;\r\n font-weight: 300;\r\n}\r\n\r\nsection.sposoby-dostawy .carrier-price {\r\n font-weight: 700;\r\n}\r\n\r\n/** Select wyboru producentów **************************/\r\n@media (max-width: 479.9px) {\r\n #search_filters_brands {\r\n display: none;\r\n }\r\n}\r\n\r\n/** Rotator logotypów marek *****************************/\r\n.brands-slider {\r\n margin-top: 30px;\r\n}\r\n\r\n.brands-slider .nbs-flexisel-item {\r\n padding-left: 15px;\r\n padding-right: 15px;\r\n}\r\n\r\n.brands-slider .nbs-flexisel-item a img {\r\n max-width: 60%;\r\n width: 100%;\r\n margoin-left: auto;\r\n margin-right: auto;\r\n}\r\n\r\n/** Składanie zamówienia *********************************/\r\n@media (max-width: 479.9px) {\r\n #onepagecheckoutps #customer_container .rowp {\r\n display: flex;\r\n }\r\n\r\n #onepagecheckoutps #customer_container .row,\r\n #onepagecheckoutps #customer_container .row .form-group.col-xs-6.col-6.required {\r\n max-width: 110%;\r\n width: 100%;\r\n padding-right: 0px;\r\n }\r\n\r\n #onepagecheckoutps .required::after {\r\n display: none !important;\r\n }\r\n\r\n #onepagecheckoutps #onepagecheckoutps_step_two_container .delivery_option_delay {\r\n display: none;\r\n }\r\n\r\n div#onepagecheckoutps div#onepagecheckoutps_step_two #shipping_container .delivery_option_logo img {\r\n max-width: 50px;\r\n }\r\n}\r\n\r\n/** Przycisk scrollowania do góry *******************************************/\r\n#back-to-top {\r\n position: fixed;\r\n bottom: 60px;\r\n right: 100px;\r\n z-index: 99999;\r\n width: 42px;\r\n height: 42px;\r\n text-align: center;\r\n line-height: 42px;\r\n background-color: #141414;\r\n color: #ffffff;\r\n cursor: pointer;\r\n border: 0;\r\n border-radius: 2px;\r\n text-decoration: none;\r\n opacity: 0;\r\n}\r\n\r\n#back-to-top:hover {\r\n background-color: #ff4800;\r\n}\r\n\r\n#back-to-top.show {\r\n opacity: 1;\r\n}\r\n\r\n.product-quantity {\r\n align-items: center;\r\n\r\n .certyfikat {\r\n margin-left: 15px;\r\n }\r\n}\r\n\r\n.sollux-custom-box {\r\n margin-bottom: 30px;\r\n\r\n img {\r\n width: 100%;\r\n max-width: fit-content;\r\n }\r\n}\r\n\r\nbody {\r\n checkout {\r\n main {\r\n #main {\r\n form {\r\n .form-group {\r\n &.required {\r\n &::after {\r\n display: none;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n.product-add-to-card-button {\r\n display: flex !important;\r\n flex-direction: row;\r\n align-items: center;\r\n padding: 5px 10px 6px !important;\r\n height: auto !important;\r\n column-gap: 7px;\r\n margin: 0 auto;\r\n\r\n i.material-icons {\r\n margin: 0 !important;\r\n }\r\n\r\n span {\r\n font-size: 12px;\r\n font-weight: 400;\r\n color: #fff;\r\n border-radius: 2px;\r\n line-height: 1;\r\n }\r\n}\r\n\r\narticle.product-miniature {\r\n .product-description {\r\n >a {\r\n width: 100%;\r\n }\r\n }\r\n\r\n .discount-amount.discount-amount,\r\n .on-sale.on-sale,\r\n .discount-percentage.discount-percentage {\r\n background: #f14848 !important;\r\n color: #fff;\r\n left: 0;\r\n }\r\n}\r\n\r\n#products,\r\n.featured-products,\r\n.product-accessories,\r\n.product-miniature {\r\n .product-buttons {\r\n .add-to-cart-button {\r\n color: #ffffff;\r\n border: solid 2px #218fff;\r\n background-color: #218fff;\r\n border-radius: 2px;\r\n display: inline;\r\n margin-top: -2px;\r\n padding: 4px;\r\n display: flex;\r\n text-align: center;\r\n margin: 0 auto;\r\n align-items: center;\r\n justify-items: center;\r\n\r\n &:hover {\r\n color: #ffffff;\r\n border: solid 2px #112c50;\r\n background-color: #112c50;\r\n border-radius: 2px;\r\n display: inline;\r\n margin-top: -2px;\r\n padding-bottom: 4px;\r\n }\r\n\r\n i {\r\n font-size: 0.85rem;\r\n color: #ffffff;\r\n margin-top: 1px;\r\n }\r\n }\r\n }\r\n}\r\n\r\n.product-miniature {\r\n .product-buttons {\r\n .product-add-to-card-button {\r\n font-size: 12px;\r\n\r\n i {\r\n margin-top: -2px;\r\n margin-right: 2px;\r\n }\r\n }\r\n }\r\n}\r\n\r\n#header .logo {\r\n max-width: 115%;\r\n width: 115%;\r\n margin-top: -8px;\r\n max-height: 93px;\r\n object-fit: cover;\r\n}\r\n\r\n#header {\r\n .header-nav {\r\n .blockcart {\r\n background: #218fff;\r\n cursor: pointer;\r\n\r\n &:hover {\r\n background: #112c50;\r\n }\r\n\r\n &.inactive {\r\n .cart-products-count {\r\n color: #fff;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n#header {\r\n .header-top {\r\n >.container {\r\n >.row {\r\n display: flex;\r\n align-items: center;\r\n flex-wrap: wrap;\r\n }\r\n }\r\n }\r\n}\r\n\r\n#_desktop_contact_link_temp {\r\n display: none;\r\n}\r\n\r\n#nav-phone-numb {\r\n display: flex;\r\n flex-direction: row;\r\n align-items: center;\r\n margin-left: 10px;\r\n column-gap: 5px;\r\n height: 50px;\r\n\r\n i {\r\n font-size: 21px;\r\n }\r\n\r\n a {\r\n color: #f57e20;\r\n }\r\n}\r\n\r\nfooter#footer {\r\n @media (max-width: 767px) {\r\n .footer-container {\r\n .block-contact {\r\n .hidden-sm-down {\r\n display: block !important;\r\n padding: 0.625rem;\r\n\r\n .block-contact-title {}\r\n }\r\n\r\n .hidden-md-up {\r\n display: none !important;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n#history {\r\n .table-labeled {\r\n .label {\r\n color: #232323 !important;\r\n }\r\n }\r\n}\r\n\r\nheader#header {\r\n .header-banner {\r\n .html-block-content {\r\n margin: 0;\r\n text-align: center;\r\n background-color: #ef4141;\r\n min-height: 26px;\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n padding: 4px 0;\r\n\r\n p {\r\n color: #fff;\r\n margin: 0;\r\n font-size: 13px;\r\n }\r\n }\r\n }\r\n}\r\n\r\n.header-top-box-1 {\r\n @media (max-width: 575px) {\r\n width: 100%;\r\n }\r\n}\r\n\r\n.block_newsletter {\r\n .block-newsletter-form {\r\n @media (max-width: 767px) {\r\n padding-left: 10px;\r\n }\r\n\r\n .newsletter-form-fields {\r\n display: flex;\r\n flex-direction: row;\r\n }\r\n }\r\n}\r\n\r\n.bonslick-slider.slick-slider {\r\n @media (min-width: 767px) {\r\n &:hover {\r\n button {\r\n &.slick-prev {\r\n opacity: 1;\r\n left: 10px;\r\n }\r\n\r\n &.slick-next {\r\n opacity: 1;\r\n right: 10px;\r\n }\r\n }\r\n }\r\n }\r\n\r\n button {\r\n transition: all 250ms ease-in-out;\r\n\r\n &.slick-arrow {\r\n width: 35px;\r\n height: 35px;\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n background: white;\r\n z-index: 11;\r\n border-radius: 100%;\r\n box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);\r\n\r\n &::before {\r\n font-size: 20px;\r\n }\r\n }\r\n\r\n &.slick-prev {\r\n @media (min-width: 767px) {\r\n opacity: 0;\r\n left: -10px;\r\n }\r\n\r\n @media (max-width: 767px) {\r\n left: 10px;\r\n }\r\n }\r\n\r\n &.slick-next {\r\n @media (min-width: 767px) {\r\n opacity: 0;\r\n right: -10px;\r\n }\r\n\r\n @media (max-width: 767px) {\r\n right: 10px;\r\n }\r\n }\r\n }\r\n}\r\n\r\n\r\n\r\n$cYellow: #f8e110;\r\n\r\n// high-contrast\r\nbody.high-contrast {\r\n\r\n header#header {\r\n background: #000;\r\n height: auto;\r\n padding-bottom: 0;\r\n\r\n .header-top {\r\n padding-top: 10px;\r\n\r\n .top-menu {\r\n a {\r\n color: #FFF;\r\n text-decoration: underline;\r\n }\r\n }\r\n\r\n #search_widget {\r\n input[type=\"text\"] {\r\n background: $cYellow;\r\n border: 0;\r\n color: #000;\r\n }\r\n\r\n i {\r\n color: #000;\r\n }\r\n }\r\n }\r\n\r\n .header-nav {\r\n background: #000;\r\n color: #FFF;\r\n\r\n #_desktop_cart {\r\n .blockcart {\r\n background: $cYellow;\r\n color: #000;\r\n\r\n i,\r\n a,\r\n span {\r\n color: #000;\r\n }\r\n }\r\n }\r\n\r\n .material-icons {\r\n color: #fff;\r\n }\r\n\r\n a {\r\n color: #fff !important;\r\n font-weight: 600;\r\n text-decoration: underline;\r\n }\r\n }\r\n\r\n .header-banner {\r\n border-bottom: 1px solid #FFF;\r\n\r\n .html-block-content {\r\n background-color: #000;\r\n }\r\n }\r\n }\r\n\r\n section#wrapper {\r\n background: #000;\r\n }\r\n}"]} \ No newline at end of file diff --git a/themes/InterBlue/assets/css/custom.scss b/themes/InterBlue/assets/css/custom.scss index 95b1e1db..3379ff09 100644 --- a/themes/InterBlue/assets/css/custom.scss +++ b/themes/InterBlue/assets/css/custom.scss @@ -9,20 +9,20 @@ $cBlue: #218fff; .img-fluid, .img-thumbnail { - max-width: 100%; - height: auto; + max-width: 100%; + height: auto; } /** Sekcje **********************************************/ section#slider { - padding-top: 25px; + padding-top: 25px; } /** Wrapper sklepu ************************************************************************/ #wrapper { - background-color: #ffffff; - padding-top: 25px; - padding-bottom: 50px; + background-color: #ffffff; + padding-top: 25px; + padding-bottom: 50px; } // @media (max-width: 479.9px) { @@ -33,303 +33,303 @@ section#slider { /** Header sklepu - kontakt ***************************************************************/ #header .header-nav #_desktop_contact_link { - display: inline-block; - font-weight: 500; + display: inline-block; + font-weight: 500; } #header .header-nav #_desktop_contact_link .contact-info-phone, #header .header-nav #_desktop_contact_link .contact-info-email, #header .header-nav #_desktop_contact_link .contact-info-open-hours { - float: left; - margin-right: 25px; + float: left; + margin-right: 25px; } #header .header-nav #_desktop_contact_link .contact-info-phone a { - color: #f57e20; + color: #f57e20; } #header .header-nav #_desktop_contact_link .contact-info-phone a:hover { - color: #2fb5d2; + color: #2fb5d2; } #header .header-nav #_desktop_contact_link i { - margin-right: 4px; + margin-right: 4px; } #header .header-nav #_desktop_contact_link #contact-link { - margin-top: 0.9375rem; + margin-top: 0.9375rem; } /** Blok html *******************************************/ .html-block-content { - margin-bottom: 40px; + margin-bottom: 40px; } /** Drzewko kategorii ***********************************/ .block-categories li[data-depth='0'] { - position: relative; - border-bottom: 1px solid #c4c4c4; + position: relative; + border-bottom: 1px solid #c4c4c4; } -.block-categories .category-sub-menu li[data-depth='0'] > a { - padding-top: 13px; - padding-bottom: 13px; - position: relative; - z-index: 30; - width: auto !important; - display: inline-block; - border-bottom: none; +.block-categories .category-sub-menu li[data-depth='0']>a { + padding-top: 13px; + padding-bottom: 13px; + position: relative; + z-index: 30; + width: auto !important; + display: inline-block; + border-bottom: none; } .block-categories .navbar-toggler { - width: 100%; - height: 4em; - padding: 0; - padding0-top: 13px; - padding-bottom: 0px; - margin-top: -11px; - font-size: 0.9375rem; - line-height: 1; - background: transparent no-repeat 50%; - background-size: auto; - background-size: 24px 24px; - border: 1px solid transparent; - border-radius: 0; - position: absolute; - z-index: 29; + width: 100%; + height: 4em; + padding: 0; + padding0-top: 13px; + padding-bottom: 0px; + margin-top: -11px; + font-size: 0.9375rem; + line-height: 1; + background: transparent no-repeat 50%; + background-size: auto; + background-size: 24px 24px; + border: 1px solid transparent; + border-radius: 0; + position: absolute; + z-index: 29; } .block-categories .navbar-toggler i { - float: right; - margin-top: 11px; + float: right; + margin-top: 11px; } /** Wlasny blok tekstowy ****/ #custom-text { - text-align: center; - background-color: #f9f9f9; - margin-bottom: 15px; + text-align: center; + background-color: #f9f9f9; + margin-bottom: 15px; } .page-home #custom-text { - display: none; + display: none; } #custom-text .custom-text-content { - max-width: 1600px; - width: 100%; - margin-left: auto; - margin-right: auto; - color: #666666; - display: table; - padding-top: 20px; - padding-bottom: 20px; + max-width: 1600px; + width: 100%; + margin-left: auto; + margin-right: auto; + color: #666666; + display: table; + padding-top: 20px; + padding-bottom: 20px; } #custom-text .circle { - border-radius: 50%; - behavior: url(PIE.htc); - /* remove if you don't care about IE8 */ - width: 50px; - height: 50px; - border: 2px solid #13448f; - display: block; - margin-left: auto; - margin-right: auto; - background-repeat: no-repeat; - background-position: center center; + border-radius: 50%; + behavior: url(PIE.htc); + /* remove if you don't care about IE8 */ + width: 50px; + height: 50px; + border: 2px solid #13448f; + display: block; + margin-left: auto; + margin-right: auto; + background-repeat: no-repeat; + background-position: center center; } #custom-text .circle-1 { - background-image: url(../img/co-nas-wyroznia-ik-1.png); - background-size: 35% 35%; + background-image: url(../img/co-nas-wyroznia-ik-1.png); + background-size: 35% 35%; } #custom-text .circle-2 { - background-image: url(../img/co-nas-wyroznia-ik-2.png); - background-size: 35% 35%; + background-image: url(../img/co-nas-wyroznia-ik-2.png); + background-size: 35% 35%; } #custom-text .circle-3 { - background-image: url(../img/co-nas-wyroznia-ik-3.png); - background-size: 35% 35%; + background-image: url(../img/co-nas-wyroznia-ik-3.png); + background-size: 35% 35%; } #custom-text .circle-4 { - background-image: url(../img/co-nas-wyroznia-ik-4.png); - background-size: 35% 35%; + background-image: url(../img/co-nas-wyroznia-ik-4.png); + background-size: 35% 35%; } #custom-text h2 { - text-transform: uppercase; - font-size: 1.2rem; - font-weight: 700; - color: #ffffff; + text-transform: uppercase; + font-size: 1.2rem; + font-weight: 700; + color: #ffffff; } #custom-text .custom-text-content H3 { - text-transform: uppercase; - font-size: 1rem; - font-weight: 700; - margin-top: 7px; - margin-bottom: 0px; - color: #13448f; + text-transform: uppercase; + font-size: 1rem; + font-weight: 700; + margin-top: 7px; + margin-bottom: 0px; + color: #13448f; } #custom-text p { - font-weight: 400; - font-size: 0.8em; - margin: 0px; - color: #666666; + font-weight: 400; + font-size: 0.8em; + margin: 0px; + color: #666666; } #custom-text p .dark { - color: #7a7a7a; - font-weight: 400; + color: #7a7a7a; + font-weight: 400; } @media (max-width: 1599.9px) { - #custom-text .custom-text-content { - padding-top: 50px; - padding-bottom: 50px; - } + #custom-text .custom-text-content { + padding-top: 50px; + padding-bottom: 50px; + } - #custom-text .circle { - width: 163px; - height: 163px; - background-size: 45%; - } + #custom-text .circle { + width: 163px; + height: 163px; + background-size: 45%; + } - #custom-text .custom-text-content H3 { - margin-top: 10px; - margin-bottom: 5px; - } + #custom-text .custom-text-content H3 { + margin-top: 10px; + margin-bottom: 5px; + } } @media (max-width: 1199.9px) { - #custom-text .custom-text-content { - padding-top: 35px; - padding-bottom: 35px; - } + #custom-text .custom-text-content { + padding-top: 35px; + padding-bottom: 35px; + } - #custom-text .circle { - width: 123px; - height: 123px; - background-size: 40%; - } + #custom-text .circle { + width: 123px; + height: 123px; + background-size: 40%; + } - #custom-text .custom-text-content H3 { - margin-top: 10px; - margin-bottom: 5px; - font-size: 21px; - } + #custom-text .custom-text-content H3 { + margin-top: 10px; + margin-bottom: 5px; + font-size: 21px; + } } @media (max-width: 576.9px) { - #custom-text .custom-text-content { - padding-top: 10px; - padding-bottom: 10px; - } + #custom-text .custom-text-content { + padding-top: 10px; + padding-bottom: 10px; + } - #slider #custom-text { - display: none; - } + #slider #custom-text { + display: none; + } - .page-home #custom-text { - display: flex; - } + .page-home #custom-text { + display: flex; + } - #custom-text .circle-column p { - height: 50px; - } + #custom-text .circle-column p { + height: 50px; + } - #custom-text .circle { - width: 70px; - height: 70px; - background-size: 30%; - } + #custom-text .circle { + width: 70px; + height: 70px; + background-size: 30%; + } - #custom-text .custom-text-content H3 { - margin-top: 10px; - margin-bottom: 5px; - font-size: 18px; - } + #custom-text .custom-text-content H3 { + margin-top: 10px; + margin-bottom: 5px; + font-size: 18px; + } } /**------------------------- STRONA GŁÓWNA ------------------------*/ /** Revolution Slider **/ .rev_slider_wrapper { - float: left; - margin-bottom: 15px !important; + float: left; + margin-bottom: 15px !important; } #rev_slider_1_1_wrapper { - max-width: 767px; - width: 100%; - margin-right: 17px !important; + max-width: 767px; + width: 100%; + margin-right: 17px !important; } #rev_slider_2_2_wrapper { - max-width: 378px; - width: 100%; + max-width: 378px; + width: 100%; } /** Blog **/ .blog.blocks.displayHome .post-item { - background-color: #fafafa; - padding: 0px; - border: none; + background-color: #fafafa; + padding: 0px; + border: none; } .blog.blocks.displayHome .post-item .post-item-cover img { - max-width: 100%; - width: 100%; + max-width: 100%; + width: 100%; } .blog.blocks.displayHome .post-item .post-item-cover { - margin-bottom: 15px; + margin-bottom: 15px; } .blog.blocks.displayHome .post-item .post-item-title { - padding: 15px; - padding-bottom: 0px; + padding: 15px; + padding-bottom: 0px; } .blog.blocks.displayHome .post-item .post-item-title H3 { - margin-bottom: 8px; + margin-bottom: 8px; } .blog.blocks.displayHome .post-item .post-item-title a { - font-size: 20px; - line-height: 20px; - color: #000000; - font-weight: 400; + font-size: 20px; + line-height: 20px; + color: #000000; + font-weight: 400; } .blog.blocks.displayHome .post-item .post-item-content { - padding: 15px; + padding: 15px; } .blog.blocks.displayHome .post-item .item-readmore.pull-right { - font-size: 13px; - font-weight: 400; - color: #797979; - border: solid 2px #797979; - padding: 3px; - padding-left: 10px; - padding-right: 10px; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; - margin-right: 15px; - margin-bottom: 15px; + font-size: 13px; + font-weight: 400; + color: #797979; + border: solid 2px #797979; + padding: 3px; + padding-left: 10px; + padding-right: 10px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + margin-right: 15px; + margin-bottom: 15px; } .blog.blocks.displayHome .post-item .item-readmore.pull-right:hover { - color: #ffffff; - border: solid 2px #112c50; - background-color: #112c50; + color: #ffffff; + border: solid 2px #112c50; + background-color: #112c50; } /** ----------------------- PRODUKTY ----------------------------------------------------**/ @@ -338,185 +338,185 @@ section#slider { .featured-products .products-section-title, .product-accessories .products-section-title, .product-miniature .products-section-title { - text-align: left; - margin-bottom: 2rem; - padding-bottom: 1.5rem; - font-family: 'Open Sans', sans-serif; - font-size: 2rem; - font-weight: 800; - text-transform: uppercase; - line-height: 2rem; - color: #000; - border-bottom: solid 1px #ccc; + text-align: left; + margin-bottom: 2rem; + padding-bottom: 1.5rem; + font-family: 'Open Sans', sans-serif; + font-size: 2rem; + font-weight: 800; + text-transform: uppercase; + line-height: 2rem; + color: #000; + border-bottom: solid 1px #ccc; } .product-miniature { - margin-left: 0px !important; - margin-right: 0px !important; + margin-left: 0px !important; + margin-right: 0px !important; } #products .thumbnail-container, .featured-products .thumbnail-container, .product-accessories .thumbnail-container, .product-miniature .thumbnail-container { - width: auto !important; - margin-top: 15px; - margin-bottom: 0 !important; + width: auto !important; + margin-top: 15px; + margin-bottom: 0 !important; } #products .thumbnail-container:hover, .featured-products .thumbnail-container:hover, .product-accessories .thumbnail-container:hover, .product-miniature .thumbnail-container:hover { - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; - background-color: #fbfbfb; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; + background-color: #fbfbfb; } .thumbnail.product-thumbnail { - overflow: hidden; - height: 300px; + overflow: hidden; + height: 300px; - @media (max-width: 767px) { - height: 222px; - } + @media (max-width: 767px) { + height: 222px; + } - img { - height: 100% !important; - width: 100% !important; - object-fit: contain; - } + img { + height: 100% !important; + width: 100% !important; + object-fit: contain; + } } #products .thumbnail-container img, .featured-products .thumbnail-container img, .product-accessories .thumbnail-container img, .product-miniature .thumbnail-container img { - position: relative; - width: 100% !important; - height: auto; - transition: all 0.8s ease; - margin: 0px; + position: relative; + width: 100% !important; + height: auto; + transition: all 0.8s ease; + margin: 0px; } #products .product-description, .featured-products .product-description, .product-accessories .product-description, .product-miniature .product-description { - width: auto !important; - padding: 10px; - position: absolute; - bottom: 0; - display: flex; - align-items: flex-end; - flex-wrap: wrap; + width: auto !important; + padding: 10px; + position: absolute; + bottom: 0; + display: flex; + align-items: flex-end; + flex-wrap: wrap; - @media (max-width: 767px) { - height: auto !important; - } + @media (max-width: 767px) { + height: auto !important; + } - .product-buttons { - width: 100%; - } + .product-buttons { + width: 100%; + } } #products .product-title, .featured-products .product-title, .product-accessories .product-title, .product-miniature .product-title { - width: 100%; + width: 100%; - h3 { - margin-bottom: 0; - } + h3 { + margin-bottom: 0; + } } #products .product-title H3 a, .featured-products .product-title H3 a, .product-accessories .product-title H3 a, .product-miniature .product-title H3 a { - color: #000000; - font-size: 14px; - line-height: 22px; - text-decoration: none; - text-align: left; - font-weight: 500; - margin-top: 5px; - text-transform: none; + color: #000000; + font-size: 14px; + line-height: 22px; + text-decoration: none; + text-align: left; + font-weight: 500; + margin-top: 5px; + text-transform: none; - @media (max-width: 767px) { - font-size: 13px; - } + @media (max-width: 767px) { + font-size: 13px; + } } #products .highlighted-informations, .featured-products .highlighted-informations, .product-accessories .highlighted-informations, .product-miniature .highlighted-informations { - position: absolute; - bottom: 0px; - padding-top: 0.625rem; - z-index: 300; - background: #fff; - text-align: center; - width: 100% !important; - height: 3.125rem; - transition: bottom 0.3s; - opacity: 0; + position: absolute; + bottom: 0px; + padding-top: 0.625rem; + z-index: 300; + background: #fff; + text-align: center; + width: 100% !important; + height: 3.125rem; + transition: bottom 0.3s; + opacity: 0; } #products .product-buttons a.product-show-more-link, featured-products .product-buttons a.product-show-more-link, .product-accessories .product-buttons a.product-show-more-link, .product-miniature .product-buttons a.product-show-more-link { - font-size: 0.85rem; - font-weight: 400; - color: #ffffff; - background-color: #112c50; - padding: 4px; - height: 16px; - -webkit-border-radius: 2px; - -moz-border-radius: 2px; - border-radius: 2px; - display: inline; - margin-top: 2px; + font-size: 0.85rem; + font-weight: 400; + color: #ffffff; + background-color: #112c50; + padding: 4px; + height: 16px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + display: inline; + margin-top: 2px; } #products .product-buttons a.product-show-more-link:hover, featured-products .product-buttons a.product-show-more-link:hover, .product-accessories .product-buttons a.product-show-more-link:hover, .product-miniature .product-buttons a.product-show-more-link:hover { - background-color: $cBlue; - font-size: 0.85rem; - border: none; - padding: 4px; - height: 16px; + background-color: $cBlue; + font-size: 0.85rem; + border: none; + padding: 4px; + height: 16px; } #products .product-buttons .add-to-cart-button, .featured-products .product-buttons .add-to-cart-button, .product-accessories .product-buttons .add-to-cart-button, .product-miniature .product-buttons .add-to-cart-button { - color: #ffffff; - border: solid 2px $cBlue; - background-color: $cBlue; - -webkit-border-radius: 2px; - -moz-border-radius: 2px; - border-radius: 2px; - display: inline; - margin-top: -2px; - padding-bottom: 4px; - height: 23px; + color: #ffffff; + border: solid 2px $cBlue; + background-color: $cBlue; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + display: inline; + margin-top: -2px; + padding-bottom: 4px; + height: 23px; } #products .product-buttons .add-to-cart-button i, .featured-products .product-buttons .add-to-cart-button i, .product-accessories .product-buttons .add-to-cart-button i, .product-miniature .product-buttons .add-to-cart-button i { - font-size: 0.85rem; - color: #ffffff; - margin-top: -15px; + font-size: 0.85rem; + color: #ffffff; + margin-top: -15px; } /* Flagi produktów */ @@ -544,442 +544,515 @@ featured-products .product-buttons a.product-show-more-link:hover, .product-miniature .product-miniature .online-only, .product-miniature .product-miniature .pack, .product-miniature .product-miniature .product-flags .new { - display: block; - position: absolute; - left: 4px; - padding: 1px; - padding-left: 4px; - padding-right: 4px; - color: #333; - background: #f3f3f3; - min-width: 2rem; - min-height: 1rem; - font-size: 0.8rem; - font-weight: 500; + display: block; + position: absolute; + left: 4px; + padding: 1px; + padding-left: 4px; + padding-right: 4px; + color: #333; + background: #f3f3f3; + min-width: 2rem; + min-height: 1rem; + font-size: 0.8rem; + font-weight: 500; } /** Strona z produktem ******************************************************************************/ /** Przewoznicy **/ section.sposoby-dostawy .row { - padding-bottom: 15px; + padding-bottom: 15px; } section.sposoby-dostawy .row.delivery-option { - padding-bottom: 0px; + padding-bottom: 0px; } section.sposoby-dostawy .row .col-md-2.col-xs-12 { - text-align: center; + text-align: center; } section.sposoby-dostawy .row .col-md-2.col-xs-12 img { - max-width: 70px; - margin-left: auto; - margin-right: auto; + max-width: 70px; + margin-left: auto; + margin-right: auto; } section.sposoby-dostawy .h6.carrier-name { - font-weight: 600; + font-weight: 600; } section.sposoby-dostawy .carrier-delay { - font-size: 1rem; - font-weight: 300; + font-size: 1rem; + font-weight: 300; } section.sposoby-dostawy .carrier-price { - font-weight: 700; + font-weight: 700; } /** Select wyboru producentów **************************/ @media (max-width: 479.9px) { - #search_filters_brands { - display: none; - } + #search_filters_brands { + display: none; + } } /** Rotator logotypów marek *****************************/ .brands-slider { - margin-top: 30px; + margin-top: 30px; } .brands-slider .nbs-flexisel-item { - padding-left: 15px; - padding-right: 15px; + padding-left: 15px; + padding-right: 15px; } .brands-slider .nbs-flexisel-item a img { - max-width: 60%; - width: 100%; - margoin-left: auto; - margin-right: auto; + max-width: 60%; + width: 100%; + margoin-left: auto; + margin-right: auto; } /** Składanie zamówienia *********************************/ @media (max-width: 479.9px) { - #onepagecheckoutps #customer_container .rowp { - display: flex; - } + #onepagecheckoutps #customer_container .rowp { + display: flex; + } - #onepagecheckoutps #customer_container .row, - #onepagecheckoutps - #customer_container - .row - .form-group.col-xs-6.col-6.required { - max-width: 110%; - width: 100%; - padding-right: 0px; - } + #onepagecheckoutps #customer_container .row, + #onepagecheckoutps #customer_container .row .form-group.col-xs-6.col-6.required { + max-width: 110%; + width: 100%; + padding-right: 0px; + } - #onepagecheckoutps .required::after { - display: none !important; - } + #onepagecheckoutps .required::after { + display: none !important; + } - #onepagecheckoutps - #onepagecheckoutps_step_two_container - .delivery_option_delay { - display: none; - } + #onepagecheckoutps #onepagecheckoutps_step_two_container .delivery_option_delay { + display: none; + } - div#onepagecheckoutps - div#onepagecheckoutps_step_two - #shipping_container - .delivery_option_logo - img { - max-width: 50px; - } + div#onepagecheckoutps div#onepagecheckoutps_step_two #shipping_container .delivery_option_logo img { + max-width: 50px; + } } /** Przycisk scrollowania do góry *******************************************/ #back-to-top { - position: fixed; - bottom: 60px; - right: 100px; - z-index: 99999; - width: 42px; - height: 42px; - text-align: center; - line-height: 42px; - background-color: #141414; - color: #ffffff; - cursor: pointer; - border: 0; - border-radius: 2px; - text-decoration: none; - opacity: 0; + position: fixed; + bottom: 60px; + right: 100px; + z-index: 99999; + width: 42px; + height: 42px; + text-align: center; + line-height: 42px; + background-color: #141414; + color: #ffffff; + cursor: pointer; + border: 0; + border-radius: 2px; + text-decoration: none; + opacity: 0; } #back-to-top:hover { - background-color: #ff4800; + background-color: #ff4800; } #back-to-top.show { - opacity: 1; + opacity: 1; } .product-quantity { - align-items: center; + align-items: center; - .certyfikat { - margin-left: 15px; - } + .certyfikat { + margin-left: 15px; + } } .sollux-custom-box { - margin-bottom: 30px; + margin-bottom: 30px; - img { - width: 100%; - max-width: fit-content; - } + img { + width: 100%; + max-width: fit-content; + } } body { - checkout { - main { - #main { - form { - .form-group { - &.required { - &::after { - display: none; - } - } - } - } - } - } - } + checkout { + main { + #main { + form { + .form-group { + &.required { + &::after { + display: none; + } + } + } + } + } + } + } } .product-add-to-card-button { - display: flex !important; - flex-direction: row; - align-items: center; - padding: 5px 10px 6px !important; - height: auto !important; - column-gap: 7px; - margin: 0 auto; + display: flex !important; + flex-direction: row; + align-items: center; + padding: 5px 10px 6px !important; + height: auto !important; + column-gap: 7px; + margin: 0 auto; - i.material-icons { - margin: 0 !important; - } + i.material-icons { + margin: 0 !important; + } - span { - font-size: 12px; - font-weight: 400; - color: #fff; - border-radius: 2px; - line-height: 1; - } + span { + font-size: 12px; + font-weight: 400; + color: #fff; + border-radius: 2px; + line-height: 1; + } } article.product-miniature { - .product-description { - > a { - width: 100%; - } - } + .product-description { + >a { + width: 100%; + } + } - .discount-amount.discount-amount, - .on-sale.on-sale, - .discount-percentage.discount-percentage { - background: #f14848 !important; - color: #fff; - left: 0; - } + .discount-amount.discount-amount, + .on-sale.on-sale, + .discount-percentage.discount-percentage { + background: #f14848 !important; + color: #fff; + left: 0; + } } #products, .featured-products, .product-accessories, .product-miniature { - .product-buttons { - .add-to-cart-button { - color: #ffffff; - border: solid 2px #218fff; - background-color: #218fff; - border-radius: 2px; - display: inline; - margin-top: -2px; - padding: 4px; - display: flex; - text-align: center; - margin: 0 auto; - align-items: center; - justify-items: center; + .product-buttons { + .add-to-cart-button { + color: #ffffff; + border: solid 2px #218fff; + background-color: #218fff; + border-radius: 2px; + display: inline; + margin-top: -2px; + padding: 4px; + display: flex; + text-align: center; + margin: 0 auto; + align-items: center; + justify-items: center; - &:hover { - color: #ffffff; - border: solid 2px #112c50; - background-color: #112c50; - border-radius: 2px; - display: inline; - margin-top: -2px; - padding-bottom: 4px; - } + &:hover { + color: #ffffff; + border: solid 2px #112c50; + background-color: #112c50; + border-radius: 2px; + display: inline; + margin-top: -2px; + padding-bottom: 4px; + } - i { - font-size: 0.85rem; - color: #ffffff; - margin-top: 1px; - } - } - } + i { + font-size: 0.85rem; + color: #ffffff; + margin-top: 1px; + } + } + } } .product-miniature { - .product-buttons { - .product-add-to-card-button { - font-size: 12px; + .product-buttons { + .product-add-to-card-button { + font-size: 12px; - i { - margin-top: -2px; - margin-right: 2px; - } - } - } + i { + margin-top: -2px; + margin-right: 2px; + } + } + } } #header .logo { - max-width: 115%; - width: 115%; - margin-top: -8px; - max-height: 93px; - object-fit: cover; + max-width: 115%; + width: 115%; + margin-top: -8px; + max-height: 93px; + object-fit: cover; } #header { - .header-nav { - .blockcart { - background: #218fff; - cursor: pointer; + .header-nav { + .blockcart { + background: #218fff; + cursor: pointer; - &:hover { - background: #112c50; - } + &:hover { + background: #112c50; + } - &.inactive { - .cart-products-count { - color: #fff; - } - } - } - } + &.inactive { + .cart-products-count { + color: #fff; + } + } + } + } } #header { - .header-top { - > .container { - > .row { - display: flex; - align-items: center; - flex-wrap: wrap; - } - } - } + .header-top { + >.container { + >.row { + display: flex; + align-items: center; + flex-wrap: wrap; + } + } + } } #_desktop_contact_link_temp { - display: none; + display: none; } #nav-phone-numb { - display: flex; - flex-direction: row; - align-items: center; - margin-left: 10px; - column-gap: 5px; - height: 50px; + display: flex; + flex-direction: row; + align-items: center; + margin-left: 10px; + column-gap: 5px; + height: 50px; - i { - font-size: 21px; - } + i { + font-size: 21px; + } - a { - color: #f57e20; - } + a { + color: #f57e20; + } } footer#footer { - @media (max-width: 767px) { - .footer-container { - .block-contact { - .hidden-sm-down { - display: block !important; - padding: 0.625rem; + @media (max-width: 767px) { + .footer-container { + .block-contact { + .hidden-sm-down { + display: block !important; + padding: 0.625rem; - .block-contact-title { - } - } + .block-contact-title {} + } - .hidden-md-up { - display: none !important; - } - } - } - } + .hidden-md-up { + display: none !important; + } + } + } + } } #history { - .table-labeled { - .label { - color: #232323 !important; - } - } + .table-labeled { + .label { + color: #232323 !important; + } + } } header#header { - .header-banner { - .html-block-content { - margin: 0; - text-align: center; - background-color: #ef4141; - min-height: 26px; - display: flex; - align-items: center; - justify-content: center; - padding: 4px 0; + .header-banner { + .html-block-content { + margin: 0; + text-align: center; + background-color: #ef4141; + min-height: 26px; + display: flex; + align-items: center; + justify-content: center; + padding: 4px 0; - p { - color: #fff; - margin: 0; - font-size: 13px; - } - } - } + p { + color: #fff; + margin: 0; + font-size: 13px; + } + } + } } .header-top-box-1 { - @media (max-width: 575px) { - width: 100%; - } + @media (max-width: 575px) { + width: 100%; + } } .block_newsletter { - .block-newsletter-form { - @media (max-width: 767px) { - padding-left: 10px; - } - .newsletter-form-fields { - display: flex; - flex-direction: row; - } - } + .block-newsletter-form { + @media (max-width: 767px) { + padding-left: 10px; + } + + .newsletter-form-fields { + display: flex; + flex-direction: row; + } + } } .bonslick-slider.slick-slider { - @media (min-width: 767px) { - &:hover { - button { - &.slick-prev { - opacity: 1; - left: 10px; - } - &.slick-next { - opacity: 1; - right: 10px; - } - } - } - } + @media (min-width: 767px) { + &:hover { + button { + &.slick-prev { + opacity: 1; + left: 10px; + } - button { - transition: all 250ms ease-in-out; + &.slick-next { + opacity: 1; + right: 10px; + } + } + } + } - &.slick-arrow { - width: 35px; - height: 35px; - display: flex; - align-items: center; - justify-content: center; - background: white; - z-index: 11; - border-radius: 100%; - box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1); + button { + transition: all 250ms ease-in-out; - &::before { - font-size: 20px; - } - } - &.slick-prev { - @media (min-width: 767px) { - opacity: 0; - left: -10px; - } - @media (max-width: 767px) { - left: 10px; - } - } - &.slick-next { - @media (min-width: 767px) { - opacity: 0; - right: -10px; - } - @media (max-width: 767px) { - right: 10px; - } - } - } + &.slick-arrow { + width: 35px; + height: 35px; + display: flex; + align-items: center; + justify-content: center; + background: white; + z-index: 11; + border-radius: 100%; + box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1); + + &::before { + font-size: 20px; + } + } + + &.slick-prev { + @media (min-width: 767px) { + opacity: 0; + left: -10px; + } + + @media (max-width: 767px) { + left: 10px; + } + } + + &.slick-next { + @media (min-width: 767px) { + opacity: 0; + right: -10px; + } + + @media (max-width: 767px) { + right: 10px; + } + } + } } + + + +$cYellow: #f8e110; + +// high-contrast +body.high-contrast { + + header#header { + background: #000; + height: auto; + padding-bottom: 0; + + .header-top { + padding-top: 10px; + + .top-menu { + a { + color: #FFF; + text-decoration: underline; + } + } + + #search_widget { + input[type="text"] { + background: $cYellow; + border: 0; + color: #000; + } + + i { + color: #000; + } + } + } + + .header-nav { + background: #000; + color: #FFF; + + #_desktop_cart { + .blockcart { + background: $cYellow; + color: #000; + + i, + a, + span { + color: #000; + } + } + } + + .material-icons { + color: #fff; + } + + a { + color: #fff !important; + font-weight: 600; + text-decoration: underline; + } + } + + .header-banner { + border-bottom: 1px solid #FFF; + + .html-block-content { + background-color: #000; + } + } + } + + section#wrapper { + background: #000; + } +} \ No newline at end of file diff --git a/themes/InterBlue/assets/js/accessibility.js b/themes/InterBlue/assets/js/accessibility.js new file mode 100644 index 00000000..4caf9cf4 --- /dev/null +++ b/themes/InterBlue/assets/js/accessibility.js @@ -0,0 +1,64 @@ +document.addEventListener('DOMContentLoaded', function () { + // Tworzenie przycisku + const accessBtn = document.createElement('div'); + accessBtn.id = 'accessibility-button'; + accessBtn.setAttribute('aria-label', 'Opcje dostępności'); + accessBtn.innerHTML = ` + + `; + document.body.appendChild(accessBtn); + + + // Tworzenie panelu + const accessPanel = document.createElement('div'); + accessPanel.id = 'accessibility-panel'; + accessPanel.innerHTML = ` +