diff --git a/wp-content/themes/hello-elementor/assets/js/custom.js b/wp-content/themes/hello-elementor/assets/js/custom.js
index 8550a0d..2ae0180 100644
--- a/wp-content/themes/hello-elementor/assets/js/custom.js
+++ b/wp-content/themes/hello-elementor/assets/js/custom.js
@@ -61,13 +61,12 @@ jQuery(function ($) {
})
})
-
jQuery(function ($) {
$('.show-more-gallery').on('click', function (e) {
e.preventDefault()
var parent = $(this).closest('.product-gallery-drafts')
- console.log(parent);
+ console.log(parent)
var productColors = parent.find(
'.product-drafts .elementor-image-gallery .gallery'
)
@@ -96,158 +95,171 @@ jQuery(function ($) {
})
jQuery(function ($) {
- $('#contact-form select').each(function () {
- var $this = $(this),
- numberOfOptions = $(this).children('option').length,
- defaultOptionText = $this.attr('data-placeholder') || $this.children('option').eq(0).text(); // Отримуємо текст placeholder або використовуємо перший елемент за замовчуванням
+ $('#contact-form select').each(function () {
+ var $this = $(this),
+ numberOfOptions = $(this).children('option').length,
+ defaultOptionText =
+ $this.attr('data-placeholder') || $this.children('option').eq(0).text() // Отримуємо текст placeholder або використовуємо перший елемент за замовчуванням
- $this.addClass('select-hidden');
- $this.wrap('
');
- $this.after('' + defaultOptionText + '
');
+ $this.addClass('select-hidden')
+ $this.wrap('')
+ $this.after(
+ '' + defaultOptionText + '
'
+ )
- var $styledSelect = $this.next('div.select-custom-text');
- var $list = $('', {
- class: 'select-custom-options',
- }).insertAfter($styledSelect);
+ var $styledSelect = $this.next('div.select-custom-text')
+ var $list = $('', {
+ class: 'select-custom-options',
+ }).insertAfter($styledSelect)
- for (var i = 1; i < numberOfOptions; i++) {
- $('', {
- text: $this.children('option').eq(i).text(),
- rel: $this.children('option').eq(i).val(),
- }).appendTo($list);
- }
+ for (var i = 1; i < numberOfOptions; i++) {
+ $('', {
+ text: $this.children('option').eq(i).text(),
+ rel: $this.children('option').eq(i).val(),
+ }).appendTo($list)
+ }
- var $listItems = $list.children('li');
+ var $listItems = $list.children('li')
- $styledSelect.click(function (e) {
- e.stopPropagation();
- $('div.select-custom-text.active').not(this).each(function () {
- $(this).removeClass('active').next('ul.select-custom-options').slideUp();
- });
- $(this).toggleClass('active').next('ul.select-custom-options').slideToggle();
- });
+ $styledSelect.click(function (e) {
+ e.stopPropagation()
+ $('div.select-custom-text.active')
+ .not(this)
+ .each(function () {
+ $(this)
+ .removeClass('active')
+ .next('ul.select-custom-options')
+ .slideUp()
+ })
+ $(this)
+ .toggleClass('active')
+ .next('ul.select-custom-options')
+ .slideToggle()
+ })
- $listItems.click(function (e) {
- e.stopPropagation();
- $styledSelect.text($(this).text()).removeClass('active');
- $styledSelect.text($(this).text()).addClass('selected');
- $this.val($(this).attr('rel'));
- $list.slideUp();
-
- });
-
- $(document).click(function () {
- $styledSelect.removeClass('active');
- $list.slideUp();
- });
- $list.hide();
- });
-});
+ $listItems.click(function (e) {
+ e.stopPropagation()
+ $styledSelect.text($(this).text()).removeClass('active')
+ $styledSelect.text($(this).text()).addClass('selected')
+ $this.val($(this).attr('rel'))
+ $list.slideUp()
+ })
+ $(document).click(function () {
+ $styledSelect.removeClass('active')
+ $list.slideUp()
+ })
+ $list.hide()
+ })
+})
jQuery(function ($) {
$('#hp-acc-more-box').slideUp()
- $('#hp-acc-more-btn').on('click', function(e) {
+ $('#hp-acc-more-btn').on('click', function (e) {
e.preventDefault()
$('#hp-acc-more-box').slideToggle()
})
})
jQuery(function ($) {
- var hash = window.location.hash;
- if (hash) {
- var hashValue = hash.substring(1).toLowerCase();
- var tabItem = $(`.eael-tabs-filter-types ul li input[filter="${hashValue}"]`);
+ var hash = window.location.hash
+ if (hash) {
+ var hashValue = hash.substring(1).toLowerCase()
+ var tabItem = $(
+ `.eael-tabs-filter-types ul li input[filter="${hashValue}"]`
+ )
tabItem.trigger('click')
- var visibleItems = $(".eael-tabs-nav ul li:not([style*='display: none;'])");
+ var visibleItems = $(".eael-tabs-nav ul li:not([style*='display: none;'])")
if (visibleItems.length > 0) {
- var firstVisibleItem = visibleItems.first()[0];
- setTimeout(function(){
- console.log(firstVisibleItem);
- firstVisibleItem.click();
+ var firstVisibleItem = visibleItems.first()[0]
+ setTimeout(function () {
+ console.log(firstVisibleItem)
+ firstVisibleItem.click()
}, 500)
}
- }
-});
+ }
+})
-jQuery(document).ready(function($){
- $('a[phone]').on('click', function(e){
- e.preventDefault();
- var $this = $(this);
- var phone = $this.attr('phone');
+jQuery(document).ready(function ($) {
+ $('a[phone]').on('click', function (e) {
+ e.preventDefault()
+ var $this = $(this)
+ var phone = $this.attr('phone')
$.ajax({
url: '/query-contacts.php',
type: 'GET',
data: { phone: phone },
- success: function(response) {
+ success: function (response) {
if (response.phone) {
- var value = response.phone;
- $this.attr('href', 'tel:' + value);
- $this.find('span.elementor-icon-list-text').text(value);
+ var value = response.phone
+ $this.attr('href', 'tel:' + value)
+ $this.find('span.elementor-icon-list-text').text(value)
} else {
- console.log('Phone number not found in the response.');
+ console.log('Phone number not found in the response.')
}
},
- error: function() {
- console.log('Error with the AJAX request.');
- }
- });
- });
-});
+ error: function () {
+ console.log('Error with the AJAX request.')
+ },
+ })
+ })
+})
-jQuery(function($) {
- const topHeader = $('#top-header-box');
+jQuery(function ($) {
+ const topHeader = $('#top-header-box')
const centerHeader = $('#center-header-box')
- const topHeaderOffset = topHeader.offset();
- const topHeaderHeight = topHeader.outerHeight();
+ const topHeaderOffset = topHeader.offset()
+ const topHeaderHeight = topHeader.outerHeight()
- $(window).scroll(function() {
- const currentScrollPosition = $(window).scrollTop();
+ $(window).scroll(function () {
+ const currentScrollPosition = $(window).scrollTop()
if (currentScrollPosition > topHeaderOffset.top + topHeaderHeight) {
- topHeader.addClass('fixed');
- centerHeader.css('padding-top', topHeaderHeight);
+ topHeader.addClass('fixed')
+ centerHeader.css('padding-top', topHeaderHeight)
} else {
- topHeader.removeClass('fixed');
- centerHeader.css('padding-top', 0);
+ topHeader.removeClass('fixed')
+ centerHeader.css('padding-top', 0)
}
- });
-});
+ })
+})
+jQuery(function ($) {
+ if ($('#scroller-rows').length) {
+ var scrollerRows = $('#scroller-rows')
+ var scrollerRowsHeight = -10
-jQuery(function($) {
- if($('#scroller-rows').length) {
- var scrollerRows = $('#scroller-rows');
- var scrollerRowsHeight = -10;
-
- scrollerRows.find('.scroller-row').each(function(){
+ scrollerRows.find('.scroller-row').each(function () {
if ($(this).index() < 2) {
- scrollerRowsHeight += $(this).height();
+ scrollerRowsHeight += $(this).height()
}
- });
- scrollerRows.css('height', scrollerRowsHeight);
+ })
+ scrollerRows.css('height', scrollerRowsHeight)
}
})
-jQuery(function($) {
- $(document).on('click', '.elementor-menu-toggle', function(e) {
- if($(this).hasClass('elementor-active')) {
- $('header').addClass('active');
+jQuery(function ($) {
+ $(document).on('click', '.elementor-menu-toggle', function (e) {
+ if ($(this).hasClass('elementor-active')) {
+ $('header').addClass('active')
- $dropdown_right = $('.elementor-menu-toggle').offset().left - $(window).width() + $(this).outerWidth()
+ $dropdown_right =
+ $('.elementor-menu-toggle').offset().left -
+ $(window).width() +
+ $(this).outerWidth()
$('.elementor-nav-menu--dropdown').css({
- 'right': $dropdown_right
+ right: $dropdown_right,
})
} else {
- $('header').removeClass('active');
+ $('header').removeClass('active')
- ('.elementor-nav-menu--dropdown').css({
- 'right': 0
+ '.elementor-nav-menu--dropdown'.css({
+ right: 0,
})
}
- });
-})
\ No newline at end of file
+ })
+})
diff --git a/wp-content/themes/hello-elementor/assets/styles/custom.css b/wp-content/themes/hello-elementor/assets/styles/custom.css
index a5386c1..c8365ba 100644
--- a/wp-content/themes/hello-elementor/assets/styles/custom.css
+++ b/wp-content/themes/hello-elementor/assets/styles/custom.css
@@ -1 +1 @@
-.overflow{overflow:hidden}input[id^=eael-tabs-filter-type-]{-webkit-appearance:none;-moz-appearance:none;appearance:none;position:relative;width:18px;min-width:18px;height:18px;border:1px solid #000;overflow:hidden}input[id^=eael-tabs-filter-type-]::before{content:"";position:absolute;top:-8px;left:19px;width:11px;height:1.5px;background:#000;transform:rotate(-45deg);transition:all 250ms ease-in-out}input[id^=eael-tabs-filter-type-]::after{content:"";position:absolute;top:-6px;left:-13px;width:5px;height:1.5px;background:#000;transform:rotate(45deg);transition:all 250ms ease-in-out}input[id^=eael-tabs-filter-type-]:checked::before{top:7px;left:4px}input[id^=eael-tabs-filter-type-]:checked::after{top:9px;left:2px}.eael-tabs-filter{flex-wrap:wrap;row-gap:20px !important}.eael-tabs-filter .eael-tabs-filter-types ul{flex-wrap:wrap;row-gap:20px !important}.eael-tabs-filter .eael-tabs-filter-types label{padding-top:3px}.eael-tabs-nav.eael-tabs-nav-custom{-moz-column-gap:50px;column-gap:50px;display:grid;grid-template-areas:"tabs-name tabs-list" "tabs-name tabs-toggle";grid-template-columns:auto 1fr}.eael-tabs-nav.eael-tabs-nav-custom .tabs-category-name{grid-area:tabs-name}@media(max-width: 1000px){.eael-tabs-nav.eael-tabs-nav-custom .tabs-category-name{margin-bottom:40px}.eael-tabs-nav.eael-tabs-nav-custom .tabs-category-name br{display:none}}.eael-tabs-nav.eael-tabs-nav-custom ul[role=tablist]{grid-area:tabs-list;flex:1;gap:24px;flex-wrap:wrap}.eael-tabs-nav.eael-tabs-nav-custom ul[role=tablist].limit{overflow:hidden;max-height:140px}.eael-tabs-nav.eael-tabs-nav-custom .show-more-tabs{grid-area:tabs-toggle;position:relative;color:#000;font-size:16px;font-weight:700;font-family:"Manrope",Sans-serif;text-transform:uppercase;letter-spacing:.6px;margin-top:50px;width:-moz-fit-content;width:fit-content}.eael-tabs-nav.eael-tabs-nav-custom .show-more-tabs::before{content:"";color:#000;font-family:"themify";position:absolute;left:calc(100% + 10px);top:calc(50% - 3px);width:30px;height:30px;border-radius:100%;transform:translateY(-50%) rotate(90deg);display:flex;align-items:center;justify-content:center;font-size:24px;animation:bounce 2s infinite}@keyframes bounce{0%,20%,50%,80%,100%{transform:translateY(-50%) translateX(0) rotate(90deg)}40%{transform:translateY(calc(-50% - 10px)) translateX(-10px) rotate(90deg)}60%{transform:translateY(calc(-50% - 5px)) translateX(-5px) rotate(90deg)}}@media(max-width: 1000px){.eael-tabs-nav.eael-tabs-nav-custom{grid-template-areas:"tabs-name" "tabs-list" "tabs-toggle";grid-template-columns:1fr}}.eael-tabs-nav>ul{display:grid !important;grid-template-columns:repeat(auto-fit, 194px)}.eael-tabs-nav>ul li{height:100%}.color-anchor{position:relative;height:100px;display:flex;align-items:center}.color-anchor::before{content:"";color:#000;font-family:"themify";position:absolute;left:calc(100% - 20px);top:50%;width:100px;height:100px;background:#f4f4f4;border-radius:100%;transform:translateY(-50%);display:flex;align-items:center;justify-content:center;font-size:28px}.color-anchor>.elementor-widget-container{position:relative;height:-moz-fit-content !important;height:fit-content !important;z-index:1}.anchor-arrow .elementor-icon{position:relative;display:flex;align-items:center;justify-content:center;width:100px;height:100px;border-radius:100%;background:#f4f4f4;margin-left:-20px}.quality-box{position:relative}.quality-box::before{content:"";position:absolute;background-image:url("/wp-content/uploads/2024/04/quality-bg.svg");mix-blend-mode:multiply;background-position:center;background-repeat:no-repeat;background-size:cover;opacity:.4;top:0;bottom:0;right:0;left:auto;width:320px;z-index:1}.quality-box .quality-item{position:relative;z-index:1}.quality-box .quality-item .elementor-icon-box-wrapper .elementor-icon-box-content{position:relative;padding-left:24px}.quality-box .quality-item .elementor-icon-box-wrapper .elementor-icon-box-content::before{content:"";position:absolute;left:0;top:6px;bottom:6px;width:2px;background:#000}@media(max-width: 768px){.quality-box .quality-item .elementor-icon-box-wrapper .elementor-icon-box-content:before{display:none}}.numeric-list ol{padding:0;margin:0;counter-reset:number;list-style-type:none}.numeric-list ol li{position:relative;counter-increment:number;padding-left:55px}.numeric-list ol li:not(:last-child){margin-bottom:20px}.numeric-list ol li:before{content:counter(number);position:absolute;left:0;top:0;width:32px;height:32px;border-radius:100%;background:#f4f4f4;display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:700;letter-spacing:.6px}.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow{position:absolute;top:-108px;padding:0;border:none;margin:0 !important}.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow:hover{background:rgba(0,0,0,0)}.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow.carousel-next{right:50px}@media(max-width: 500px){.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow.carousel-next{right:auto;left:calc(50% + 70px);transform:translateX(-50%)}}.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow.carousel-prev{right:130px;left:auto}@media(max-width: 500px){.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow.carousel-prev{right:auto;left:calc(50% - 70px);transform:translateX(-50%)}}@media(max-width: 500px){.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow{top:-50px}}.home-gallery .elementor-widget-container .swiper .elementor-swiper-button{top:-92px}.home-gallery .elementor-widget-container .swiper .elementor-swiper-button.elementor-swiper-button-prev{left:auto;right:130px;left:auto}@media(max-width: 500px){.home-gallery .elementor-widget-container .swiper .elementor-swiper-button.elementor-swiper-button-prev{right:auto;left:calc(50% - 70px);transform:translateX(-50%)}}.home-gallery .elementor-widget-container .swiper .elementor-swiper-button.elementor-swiper-button-next{right:50px}@media(max-width: 500px){.home-gallery .elementor-widget-container .swiper .elementor-swiper-button.elementor-swiper-button-next{right:auto;left:calc(50% + 70px);transform:translateX(-50%)}}@media(max-width: 500px){.home-gallery .elementor-widget-container .swiper .elementor-swiper-button{top:-50px}}.home-numbers-1{position:relative}.home-numbers-1::before{content:"";position:absolute;left:0;top:-115px;width:495px;height:495px;transform:translateX(-50%);background-image:url("/wp-content/uploads/2024/04/V.svg");background-repeat:no-repeat;background-size:contain;background-position:center}.home-troska{position:relative}.home-troska .home-troska-left{position:relative}.home-troska .home-troska-left::before{content:"";position:absolute;left:10px;top:0;bottom:0;transform:translateX(-50%);background-image:url("/wp-content/uploads/2024/04/V.svg");background-repeat:no-repeat;background-size:contain;background-position:center}#home-hero-slider{width:100%;max-width:1920px;margin-left:auto;margin-right:auto;overflow:hidden}#home-hero-slider .premium-carousel-inner .slick-dots{display:flex;justify-content:flex-end;left:72%;position:absolute;bottom:7.8%;counter-reset:list;list-style-type:none}#home-hero-slider .premium-carousel-inner .slick-dots>li{position:relative;counter-increment:list;width:auto;margin:0 10px}#home-hero-slider .premium-carousel-inner .slick-dots>li:before{content:"0" counter(list);color:#000;font-size:24px;font-weight:700;font-family:"Manrope",Sans-serif}@media(max-width: 900px){#home-hero-slider .premium-carousel-inner .slick-dots>li:before{font-size:20px}}#home-hero-slider .premium-carousel-inner .slick-dots>li:first-child::after{content:"";position:absolute;top:50%;right:calc(100% + 17px);width:100vw;height:2px;background:#000}#home-hero-slider .premium-carousel-inner .slick-dots>li:last-child::after{content:"";position:absolute;top:50%;left:calc(100% + 17px);width:100vw;height:2px;background:#000}#home-hero-slider .premium-carousel-inner .slick-dots>li:last-child.slick-active{margin:0 10px 0 53px}#home-hero-slider .premium-carousel-inner .slick-dots>li:last-child.slick-active .dot-helper{position:relative}#home-hero-slider .premium-carousel-inner .slick-dots>li:last-child.slick-active .dot-helper::before{content:"";position:absolute;width:33px;height:2px;right:47px;background:#000}#home-hero-slider .premium-carousel-inner .slick-dots>li:first-child.slick-active{margin:0 53px 0 10px}#home-hero-slider .premium-carousel-inner .slick-dots>li:first-child.slick-active .dot-helper{position:relative}#home-hero-slider .premium-carousel-inner .slick-dots>li:first-child.slick-active .dot-helper::after{content:"";position:absolute;width:33px;height:2px;left:15px;background:#000}#home-hero-slider .premium-carousel-inner .slick-dots>li:not(:last-child,:first-child).slick-active{margin:0 53px}#home-hero-slider .premium-carousel-inner .slick-dots>li:not(:last-child,:first-child).slick-active .dot-helper{position:relative}#home-hero-slider .premium-carousel-inner .slick-dots>li:not(:last-child,:first-child).slick-active .dot-helper::before{content:"";position:absolute;width:33px;height:2px;right:47px;background:#000}#home-hero-slider .premium-carousel-inner .slick-dots>li:not(:last-child,:first-child).slick-active .dot-helper::after{content:"";position:absolute;width:33px;height:2px;left:15px;background:#000}@media(max-width: 1100px){#home-hero-slider .premium-carousel-inner .slick-dots{left:70%}}@media(max-width: 900px){#home-hero-slider .premium-carousel-inner .slick-dots{left:60%;bottom:6%}}@media(max-width: 768px){#home-hero-slider .premium-carousel-inner .slick-dots{left:50%;transform:translateX(-50%)}}@media(max-width: 768px){#home-hero-slider .slide-text-box{bottom:15%}}.product-gallery-colors .show-more-colors .premium-button-text-icon-wrapper{display:flex;align-items:center}.product-gallery-colors .show-more-colors .premium-button-text-icon-wrapper span{padding-top:5px}.product-colors .elementor-image-gallery .gallery{display:flex;flex-wrap:wrap;gap:32px;max-height:128px;overflow:hidden}.product-colors .elementor-image-gallery .gallery .gallery-item{display:flex;flex-direction:row;align-items:center;gap:13px;width:calc(50% - 16px)}.product-colors .elementor-image-gallery .gallery .gallery-item .gallery-icon{width:48px;min-width:48px;height:48px}.product-colors .elementor-image-gallery .gallery .gallery-item .gallery-icon img{height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.product-colors .elementor-image-gallery .gallery .gallery-item .gallery-caption{padding:0}.product-colors-s2 .elementor-image-gallery .gallery{display:flex;flex-wrap:wrap}.product-colors-s2 .elementor-image-gallery .gallery .gallery-item{display:flex;flex-direction:column;align-items:flex-start;gap:2px}.product-colors-s2 .elementor-image-gallery .gallery .gallery-item .gallery-icon{width:98px;min-width:98px;height:98px}.product-colors-s2 .elementor-image-gallery .gallery .gallery-item .gallery-icon img{height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.product-colors-s2 .elementor-image-gallery .gallery .gallery-item .gallery-caption{padding:0}.product-gallery-drafts .show-more-drafts .premium-button-text-icon-wrapper{display:flex;align-items:center}.product-gallery-drafts .show-more-drafts .premium-button-text-icon-wrapper span{padding-top:5px}.product-drafts .elementor-image-gallery .gallery{max-height:210px;overflow:hidden}.product-drafts .elementor-image-gallery .gallery .gallery-item .gallery-caption{padding:0}.product-gallery-drafts .elementor-image-gallery .gallery:not(#gallery-6){max-height:1040px;overflow:hidden}.product-catalog-bg{position:relative}.product-catalog-bg::before{content:"";position:absolute;left:30px;top:0;width:495px;height:495px;transform:translateX(-50%);background-image:url("/wp-content/uploads/2024/04/V.svg");background-repeat:no-repeat;background-size:contain;background-position:center}#footer-data{position:relative;overflow:hidden}#footer-data::before{content:"";position:absolute;top:115px;height:2px;width:100vw;background:#f4f4f4}body.page-id-729 .custom-bg-v .elementor-widget-container{position:relative}body.page-id-729 .custom-bg-v .elementor-widget-container::before{content:"";position:absolute;left:calc(100% - 5px);top:50%;width:495px;height:495px;transform:translate(-50%, -50%);background-image:url("/wp-content/uploads/2024/04/Group-371.svg");background-repeat:no-repeat;background-size:contain;background-position:center}#quote-box .carousel-arrow{left:auto}#quote-box .carousel-arrow.carousel-prev{top:-60px;right:100px}#quote-box .carousel-arrow.carousel-next{top:-60px;right:0px}#contact-form select.wpcf7-select{visibility:hidden;opacity:0;display:none}#contact-form .select-custom-text{position:relative;padding:15px 24px;border:1px solid #000;font-family:"League Spartan",Sans-serif;letter-spacing:.6px;font-weight:400}#contact-form .select-custom-text.selected{color:#000}#contact-form .select-custom-text.active::before{transform:translateY(-50%) scale(-1)}#contact-form .select-custom-text::before{content:"3";position:absolute;top:50%;right:24px;transform:translateY(-50%);transition:all 250ms ease-in-out;font-family:"ElegantIcons";font-size:26px;color:#000}#contact-form .select-custom-options{list-style:none;padding:15px 24px;border-left:1px solid #000;border-right:1px solid #000;border-bottom:1px solid #000}#contact-form .select-custom-options li{color:#000;font-family:"League Spartan",Sans-serif;letter-spacing:.6px;font-weight:400;cursor:pointer}#contact-form .select-custom-options li:not(:last-child){margin-bottom:10px}#contact-form .wpcf7-list-item{margin-left:0}#contact-form .wpcf7-list-item label{display:flex;flex-direction:row;gap:10px;cursor:pointer}#contact-form input[type=checkbox]{position:relative;-webkit-appearance:none;-moz-appearance:none;appearance:none;width:14px;min-width:14px;height:14px;border-radius:100%;border:1px solid #000;overflow:hidden;margin-top:2px}#contact-form input[type=checkbox]:checked::before{top:6px;left:4px}#contact-form input[type=checkbox]:checked::after{top:7px;left:3px}#contact-form input[type=checkbox]::before{content:"";position:absolute;top:-4px;left:14px;width:6px;height:1px;background:#000;transform:rotate(-45deg);transition:all 250ms ease-in-out}#contact-form input[type=checkbox]::after{content:"";position:absolute;top:-3px;left:-7px;width:3px;height:1px;background:#000;transform:rotate(45deg);transition:all 250ms ease-in-out}#contact-form input[type=text]::-moz-placeholder, #contact-form input[type=tel]::-moz-placeholder, #contact-form input[type=email]::-moz-placeholder{color:#a8a8a8}#contact-form input[type=text]::placeholder,#contact-form input[type=tel]::placeholder,#contact-form input[type=email]::placeholder{color:#a8a8a8}#contact-form textarea::-moz-placeholder{color:#a8a8a8}#contact-form textarea::placeholder{color:#a8a8a8}#contact-form p{color:#a8a8a8;font-size:16px;font-family:"League Spartan" sans-serif;letter-spacing:.6px;font-weight:400}#contact-form .form-submit-btn{position:relative;width:-moz-fit-content;width:fit-content;margin:20px 0 0 auto}#contact-form .form-submit-btn::before{content:"";color:#000;font-family:"themify";position:absolute;right:0;top:0;width:100px;height:100px;background:#f4f4f4;border-radius:100%;display:flex;align-items:center;justify-content:center;font-size:28px}#contact-form .form-submit-btn input.wpcf7-submit{position:relative;height:100px;display:flex;align-items:center;padding-right:80px}#contact-form .wpcf7-spinner{display:block}#contact-form.contact-form-2 .row{display:grid;grid-template-columns:1fr 1fr;gap:20px}#contact-form.contact-form-2 .row .col-6 p{width:100%}#contact-form.contact-form-2 .row .col-6 textarea{max-height:208px}.customized-shapes-box{position:relative}.customized-shapes-box::before{content:"";position:absolute;background-image:url("/wp-content/uploads/2024/04/quality-bg.svg");mix-blend-mode:multiply;background-position:center;background-repeat:no-repeat;background-size:cover;opacity:.4;top:0;bottom:0;right:0;left:auto;width:320px;z-index:1}#accessories-head::before{content:"";position:absolute;background-image:url("/wp-content/uploads/2024/05/Group-373.svg");mix-blend-mode:multiply;background-position:center;background-repeat:no-repeat;background-size:cover;opacity:.5;top:0;bottom:0;right:auto;left:20px;width:100px;z-index:1}.box-bg-v::before{content:"";position:absolute;right:0px;left:auto;top:50%;width:495px;height:495px;transform:translate(50%, -50%);background-image:url("/wp-content/uploads/2024/04/V.svg");background-repeat:no-repeat;background-size:contain;background-position:center;z-index:1;opacity:.5}body.elementor-page>div[data-elementor-type=single-page]{overflow:hidden}#checkbox-btn.active a::before{content:"";position:absolute;top:7px;left:4px;width:11px;height:6px;transform:rotate(-45deg);transition:all 250ms ease-in-out;border-bottom:1.5px solid #000;border-left:1.5px solid #000}#checkbox-btn a{position:relative;padding-left:30px;width:-moz-fit-content;width:fit-content;display:block}#checkbox-btn a::after{content:"";position:absolute;top:2px;left:0px;width:18px;height:18px;border:1px solid #000}.product-list-icon-desc .elementor-icon-box-icon{position:relative;padding-right:20px}.product-list-icon-desc .elementor-icon-box-icon::before{content:"";position:absolute;right:0;top:50%;transform:translateY(-50%);width:2px;height:40px;background:#000}.product-list-icon-desc .elementor-icon-box-title{margin:0}.custom-acc .eael-adv-accordion .eael-accordion-list:not(:last-child){border-bottom:1px solid #000}.custom-acc .eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle{transform:rotate(180deg) !important}#top-header-box.fixed{position:fixed;top:0;left:0;right:0;z-index:999}header{background:#fff}header.active{position:sticky;top:0;z-index:999999}.addon-btn-title{margin:0;display:flex;align-items:center}.addon-btn-title .elementor-icon{position:relative;margin-left:-20px;z-index:-1}.addon-btn-title .elementor-icon::before{content:"";position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);width:90px;height:90px;background:#e6e3e3;border-radius:100%;z-index:-1}.addon-btn-title .elementor-icon i{color:#000;width:100px;height:100px;background:#f4f4f4;border-radius:100%;display:flex;align-items:center;justify-content:center;font-size:28px;transition:all 250ms ease-in-out}.addon-btn-title span{position:relative}.addon-btn-title span::before{content:"";position:absolute;left:0;bottom:0;width:0;height:2px;background:#000;transition:width 250ms ease-in-out}.addon-btn-title:hover span::before{width:100%}.addon-btn-title:hover .elementor-icon::before{animation:puls 500ms ease-in-out}.addon-btn-title:hover .elementor-icon i{background:#e6e3e3}@keyframes puls{0%{opacity:1}100%{width:140px;height:140px;opacity:0}}@media(min-width: 501px){#center-header-box>.e-con-inner .center-header-box-menu .elementor-nav-menu li.menu-item-4927{display:none}}@media(min-width: 1025px){#center-header-box>.e-con-inner .center-header-box-menu .elementor-nav-menu>.menu-item.current_page_item>a::after{width:100%}#center-header-box>.e-con-inner .center-header-box-menu .elementor-nav-menu>.menu-item>a::after{width:0;transition:width 250ms ease-in-out}#center-header-box>.e-con-inner .center-header-box-menu .elementor-nav-menu>.menu-item>a:hover::after{width:100%}}@media(max-width: 1024px){#center-header-box>.e-con-inner .center-header-box-logo{flex:1;display:flex}#center-header-box>.e-con-inner .center-header-box-menu>.elementor-widget-container>.elementor-nav-menu--dropdown{position:absolute;right:0px;left:auto;top:64px;width:100vw;z-index:1}}@media(max-width: 1024px)and (max-width: 768px){#center-header-box>.e-con-inner .center-header-box-menu>.elementor-widget-container>.elementor-nav-menu--dropdown{top:52px}}@media(max-width: 1024px){#center-header-box>.e-con-inner .center-header-box-menu .elementor-nav-menu .menu-item ul.sub-menu{background:#f4f4f4}}@media(max-width: 1024px)and (max-width: 500px){#center-header-box>.e-con-inner .center-header-box-contact{display:none}}#scroller-rows{overflow:hidden}#scroller-rows>.e-con-inner{overflow:auto;padding-right:20px}#scroller-rows>.e-con-inner::-webkit-scrollbar{width:10px}#scroller-rows>.e-con-inner::-webkit-scrollbar-track{background:#f4f4f4}#scroller-rows>.e-con-inner::-webkit-scrollbar-thumb{background:#d9d9d9}#scroller-rows>.e-con-inner::-webkit-scrollbar-thumb:hover{background:#afafaf}@media(max-width: 1024px){#page-hero-baner h1{font-size:50px}#page-hero-baner h2{font-size:24px}}@media(max-width: 576px){#page-hero-baner h1{font-size:40px}#page-hero-baner h2{font-size:22px}}/*# sourceMappingURL=custom.css.map */
\ No newline at end of file
+.overflow{overflow:hidden}input[id^=eael-tabs-filter-type-]{-webkit-appearance:none;-moz-appearance:none;appearance:none;position:relative;width:18px;min-width:18px;height:18px;border:1px solid #000;overflow:hidden}input[id^=eael-tabs-filter-type-]::before{content:"";position:absolute;top:-8px;left:19px;width:11px;height:1.5px;background:#000;transform:rotate(-45deg);transition:all 250ms ease-in-out}input[id^=eael-tabs-filter-type-]::after{content:"";position:absolute;top:-6px;left:-13px;width:5px;height:1.5px;background:#000;transform:rotate(45deg);transition:all 250ms ease-in-out}input[id^=eael-tabs-filter-type-]:checked::before{top:7px;left:4px}input[id^=eael-tabs-filter-type-]:checked::after{top:9px;left:2px}.eael-tabs-filter{flex-wrap:wrap;row-gap:20px !important}.eael-tabs-filter .eael-tabs-filter-types ul{flex-wrap:wrap;row-gap:20px !important}.eael-tabs-filter .eael-tabs-filter-types label{padding-top:3px}.eael-tabs-nav.eael-tabs-nav-custom{-moz-column-gap:50px;column-gap:50px;display:grid;grid-template-areas:"tabs-name tabs-list" "tabs-name tabs-toggle";grid-template-columns:auto 1fr}.eael-tabs-nav.eael-tabs-nav-custom .tabs-category-name{grid-area:tabs-name}@media(max-width: 1000px){.eael-tabs-nav.eael-tabs-nav-custom .tabs-category-name{margin-bottom:40px}.eael-tabs-nav.eael-tabs-nav-custom .tabs-category-name br{display:none}}.eael-tabs-nav.eael-tabs-nav-custom ul[role=tablist]{grid-area:tabs-list;flex:1;gap:24px;flex-wrap:wrap}.eael-tabs-nav.eael-tabs-nav-custom ul[role=tablist].limit{overflow:hidden;max-height:140px}.eael-tabs-nav.eael-tabs-nav-custom .show-more-tabs{grid-area:tabs-toggle;position:relative;color:#000;font-size:16px;font-weight:700;font-family:"Manrope",Sans-serif;text-transform:uppercase;letter-spacing:.6px;margin-top:50px;width:-moz-fit-content;width:fit-content}.eael-tabs-nav.eael-tabs-nav-custom .show-more-tabs::before{content:"";color:#000;font-family:"themify";position:absolute;left:calc(100% + 10px);top:calc(50% - 3px);width:30px;height:30px;border-radius:100%;transform:translateY(-50%) rotate(90deg);display:flex;align-items:center;justify-content:center;font-size:24px;animation:bounce 2s infinite}@keyframes bounce{0%,20%,50%,80%,100%{transform:translateY(-50%) translateX(0) rotate(90deg)}40%{transform:translateY(calc(-50% - 10px)) translateX(-10px) rotate(90deg)}60%{transform:translateY(calc(-50% - 5px)) translateX(-5px) rotate(90deg)}}@media(max-width: 1000px){.eael-tabs-nav.eael-tabs-nav-custom{grid-template-areas:"tabs-name" "tabs-list" "tabs-toggle";grid-template-columns:1fr}}.eael-tabs-nav>ul{display:grid !important;grid-template-columns:repeat(auto-fit, 194px)}.eael-tabs-nav>ul li{height:100%}.color-anchor{position:relative;height:100px;display:flex;align-items:center}.color-anchor::before{content:"";color:#000;font-family:"themify";position:absolute;left:calc(100% - 20px);top:50%;width:100px;height:100px;background:#f4f4f4;border-radius:100%;transform:translateY(-50%);display:flex;align-items:center;justify-content:center;font-size:28px}.color-anchor>.elementor-widget-container{position:relative;height:-moz-fit-content !important;height:fit-content !important;z-index:1}.anchor-arrow .elementor-icon{position:relative;display:flex;align-items:center;justify-content:center;width:100px;height:100px;border-radius:100%;background:#f4f4f4;margin-left:-20px}.quality-box{position:relative}.quality-box::before{content:"";position:absolute;background-image:url("/wp-content/uploads/2024/04/quality-bg.svg");mix-blend-mode:multiply;background-position:center;background-repeat:no-repeat;background-size:cover;opacity:.4;top:0;bottom:0;right:0;left:auto;width:320px;z-index:1}.quality-box .quality-item{position:relative;z-index:1}.quality-box .quality-item .elementor-icon-box-wrapper .elementor-icon-box-content{position:relative;padding-left:24px}.quality-box .quality-item .elementor-icon-box-wrapper .elementor-icon-box-content::before{content:"";position:absolute;left:0;top:6px;bottom:6px;width:2px;background:#000}@media(max-width: 768px){.quality-box .quality-item .elementor-icon-box-wrapper .elementor-icon-box-content:before{display:none}}.numeric-list ol{padding:0;margin:0;counter-reset:number;list-style-type:none}.numeric-list ol li{position:relative;counter-increment:number;padding-left:55px}.numeric-list ol li:not(:last-child){margin-bottom:20px}.numeric-list ol li:before{content:counter(number);position:absolute;left:0;top:0;width:32px;height:32px;border-radius:100%;background:#f4f4f4;display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:700;letter-spacing:.6px}.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow{position:absolute;top:-108px;padding:0;border:none;margin:0 !important}.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow:hover{background:rgba(0,0,0,0)}.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow.carousel-next{right:50px}@media(max-width: 500px){.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow.carousel-next{right:auto;left:calc(50% + 70px);transform:translateX(-50%)}}.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow.carousel-prev{right:130px;left:auto}@media(max-width: 500px){.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow.carousel-prev{right:auto;left:calc(50% - 70px);transform:translateX(-50%)}}@media(max-width: 500px){.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow{top:-50px}}.home-gallery .elementor-widget-container .swiper .elementor-swiper-button{top:-92px}.home-gallery .elementor-widget-container .swiper .elementor-swiper-button.elementor-swiper-button-prev{left:auto;right:130px;left:auto}@media(max-width: 500px){.home-gallery .elementor-widget-container .swiper .elementor-swiper-button.elementor-swiper-button-prev{right:auto;left:calc(50% - 70px);transform:translateX(-50%)}}.home-gallery .elementor-widget-container .swiper .elementor-swiper-button.elementor-swiper-button-next{right:50px}@media(max-width: 500px){.home-gallery .elementor-widget-container .swiper .elementor-swiper-button.elementor-swiper-button-next{right:auto;left:calc(50% + 70px);transform:translateX(-50%)}}@media(max-width: 500px){.home-gallery .elementor-widget-container .swiper .elementor-swiper-button{top:-50px}}.home-gallery .elementor-widget-container .swiper .elementor-image-carousel .swiper-slide img{aspect-ratio:1/1;max-width:257px;-o-object-fit:cover;object-fit:cover}.home-numbers-1{position:relative}.home-numbers-1::before{content:"";position:absolute;left:0;top:-115px;width:495px;height:495px;transform:translateX(-50%);background-image:url("/wp-content/uploads/2024/04/V.svg");background-repeat:no-repeat;background-size:contain;background-position:center}.home-troska{position:relative}.home-troska .home-troska-left{position:relative}.home-troska .home-troska-left::before{content:"";position:absolute;left:10px;top:0;bottom:0;transform:translateX(-50%);background-image:url("/wp-content/uploads/2024/04/V.svg");background-repeat:no-repeat;background-size:contain;background-position:center}#home-hero-slider{width:100%;max-width:1920px;margin-left:auto;margin-right:auto;overflow:hidden}#home-hero-slider .premium-carousel-inner .slick-dots{display:flex;justify-content:flex-end;left:72%;position:absolute;bottom:7.8%;counter-reset:list;list-style-type:none}#home-hero-slider .premium-carousel-inner .slick-dots>li{position:relative;counter-increment:list;width:auto;margin:0 10px}#home-hero-slider .premium-carousel-inner .slick-dots>li:before{content:"0" counter(list);color:#000;font-size:24px;font-weight:700;font-family:"Manrope",Sans-serif}@media(max-width: 900px){#home-hero-slider .premium-carousel-inner .slick-dots>li:before{font-size:20px}}#home-hero-slider .premium-carousel-inner .slick-dots>li:first-child::after{content:"";position:absolute;top:50%;right:calc(100% + 17px);width:100vw;height:2px;background:#000}#home-hero-slider .premium-carousel-inner .slick-dots>li:last-child::after{content:"";position:absolute;top:50%;left:calc(100% + 17px);width:100vw;height:2px;background:#000}#home-hero-slider .premium-carousel-inner .slick-dots>li:last-child.slick-active{margin:0 10px 0 53px}#home-hero-slider .premium-carousel-inner .slick-dots>li:last-child.slick-active .dot-helper{position:relative}#home-hero-slider .premium-carousel-inner .slick-dots>li:last-child.slick-active .dot-helper::before{content:"";position:absolute;width:33px;height:2px;right:47px;background:#000}#home-hero-slider .premium-carousel-inner .slick-dots>li:first-child.slick-active{margin:0 53px 0 10px}#home-hero-slider .premium-carousel-inner .slick-dots>li:first-child.slick-active .dot-helper{position:relative}#home-hero-slider .premium-carousel-inner .slick-dots>li:first-child.slick-active .dot-helper::after{content:"";position:absolute;width:33px;height:2px;left:15px;background:#000}#home-hero-slider .premium-carousel-inner .slick-dots>li:not(:last-child,:first-child).slick-active{margin:0 53px}#home-hero-slider .premium-carousel-inner .slick-dots>li:not(:last-child,:first-child).slick-active .dot-helper{position:relative}#home-hero-slider .premium-carousel-inner .slick-dots>li:not(:last-child,:first-child).slick-active .dot-helper::before{content:"";position:absolute;width:33px;height:2px;right:47px;background:#000}#home-hero-slider .premium-carousel-inner .slick-dots>li:not(:last-child,:first-child).slick-active .dot-helper::after{content:"";position:absolute;width:33px;height:2px;left:15px;background:#000}@media(max-width: 1100px){#home-hero-slider .premium-carousel-inner .slick-dots{left:70%}}@media(max-width: 900px){#home-hero-slider .premium-carousel-inner .slick-dots{left:60%;bottom:6%}}@media(max-width: 768px){#home-hero-slider .premium-carousel-inner .slick-dots{left:50%;transform:translateX(-50%)}}@media(max-width: 768px){#home-hero-slider .slide-text-box{bottom:15%}}.product-gallery-colors .show-more-colors .premium-button-text-icon-wrapper{display:flex;align-items:center}.product-gallery-colors .show-more-colors .premium-button-text-icon-wrapper span{padding-top:5px}.product-colors .elementor-image-gallery .gallery{display:flex;flex-wrap:wrap;gap:32px;max-height:128px;overflow:hidden}.product-colors .elementor-image-gallery .gallery .gallery-item{display:flex;flex-direction:row;align-items:center;gap:13px;width:calc(50% - 16px)}.product-colors .elementor-image-gallery .gallery .gallery-item .gallery-icon{width:48px;min-width:48px;height:48px}.product-colors .elementor-image-gallery .gallery .gallery-item .gallery-icon img{height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.product-colors .elementor-image-gallery .gallery .gallery-item .gallery-caption{padding:0}.product-colors-s2 .elementor-image-gallery .gallery{display:flex;flex-wrap:wrap}.product-colors-s2 .elementor-image-gallery .gallery .gallery-item{display:flex;flex-direction:column;align-items:flex-start;gap:2px}.product-colors-s2 .elementor-image-gallery .gallery .gallery-item .gallery-icon{width:98px;min-width:98px;height:98px}.product-colors-s2 .elementor-image-gallery .gallery .gallery-item .gallery-icon img{height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.product-colors-s2 .elementor-image-gallery .gallery .gallery-item .gallery-caption{padding:0}.product-gallery-drafts .show-more-drafts .premium-button-text-icon-wrapper{display:flex;align-items:center}.product-gallery-drafts .show-more-drafts .premium-button-text-icon-wrapper span{padding-top:5px}.product-drafts .elementor-image-gallery .gallery{max-height:210px;overflow:hidden}.product-drafts .elementor-image-gallery .gallery .gallery-item .gallery-caption{padding:0}.product-gallery-drafts .elementor-image-gallery .gallery:not(#gallery-6){max-height:1040px;overflow:hidden}.product-catalog-bg{position:relative}.product-catalog-bg::before{content:"";position:absolute;left:30px;top:0;width:495px;height:495px;transform:translateX(-50%);background-image:url("/wp-content/uploads/2024/04/V.svg");background-repeat:no-repeat;background-size:contain;background-position:center}#footer-data{position:relative;overflow:hidden}#footer-data::before{content:"";position:absolute;top:115px;height:2px;width:100vw;background:#f4f4f4}body.page-id-729 .custom-bg-v .elementor-widget-container{position:relative}body.page-id-729 .custom-bg-v .elementor-widget-container::before{content:"";position:absolute;left:calc(100% - 5px);top:50%;width:495px;height:495px;transform:translate(-50%, -50%);background-image:url("/wp-content/uploads/2024/04/Group-371.svg");background-repeat:no-repeat;background-size:contain;background-position:center}#quote-box .carousel-arrow{left:auto}#quote-box .carousel-arrow.carousel-prev{top:-60px;right:100px}#quote-box .carousel-arrow.carousel-next{top:-60px;right:0px}#contact-form select.wpcf7-select{visibility:hidden;opacity:0;display:none}#contact-form .select-custom-text{position:relative;padding:15px 24px;border:1px solid #000;font-family:"League Spartan",Sans-serif;letter-spacing:.6px;font-weight:400}#contact-form .select-custom-text.selected{color:#000}#contact-form .select-custom-text.active::before{transform:translateY(-50%) scale(-1)}#contact-form .select-custom-text::before{content:"3";position:absolute;top:50%;right:24px;transform:translateY(-50%);transition:all 250ms ease-in-out;font-family:"ElegantIcons";font-size:26px;color:#000}#contact-form .select-custom-options{list-style:none;padding:15px 24px;border-left:1px solid #000;border-right:1px solid #000;border-bottom:1px solid #000}#contact-form .select-custom-options li{color:#000;font-family:"League Spartan",Sans-serif;letter-spacing:.6px;font-weight:400;cursor:pointer}#contact-form .select-custom-options li:not(:last-child){margin-bottom:10px}#contact-form .wpcf7-list-item{margin-left:0}#contact-form .wpcf7-list-item label{display:flex;flex-direction:row;gap:10px;cursor:pointer}#contact-form input[type=checkbox]{position:relative;-webkit-appearance:none;-moz-appearance:none;appearance:none;width:14px;min-width:14px;height:14px;border-radius:100%;border:1px solid #000;overflow:hidden;margin-top:2px}#contact-form input[type=checkbox]:checked::before{top:6px;left:4px}#contact-form input[type=checkbox]:checked::after{top:7px;left:3px}#contact-form input[type=checkbox]::before{content:"";position:absolute;top:-4px;left:14px;width:6px;height:1px;background:#000;transform:rotate(-45deg);transition:all 250ms ease-in-out}#contact-form input[type=checkbox]::after{content:"";position:absolute;top:-3px;left:-7px;width:3px;height:1px;background:#000;transform:rotate(45deg);transition:all 250ms ease-in-out}#contact-form input[type=text]::-moz-placeholder, #contact-form input[type=tel]::-moz-placeholder, #contact-form input[type=email]::-moz-placeholder{color:#a8a8a8}#contact-form input[type=text]::placeholder,#contact-form input[type=tel]::placeholder,#contact-form input[type=email]::placeholder{color:#a8a8a8}#contact-form textarea::-moz-placeholder{color:#a8a8a8}#contact-form textarea::placeholder{color:#a8a8a8}#contact-form p{color:#a8a8a8;font-size:16px;font-family:"League Spartan" sans-serif;letter-spacing:.6px;font-weight:400}#contact-form .form-submit-btn{position:relative;width:-moz-fit-content;width:fit-content;margin:20px 0 0 auto}#contact-form .form-submit-btn::before{content:"";color:#000;font-family:"themify";position:absolute;right:0;top:0;width:100px;height:100px;background:#f4f4f4;border-radius:100%;display:flex;align-items:center;justify-content:center;font-size:28px}#contact-form .form-submit-btn input.wpcf7-submit{position:relative;height:100px;display:flex;align-items:center;padding-right:80px}#contact-form .wpcf7-spinner{display:block}#contact-form.contact-form-2 .row{display:grid;grid-template-columns:1fr 1fr;gap:20px}#contact-form.contact-form-2 .row .col-6 p{width:100%}#contact-form.contact-form-2 .row .col-6 textarea{max-height:208px}.customized-shapes-box{position:relative}.customized-shapes-box::before{content:"";position:absolute;background-image:url("/wp-content/uploads/2024/04/quality-bg.svg");mix-blend-mode:multiply;background-position:center;background-repeat:no-repeat;background-size:cover;opacity:.4;top:0;bottom:0;right:0;left:auto;width:320px;z-index:1}#accessories-head::before{content:"";position:absolute;background-image:url("/wp-content/uploads/2024/05/Group-373.svg");mix-blend-mode:multiply;background-position:center;background-repeat:no-repeat;background-size:cover;opacity:.5;top:0;bottom:0;right:auto;left:20px;width:100px;z-index:1}.box-bg-v::before{content:"";position:absolute;right:0px;left:auto;top:50%;width:495px;height:495px;transform:translate(50%, -50%);background-image:url("/wp-content/uploads/2024/04/V.svg");background-repeat:no-repeat;background-size:contain;background-position:center;z-index:1;opacity:.5}body.elementor-page>div[data-elementor-type=single-page]{overflow:hidden}#checkbox-btn.active a::before{content:"";position:absolute;top:7px;left:4px;width:11px;height:6px;transform:rotate(-45deg);transition:all 250ms ease-in-out;border-bottom:1.5px solid #000;border-left:1.5px solid #000}#checkbox-btn a{position:relative;padding-left:30px;width:-moz-fit-content;width:fit-content;display:block}#checkbox-btn a::after{content:"";position:absolute;top:2px;left:0px;width:18px;height:18px;border:1px solid #000}.product-list-icon-desc .elementor-icon-box-icon{position:relative;padding-right:20px}.product-list-icon-desc .elementor-icon-box-icon::before{content:"";position:absolute;right:0;top:50%;transform:translateY(-50%);width:2px;height:40px;background:#000}.product-list-icon-desc .elementor-icon-box-title{margin:0}.custom-acc .eael-adv-accordion .eael-accordion-list:not(:last-child){border-bottom:1px solid #000}.custom-acc .eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle{transform:rotate(180deg) !important}#top-header-box.fixed{position:fixed;top:0;left:0;right:0;z-index:999}header{background:#fff}header.active{position:sticky;top:0;z-index:999999}.addon-btn-title{margin:0;display:flex;align-items:center}.addon-btn-title .elementor-icon{position:relative;margin-left:-20px;z-index:-1}.addon-btn-title .elementor-icon::before{content:"";position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);width:90px;height:90px;background:#e6e3e3;border-radius:100%;z-index:-1}.addon-btn-title .elementor-icon i{color:#000;width:100px;height:100px;background:#f4f4f4;border-radius:100%;display:flex;align-items:center;justify-content:center;font-size:28px;transition:all 250ms ease-in-out}.addon-btn-title span{position:relative}.addon-btn-title span::before{content:"";position:absolute;left:0;bottom:0;width:0;height:2px;background:#000;transition:width 250ms ease-in-out}.addon-btn-title:hover span::before{width:100%}.addon-btn-title:hover .elementor-icon::before{animation:puls 500ms ease-in-out}.addon-btn-title:hover .elementor-icon i{background:#e6e3e3}@keyframes puls{0%{opacity:1}100%{width:140px;height:140px;opacity:0}}@media(min-width: 501px){#center-header-box>.e-con-inner .center-header-box-menu .elementor-nav-menu li.menu-item-4927{display:none}}@media(min-width: 1025px){#center-header-box>.e-con-inner .center-header-box-menu .elementor-nav-menu>.menu-item.current_page_item>a::after{width:100%}#center-header-box>.e-con-inner .center-header-box-menu .elementor-nav-menu>.menu-item>a::after{width:0;transition:width 250ms ease-in-out}#center-header-box>.e-con-inner .center-header-box-menu .elementor-nav-menu>.menu-item>a:hover::after{width:100%}}@media(max-width: 1024px){#center-header-box>.e-con-inner .center-header-box-logo{flex:1;display:flex}#center-header-box>.e-con-inner .center-header-box-menu>.elementor-widget-container>.elementor-nav-menu--dropdown{position:absolute;right:0px;left:auto;top:64px;width:100vw;z-index:1}}@media(max-width: 1024px)and (max-width: 768px){#center-header-box>.e-con-inner .center-header-box-menu>.elementor-widget-container>.elementor-nav-menu--dropdown{top:52px}}@media(max-width: 1024px){#center-header-box>.e-con-inner .center-header-box-menu .elementor-nav-menu .menu-item ul.sub-menu{background:#f4f4f4}}@media(max-width: 1024px)and (max-width: 500px){#center-header-box>.e-con-inner .center-header-box-contact{display:none}}#scroller-rows{overflow:hidden}#scroller-rows>.e-con-inner{overflow:auto;padding-right:20px}#scroller-rows>.e-con-inner::-webkit-scrollbar{width:10px}#scroller-rows>.e-con-inner::-webkit-scrollbar-track{background:#f4f4f4}#scroller-rows>.e-con-inner::-webkit-scrollbar-thumb{background:#d9d9d9}#scroller-rows>.e-con-inner::-webkit-scrollbar-thumb:hover{background:#afafaf}@media(max-width: 1024px){#page-hero-baner h1{font-size:50px}#page-hero-baner h2{font-size:24px}}@media(max-width: 576px){#page-hero-baner h1{font-size:40px}#page-hero-baner h2{font-size:22px}}/*# sourceMappingURL=custom.css.map */
\ No newline at end of file
diff --git a/wp-content/themes/hello-elementor/assets/styles/custom.css.map b/wp-content/themes/hello-elementor/assets/styles/custom.css.map
index c049082..5013174 100644
--- a/wp-content/themes/hello-elementor/assets/styles/custom.css.map
+++ b/wp-content/themes/hello-elementor/assets/styles/custom.css.map
@@ -1 +1 @@
-{"version":3,"sources":["custom.css","custom.scss"],"names":[],"mappings":"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","file":"custom.css","sourcesContent":[".overflow{overflow:hidden}input[id^=eael-tabs-filter-type-]{appearance:none;position:relative;width:18px;min-width:18px;height:18px;border:1px solid #000;overflow:hidden}input[id^=eael-tabs-filter-type-]::before{content:\"\";position:absolute;top:-8px;left:19px;width:11px;height:1.5px;background:#000;transform:rotate(-45deg);transition:all 250ms ease-in-out}input[id^=eael-tabs-filter-type-]::after{content:\"\";position:absolute;top:-6px;left:-13px;width:5px;height:1.5px;background:#000;transform:rotate(45deg);transition:all 250ms ease-in-out}input[id^=eael-tabs-filter-type-]:checked::before{top:7px;left:4px}input[id^=eael-tabs-filter-type-]:checked::after{top:9px;left:2px}.eael-tabs-filter{flex-wrap:wrap;row-gap:20px !important}.eael-tabs-filter .eael-tabs-filter-types ul{flex-wrap:wrap;row-gap:20px !important}.eael-tabs-filter .eael-tabs-filter-types label{padding-top:3px}.eael-tabs-nav.eael-tabs-nav-custom{column-gap:50px;display:grid;grid-template-areas:\"tabs-name tabs-list\" \"tabs-name tabs-toggle\";grid-template-columns:auto 1fr}.eael-tabs-nav.eael-tabs-nav-custom .tabs-category-name{grid-area:tabs-name}@media(max-width: 1000px){.eael-tabs-nav.eael-tabs-nav-custom .tabs-category-name{margin-bottom:40px}.eael-tabs-nav.eael-tabs-nav-custom .tabs-category-name br{display:none}}.eael-tabs-nav.eael-tabs-nav-custom ul[role=tablist]{grid-area:tabs-list;flex:1;gap:24px;flex-wrap:wrap}.eael-tabs-nav.eael-tabs-nav-custom ul[role=tablist].limit{overflow:hidden;max-height:140px}.eael-tabs-nav.eael-tabs-nav-custom .show-more-tabs{grid-area:tabs-toggle;position:relative;color:#000;font-size:16px;font-weight:700;font-family:\"Manrope\",Sans-serif;text-transform:uppercase;letter-spacing:.6px;margin-top:50px;width:fit-content}.eael-tabs-nav.eael-tabs-nav-custom .show-more-tabs::before{content:\"\";color:#000;font-family:\"themify\";position:absolute;left:calc(100% + 10px);top:calc(50% - 3px);width:30px;height:30px;border-radius:100%;transform:translateY(-50%) rotate(90deg);display:flex;align-items:center;justify-content:center;font-size:24px;animation:bounce 2s infinite}@keyframes bounce{0%,20%,50%,80%,100%{transform:translateY(-50%) translateX(0) rotate(90deg)}40%{transform:translateY(calc(-50% - 10px)) translateX(-10px) rotate(90deg)}60%{transform:translateY(calc(-50% - 5px)) translateX(-5px) rotate(90deg)}}@media(max-width: 1000px){.eael-tabs-nav.eael-tabs-nav-custom{grid-template-areas:\"tabs-name\" \"tabs-list\" \"tabs-toggle\";grid-template-columns:1fr}}.eael-tabs-nav>ul{display:grid !important;grid-template-columns:repeat(auto-fit, 194px)}.eael-tabs-nav>ul li{height:100%}.color-anchor{position:relative;height:100px;display:flex;align-items:center}.color-anchor::before{content:\"\";color:#000;font-family:\"themify\";position:absolute;left:calc(100% - 20px);top:50%;width:100px;height:100px;background:#f4f4f4;border-radius:100%;transform:translateY(-50%);display:flex;align-items:center;justify-content:center;font-size:28px}.color-anchor>.elementor-widget-container{position:relative;height:fit-content !important;z-index:1}.anchor-arrow .elementor-icon{position:relative;display:flex;align-items:center;justify-content:center;width:100px;height:100px;border-radius:100%;background:#f4f4f4;margin-left:-20px}.quality-box{position:relative}.quality-box::before{content:\"\";position:absolute;background-image:url(\"/wp-content/uploads/2024/04/quality-bg.svg\");mix-blend-mode:multiply;background-position:center;background-repeat:no-repeat;background-size:cover;opacity:.4;top:0;bottom:0;right:0;left:auto;width:320px;z-index:1}.quality-box .quality-item{position:relative;z-index:1}.quality-box .quality-item .elementor-icon-box-wrapper .elementor-icon-box-content{position:relative;padding-left:24px}.quality-box .quality-item .elementor-icon-box-wrapper .elementor-icon-box-content::before{content:\"\";position:absolute;left:0;top:6px;bottom:6px;width:2px;background:#000}@media(max-width: 768px){.quality-box .quality-item .elementor-icon-box-wrapper .elementor-icon-box-content:before{display:none}}.numeric-list ol{padding:0;margin:0;counter-reset:number;list-style-type:none}.numeric-list ol li{position:relative;counter-increment:number;padding-left:55px}.numeric-list ol li:not(:last-child){margin-bottom:20px}.numeric-list ol li:before{content:counter(number);position:absolute;left:0;top:0;width:32px;height:32px;border-radius:100%;background:#f4f4f4;display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:700;letter-spacing:.6px}.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow{position:absolute;top:-108px;padding:0;border:none;margin:0 !important}.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow:hover{background:rgba(0,0,0,0)}.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow.carousel-next{right:50px}@media(max-width: 500px){.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow.carousel-next{right:auto;left:calc(50% + 70px);transform:translateX(-50%)}}.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow.carousel-prev{right:130px;left:auto}@media(max-width: 500px){.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow.carousel-prev{right:auto;left:calc(50% - 70px);transform:translateX(-50%)}}@media(max-width: 500px){.home-nasze-produkty .premium-carousel-wrapper .premium-carousel-inner .carousel-arrow{top:-50px}}.home-gallery .elementor-widget-container .swiper .elementor-swiper-button{top:-92px}.home-gallery .elementor-widget-container .swiper .elementor-swiper-button.elementor-swiper-button-prev{left:auto;right:130px;left:auto}@media(max-width: 500px){.home-gallery .elementor-widget-container .swiper .elementor-swiper-button.elementor-swiper-button-prev{right:auto;left:calc(50% - 70px);transform:translateX(-50%)}}.home-gallery .elementor-widget-container .swiper .elementor-swiper-button.elementor-swiper-button-next{right:50px}@media(max-width: 500px){.home-gallery .elementor-widget-container .swiper .elementor-swiper-button.elementor-swiper-button-next{right:auto;left:calc(50% + 70px);transform:translateX(-50%)}}@media(max-width: 500px){.home-gallery .elementor-widget-container .swiper .elementor-swiper-button{top:-50px}}.home-numbers-1{position:relative}.home-numbers-1::before{content:\"\";position:absolute;left:0;top:-115px;width:495px;height:495px;transform:translateX(-50%);background-image:url(\"/wp-content/uploads/2024/04/V.svg\");background-repeat:no-repeat;background-size:contain;background-position:center}.home-troska{position:relative}.home-troska .home-troska-left{position:relative}.home-troska .home-troska-left::before{content:\"\";position:absolute;left:10px;top:0;bottom:0;transform:translateX(-50%);background-image:url(\"/wp-content/uploads/2024/04/V.svg\");background-repeat:no-repeat;background-size:contain;background-position:center}#home-hero-slider{width:100%;max-width:1920px;margin-left:auto;margin-right:auto;overflow:hidden}#home-hero-slider .premium-carousel-inner .slick-dots{display:flex;justify-content:flex-end;left:72%;position:absolute;bottom:7.8%;counter-reset:list;list-style-type:none}#home-hero-slider .premium-carousel-inner .slick-dots>li{position:relative;counter-increment:list;width:auto;margin:0 10px}#home-hero-slider .premium-carousel-inner .slick-dots>li:before{content:\"0\" counter(list);color:#000;font-size:24px;font-weight:700;font-family:\"Manrope\",Sans-serif}@media(max-width: 900px){#home-hero-slider .premium-carousel-inner .slick-dots>li:before{font-size:20px}}#home-hero-slider .premium-carousel-inner .slick-dots>li:first-child::after{content:\"\";position:absolute;top:50%;right:calc(100% + 17px);width:100vw;height:2px;background:#000}#home-hero-slider .premium-carousel-inner .slick-dots>li:last-child::after{content:\"\";position:absolute;top:50%;left:calc(100% + 17px);width:100vw;height:2px;background:#000}#home-hero-slider .premium-carousel-inner .slick-dots>li:last-child.slick-active{margin:0 10px 0 53px}#home-hero-slider .premium-carousel-inner .slick-dots>li:last-child.slick-active .dot-helper{position:relative}#home-hero-slider .premium-carousel-inner .slick-dots>li:last-child.slick-active .dot-helper::before{content:\"\";position:absolute;width:33px;height:2px;right:47px;background:#000}#home-hero-slider .premium-carousel-inner .slick-dots>li:first-child.slick-active{margin:0 53px 0 10px}#home-hero-slider .premium-carousel-inner .slick-dots>li:first-child.slick-active .dot-helper{position:relative}#home-hero-slider .premium-carousel-inner .slick-dots>li:first-child.slick-active .dot-helper::after{content:\"\";position:absolute;width:33px;height:2px;left:15px;background:#000}#home-hero-slider .premium-carousel-inner .slick-dots>li:not(:last-child,:first-child).slick-active{margin:0 53px}#home-hero-slider .premium-carousel-inner .slick-dots>li:not(:last-child,:first-child).slick-active .dot-helper{position:relative}#home-hero-slider .premium-carousel-inner .slick-dots>li:not(:last-child,:first-child).slick-active .dot-helper::before{content:\"\";position:absolute;width:33px;height:2px;right:47px;background:#000}#home-hero-slider .premium-carousel-inner .slick-dots>li:not(:last-child,:first-child).slick-active .dot-helper::after{content:\"\";position:absolute;width:33px;height:2px;left:15px;background:#000}@media(max-width: 1100px){#home-hero-slider .premium-carousel-inner .slick-dots{left:70%}}@media(max-width: 900px){#home-hero-slider .premium-carousel-inner .slick-dots{left:60%;bottom:6%}}@media(max-width: 768px){#home-hero-slider .premium-carousel-inner .slick-dots{left:50%;transform:translateX(-50%)}}@media(max-width: 768px){#home-hero-slider .slide-text-box{bottom:15%}}.product-gallery-colors .show-more-colors .premium-button-text-icon-wrapper{display:flex;align-items:center}.product-gallery-colors .show-more-colors .premium-button-text-icon-wrapper span{padding-top:5px}.product-colors .elementor-image-gallery .gallery{display:flex;flex-wrap:wrap;gap:32px;max-height:128px;overflow:hidden}.product-colors .elementor-image-gallery .gallery .gallery-item{display:flex;flex-direction:row;align-items:center;gap:13px;width:calc(50% - 16px)}.product-colors .elementor-image-gallery .gallery .gallery-item .gallery-icon{width:48px;min-width:48px;height:48px}.product-colors .elementor-image-gallery .gallery .gallery-item .gallery-icon img{height:100%;width:100%;object-fit:cover}.product-colors .elementor-image-gallery .gallery .gallery-item .gallery-caption{padding:0}.product-colors-s2 .elementor-image-gallery .gallery{display:flex;flex-wrap:wrap}.product-colors-s2 .elementor-image-gallery .gallery .gallery-item{display:flex;flex-direction:column;align-items:flex-start;gap:2px}.product-colors-s2 .elementor-image-gallery .gallery .gallery-item .gallery-icon{width:98px;min-width:98px;height:98px}.product-colors-s2 .elementor-image-gallery .gallery .gallery-item .gallery-icon img{height:100%;width:100%;object-fit:cover}.product-colors-s2 .elementor-image-gallery .gallery .gallery-item .gallery-caption{padding:0}.product-gallery-drafts .show-more-drafts .premium-button-text-icon-wrapper{display:flex;align-items:center}.product-gallery-drafts .show-more-drafts .premium-button-text-icon-wrapper span{padding-top:5px}.product-drafts .elementor-image-gallery .gallery{max-height:210px;overflow:hidden}.product-drafts .elementor-image-gallery .gallery .gallery-item .gallery-caption{padding:0}.product-gallery-drafts .elementor-image-gallery .gallery:not(#gallery-6){max-height:1040px;overflow:hidden}.product-catalog-bg{position:relative}.product-catalog-bg::before{content:\"\";position:absolute;left:30px;top:0;width:495px;height:495px;transform:translateX(-50%);background-image:url(\"/wp-content/uploads/2024/04/V.svg\");background-repeat:no-repeat;background-size:contain;background-position:center}#footer-data{position:relative;overflow:hidden}#footer-data::before{content:\"\";position:absolute;top:115px;height:2px;width:100vw;background:#f4f4f4}body.page-id-729 .custom-bg-v .elementor-widget-container{position:relative}body.page-id-729 .custom-bg-v .elementor-widget-container::before{content:\"\";position:absolute;left:calc(100% - 5px);top:50%;width:495px;height:495px;transform:translate(-50%, -50%);background-image:url(\"/wp-content/uploads/2024/04/Group-371.svg\");background-repeat:no-repeat;background-size:contain;background-position:center}#quote-box .carousel-arrow{left:auto}#quote-box .carousel-arrow.carousel-prev{top:-60px;right:100px}#quote-box .carousel-arrow.carousel-next{top:-60px;right:0px}#contact-form select.wpcf7-select{visibility:hidden;opacity:0;display:none}#contact-form .select-custom-text{position:relative;padding:15px 24px;border:1px solid #000;font-family:\"League Spartan\",Sans-serif;letter-spacing:.6px;font-weight:400}#contact-form .select-custom-text.selected{color:#000}#contact-form .select-custom-text.active::before{transform:translateY(-50%) scale(-1)}#contact-form .select-custom-text::before{content:\"3\";position:absolute;top:50%;right:24px;transform:translateY(-50%);transition:all 250ms ease-in-out;font-family:\"ElegantIcons\";font-size:26px;color:#000}#contact-form .select-custom-options{list-style:none;padding:15px 24px;border-left:1px solid #000;border-right:1px solid #000;border-bottom:1px solid #000}#contact-form .select-custom-options li{color:#000;font-family:\"League Spartan\",Sans-serif;letter-spacing:.6px;font-weight:400;cursor:pointer}#contact-form .select-custom-options li:not(:last-child){margin-bottom:10px}#contact-form .wpcf7-list-item{margin-left:0}#contact-form .wpcf7-list-item label{display:flex;flex-direction:row;gap:10px;cursor:pointer}#contact-form input[type=checkbox]{position:relative;appearance:none;width:14px;min-width:14px;height:14px;border-radius:100%;border:1px solid #000;overflow:hidden;margin-top:2px}#contact-form input[type=checkbox]:checked::before{top:6px;left:4px}#contact-form input[type=checkbox]:checked::after{top:7px;left:3px}#contact-form input[type=checkbox]::before{content:\"\";position:absolute;top:-4px;left:14px;width:6px;height:1px;background:#000;transform:rotate(-45deg);transition:all 250ms ease-in-out}#contact-form input[type=checkbox]::after{content:\"\";position:absolute;top:-3px;left:-7px;width:3px;height:1px;background:#000;transform:rotate(45deg);transition:all 250ms ease-in-out}#contact-form input[type=text]::placeholder,#contact-form input[type=tel]::placeholder,#contact-form input[type=email]::placeholder{color:#a8a8a8}#contact-form textarea::placeholder{color:#a8a8a8}#contact-form p{color:#a8a8a8;font-size:16px;font-family:\"League Spartan\" sans-serif;letter-spacing:.6px;font-weight:400}#contact-form .form-submit-btn{position:relative;width:fit-content;margin:20px 0 0 auto}#contact-form .form-submit-btn::before{content:\"\";color:#000;font-family:\"themify\";position:absolute;right:0;top:0;width:100px;height:100px;background:#f4f4f4;border-radius:100%;display:flex;align-items:center;justify-content:center;font-size:28px}#contact-form .form-submit-btn input.wpcf7-submit{position:relative;height:100px;display:flex;align-items:center;padding-right:80px}#contact-form .wpcf7-spinner{display:block}#contact-form.contact-form-2 .row{display:grid;grid-template-columns:1fr 1fr;gap:20px}#contact-form.contact-form-2 .row .col-6 p{width:100%}#contact-form.contact-form-2 .row .col-6 textarea{max-height:208px}.customized-shapes-box{position:relative}.customized-shapes-box::before{content:\"\";position:absolute;background-image:url(\"/wp-content/uploads/2024/04/quality-bg.svg\");mix-blend-mode:multiply;background-position:center;background-repeat:no-repeat;background-size:cover;opacity:.4;top:0;bottom:0;right:0;left:auto;width:320px;z-index:1}#accessories-head::before{content:\"\";position:absolute;background-image:url(\"/wp-content/uploads/2024/05/Group-373.svg\");mix-blend-mode:multiply;background-position:center;background-repeat:no-repeat;background-size:cover;opacity:.5;top:0;bottom:0;right:auto;left:20px;width:100px;z-index:1}.box-bg-v::before{content:\"\";position:absolute;right:0px;left:auto;top:50%;width:495px;height:495px;transform:translate(50%, -50%);background-image:url(\"/wp-content/uploads/2024/04/V.svg\");background-repeat:no-repeat;background-size:contain;background-position:center;z-index:1;opacity:.5}body.elementor-page>div[data-elementor-type=single-page]{overflow:hidden}#checkbox-btn.active a::before{content:\"\";position:absolute;top:7px;left:4px;width:11px;height:6px;transform:rotate(-45deg);transition:all 250ms ease-in-out;border-bottom:1.5px solid #000;border-left:1.5px solid #000}#checkbox-btn a{position:relative;padding-left:30px;width:fit-content;display:block}#checkbox-btn a::after{content:\"\";position:absolute;top:2px;left:0px;width:18px;height:18px;border:1px solid #000}.product-list-icon-desc .elementor-icon-box-icon{position:relative;padding-right:20px}.product-list-icon-desc .elementor-icon-box-icon::before{content:\"\";position:absolute;right:0;top:50%;transform:translateY(-50%);width:2px;height:40px;background:#000}.product-list-icon-desc .elementor-icon-box-title{margin:0}.custom-acc .eael-adv-accordion .eael-accordion-list:not(:last-child){border-bottom:1px solid #000}.custom-acc .eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle{transform:rotate(180deg) !important}#top-header-box.fixed{position:fixed;top:0;left:0;right:0;z-index:999}header{background:#fff}header.active{position:sticky;top:0;z-index:999999}.addon-btn-title{margin:0;display:flex;align-items:center}.addon-btn-title .elementor-icon{position:relative;margin-left:-20px;z-index:-1}.addon-btn-title .elementor-icon::before{content:\"\";position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);width:90px;height:90px;background:#e6e3e3;border-radius:100%;z-index:-1}.addon-btn-title .elementor-icon i{color:#000;width:100px;height:100px;background:#f4f4f4;border-radius:100%;display:flex;align-items:center;justify-content:center;font-size:28px;transition:all 250ms ease-in-out}.addon-btn-title span{position:relative}.addon-btn-title span::before{content:\"\";position:absolute;left:0;bottom:0;width:0;height:2px;background:#000;transition:width 250ms ease-in-out}.addon-btn-title:hover span::before{width:100%}.addon-btn-title:hover .elementor-icon::before{animation:puls 500ms ease-in-out}.addon-btn-title:hover .elementor-icon i{background:#e6e3e3}@keyframes puls{0%{opacity:1}100%{width:140px;height:140px;opacity:0}}@media(min-width: 501px){#center-header-box>.e-con-inner .center-header-box-menu .elementor-nav-menu li.menu-item-4927{display:none}}@media(min-width: 1025px){#center-header-box>.e-con-inner .center-header-box-menu .elementor-nav-menu>.menu-item.current_page_item>a::after{width:100%}#center-header-box>.e-con-inner .center-header-box-menu .elementor-nav-menu>.menu-item>a::after{width:0;transition:width 250ms ease-in-out}#center-header-box>.e-con-inner .center-header-box-menu .elementor-nav-menu>.menu-item>a:hover::after{width:100%}}@media(max-width: 1024px){#center-header-box>.e-con-inner .center-header-box-logo{flex:1;display:flex}#center-header-box>.e-con-inner .center-header-box-menu>.elementor-widget-container>.elementor-nav-menu--dropdown{position:absolute;right:0px;left:auto;top:64px;width:100vw;z-index:1}}@media(max-width: 1024px)and (max-width: 768px){#center-header-box>.e-con-inner .center-header-box-menu>.elementor-widget-container>.elementor-nav-menu--dropdown{top:52px}}@media(max-width: 1024px){#center-header-box>.e-con-inner .center-header-box-menu .elementor-nav-menu .menu-item ul.sub-menu{background:#f4f4f4}}@media(max-width: 1024px)and (max-width: 500px){#center-header-box>.e-con-inner .center-header-box-contact{display:none}}#scroller-rows{overflow:hidden}#scroller-rows>.e-con-inner{overflow:auto;padding-right:20px}#scroller-rows>.e-con-inner::-webkit-scrollbar{width:10px}#scroller-rows>.e-con-inner::-webkit-scrollbar-track{background:#f4f4f4}#scroller-rows>.e-con-inner::-webkit-scrollbar-thumb{background:#d9d9d9}#scroller-rows>.e-con-inner::-webkit-scrollbar-thumb:hover{background:#afafaf}@media(max-width: 1024px){#page-hero-baner h1{font-size:50px}#page-hero-baner h2{font-size:24px}}@media(max-width: 576px){#page-hero-baner h1{font-size:40px}#page-hero-baner h2{font-size:22px}}",".overflow {\r\n overflow: hidden;\r\n}\r\n\r\ninput[id^='eael-tabs-filter-type-'] {\r\n appearance: none;\r\n position: relative;\r\n width: 18px;\r\n min-width: 18px;\r\n height: 18px;\r\n border: 1px solid #000;\r\n overflow: hidden;\r\n\r\n &::before {\r\n content: '';\r\n position: absolute;\r\n top: -8px;\r\n left: 19px;\r\n width: 11px;\r\n height: 1.5px;\r\n background: #000;\r\n transform: rotate(-45deg);\r\n transition: all 250ms ease-in-out;\r\n }\r\n\r\n &::after {\r\n content: '';\r\n position: absolute;\r\n top: -6px;\r\n left: -13px;\r\n width: 5px;\r\n height: 1.5px;\r\n background: #000;\r\n transform: rotate(45deg);\r\n transition: all 250ms ease-in-out;\r\n }\r\n\r\n &:checked {\r\n &::before {\r\n top: 7px;\r\n left: 4px;\r\n }\r\n\r\n &::after {\r\n top: 9px;\r\n left: 2px;\r\n }\r\n }\r\n}\r\n\r\n.eael-tabs-filter {\r\n flex-wrap: wrap;\r\n row-gap: 20px !important;\r\n\r\n .eael-tabs-filter-types {\r\n ul {\r\n flex-wrap: wrap;\r\n row-gap: 20px !important;\r\n }\r\n\r\n label {\r\n padding-top: 3px;\r\n }\r\n }\r\n}\r\n\r\n.eael-tabs-nav {\r\n &.eael-tabs-nav-custom {\r\n // display: flex;\r\n // flex-direction: row;\r\n column-gap: 50px;\r\n\r\n display: grid;\r\n grid-template-areas:\r\n 'tabs-name tabs-list'\r\n 'tabs-name tabs-toggle';\r\n grid-template-columns: auto 1fr;\r\n\r\n .tabs-category-name {\r\n grid-area: tabs-name;\r\n\r\n @media (max-width: 1000px) {\r\n margin-bottom: 40px;\r\n\r\n br {\r\n display: none;\r\n }\r\n }\r\n }\r\n\r\n ul[role='tablist'] {\r\n grid-area: tabs-list;\r\n flex: 1;\r\n gap: 24px;\r\n flex-wrap: wrap;\r\n\r\n &.limit {\r\n overflow: hidden;\r\n max-height: 140px;\r\n }\r\n }\r\n\r\n .show-more-tabs {\r\n grid-area: tabs-toggle;\r\n position: relative;\r\n color: #000;\r\n font-size: 16px;\r\n font-weight: 700;\r\n font-family: 'Manrope', Sans-serif;\r\n text-transform: uppercase;\r\n letter-spacing: 0.6px;\r\n margin-top: 50px;\r\n width: fit-content;\r\n\r\n &::before {\r\n content: '\\e65a';\r\n color: #000;\r\n font-family: 'themify';\r\n position: absolute;\r\n left: calc(100% + 10px);\r\n top: calc(50% - 3px);\r\n width: 30px;\r\n height: 30px;\r\n border-radius: 100%;\r\n transform: translateY(-50%) rotate(90deg);\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n font-size: 24px;\r\n animation: bounce 2s infinite;\r\n }\r\n\r\n @keyframes bounce {\r\n\r\n 0%,\r\n 20%,\r\n 50%,\r\n 80%,\r\n 100% {\r\n transform: translateY(calc(-50%)) translateX(0) rotate(90deg);\r\n }\r\n\r\n 40% {\r\n transform: translateY(calc(-50% - 10px)) translateX(-10px) rotate(90deg);\r\n }\r\n\r\n 60% {\r\n transform: translateY(calc(-50% - 5px)) translateX(-5px) rotate(90deg);\r\n }\r\n }\r\n }\r\n\r\n @media (max-width: 1000px) {\r\n grid-template-areas:\r\n 'tabs-name'\r\n 'tabs-list'\r\n 'tabs-toggle';\r\n grid-template-columns: 1fr;\r\n }\r\n }\r\n\r\n >ul {\r\n display: grid !important;\r\n grid-template-columns: repeat(auto-fit, 194px);\r\n\r\n li {\r\n height: 100%;\r\n }\r\n }\r\n}\r\n\r\n.color-anchor {\r\n position: relative;\r\n height: 100px;\r\n display: flex;\r\n align-items: center;\r\n\r\n &::before {\r\n content: '\\e65a';\r\n color: #000;\r\n font-family: 'themify';\r\n position: absolute;\r\n left: calc(100% - 20px);\r\n top: 50%;\r\n width: 100px;\r\n height: 100px;\r\n background: #f4f4f4;\r\n border-radius: 100%;\r\n transform: translateY(-50%);\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n font-size: 28px;\r\n }\r\n\r\n >.elementor-widget-container {\r\n position: relative;\r\n height: fit-content !important;\r\n z-index: 1;\r\n }\r\n}\r\n\r\n.anchor-arrow {\r\n .elementor-icon {\r\n position: relative;\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n width: 100px;\r\n height: 100px;\r\n border-radius: 100%;\r\n background: #f4f4f4;\r\n margin-left: -20px;\r\n }\r\n}\r\n\r\n.quality-box {\r\n position: relative;\r\n\r\n &::before {\r\n content: '';\r\n position: absolute;\r\n background-image: url('/wp-content/uploads/2024/04/quality-bg.svg');\r\n mix-blend-mode: multiply;\r\n background-position: center;\r\n background-repeat: no-repeat;\r\n background-size: cover;\r\n opacity: 0.4;\r\n top: 0;\r\n bottom: 0;\r\n right: 0;\r\n left: auto;\r\n width: 320px;\r\n z-index: 1;\r\n }\r\n\r\n .quality-item {\r\n position: relative;\r\n z-index: 1;\r\n\r\n .elementor-icon-box-wrapper {\r\n .elementor-icon-box-content {\r\n position: relative;\r\n padding-left: 24px;\r\n\r\n &::before {\r\n content: '';\r\n position: absolute;\r\n left: 0;\r\n top: 6px;\r\n bottom: 6px;\r\n width: 2px;\r\n background: #000;\r\n }\r\n\r\n @media (max-width: 768px) {\r\n &:before {\r\n display: none;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n.numeric-list {\r\n ol {\r\n padding: 0;\r\n margin: 0;\r\n counter-reset: number;\r\n list-style-type: none;\r\n\r\n li {\r\n position: relative;\r\n counter-increment: number;\r\n padding-left: 55px;\r\n\r\n &:not(:last-child) {\r\n margin-bottom: 20px;\r\n }\r\n\r\n &:before {\r\n content: counter(number);\r\n position: absolute;\r\n left: 0;\r\n top: 0;\r\n width: 32px;\r\n height: 32px;\r\n border-radius: 100%;\r\n background: #f4f4f4;\r\n\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n\r\n font-size: 18px;\r\n font-weight: 700;\r\n letter-spacing: 0.6px;\r\n }\r\n }\r\n }\r\n}\r\n\r\n.home-nasze-produkty {\r\n .premium-carousel-wrapper {\r\n .premium-carousel-inner {\r\n .carousel-arrow {\r\n position: absolute;\r\n top: -108px;\r\n padding: 0;\r\n border: none;\r\n margin: 0 !important;\r\n\r\n &:hover {\r\n background: transparent;\r\n }\r\n\r\n &.carousel-next {\r\n right: 50px;\r\n\r\n @media (max-width: 500px) {\r\n right: auto;\r\n left: calc(50% + 70px);\r\n transform: translateX(-50%);\r\n }\r\n }\r\n\r\n &.carousel-prev {\r\n right: 130px;\r\n left: auto;\r\n\r\n @media (max-width: 500px) {\r\n right: auto;\r\n left: calc(50% - 70px);\r\n transform: translateX(-50%);\r\n }\r\n }\r\n\r\n @media (max-width: 500px) {\r\n top: -50px;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n.home-gallery {\r\n .elementor-widget-container {\r\n .swiper {\r\n .elementor-swiper-button {\r\n top: -92px;\r\n\r\n &.elementor-swiper-button-prev {\r\n left: auto;\r\n right: 130px;\r\n left: auto;\r\n\r\n @media (max-width: 500px) {\r\n right: auto;\r\n left: calc(50% - 70px);\r\n transform: translateX(-50%);\r\n }\r\n }\r\n\r\n &.elementor-swiper-button-next {\r\n right: 50px;\r\n\r\n @media (max-width: 500px) {\r\n right: auto;\r\n left: calc(50% + 70px);\r\n transform: translateX(-50%);\r\n }\r\n }\r\n\r\n @media (max-width: 500px) {\r\n top: -50px;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n.home-numbers-1 {\r\n position: relative;\r\n\r\n &::before {\r\n content: '';\r\n position: absolute;\r\n left: 0;\r\n top: -115px;\r\n width: 495px;\r\n height: 495px;\r\n transform: translateX(-50%);\r\n background-image: url('/wp-content/uploads/2024/04/V.svg');\r\n background-repeat: no-repeat;\r\n background-size: contain;\r\n background-position: center;\r\n }\r\n}\r\n\r\n.home-troska {\r\n position: relative;\r\n\r\n .home-troska-left {\r\n position: relative;\r\n\r\n &::before {\r\n content: '';\r\n position: absolute;\r\n left: 10px;\r\n top: 0;\r\n bottom: 0;\r\n transform: translateX(-50%);\r\n background-image: url('/wp-content/uploads/2024/04/V.svg');\r\n background-repeat: no-repeat;\r\n background-size: contain;\r\n background-position: center;\r\n }\r\n }\r\n}\r\n\r\n#home-hero-slider {\r\n width: 100%;\r\n max-width: 1920px;\r\n margin-left: auto;\r\n margin-right: auto;\r\n overflow: hidden;\r\n\r\n .premium-carousel-inner {\r\n .slick-dots {\r\n display: flex;\r\n justify-content: flex-end;\r\n left: 72%;\r\n\r\n position: absolute;\r\n bottom: 7.8%;\r\n\r\n counter-reset: list;\r\n list-style-type: none;\r\n\r\n &>li {\r\n position: relative;\r\n counter-increment: list;\r\n width: auto;\r\n margin: 0 10px;\r\n\r\n &:before {\r\n content: '0'counter(list);\r\n color: #000;\r\n font-size: 24px;\r\n font-weight: 700;\r\n font-family: 'Manrope', Sans-serif;\r\n\r\n @media (max-width: 900px) {\r\n font-size: 20px;\r\n }\r\n }\r\n\r\n &:first-child {\r\n &::after {\r\n content: '';\r\n position: absolute;\r\n top: 50%;\r\n right: calc(100% + 17px);\r\n width: 100vw;\r\n height: 2px;\r\n background: #000;\r\n }\r\n }\r\n\r\n &:last-child {\r\n &::after {\r\n content: '';\r\n position: absolute;\r\n top: 50%;\r\n left: calc(100% + 17px);\r\n width: 100vw;\r\n height: 2px;\r\n background: #000;\r\n }\r\n }\r\n\r\n &:last-child {\r\n &.slick-active {\r\n margin: 0 10px 0 53px;\r\n\r\n .dot-helper {\r\n position: relative;\r\n\r\n &::before {\r\n content: '';\r\n position: absolute;\r\n width: 33px;\r\n height: 2px;\r\n right: 47px;\r\n background: #000;\r\n }\r\n }\r\n }\r\n }\r\n\r\n &:first-child {\r\n &.slick-active {\r\n margin: 0 53px 0 10px;\r\n\r\n .dot-helper {\r\n position: relative;\r\n\r\n &::after {\r\n content: '';\r\n position: absolute;\r\n width: 33px;\r\n height: 2px;\r\n left: 15px;\r\n background: #000;\r\n }\r\n }\r\n }\r\n }\r\n\r\n &:not(:last-child, :first-child) {\r\n &.slick-active {\r\n margin: 0 53px;\r\n\r\n .dot-helper {\r\n position: relative;\r\n\r\n &::before {\r\n content: '';\r\n position: absolute;\r\n width: 33px;\r\n height: 2px;\r\n right: 47px;\r\n background: #000;\r\n }\r\n\r\n &::after {\r\n content: '';\r\n position: absolute;\r\n width: 33px;\r\n height: 2px;\r\n left: 15px;\r\n background: #000;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n @media (max-width: 1100px) {\r\n left: 70%;\r\n }\r\n\r\n @media (max-width: 900px) {\r\n left: 60%;\r\n bottom: 6%;\r\n }\r\n\r\n @media (max-width: 768px) {\r\n left: 50%;\r\n transform: translateX(-50%);\r\n }\r\n }\r\n }\r\n\r\n .slide-text-box {\r\n @media (max-width: 768px) {\r\n bottom: 15%;\r\n }\r\n }\r\n}\r\n\r\n.product-gallery-colors {\r\n .show-more-colors {\r\n .premium-button-text-icon-wrapper {\r\n display: flex;\r\n align-items: center;\r\n\r\n span {\r\n padding-top: 5px;\r\n }\r\n }\r\n }\r\n}\r\n\r\n.product-colors {\r\n .elementor-image-gallery {\r\n .gallery {\r\n display: flex;\r\n flex-wrap: wrap;\r\n gap: 32px;\r\n max-height: 128px;\r\n overflow: hidden;\r\n\r\n .gallery-item {\r\n display: flex;\r\n flex-direction: row;\r\n align-items: center;\r\n gap: 13px;\r\n width: calc(50% - 16px);\r\n\r\n .gallery-icon {\r\n width: 48px;\r\n min-width: 48px;\r\n height: 48px;\r\n\r\n img {\r\n height: 100%;\r\n width: 100%;\r\n object-fit: cover;\r\n }\r\n }\r\n\r\n .gallery-caption {\r\n padding: 0;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n.product-colors-s2 {\r\n .elementor-image-gallery {\r\n .gallery {\r\n display: flex;\r\n flex-wrap: wrap;\r\n\r\n .gallery-item {\r\n display: flex;\r\n flex-direction: column;\r\n align-items: flex-start;\r\n gap: 2px;\r\n // width: calc(50% - 16px);\r\n\r\n .gallery-icon {\r\n width: 98px;\r\n min-width: 98px;\r\n height: 98px;\r\n\r\n img {\r\n height: 100%;\r\n width: 100%;\r\n object-fit: cover;\r\n }\r\n }\r\n\r\n .gallery-caption {\r\n padding: 0;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n.product-gallery-drafts {\r\n .show-more-drafts {\r\n .premium-button-text-icon-wrapper {\r\n display: flex;\r\n align-items: center;\r\n\r\n span {\r\n padding-top: 5px;\r\n }\r\n }\r\n }\r\n}\r\n\r\n.product-drafts {\r\n .elementor-image-gallery {\r\n .gallery {\r\n max-height: 210px;\r\n overflow: hidden;\r\n\r\n .gallery-item {\r\n .gallery-caption {\r\n padding: 0;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n.product-gallery-drafts {\r\n .elementor-image-gallery {\r\n .gallery:not(#gallery-6) {\r\n max-height: 1040px;\r\n overflow: hidden;\r\n }\r\n }\r\n}\r\n\r\n.product-catalog-bg {\r\n position: relative;\r\n\r\n &::before {\r\n content: '';\r\n position: absolute;\r\n left: 30px;\r\n top: 0;\r\n width: 495px;\r\n height: 495px;\r\n transform: translateX(-50%);\r\n background-image: url('/wp-content/uploads/2024/04/V.svg');\r\n background-repeat: no-repeat;\r\n background-size: contain;\r\n background-position: center;\r\n }\r\n}\r\n\r\n#footer-data {\r\n position: relative;\r\n overflow: hidden;\r\n\r\n &::before {\r\n content: '';\r\n position: absolute;\r\n top: 115px;\r\n height: 2px;\r\n width: 100vw;\r\n background: #f4f4f4;\r\n }\r\n}\r\n\r\n//* Okna drewniane\r\nbody.page-id-729 {\r\n .custom-bg-v {\r\n .elementor-widget-container {\r\n position: relative;\r\n\r\n &::before {\r\n content: '';\r\n position: absolute;\r\n left: calc(100% - 5px);\r\n top: 50%;\r\n width: 495px;\r\n height: 495px;\r\n transform: translate(-50%, -50%);\r\n background-image: url('/wp-content/uploads/2024/04/Group-371.svg');\r\n background-repeat: no-repeat;\r\n background-size: contain;\r\n background-position: center;\r\n }\r\n }\r\n }\r\n}\r\n\r\n#quote-box {\r\n .carousel-arrow {\r\n left: auto;\r\n\r\n &.carousel-prev {\r\n top: -60px;\r\n right: 100px;\r\n }\r\n\r\n &.carousel-next {\r\n top: -60px;\r\n right: 0px;\r\n }\r\n }\r\n}\r\n\r\n#contact-form {\r\n select {\r\n &.wpcf7-select {\r\n visibility: hidden;\r\n opacity: 0;\r\n display: none;\r\n }\r\n }\r\n\r\n .select-custom-text {\r\n position: relative;\r\n padding: 15px 24px;\r\n border: 1px solid #000;\r\n\r\n font-family: 'League Spartan', Sans-serif;\r\n letter-spacing: 0.6px;\r\n font-weight: 400;\r\n\r\n &.selected {\r\n color: #000;\r\n }\r\n\r\n &.active {\r\n &::before {\r\n transform: translateY(-50%) scale(-1);\r\n }\r\n }\r\n\r\n &::before {\r\n content: '\\33';\r\n position: absolute;\r\n top: 50%;\r\n right: 24px;\r\n transform: translateY(-50%);\r\n transition: all 250ms ease-in-out;\r\n font-family: 'ElegantIcons';\r\n font-size: 26px;\r\n color: #000;\r\n }\r\n }\r\n\r\n .select-custom-options {\r\n list-style: none;\r\n padding: 15px 24px;\r\n border-left: 1px solid #000;\r\n border-right: 1px solid #000;\r\n border-bottom: 1px solid #000;\r\n\r\n li {\r\n color: #000;\r\n font-family: 'League Spartan', Sans-serif;\r\n letter-spacing: 0.6px;\r\n font-weight: 400;\r\n cursor: pointer;\r\n\r\n &:not(:last-child) {\r\n margin-bottom: 10px;\r\n }\r\n }\r\n }\r\n\r\n .wpcf7-list-item {\r\n margin-left: 0;\r\n\r\n label {\r\n display: flex;\r\n flex-direction: row;\r\n gap: 10px;\r\n cursor: pointer;\r\n }\r\n }\r\n\r\n input {\r\n &[type='checkbox'] {\r\n position: relative;\r\n appearance: none;\r\n width: 14px;\r\n min-width: 14px;\r\n height: 14px;\r\n border-radius: 100%;\r\n border: 1px solid #000;\r\n overflow: hidden;\r\n margin-top: 2px;\r\n\r\n &:checked {\r\n &::before {\r\n top: 6px;\r\n left: 4px;\r\n }\r\n\r\n &::after {\r\n top: 7px;\r\n left: 3px;\r\n }\r\n }\r\n\r\n &::before {\r\n content: '';\r\n position: absolute;\r\n top: -4px;\r\n left: 14px;\r\n width: 6px;\r\n height: 1px;\r\n background: #000;\r\n transform: rotate(-45deg);\r\n transition: all 250ms ease-in-out;\r\n }\r\n\r\n &::after {\r\n content: '';\r\n position: absolute;\r\n top: -3px;\r\n left: -7px;\r\n width: 3px;\r\n height: 1px;\r\n background: #000;\r\n transform: rotate(45deg);\r\n transition: all 250ms ease-in-out;\r\n }\r\n }\r\n\r\n &[type='text'],\r\n &[type='tel'],\r\n &[type='email'] {\r\n &::placeholder {\r\n color: #a8a8a8;\r\n }\r\n }\r\n }\r\n\r\n textarea {\r\n &::placeholder {\r\n color: #a8a8a8;\r\n }\r\n }\r\n\r\n p {\r\n color: #a8a8a8;\r\n font-size: 16px;\r\n font-family: 'League Spartan'sans-serif;\r\n letter-spacing: 0.6px;\r\n font-weight: 400;\r\n }\r\n\r\n .form-submit-btn {\r\n position: relative;\r\n width: fit-content;\r\n margin: 20px 0 0 auto;\r\n\r\n &::before {\r\n content: '\\e65a';\r\n color: #000;\r\n font-family: 'themify';\r\n position: absolute;\r\n right: 0;\r\n top: 0;\r\n width: 100px;\r\n height: 100px;\r\n background: #f4f4f4;\r\n border-radius: 100%;\r\n // transform: translateY(-50%);\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n font-size: 28px;\r\n }\r\n\r\n input {\r\n &.wpcf7-submit {\r\n position: relative;\r\n height: 100px;\r\n display: flex;\r\n align-items: center;\r\n padding-right: 80px;\r\n }\r\n }\r\n }\r\n\r\n .wpcf7-spinner {\r\n display: block;\r\n }\r\n}\r\n\r\n#contact-form.contact-form-2 {\r\n .row {\r\n display: grid;\r\n grid-template-columns: 1fr 1fr;\r\n gap: 20px;\r\n\r\n .col-6 {\r\n p {\r\n width: 100%;\r\n }\r\n\r\n textarea {\r\n max-height: 208px;\r\n }\r\n }\r\n }\r\n}\r\n\r\n.customized-shapes-box {\r\n position: relative;\r\n\r\n &::before {\r\n content: '';\r\n position: absolute;\r\n background-image: url('/wp-content/uploads/2024/04/quality-bg.svg');\r\n mix-blend-mode: multiply;\r\n background-position: center;\r\n background-repeat: no-repeat;\r\n background-size: cover;\r\n opacity: 0.4;\r\n top: 0;\r\n bottom: 0;\r\n right: 0;\r\n left: auto;\r\n width: 320px;\r\n z-index: 1;\r\n }\r\n}\r\n\r\n#accessories-head {\r\n &::before {\r\n content: '';\r\n position: absolute;\r\n background-image: url('/wp-content/uploads/2024/05/Group-373.svg');\r\n mix-blend-mode: multiply;\r\n background-position: center;\r\n background-repeat: no-repeat;\r\n background-size: cover;\r\n opacity: 0.5;\r\n top: 0;\r\n bottom: 0;\r\n right: auto;\r\n left: 20px;\r\n width: 100px;\r\n z-index: 1;\r\n }\r\n}\r\n\r\n.box-bg-v {\r\n &::before {\r\n content: '';\r\n position: absolute;\r\n right: 0px;\r\n left: auto;\r\n top: 50%;\r\n width: 495px;\r\n height: 495px;\r\n transform: translate(50%, -50%);\r\n background-image: url('/wp-content/uploads/2024/04/V.svg');\r\n background-repeat: no-repeat;\r\n background-size: contain;\r\n background-position: center;\r\n z-index: 1;\r\n opacity: 0.5;\r\n }\r\n}\r\n\r\nbody.elementor-page {\r\n >div[data-elementor-type='single-page'] {\r\n overflow: hidden;\r\n }\r\n}\r\n\r\n#checkbox-btn {\r\n &.active {\r\n a {\r\n &::before {\r\n content: '';\r\n position: absolute;\r\n top: 7px;\r\n left: 4px;\r\n width: 11px;\r\n height: 6px;\r\n transform: rotate(-45deg);\r\n transition: all 250ms ease-in-out;\r\n border-bottom: 1.5px solid #000;\r\n border-left: 1.5px solid #000;\r\n }\r\n }\r\n }\r\n\r\n a {\r\n position: relative;\r\n padding-left: 30px;\r\n width: fit-content;\r\n display: block;\r\n\r\n &::after {\r\n content: '';\r\n position: absolute;\r\n top: 2px;\r\n left: 0px;\r\n width: 18px;\r\n height: 18px;\r\n border: 1px solid #000;\r\n }\r\n }\r\n}\r\n\r\n.product-list-icon-desc {\r\n .elementor-icon-box-icon {\r\n position: relative;\r\n padding-right: 20px;\r\n\r\n &::before {\r\n content: '';\r\n position: absolute;\r\n right: 0;\r\n top: 50%;\r\n transform: translateY(-50%);\r\n width: 2px;\r\n height: 40px;\r\n background: #000;\r\n }\r\n }\r\n\r\n .elementor-icon-box-title {\r\n margin: 0;\r\n }\r\n}\r\n\r\n.custom-acc {\r\n .eael-adv-accordion {\r\n .eael-accordion-list {\r\n &:not(:last-child) {\r\n border-bottom: 1px solid #000;\r\n }\r\n\r\n .eael-accordion-header {\r\n &.active {\r\n .fa-toggle {\r\n transform: rotate(180deg) !important;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n#top-header-box {\r\n &.fixed {\r\n position: fixed;\r\n top: 0;\r\n left: 0;\r\n right: 0;\r\n z-index: 999;\r\n }\r\n}\r\n\r\nheader {\r\n background: #fff;\r\n\r\n &.active {\r\n position: sticky;\r\n top: 0;\r\n z-index: 999999;\r\n }\r\n}\r\n\r\n.addon-btn-title {\r\n margin: 0;\r\n display: flex;\r\n align-items: center;\r\n\r\n .elementor-icon {\r\n position: relative;\r\n margin-left: -20px;\r\n z-index: -1;\r\n\r\n &::before {\r\n content: '';\r\n position: absolute;\r\n left: 50%;\r\n top: 50%;\r\n transform: translate(-50%, -50%);\r\n width: 90px;\r\n height: 90px;\r\n background: #e6e3e3;\r\n border-radius: 100%;\r\n z-index: -1;\r\n // transition: all 250ms ease-in-out;\r\n }\r\n\r\n i {\r\n color: #000;\r\n width: 100px;\r\n height: 100px;\r\n background: #f4f4f4;\r\n border-radius: 100%;\r\n display: flex;\r\n align-items: center;\r\n justify-content: center;\r\n font-size: 28px;\r\n transition: all 250ms ease-in-out;\r\n }\r\n }\r\n\r\n span {\r\n position: relative;\r\n\r\n &::before {\r\n content: '';\r\n position: absolute;\r\n left: 0;\r\n bottom: 0;\r\n width: 0;\r\n height: 2px;\r\n background: #000;\r\n transition: width 250ms ease-in-out;\r\n }\r\n }\r\n\r\n &:hover {\r\n span {\r\n &::before {\r\n width: 100%;\r\n }\r\n }\r\n\r\n .elementor-icon {\r\n &::before {\r\n animation: puls 500ms ease-in-out;\r\n }\r\n\r\n i {\r\n background: #e6e3e3;\r\n }\r\n }\r\n }\r\n\r\n @keyframes puls {\r\n 0% {\r\n opacity: 1;\r\n }\r\n\r\n 100% {\r\n width: 140px;\r\n height: 140px;\r\n opacity: 0;\r\n }\r\n }\r\n}\r\n\r\n#center-header-box {\r\n @media (min-width: 501px) {\r\n >.e-con-inner {\r\n .center-header-box-menu {\r\n .elementor-nav-menu {\r\n li.menu-item-4927 {\r\n display: none;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n @media (min-width: 1025px) {\r\n >.e-con-inner {\r\n .center-header-box-menu {\r\n .elementor-nav-menu {\r\n >.menu-item {\r\n &.current_page_item {\r\n >a {\r\n &::after {\r\n width: 100%;\r\n }\r\n }\r\n }\r\n\r\n >a {\r\n &::after {\r\n width: 0;\r\n transition: width 250ms ease-in-out;\r\n }\r\n\r\n &:hover {\r\n &::after {\r\n width: 100%;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n @media (max-width: 1024px) {\r\n >.e-con-inner {\r\n .center-header-box-logo {\r\n // order: 1;\r\n flex: 1;\r\n display: flex;\r\n }\r\n\r\n .center-header-box-menu {\r\n // order: 3;\r\n\r\n >.elementor-widget-container {\r\n >.elementor-nav-menu--dropdown {\r\n position: absolute;\r\n right: 0px;\r\n left: auto;\r\n top: 64px;\r\n width: 100vw;\r\n z-index: 1;\r\n\r\n @media (max-width: 768px) {\r\n top: 52px;\r\n }\r\n }\r\n }\r\n\r\n .elementor-nav-menu {\r\n .menu-item {\r\n ul.sub-menu {\r\n background: #f4f4f4;\r\n }\r\n }\r\n }\r\n }\r\n\r\n .center-header-box-contact {\r\n // order: 2;\r\n\r\n @media (max-width: 500px) {\r\n display: none;\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n#scroller-rows {\r\n overflow: hidden;\r\n\r\n >.e-con-inner {\r\n overflow: auto;\r\n padding-right: 20px;\r\n\r\n &::-webkit-scrollbar {\r\n width: 10px;\r\n }\r\n\r\n /* Track */\r\n &::-webkit-scrollbar-track {\r\n background: #f4f4f4;\r\n }\r\n\r\n /* Handle */\r\n &::-webkit-scrollbar-thumb {\r\n background: #d9d9d9;\r\n }\r\n\r\n /* Handle on hover */\r\n &::-webkit-scrollbar-thumb:hover {\r\n background: #afafaf;\r\n }\r\n }\r\n}\r\n\r\n#page-hero-baner {\r\n @media (max-width: 1024px) {\r\n h1 {\r\n font-size: 50px;\r\n }\r\n\r\n h2 {\r\n font-size: 24px;\r\n }\r\n }\r\n\r\n @media (max-width: 576px) {\r\n h1 {\r\n font-size: 40px;\r\n }\r\n\r\n h2 {\r\n font-size: 22px;\r\n }\r\n }\r\n}\r\n\r\n// body {\r\n// \t.elementor-location-single {\r\n// \t\tdiv[data-elementor-type='wp-page'] {\r\n// \t\t\t&.elementor {\r\n// \t\t\t\t.elementor-element {\r\n// \t\t\t\t\th1,\r\n// \t\t\t\t\th2,\r\n// \t\t\t\t\th3,\r\n// \t\t\t\t\th4,\r\n// \t\t\t\t\th5,\r\n// \t\t\t\t\th6 {\r\n// \t\t\t\t\t\t&.elementor-heading-title {\r\n// \t\t\t\t\t\t\tcolor: #444444;\r\n// \t\t\t\t\t\t}\r\n// \t\t\t\t\t}\r\n// \t\t\t\t}\r\n// \t\t\t}\r\n// \t\t}\r\n\r\n// \t\tp,\r\n// \t\ta,\r\n// \t\tspan,\r\n// \t\t.elementor-heading-title {\r\n// \t\t\tcolor: #444444;\r\n// \t\t}\r\n// \t}\r\n// }"]}
\ No newline at end of file
+{"version":3,"sources":["custom.css","custom.scss"],"names":[],"mappings":"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","file":"custom.css"}
\ No newline at end of file
diff --git a/wp-content/themes/hello-elementor/assets/styles/custom.scss b/wp-content/themes/hello-elementor/assets/styles/custom.scss
index 852b940..5663144 100644
--- a/wp-content/themes/hello-elementor/assets/styles/custom.scss
+++ b/wp-content/themes/hello-elementor/assets/styles/custom.scss
@@ -1,1349 +1,1359 @@
.overflow {
- overflow: hidden;
+ overflow: hidden;
}
input[id^='eael-tabs-filter-type-'] {
- appearance: none;
- position: relative;
- width: 18px;
- min-width: 18px;
- height: 18px;
- border: 1px solid #000;
- overflow: hidden;
+ appearance: none;
+ position: relative;
+ width: 18px;
+ min-width: 18px;
+ height: 18px;
+ border: 1px solid #000;
+ overflow: hidden;
- &::before {
- content: '';
- position: absolute;
- top: -8px;
- left: 19px;
- width: 11px;
- height: 1.5px;
- background: #000;
- transform: rotate(-45deg);
- transition: all 250ms ease-in-out;
- }
+ &::before {
+ content: '';
+ position: absolute;
+ top: -8px;
+ left: 19px;
+ width: 11px;
+ height: 1.5px;
+ background: #000;
+ transform: rotate(-45deg);
+ transition: all 250ms ease-in-out;
+ }
- &::after {
- content: '';
- position: absolute;
- top: -6px;
- left: -13px;
- width: 5px;
- height: 1.5px;
- background: #000;
- transform: rotate(45deg);
- transition: all 250ms ease-in-out;
- }
+ &::after {
+ content: '';
+ position: absolute;
+ top: -6px;
+ left: -13px;
+ width: 5px;
+ height: 1.5px;
+ background: #000;
+ transform: rotate(45deg);
+ transition: all 250ms ease-in-out;
+ }
- &:checked {
- &::before {
- top: 7px;
- left: 4px;
- }
+ &:checked {
+ &::before {
+ top: 7px;
+ left: 4px;
+ }
- &::after {
- top: 9px;
- left: 2px;
- }
- }
+ &::after {
+ top: 9px;
+ left: 2px;
+ }
+ }
}
.eael-tabs-filter {
- flex-wrap: wrap;
- row-gap: 20px !important;
+ flex-wrap: wrap;
+ row-gap: 20px !important;
- .eael-tabs-filter-types {
- ul {
- flex-wrap: wrap;
- row-gap: 20px !important;
- }
+ .eael-tabs-filter-types {
+ ul {
+ flex-wrap: wrap;
+ row-gap: 20px !important;
+ }
- label {
- padding-top: 3px;
- }
- }
+ label {
+ padding-top: 3px;
+ }
+ }
}
.eael-tabs-nav {
- &.eael-tabs-nav-custom {
- // display: flex;
- // flex-direction: row;
- column-gap: 50px;
+ &.eael-tabs-nav-custom {
+ // display: flex;
+ // flex-direction: row;
+ column-gap: 50px;
- display: grid;
- grid-template-areas:
- 'tabs-name tabs-list'
- 'tabs-name tabs-toggle';
- grid-template-columns: auto 1fr;
+ display: grid;
+ grid-template-areas:
+ 'tabs-name tabs-list'
+ 'tabs-name tabs-toggle';
+ grid-template-columns: auto 1fr;
- .tabs-category-name {
- grid-area: tabs-name;
+ .tabs-category-name {
+ grid-area: tabs-name;
- @media (max-width: 1000px) {
- margin-bottom: 40px;
+ @media (max-width: 1000px) {
+ margin-bottom: 40px;
- br {
- display: none;
- }
- }
- }
+ br {
+ display: none;
+ }
+ }
+ }
- ul[role='tablist'] {
- grid-area: tabs-list;
- flex: 1;
- gap: 24px;
- flex-wrap: wrap;
+ ul[role='tablist'] {
+ grid-area: tabs-list;
+ flex: 1;
+ gap: 24px;
+ flex-wrap: wrap;
- &.limit {
- overflow: hidden;
- max-height: 140px;
- }
- }
+ &.limit {
+ overflow: hidden;
+ max-height: 140px;
+ }
+ }
- .show-more-tabs {
- grid-area: tabs-toggle;
- position: relative;
- color: #000;
- font-size: 16px;
- font-weight: 700;
- font-family: 'Manrope', Sans-serif;
- text-transform: uppercase;
- letter-spacing: 0.6px;
- margin-top: 50px;
- width: fit-content;
+ .show-more-tabs {
+ grid-area: tabs-toggle;
+ position: relative;
+ color: #000;
+ font-size: 16px;
+ font-weight: 700;
+ font-family: 'Manrope', Sans-serif;
+ text-transform: uppercase;
+ letter-spacing: 0.6px;
+ margin-top: 50px;
+ width: fit-content;
- &::before {
- content: '\e65a';
- color: #000;
- font-family: 'themify';
- position: absolute;
- left: calc(100% + 10px);
- top: calc(50% - 3px);
- width: 30px;
- height: 30px;
- border-radius: 100%;
- transform: translateY(-50%) rotate(90deg);
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 24px;
- animation: bounce 2s infinite;
- }
+ &::before {
+ content: '\e65a';
+ color: #000;
+ font-family: 'themify';
+ position: absolute;
+ left: calc(100% + 10px);
+ top: calc(50% - 3px);
+ width: 30px;
+ height: 30px;
+ border-radius: 100%;
+ transform: translateY(-50%) rotate(90deg);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ font-size: 24px;
+ animation: bounce 2s infinite;
+ }
- @keyframes bounce {
+ @keyframes bounce {
+ 0%,
+ 20%,
+ 50%,
+ 80%,
+ 100% {
+ transform: translateY(calc(-50%)) translateX(0) rotate(90deg);
+ }
- 0%,
- 20%,
- 50%,
- 80%,
- 100% {
- transform: translateY(calc(-50%)) translateX(0) rotate(90deg);
- }
+ 40% {
+ transform: translateY(calc(-50% - 10px)) translateX(-10px)
+ rotate(90deg);
+ }
- 40% {
- transform: translateY(calc(-50% - 10px)) translateX(-10px) rotate(90deg);
- }
+ 60% {
+ transform: translateY(calc(-50% - 5px)) translateX(-5px) rotate(90deg);
+ }
+ }
+ }
- 60% {
- transform: translateY(calc(-50% - 5px)) translateX(-5px) rotate(90deg);
- }
- }
- }
+ @media (max-width: 1000px) {
+ grid-template-areas:
+ 'tabs-name'
+ 'tabs-list'
+ 'tabs-toggle';
+ grid-template-columns: 1fr;
+ }
+ }
- @media (max-width: 1000px) {
- grid-template-areas:
- 'tabs-name'
- 'tabs-list'
- 'tabs-toggle';
- grid-template-columns: 1fr;
- }
- }
+ > ul {
+ display: grid !important;
+ grid-template-columns: repeat(auto-fit, 194px);
- >ul {
- display: grid !important;
- grid-template-columns: repeat(auto-fit, 194px);
-
- li {
- height: 100%;
- }
- }
+ li {
+ height: 100%;
+ }
+ }
}
.color-anchor {
- position: relative;
- height: 100px;
- display: flex;
- align-items: center;
+ position: relative;
+ height: 100px;
+ display: flex;
+ align-items: center;
- &::before {
- content: '\e65a';
- color: #000;
- font-family: 'themify';
- position: absolute;
- left: calc(100% - 20px);
- top: 50%;
- width: 100px;
- height: 100px;
- background: #f4f4f4;
- border-radius: 100%;
- transform: translateY(-50%);
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 28px;
- }
+ &::before {
+ content: '\e65a';
+ color: #000;
+ font-family: 'themify';
+ position: absolute;
+ left: calc(100% - 20px);
+ top: 50%;
+ width: 100px;
+ height: 100px;
+ background: #f4f4f4;
+ border-radius: 100%;
+ transform: translateY(-50%);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ font-size: 28px;
+ }
- >.elementor-widget-container {
- position: relative;
- height: fit-content !important;
- z-index: 1;
- }
+ > .elementor-widget-container {
+ position: relative;
+ height: fit-content !important;
+ z-index: 1;
+ }
}
.anchor-arrow {
- .elementor-icon {
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100px;
- height: 100px;
- border-radius: 100%;
- background: #f4f4f4;
- margin-left: -20px;
- }
+ .elementor-icon {
+ position: relative;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 100px;
+ height: 100px;
+ border-radius: 100%;
+ background: #f4f4f4;
+ margin-left: -20px;
+ }
}
.quality-box {
- position: relative;
+ position: relative;
- &::before {
- content: '';
- position: absolute;
- background-image: url('/wp-content/uploads/2024/04/quality-bg.svg');
- mix-blend-mode: multiply;
- background-position: center;
- background-repeat: no-repeat;
- background-size: cover;
- opacity: 0.4;
- top: 0;
- bottom: 0;
- right: 0;
- left: auto;
- width: 320px;
- z-index: 1;
- }
+ &::before {
+ content: '';
+ position: absolute;
+ background-image: url('/wp-content/uploads/2024/04/quality-bg.svg');
+ mix-blend-mode: multiply;
+ background-position: center;
+ background-repeat: no-repeat;
+ background-size: cover;
+ opacity: 0.4;
+ top: 0;
+ bottom: 0;
+ right: 0;
+ left: auto;
+ width: 320px;
+ z-index: 1;
+ }
- .quality-item {
- position: relative;
- z-index: 1;
+ .quality-item {
+ position: relative;
+ z-index: 1;
- .elementor-icon-box-wrapper {
- .elementor-icon-box-content {
- position: relative;
- padding-left: 24px;
+ .elementor-icon-box-wrapper {
+ .elementor-icon-box-content {
+ position: relative;
+ padding-left: 24px;
- &::before {
- content: '';
- position: absolute;
- left: 0;
- top: 6px;
- bottom: 6px;
- width: 2px;
- background: #000;
- }
+ &::before {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 6px;
+ bottom: 6px;
+ width: 2px;
+ background: #000;
+ }
- @media (max-width: 768px) {
- &:before {
- display: none;
- }
- }
- }
- }
- }
+ @media (max-width: 768px) {
+ &:before {
+ display: none;
+ }
+ }
+ }
+ }
+ }
}
.numeric-list {
- ol {
- padding: 0;
- margin: 0;
- counter-reset: number;
- list-style-type: none;
+ ol {
+ padding: 0;
+ margin: 0;
+ counter-reset: number;
+ list-style-type: none;
- li {
- position: relative;
- counter-increment: number;
- padding-left: 55px;
+ li {
+ position: relative;
+ counter-increment: number;
+ padding-left: 55px;
- &:not(:last-child) {
- margin-bottom: 20px;
- }
+ &:not(:last-child) {
+ margin-bottom: 20px;
+ }
- &:before {
- content: counter(number);
- position: absolute;
- left: 0;
- top: 0;
- width: 32px;
- height: 32px;
- border-radius: 100%;
- background: #f4f4f4;
+ &:before {
+ content: counter(number);
+ position: absolute;
+ left: 0;
+ top: 0;
+ width: 32px;
+ height: 32px;
+ border-radius: 100%;
+ background: #f4f4f4;
- display: flex;
- align-items: center;
- justify-content: center;
+ display: flex;
+ align-items: center;
+ justify-content: center;
- font-size: 18px;
- font-weight: 700;
- letter-spacing: 0.6px;
- }
- }
- }
+ font-size: 18px;
+ font-weight: 700;
+ letter-spacing: 0.6px;
+ }
+ }
+ }
}
.home-nasze-produkty {
- .premium-carousel-wrapper {
- .premium-carousel-inner {
- .carousel-arrow {
- position: absolute;
- top: -108px;
- padding: 0;
- border: none;
- margin: 0 !important;
+ .premium-carousel-wrapper {
+ .premium-carousel-inner {
+ .carousel-arrow {
+ position: absolute;
+ top: -108px;
+ padding: 0;
+ border: none;
+ margin: 0 !important;
- &:hover {
- background: transparent;
- }
+ &:hover {
+ background: transparent;
+ }
- &.carousel-next {
- right: 50px;
+ &.carousel-next {
+ right: 50px;
- @media (max-width: 500px) {
- right: auto;
- left: calc(50% + 70px);
- transform: translateX(-50%);
- }
- }
+ @media (max-width: 500px) {
+ right: auto;
+ left: calc(50% + 70px);
+ transform: translateX(-50%);
+ }
+ }
- &.carousel-prev {
- right: 130px;
- left: auto;
+ &.carousel-prev {
+ right: 130px;
+ left: auto;
- @media (max-width: 500px) {
- right: auto;
- left: calc(50% - 70px);
- transform: translateX(-50%);
- }
- }
+ @media (max-width: 500px) {
+ right: auto;
+ left: calc(50% - 70px);
+ transform: translateX(-50%);
+ }
+ }
- @media (max-width: 500px) {
- top: -50px;
- }
- }
- }
- }
+ @media (max-width: 500px) {
+ top: -50px;
+ }
+ }
+ }
+ }
}
.home-gallery {
- .elementor-widget-container {
- .swiper {
- .elementor-swiper-button {
- top: -92px;
+ .elementor-widget-container {
+ .swiper {
+ .elementor-swiper-button {
+ top: -92px;
- &.elementor-swiper-button-prev {
- left: auto;
- right: 130px;
- left: auto;
+ &.elementor-swiper-button-prev {
+ left: auto;
+ right: 130px;
+ left: auto;
- @media (max-width: 500px) {
- right: auto;
- left: calc(50% - 70px);
- transform: translateX(-50%);
- }
- }
+ @media (max-width: 500px) {
+ right: auto;
+ left: calc(50% - 70px);
+ transform: translateX(-50%);
+ }
+ }
- &.elementor-swiper-button-next {
- right: 50px;
+ &.elementor-swiper-button-next {
+ right: 50px;
- @media (max-width: 500px) {
- right: auto;
- left: calc(50% + 70px);
- transform: translateX(-50%);
- }
- }
+ @media (max-width: 500px) {
+ right: auto;
+ left: calc(50% + 70px);
+ transform: translateX(-50%);
+ }
+ }
- @media (max-width: 500px) {
- top: -50px;
- }
- }
- }
- }
+ @media (max-width: 500px) {
+ top: -50px;
+ }
+ }
+
+ .elementor-image-carousel {
+ .swiper-slide {
+ img {
+ aspect-ratio: 1/1;
+ max-width: 257px;
+ object-fit: cover;
+ }
+ }
+ }
+ }
+ }
}
.home-numbers-1 {
- position: relative;
+ position: relative;
- &::before {
- content: '';
- position: absolute;
- left: 0;
- top: -115px;
- width: 495px;
- height: 495px;
- transform: translateX(-50%);
- background-image: url('/wp-content/uploads/2024/04/V.svg');
- background-repeat: no-repeat;
- background-size: contain;
- background-position: center;
- }
+ &::before {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: -115px;
+ width: 495px;
+ height: 495px;
+ transform: translateX(-50%);
+ background-image: url('/wp-content/uploads/2024/04/V.svg');
+ background-repeat: no-repeat;
+ background-size: contain;
+ background-position: center;
+ }
}
.home-troska {
- position: relative;
+ position: relative;
- .home-troska-left {
- position: relative;
+ .home-troska-left {
+ position: relative;
- &::before {
- content: '';
- position: absolute;
- left: 10px;
- top: 0;
- bottom: 0;
- transform: translateX(-50%);
- background-image: url('/wp-content/uploads/2024/04/V.svg');
- background-repeat: no-repeat;
- background-size: contain;
- background-position: center;
- }
- }
+ &::before {
+ content: '';
+ position: absolute;
+ left: 10px;
+ top: 0;
+ bottom: 0;
+ transform: translateX(-50%);
+ background-image: url('/wp-content/uploads/2024/04/V.svg');
+ background-repeat: no-repeat;
+ background-size: contain;
+ background-position: center;
+ }
+ }
}
#home-hero-slider {
- width: 100%;
- max-width: 1920px;
- margin-left: auto;
- margin-right: auto;
- overflow: hidden;
+ width: 100%;
+ max-width: 1920px;
+ margin-left: auto;
+ margin-right: auto;
+ overflow: hidden;
- .premium-carousel-inner {
- .slick-dots {
- display: flex;
- justify-content: flex-end;
- left: 72%;
+ .premium-carousel-inner {
+ .slick-dots {
+ display: flex;
+ justify-content: flex-end;
+ left: 72%;
- position: absolute;
- bottom: 7.8%;
+ position: absolute;
+ bottom: 7.8%;
- counter-reset: list;
- list-style-type: none;
+ counter-reset: list;
+ list-style-type: none;
- &>li {
- position: relative;
- counter-increment: list;
- width: auto;
- margin: 0 10px;
+ & > li {
+ position: relative;
+ counter-increment: list;
+ width: auto;
+ margin: 0 10px;
- &:before {
- content: '0'counter(list);
- color: #000;
- font-size: 24px;
- font-weight: 700;
- font-family: 'Manrope', Sans-serif;
+ &:before {
+ content: '0' counter(list);
+ color: #000;
+ font-size: 24px;
+ font-weight: 700;
+ font-family: 'Manrope', Sans-serif;
- @media (max-width: 900px) {
- font-size: 20px;
- }
- }
+ @media (max-width: 900px) {
+ font-size: 20px;
+ }
+ }
- &:first-child {
- &::after {
- content: '';
- position: absolute;
- top: 50%;
- right: calc(100% + 17px);
- width: 100vw;
- height: 2px;
- background: #000;
- }
- }
+ &:first-child {
+ &::after {
+ content: '';
+ position: absolute;
+ top: 50%;
+ right: calc(100% + 17px);
+ width: 100vw;
+ height: 2px;
+ background: #000;
+ }
+ }
- &:last-child {
- &::after {
- content: '';
- position: absolute;
- top: 50%;
- left: calc(100% + 17px);
- width: 100vw;
- height: 2px;
- background: #000;
- }
- }
+ &:last-child {
+ &::after {
+ content: '';
+ position: absolute;
+ top: 50%;
+ left: calc(100% + 17px);
+ width: 100vw;
+ height: 2px;
+ background: #000;
+ }
+ }
- &:last-child {
- &.slick-active {
- margin: 0 10px 0 53px;
+ &:last-child {
+ &.slick-active {
+ margin: 0 10px 0 53px;
- .dot-helper {
- position: relative;
+ .dot-helper {
+ position: relative;
- &::before {
- content: '';
- position: absolute;
- width: 33px;
- height: 2px;
- right: 47px;
- background: #000;
- }
- }
- }
- }
+ &::before {
+ content: '';
+ position: absolute;
+ width: 33px;
+ height: 2px;
+ right: 47px;
+ background: #000;
+ }
+ }
+ }
+ }
- &:first-child {
- &.slick-active {
- margin: 0 53px 0 10px;
+ &:first-child {
+ &.slick-active {
+ margin: 0 53px 0 10px;
- .dot-helper {
- position: relative;
+ .dot-helper {
+ position: relative;
- &::after {
- content: '';
- position: absolute;
- width: 33px;
- height: 2px;
- left: 15px;
- background: #000;
- }
- }
- }
- }
+ &::after {
+ content: '';
+ position: absolute;
+ width: 33px;
+ height: 2px;
+ left: 15px;
+ background: #000;
+ }
+ }
+ }
+ }
- &:not(:last-child, :first-child) {
- &.slick-active {
- margin: 0 53px;
+ &:not(:last-child, :first-child) {
+ &.slick-active {
+ margin: 0 53px;
- .dot-helper {
- position: relative;
+ .dot-helper {
+ position: relative;
- &::before {
- content: '';
- position: absolute;
- width: 33px;
- height: 2px;
- right: 47px;
- background: #000;
- }
+ &::before {
+ content: '';
+ position: absolute;
+ width: 33px;
+ height: 2px;
+ right: 47px;
+ background: #000;
+ }
- &::after {
- content: '';
- position: absolute;
- width: 33px;
- height: 2px;
- left: 15px;
- background: #000;
- }
- }
- }
- }
- }
+ &::after {
+ content: '';
+ position: absolute;
+ width: 33px;
+ height: 2px;
+ left: 15px;
+ background: #000;
+ }
+ }
+ }
+ }
+ }
- @media (max-width: 1100px) {
- left: 70%;
- }
+ @media (max-width: 1100px) {
+ left: 70%;
+ }
- @media (max-width: 900px) {
- left: 60%;
- bottom: 6%;
- }
+ @media (max-width: 900px) {
+ left: 60%;
+ bottom: 6%;
+ }
- @media (max-width: 768px) {
- left: 50%;
- transform: translateX(-50%);
- }
- }
- }
+ @media (max-width: 768px) {
+ left: 50%;
+ transform: translateX(-50%);
+ }
+ }
+ }
- .slide-text-box {
- @media (max-width: 768px) {
- bottom: 15%;
- }
- }
+ .slide-text-box {
+ @media (max-width: 768px) {
+ bottom: 15%;
+ }
+ }
}
.product-gallery-colors {
- .show-more-colors {
- .premium-button-text-icon-wrapper {
- display: flex;
- align-items: center;
+ .show-more-colors {
+ .premium-button-text-icon-wrapper {
+ display: flex;
+ align-items: center;
- span {
- padding-top: 5px;
- }
- }
- }
+ span {
+ padding-top: 5px;
+ }
+ }
+ }
}
.product-colors {
- .elementor-image-gallery {
- .gallery {
- display: flex;
- flex-wrap: wrap;
- gap: 32px;
- max-height: 128px;
- overflow: hidden;
+ .elementor-image-gallery {
+ .gallery {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 32px;
+ max-height: 128px;
+ overflow: hidden;
- .gallery-item {
- display: flex;
- flex-direction: row;
- align-items: center;
- gap: 13px;
- width: calc(50% - 16px);
+ .gallery-item {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ gap: 13px;
+ width: calc(50% - 16px);
- .gallery-icon {
- width: 48px;
- min-width: 48px;
- height: 48px;
+ .gallery-icon {
+ width: 48px;
+ min-width: 48px;
+ height: 48px;
- img {
- height: 100%;
- width: 100%;
- object-fit: cover;
- }
- }
+ img {
+ height: 100%;
+ width: 100%;
+ object-fit: cover;
+ }
+ }
- .gallery-caption {
- padding: 0;
- }
- }
- }
- }
+ .gallery-caption {
+ padding: 0;
+ }
+ }
+ }
+ }
}
.product-colors-s2 {
- .elementor-image-gallery {
- .gallery {
- display: flex;
- flex-wrap: wrap;
+ .elementor-image-gallery {
+ .gallery {
+ display: flex;
+ flex-wrap: wrap;
- .gallery-item {
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- gap: 2px;
- // width: calc(50% - 16px);
+ .gallery-item {
+ display: flex;
+ flex-direction: column;
+ align-items: flex-start;
+ gap: 2px;
+ // width: calc(50% - 16px);
- .gallery-icon {
- width: 98px;
- min-width: 98px;
- height: 98px;
+ .gallery-icon {
+ width: 98px;
+ min-width: 98px;
+ height: 98px;
- img {
- height: 100%;
- width: 100%;
- object-fit: cover;
- }
- }
+ img {
+ height: 100%;
+ width: 100%;
+ object-fit: cover;
+ }
+ }
- .gallery-caption {
- padding: 0;
- }
- }
- }
- }
+ .gallery-caption {
+ padding: 0;
+ }
+ }
+ }
+ }
}
.product-gallery-drafts {
- .show-more-drafts {
- .premium-button-text-icon-wrapper {
- display: flex;
- align-items: center;
+ .show-more-drafts {
+ .premium-button-text-icon-wrapper {
+ display: flex;
+ align-items: center;
- span {
- padding-top: 5px;
- }
- }
- }
+ span {
+ padding-top: 5px;
+ }
+ }
+ }
}
.product-drafts {
- .elementor-image-gallery {
- .gallery {
- max-height: 210px;
- overflow: hidden;
+ .elementor-image-gallery {
+ .gallery {
+ max-height: 210px;
+ overflow: hidden;
- .gallery-item {
- .gallery-caption {
- padding: 0;
- }
- }
- }
- }
+ .gallery-item {
+ .gallery-caption {
+ padding: 0;
+ }
+ }
+ }
+ }
}
.product-gallery-drafts {
- .elementor-image-gallery {
- .gallery:not(#gallery-6) {
- max-height: 1040px;
- overflow: hidden;
- }
- }
+ .elementor-image-gallery {
+ .gallery:not(#gallery-6) {
+ max-height: 1040px;
+ overflow: hidden;
+ }
+ }
}
.product-catalog-bg {
- position: relative;
+ position: relative;
- &::before {
- content: '';
- position: absolute;
- left: 30px;
- top: 0;
- width: 495px;
- height: 495px;
- transform: translateX(-50%);
- background-image: url('/wp-content/uploads/2024/04/V.svg');
- background-repeat: no-repeat;
- background-size: contain;
- background-position: center;
- }
+ &::before {
+ content: '';
+ position: absolute;
+ left: 30px;
+ top: 0;
+ width: 495px;
+ height: 495px;
+ transform: translateX(-50%);
+ background-image: url('/wp-content/uploads/2024/04/V.svg');
+ background-repeat: no-repeat;
+ background-size: contain;
+ background-position: center;
+ }
}
#footer-data {
- position: relative;
- overflow: hidden;
+ position: relative;
+ overflow: hidden;
- &::before {
- content: '';
- position: absolute;
- top: 115px;
- height: 2px;
- width: 100vw;
- background: #f4f4f4;
- }
+ &::before {
+ content: '';
+ position: absolute;
+ top: 115px;
+ height: 2px;
+ width: 100vw;
+ background: #f4f4f4;
+ }
}
//* Okna drewniane
body.page-id-729 {
- .custom-bg-v {
- .elementor-widget-container {
- position: relative;
+ .custom-bg-v {
+ .elementor-widget-container {
+ position: relative;
- &::before {
- content: '';
- position: absolute;
- left: calc(100% - 5px);
- top: 50%;
- width: 495px;
- height: 495px;
- transform: translate(-50%, -50%);
- background-image: url('/wp-content/uploads/2024/04/Group-371.svg');
- background-repeat: no-repeat;
- background-size: contain;
- background-position: center;
- }
- }
- }
+ &::before {
+ content: '';
+ position: absolute;
+ left: calc(100% - 5px);
+ top: 50%;
+ width: 495px;
+ height: 495px;
+ transform: translate(-50%, -50%);
+ background-image: url('/wp-content/uploads/2024/04/Group-371.svg');
+ background-repeat: no-repeat;
+ background-size: contain;
+ background-position: center;
+ }
+ }
+ }
}
#quote-box {
- .carousel-arrow {
- left: auto;
+ .carousel-arrow {
+ left: auto;
- &.carousel-prev {
- top: -60px;
- right: 100px;
- }
+ &.carousel-prev {
+ top: -60px;
+ right: 100px;
+ }
- &.carousel-next {
- top: -60px;
- right: 0px;
- }
- }
+ &.carousel-next {
+ top: -60px;
+ right: 0px;
+ }
+ }
}
#contact-form {
- select {
- &.wpcf7-select {
- visibility: hidden;
- opacity: 0;
- display: none;
- }
- }
+ select {
+ &.wpcf7-select {
+ visibility: hidden;
+ opacity: 0;
+ display: none;
+ }
+ }
- .select-custom-text {
- position: relative;
- padding: 15px 24px;
- border: 1px solid #000;
+ .select-custom-text {
+ position: relative;
+ padding: 15px 24px;
+ border: 1px solid #000;
- font-family: 'League Spartan', Sans-serif;
- letter-spacing: 0.6px;
- font-weight: 400;
+ font-family: 'League Spartan', Sans-serif;
+ letter-spacing: 0.6px;
+ font-weight: 400;
- &.selected {
- color: #000;
- }
+ &.selected {
+ color: #000;
+ }
- &.active {
- &::before {
- transform: translateY(-50%) scale(-1);
- }
- }
+ &.active {
+ &::before {
+ transform: translateY(-50%) scale(-1);
+ }
+ }
- &::before {
- content: '\33';
- position: absolute;
- top: 50%;
- right: 24px;
- transform: translateY(-50%);
- transition: all 250ms ease-in-out;
- font-family: 'ElegantIcons';
- font-size: 26px;
- color: #000;
- }
- }
+ &::before {
+ content: '\33';
+ position: absolute;
+ top: 50%;
+ right: 24px;
+ transform: translateY(-50%);
+ transition: all 250ms ease-in-out;
+ font-family: 'ElegantIcons';
+ font-size: 26px;
+ color: #000;
+ }
+ }
- .select-custom-options {
- list-style: none;
- padding: 15px 24px;
- border-left: 1px solid #000;
- border-right: 1px solid #000;
- border-bottom: 1px solid #000;
+ .select-custom-options {
+ list-style: none;
+ padding: 15px 24px;
+ border-left: 1px solid #000;
+ border-right: 1px solid #000;
+ border-bottom: 1px solid #000;
- li {
- color: #000;
- font-family: 'League Spartan', Sans-serif;
- letter-spacing: 0.6px;
- font-weight: 400;
- cursor: pointer;
+ li {
+ color: #000;
+ font-family: 'League Spartan', Sans-serif;
+ letter-spacing: 0.6px;
+ font-weight: 400;
+ cursor: pointer;
- &:not(:last-child) {
- margin-bottom: 10px;
- }
- }
- }
+ &:not(:last-child) {
+ margin-bottom: 10px;
+ }
+ }
+ }
- .wpcf7-list-item {
- margin-left: 0;
+ .wpcf7-list-item {
+ margin-left: 0;
- label {
- display: flex;
- flex-direction: row;
- gap: 10px;
- cursor: pointer;
- }
- }
+ label {
+ display: flex;
+ flex-direction: row;
+ gap: 10px;
+ cursor: pointer;
+ }
+ }
- input {
- &[type='checkbox'] {
- position: relative;
- appearance: none;
- width: 14px;
- min-width: 14px;
- height: 14px;
- border-radius: 100%;
- border: 1px solid #000;
- overflow: hidden;
- margin-top: 2px;
+ input {
+ &[type='checkbox'] {
+ position: relative;
+ appearance: none;
+ width: 14px;
+ min-width: 14px;
+ height: 14px;
+ border-radius: 100%;
+ border: 1px solid #000;
+ overflow: hidden;
+ margin-top: 2px;
- &:checked {
- &::before {
- top: 6px;
- left: 4px;
- }
+ &:checked {
+ &::before {
+ top: 6px;
+ left: 4px;
+ }
- &::after {
- top: 7px;
- left: 3px;
- }
- }
+ &::after {
+ top: 7px;
+ left: 3px;
+ }
+ }
- &::before {
- content: '';
- position: absolute;
- top: -4px;
- left: 14px;
- width: 6px;
- height: 1px;
- background: #000;
- transform: rotate(-45deg);
- transition: all 250ms ease-in-out;
- }
+ &::before {
+ content: '';
+ position: absolute;
+ top: -4px;
+ left: 14px;
+ width: 6px;
+ height: 1px;
+ background: #000;
+ transform: rotate(-45deg);
+ transition: all 250ms ease-in-out;
+ }
- &::after {
- content: '';
- position: absolute;
- top: -3px;
- left: -7px;
- width: 3px;
- height: 1px;
- background: #000;
- transform: rotate(45deg);
- transition: all 250ms ease-in-out;
- }
- }
+ &::after {
+ content: '';
+ position: absolute;
+ top: -3px;
+ left: -7px;
+ width: 3px;
+ height: 1px;
+ background: #000;
+ transform: rotate(45deg);
+ transition: all 250ms ease-in-out;
+ }
+ }
- &[type='text'],
- &[type='tel'],
- &[type='email'] {
- &::placeholder {
- color: #a8a8a8;
- }
- }
- }
+ &[type='text'],
+ &[type='tel'],
+ &[type='email'] {
+ &::placeholder {
+ color: #a8a8a8;
+ }
+ }
+ }
- textarea {
- &::placeholder {
- color: #a8a8a8;
- }
- }
+ textarea {
+ &::placeholder {
+ color: #a8a8a8;
+ }
+ }
- p {
- color: #a8a8a8;
- font-size: 16px;
- font-family: 'League Spartan'sans-serif;
- letter-spacing: 0.6px;
- font-weight: 400;
- }
+ p {
+ color: #a8a8a8;
+ font-size: 16px;
+ font-family: 'League Spartan' sans-serif;
+ letter-spacing: 0.6px;
+ font-weight: 400;
+ }
- .form-submit-btn {
- position: relative;
- width: fit-content;
- margin: 20px 0 0 auto;
+ .form-submit-btn {
+ position: relative;
+ width: fit-content;
+ margin: 20px 0 0 auto;
- &::before {
- content: '\e65a';
- color: #000;
- font-family: 'themify';
- position: absolute;
- right: 0;
- top: 0;
- width: 100px;
- height: 100px;
- background: #f4f4f4;
- border-radius: 100%;
- // transform: translateY(-50%);
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 28px;
- }
+ &::before {
+ content: '\e65a';
+ color: #000;
+ font-family: 'themify';
+ position: absolute;
+ right: 0;
+ top: 0;
+ width: 100px;
+ height: 100px;
+ background: #f4f4f4;
+ border-radius: 100%;
+ // transform: translateY(-50%);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ font-size: 28px;
+ }
- input {
- &.wpcf7-submit {
- position: relative;
- height: 100px;
- display: flex;
- align-items: center;
- padding-right: 80px;
- }
- }
- }
+ input {
+ &.wpcf7-submit {
+ position: relative;
+ height: 100px;
+ display: flex;
+ align-items: center;
+ padding-right: 80px;
+ }
+ }
+ }
- .wpcf7-spinner {
- display: block;
- }
+ .wpcf7-spinner {
+ display: block;
+ }
}
#contact-form.contact-form-2 {
- .row {
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 20px;
+ .row {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ gap: 20px;
- .col-6 {
- p {
- width: 100%;
- }
+ .col-6 {
+ p {
+ width: 100%;
+ }
- textarea {
- max-height: 208px;
- }
- }
- }
+ textarea {
+ max-height: 208px;
+ }
+ }
+ }
}
.customized-shapes-box {
- position: relative;
+ position: relative;
- &::before {
- content: '';
- position: absolute;
- background-image: url('/wp-content/uploads/2024/04/quality-bg.svg');
- mix-blend-mode: multiply;
- background-position: center;
- background-repeat: no-repeat;
- background-size: cover;
- opacity: 0.4;
- top: 0;
- bottom: 0;
- right: 0;
- left: auto;
- width: 320px;
- z-index: 1;
- }
+ &::before {
+ content: '';
+ position: absolute;
+ background-image: url('/wp-content/uploads/2024/04/quality-bg.svg');
+ mix-blend-mode: multiply;
+ background-position: center;
+ background-repeat: no-repeat;
+ background-size: cover;
+ opacity: 0.4;
+ top: 0;
+ bottom: 0;
+ right: 0;
+ left: auto;
+ width: 320px;
+ z-index: 1;
+ }
}
#accessories-head {
- &::before {
- content: '';
- position: absolute;
- background-image: url('/wp-content/uploads/2024/05/Group-373.svg');
- mix-blend-mode: multiply;
- background-position: center;
- background-repeat: no-repeat;
- background-size: cover;
- opacity: 0.5;
- top: 0;
- bottom: 0;
- right: auto;
- left: 20px;
- width: 100px;
- z-index: 1;
- }
+ &::before {
+ content: '';
+ position: absolute;
+ background-image: url('/wp-content/uploads/2024/05/Group-373.svg');
+ mix-blend-mode: multiply;
+ background-position: center;
+ background-repeat: no-repeat;
+ background-size: cover;
+ opacity: 0.5;
+ top: 0;
+ bottom: 0;
+ right: auto;
+ left: 20px;
+ width: 100px;
+ z-index: 1;
+ }
}
.box-bg-v {
- &::before {
- content: '';
- position: absolute;
- right: 0px;
- left: auto;
- top: 50%;
- width: 495px;
- height: 495px;
- transform: translate(50%, -50%);
- background-image: url('/wp-content/uploads/2024/04/V.svg');
- background-repeat: no-repeat;
- background-size: contain;
- background-position: center;
- z-index: 1;
- opacity: 0.5;
- }
+ &::before {
+ content: '';
+ position: absolute;
+ right: 0px;
+ left: auto;
+ top: 50%;
+ width: 495px;
+ height: 495px;
+ transform: translate(50%, -50%);
+ background-image: url('/wp-content/uploads/2024/04/V.svg');
+ background-repeat: no-repeat;
+ background-size: contain;
+ background-position: center;
+ z-index: 1;
+ opacity: 0.5;
+ }
}
body.elementor-page {
- >div[data-elementor-type='single-page'] {
- overflow: hidden;
- }
+ > div[data-elementor-type='single-page'] {
+ overflow: hidden;
+ }
}
#checkbox-btn {
- &.active {
- a {
- &::before {
- content: '';
- position: absolute;
- top: 7px;
- left: 4px;
- width: 11px;
- height: 6px;
- transform: rotate(-45deg);
- transition: all 250ms ease-in-out;
- border-bottom: 1.5px solid #000;
- border-left: 1.5px solid #000;
- }
- }
- }
+ &.active {
+ a {
+ &::before {
+ content: '';
+ position: absolute;
+ top: 7px;
+ left: 4px;
+ width: 11px;
+ height: 6px;
+ transform: rotate(-45deg);
+ transition: all 250ms ease-in-out;
+ border-bottom: 1.5px solid #000;
+ border-left: 1.5px solid #000;
+ }
+ }
+ }
- a {
- position: relative;
- padding-left: 30px;
- width: fit-content;
- display: block;
+ a {
+ position: relative;
+ padding-left: 30px;
+ width: fit-content;
+ display: block;
- &::after {
- content: '';
- position: absolute;
- top: 2px;
- left: 0px;
- width: 18px;
- height: 18px;
- border: 1px solid #000;
- }
- }
+ &::after {
+ content: '';
+ position: absolute;
+ top: 2px;
+ left: 0px;
+ width: 18px;
+ height: 18px;
+ border: 1px solid #000;
+ }
+ }
}
.product-list-icon-desc {
- .elementor-icon-box-icon {
- position: relative;
- padding-right: 20px;
+ .elementor-icon-box-icon {
+ position: relative;
+ padding-right: 20px;
- &::before {
- content: '';
- position: absolute;
- right: 0;
- top: 50%;
- transform: translateY(-50%);
- width: 2px;
- height: 40px;
- background: #000;
- }
- }
+ &::before {
+ content: '';
+ position: absolute;
+ right: 0;
+ top: 50%;
+ transform: translateY(-50%);
+ width: 2px;
+ height: 40px;
+ background: #000;
+ }
+ }
- .elementor-icon-box-title {
- margin: 0;
- }
+ .elementor-icon-box-title {
+ margin: 0;
+ }
}
.custom-acc {
- .eael-adv-accordion {
- .eael-accordion-list {
- &:not(:last-child) {
- border-bottom: 1px solid #000;
- }
+ .eael-adv-accordion {
+ .eael-accordion-list {
+ &:not(:last-child) {
+ border-bottom: 1px solid #000;
+ }
- .eael-accordion-header {
- &.active {
- .fa-toggle {
- transform: rotate(180deg) !important;
- }
- }
- }
- }
- }
+ .eael-accordion-header {
+ &.active {
+ .fa-toggle {
+ transform: rotate(180deg) !important;
+ }
+ }
+ }
+ }
+ }
}
#top-header-box {
- &.fixed {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- z-index: 999;
- }
+ &.fixed {
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ z-index: 999;
+ }
}
header {
- background: #fff;
+ background: #fff;
- &.active {
- position: sticky;
- top: 0;
- z-index: 999999;
- }
+ &.active {
+ position: sticky;
+ top: 0;
+ z-index: 999999;
+ }
}
.addon-btn-title {
- margin: 0;
- display: flex;
- align-items: center;
+ margin: 0;
+ display: flex;
+ align-items: center;
- .elementor-icon {
- position: relative;
- margin-left: -20px;
- z-index: -1;
+ .elementor-icon {
+ position: relative;
+ margin-left: -20px;
+ z-index: -1;
- &::before {
- content: '';
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- width: 90px;
- height: 90px;
- background: #e6e3e3;
- border-radius: 100%;
- z-index: -1;
- // transition: all 250ms ease-in-out;
- }
+ &::before {
+ content: '';
+ position: absolute;
+ left: 50%;
+ top: 50%;
+ transform: translate(-50%, -50%);
+ width: 90px;
+ height: 90px;
+ background: #e6e3e3;
+ border-radius: 100%;
+ z-index: -1;
+ // transition: all 250ms ease-in-out;
+ }
- i {
- color: #000;
- width: 100px;
- height: 100px;
- background: #f4f4f4;
- border-radius: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 28px;
- transition: all 250ms ease-in-out;
- }
- }
+ i {
+ color: #000;
+ width: 100px;
+ height: 100px;
+ background: #f4f4f4;
+ border-radius: 100%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ font-size: 28px;
+ transition: all 250ms ease-in-out;
+ }
+ }
- span {
- position: relative;
+ span {
+ position: relative;
- &::before {
- content: '';
- position: absolute;
- left: 0;
- bottom: 0;
- width: 0;
- height: 2px;
- background: #000;
- transition: width 250ms ease-in-out;
- }
- }
+ &::before {
+ content: '';
+ position: absolute;
+ left: 0;
+ bottom: 0;
+ width: 0;
+ height: 2px;
+ background: #000;
+ transition: width 250ms ease-in-out;
+ }
+ }
- &:hover {
- span {
- &::before {
- width: 100%;
- }
- }
+ &:hover {
+ span {
+ &::before {
+ width: 100%;
+ }
+ }
- .elementor-icon {
- &::before {
- animation: puls 500ms ease-in-out;
- }
+ .elementor-icon {
+ &::before {
+ animation: puls 500ms ease-in-out;
+ }
- i {
- background: #e6e3e3;
- }
- }
- }
+ i {
+ background: #e6e3e3;
+ }
+ }
+ }
- @keyframes puls {
- 0% {
- opacity: 1;
- }
+ @keyframes puls {
+ 0% {
+ opacity: 1;
+ }
- 100% {
- width: 140px;
- height: 140px;
- opacity: 0;
- }
- }
+ 100% {
+ width: 140px;
+ height: 140px;
+ opacity: 0;
+ }
+ }
}
#center-header-box {
- @media (min-width: 501px) {
- >.e-con-inner {
- .center-header-box-menu {
- .elementor-nav-menu {
- li.menu-item-4927 {
- display: none;
- }
- }
- }
- }
- }
+ @media (min-width: 501px) {
+ > .e-con-inner {
+ .center-header-box-menu {
+ .elementor-nav-menu {
+ li.menu-item-4927 {
+ display: none;
+ }
+ }
+ }
+ }
+ }
- @media (min-width: 1025px) {
- >.e-con-inner {
- .center-header-box-menu {
- .elementor-nav-menu {
- >.menu-item {
- &.current_page_item {
- >a {
- &::after {
- width: 100%;
- }
- }
- }
+ @media (min-width: 1025px) {
+ > .e-con-inner {
+ .center-header-box-menu {
+ .elementor-nav-menu {
+ > .menu-item {
+ &.current_page_item {
+ > a {
+ &::after {
+ width: 100%;
+ }
+ }
+ }
- >a {
- &::after {
- width: 0;
- transition: width 250ms ease-in-out;
- }
+ > a {
+ &::after {
+ width: 0;
+ transition: width 250ms ease-in-out;
+ }
- &:hover {
- &::after {
- width: 100%;
- }
- }
- }
- }
- }
- }
- }
- }
+ &:hover {
+ &::after {
+ width: 100%;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
- @media (max-width: 1024px) {
- >.e-con-inner {
- .center-header-box-logo {
- // order: 1;
- flex: 1;
- display: flex;
- }
+ @media (max-width: 1024px) {
+ > .e-con-inner {
+ .center-header-box-logo {
+ // order: 1;
+ flex: 1;
+ display: flex;
+ }
- .center-header-box-menu {
- // order: 3;
+ .center-header-box-menu {
+ // order: 3;
- >.elementor-widget-container {
- >.elementor-nav-menu--dropdown {
- position: absolute;
- right: 0px;
- left: auto;
- top: 64px;
- width: 100vw;
- z-index: 1;
+ > .elementor-widget-container {
+ > .elementor-nav-menu--dropdown {
+ position: absolute;
+ right: 0px;
+ left: auto;
+ top: 64px;
+ width: 100vw;
+ z-index: 1;
- @media (max-width: 768px) {
- top: 52px;
- }
- }
- }
+ @media (max-width: 768px) {
+ top: 52px;
+ }
+ }
+ }
- .elementor-nav-menu {
- .menu-item {
- ul.sub-menu {
- background: #f4f4f4;
- }
- }
- }
- }
+ .elementor-nav-menu {
+ .menu-item {
+ ul.sub-menu {
+ background: #f4f4f4;
+ }
+ }
+ }
+ }
- .center-header-box-contact {
- // order: 2;
+ .center-header-box-contact {
+ // order: 2;
- @media (max-width: 500px) {
- display: none;
- }
- }
- }
- }
+ @media (max-width: 500px) {
+ display: none;
+ }
+ }
+ }
+ }
}
#scroller-rows {
- overflow: hidden;
+ overflow: hidden;
- >.e-con-inner {
- overflow: auto;
- padding-right: 20px;
+ > .e-con-inner {
+ overflow: auto;
+ padding-right: 20px;
- &::-webkit-scrollbar {
- width: 10px;
- }
+ &::-webkit-scrollbar {
+ width: 10px;
+ }
- /* Track */
- &::-webkit-scrollbar-track {
- background: #f4f4f4;
- }
+ /* Track */
+ &::-webkit-scrollbar-track {
+ background: #f4f4f4;
+ }
- /* Handle */
- &::-webkit-scrollbar-thumb {
- background: #d9d9d9;
- }
+ /* Handle */
+ &::-webkit-scrollbar-thumb {
+ background: #d9d9d9;
+ }
- /* Handle on hover */
- &::-webkit-scrollbar-thumb:hover {
- background: #afafaf;
- }
- }
+ /* Handle on hover */
+ &::-webkit-scrollbar-thumb:hover {
+ background: #afafaf;
+ }
+ }
}
#page-hero-baner {
- @media (max-width: 1024px) {
- h1 {
- font-size: 50px;
- }
+ @media (max-width: 1024px) {
+ h1 {
+ font-size: 50px;
+ }
- h2 {
- font-size: 24px;
- }
- }
+ h2 {
+ font-size: 24px;
+ }
+ }
- @media (max-width: 576px) {
- h1 {
- font-size: 40px;
- }
+ @media (max-width: 576px) {
+ h1 {
+ font-size: 40px;
+ }
- h2 {
- font-size: 22px;
- }
- }
+ h2 {
+ font-size: 22px;
+ }
+ }
}
// body {
@@ -1372,4 +1382,4 @@ header {
// color: #444444;
// }
// }
-// }
\ No newline at end of file
+// }