From 5cae883a38ed99e45f549a73a0b1f5d5dca52617 Mon Sep 17 00:00:00 2001 From: Roman Pyrih Date: Fri, 21 Nov 2025 10:35:24 +0100 Subject: [PATCH] Add menu tu wagabunda --- wagabunda.net.pl/custom.js | 94 ++++++++++++++++++++++++++ wagabunda.net.pl/styles.css | 2 +- wagabunda.net.pl/styles.css.map | 2 +- wagabunda.net.pl/styles.scss | 115 ++++++++++++++++++++++++++++++++ 4 files changed, 211 insertions(+), 2 deletions(-) diff --git a/wagabunda.net.pl/custom.js b/wagabunda.net.pl/custom.js index d3bff3a..74054cb 100644 --- a/wagabunda.net.pl/custom.js +++ b/wagabunda.net.pl/custom.js @@ -92,3 +92,97 @@ const firstRow = mainHeader.querySelector('.row.sortable-row') if (firstRow) { firstRow.outerHTML = header_html } + +// MARK: hamburger menu +(function () { + const menuList = document.querySelector('nav.main-nav ul.mega-menu-content'); + + if (!menuList) return; + + menuList.insertAdjacentHTML('beforebegin', ` +
+ +
+ `); + + menuList.id = menuList.id || 'mega-menu-list'; + + const hamburgerBtn = document.querySelector('.mega-menu-hamburger-btn'); + + function slideUp(element, duration = 300) { + element.style.height = element.offsetHeight + 'px'; + element.offsetHeight; + element.style.transitionProperty = 'height, margin, padding'; + element.style.transitionDuration = duration + 'ms'; + element.style.overflow = 'hidden'; + element.style.height = '0'; + element.style.paddingTop = '0'; + element.style.paddingBottom = '0'; + element.style.marginTop = '0'; + element.style.marginBottom = '0'; + + window.setTimeout(function () { + element.style.display = 'none'; + element.style.removeProperty('height'); + element.style.removeProperty('padding-top'); + element.style.removeProperty('padding-bottom'); + element.style.removeProperty('margin-top'); + element.style.removeProperty('margin-bottom'); + element.style.removeProperty('overflow'); + element.style.removeProperty('transition-duration'); + element.style.removeProperty('transition-property'); + }, duration); + } + + function slideDown(element, duration = 300) { + element.style.removeProperty('display'); + let display = window.getComputedStyle(element).display; + if (display === 'none') display = 'flex'; + element.style.display = display; + + const height = element.scrollHeight; + element.style.overflow = 'hidden'; + element.style.height = '0'; + element.style.paddingTop = '0'; + element.style.paddingBottom = '0'; + element.style.marginTop = '0'; + element.style.marginBottom = '0'; + element.offsetHeight; + + element.style.transitionProperty = 'height, margin, padding'; + element.style.transitionDuration = duration + 'ms'; + element.style.height = height + 'px'; + + window.setTimeout(function () { + element.style.removeProperty('height'); + element.style.removeProperty('overflow'); + element.style.removeProperty('transition-duration'); + element.style.removeProperty('transition-property'); + element.style.removeProperty('padding-top'); + element.style.removeProperty('padding-bottom'); + element.style.removeProperty('margin-top'); + element.style.removeProperty('margin-bottom'); + }, duration); + } + + function slideToggle(element, duration = 300) { + if (window.getComputedStyle(element).display === 'none') { + slideDown(element, duration); + } else { + slideUp(element, duration); + } + } + + if (hamburgerBtn) { + hamburgerBtn.addEventListener('click', function () { + hamburgerBtn.classList.toggle('active'); + + const isExpanded = hamburgerBtn.classList.contains('active'); + hamburgerBtn.setAttribute('aria-expanded', String(isExpanded)); + + slideToggle(menuList, 250); + }); + } +})(); \ No newline at end of file diff --git a/wagabunda.net.pl/styles.css b/wagabunda.net.pl/styles.css index b419f63..be1a5a5 100644 --- a/wagabunda.net.pl/styles.css +++ b/wagabunda.net.pl/styles.css @@ -1 +1 @@ -@import"https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";@import"https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&display=swap";*{font-family:"Poppins",sans-serif}.text-color-11{color:#0085ed}.btn{border-radius:8px;padding:8px 24px;transition:all 250ms ease-in-out}.btn.background-color-7{background:#ffd024}.btn.background-color-7:hover{background:#ffe37c}.btn.background-color-7.text-color-15{color:#191919}section.search-box div[data-template-type=searchbtn]:not(.grid-stack-item),section.subscriptionsbox div[data-template-type=searchbtn]:not(.grid-stack-item){height:55px !important}section.search-box .fields-container:not(.grid-stack)>.searchbox-dd-item{height:55px !important}section.search-box .fields-additional-button:not(.grid-stack-item),section.subscriptionsbox .fields-additional-button:not(.grid-stack-item){height:55px !important}header#main-header .mobile-header{display:none !important}header#main-header .functional-header .main>div{display:inline-block;min-height:100px;align-content:center}header#main-header .functional-header .main .mobile-menu-item{display:flex;align-items:center;-moz-column-gap:10px;column-gap:10px}header#main-header .functional-header .main .mobile-menu-item .val{font-size:14px;font-weight:400}header#main-header .functional-header .main #logo-image-container img{max-width:100px}header#main-header .functional-header .main .google-reviews img{max-width:80px;width:100%}header#main-header>div:nth-child(2):not(#custom-header){visibility:hidden !important;opacity:0 !important}header#main-header #custom-header{position:relative;height:140px;padding:15px 0}@media(max-width: 820px){header#main-header #custom-header{height:220px}}@media(max-width: 500px){header#main-header #custom-header{height:280px}}header#main-header #custom-header>.container-fluid.wrapper{position:initial}header#main-header #custom-header .custom-header{display:flex;flex-direction:row;justify-content:space-between;align-items:center}@media(max-width: 991px){header#main-header #custom-header .custom-header{flex-wrap:wrap}}@media(max-width: 500px){header#main-header #custom-header .custom-header{row-gap:15px}}@media(max-width: 820px){header#main-header #custom-header .custom-header .c-col{width:50% !important}}header#main-header #custom-header .custom-header .c-col-1{width:calc((100% - 100px)/3)}@media(max-width: 500px){header#main-header #custom-header .custom-header .c-col-1{width:50% !important}}header#main-header #custom-header .custom-header .c-col-1 a{display:flex;flex-direction:column;text-decoration:none;row-gap:5px;margin-left:5%}@media(min-width: 1300px)and (max-width: 1400px){header#main-header #custom-header .custom-header .c-col-1 a{margin-left:0}}@media(min-width: 1300px){header#main-header #custom-header .custom-header .c-col-1 a{width:375px;position:absolute;left:0;top:50%;transform:translateY(-50%);height:113px}}@media(max-width: 500px){header#main-header #custom-header .custom-header .c-col-1 a{align-items:center}}header#main-header #custom-header .custom-header .c-col-1 img{width:100%;max-width:250px}@media(min-width: 1300px){header#main-header #custom-header .custom-header .c-col-1 img{max-width:375px}}@media(max-width: 991px){header#main-header #custom-header .custom-header .c-col-1 img{max-width:200px}}header#main-header #custom-header .custom-header .c-col-1 span{color:#dd222a;font-family:"Gloria Hallelujah",sans-serif;font-size:12px;width:100%;max-width:250px;text-align:center;font-weight:900;text-decoration:none;margin-left:7.5%}@media(min-width: 1300px){header#main-header #custom-header .custom-header .c-col-1 span{margin-left:28%;font-size:18px}}@media(max-width: 991px){header#main-header #custom-header .custom-header .c-col-1 span{margin-left:0}}@media(max-width: 500px){header#main-header #custom-header .custom-header .c-col-1 span{margin-left:13%}}@media(max-width: 820px){header#main-header #custom-header .custom-header .c-col-1{order:1}}header#main-header #custom-header .custom-header .c-col-2{width:calc((100% - 100px)/3)}@media(max-width: 500px){header#main-header #custom-header .custom-header .c-col-2{width:100% !important}}header#main-header #custom-header .custom-header .c-col-2 ul{list-style:none;padding:0;margin:0}header#main-header #custom-header .custom-header .c-col-2 ul li{color:#000;font-size:14px;font-weight:400}header#main-header #custom-header .custom-header .c-col-2 ul li a{color:inherit}@media(max-width: 991px){header#main-header #custom-header .custom-header .c-col-2 ul li{font-size:12px}}@media(max-width: 820px){header#main-header #custom-header .custom-header .c-col-2{order:3}}@media(max-width: 500px){header#main-header #custom-header .custom-header .c-col-2{text-align:center}}header#main-header #custom-header .custom-header .c-col-3{width:calc((100% - 100px)/3);height:80px}@media(max-width: 500px){header#main-header #custom-header .custom-header .c-col-3{width:100% !important}}header#main-header #custom-header .custom-header .c-col-3 ul{list-style:none;padding:0;margin:0}header#main-header #custom-header .custom-header .c-col-3 ul li{color:#000;font-size:14px;font-weight:400}header#main-header #custom-header .custom-header .c-col-3 ul li a{color:inherit}@media(max-width: 991px){header#main-header #custom-header .custom-header .c-col-3 ul li{font-size:12px}}@media(max-width: 820px){header#main-header #custom-header .custom-header .c-col-3{order:4}}@media(max-width: 500px){header#main-header #custom-header .custom-header .c-col-3{text-align:center;height:auto}}header#main-header #custom-header .custom-header .c-col-4{width:100px}@media(max-width: 500px){header#main-header #custom-header .custom-header .c-col-4{width:50% !important}}header#main-header #custom-header .custom-header .c-col-4 ul.box-social-header{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;row-gap:10px;align-items:center}header#main-header #custom-header .custom-header .c-col-4 ul.box-social-header li{color:#000;font-size:14px;font-weight:400}header#main-header #custom-header .custom-header .c-col-4 ul.box-social-header li a{color:inherit}header#main-header #custom-header .custom-header .c-col-4 ul.box-social-header li img{width:100%;max-width:80px}header#main-header #custom-header .custom-header .c-col-4 ul.box-social-header li.box-social-header-1 a img{max-width:90px}@media(max-width: 820px){header#main-header #custom-header .custom-header .c-col-4 ul.box-social-header{align-items:flex-end}}@media(max-width: 500px){header#main-header #custom-header .custom-header .c-col-4 ul.box-social-header{align-items:center}}@media(max-width: 820px){header#main-header #custom-header .custom-header .c-col-4{order:2}}@media(min-width: 768px)and (max-width: 991px){body nav.main-nav{display:block !important}}@media(max-width: 767px){body nav.main-nav{display:block !important}}body nav.main-nav ul.mega-menu-content{padding-left:15px;padding-right:15px}body nav.main-nav ul.mega-menu-content>li .btn-cart,body nav.main-nav ul.mega-menu-content>li .quick-search{background:rgba(0,0,0,0)}body nav.main-nav ul.mega-menu-content>li>a{padding:13px 14px 14px}body nav.main-nav ul.mega-menu-content>li .elem-in-nav span{font-size:16px}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu{border-color:rgba(25,25,25,.85)}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul{display:flex;flex-direction:column;padding-left:10px;padding-right:10px;border-color:rgba(25,25,25,.16)}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.sub-menu-caption span{color:#0085ed}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item{height:100%}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item:hover{background-color:rgba(0,133,237,.07)}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item>a{flex-direction:column;display:flex;height:100%}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item h2{color:#2a2a2a;font-size:16px;display:flex;flex-direction:column;row-gap:7px}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item h2 .stars i.fa.fa-star.fa-solid{color:#ffd024}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item p{color:#2a2a2a;font-size:14px}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item p.price-details{flex:1;align-content:end}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item p.price-details .price-label{color:#2a2a2a;font-size:14px;font-weight:600}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item p.price-details .text-color-11{color:#0085ed}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item .omnibus .omnibus-label{font-size:10px;color:#2a2a2a}@media(max-width: 820px){body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu.full-width-sub-menu{width:calc(100% - 30px) !important;left:15px !important;right:15px !important}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu.full-width-sub-menu .sub-menu-inner>ul{width:33% !important}}@media(max-width: 700px){body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu.full-width-sub-menu .sub-menu-inner{flex-wrap:wrap;row-gap:15px}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu.full-width-sub-menu .sub-menu-inner>ul{width:50% !important;min-height:300px !important}}@media(max-width: 530px){body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu.full-width-sub-menu .sub-menu-inner>ul{width:100% !important}}body nav.main-nav .quick-search .quick-search-elem input.quick-search-input{color:#fff;font-family:"Poppins",sans-serif;font-size:16px}#widget197464156 .promo-box .carousel .carousel-indicators li{height:10px;width:30px;transition:all 250ms ease-in-out;border:1px solid hsla(0,0%,100%,.6)}#widget197464156 .promo-box .carousel .carousel-indicators li.active{height:10px;width:60px;background:#0085ed}#widget197464156 .promo-box .extra-link{position:relative;background:#ffd024;border-radius:8px;padding:8px 24px;max-width:-moz-fit-content;max-width:fit-content;margin-left:auto;margin-right:auto;margin-top:20px;text-shadow:none;font-size:14px;line-height:1.42857;color:#2a2a2a;transition:all 250ms ease-in-out}#widget197464156 .promo-box .extra-link:hover{background:#ffe37c}#widget197464161 section.search-box{background:#fff;border-bottom-left-radius:10px;border-bottom-right-radius:10px}#widget197464161 section.search-box .background-color-3{background:rgba(0,0,0,0)}#widget197464161 section.search-box ul.nav-tabs li{background:rgba(0,133,237,.2)}#widget197464161 section.search-box .tab-content form .fields-additional-button a.btn{border-radius:3px;background:rgba(0,0,0,0)}#widget197464161 section.search-box .tab-content form .fields-additional-button a.btn:hover{background:#ffe37c}#widget197464161 section.search-box .tab-content form .fields-additional-button a.btn span{color:#636363;flex-direction:row-reverse;justify-content:space-between;padding:3.5px}#widget197464161 section.search-box .tab-content form .fields-additional-button a.btn span i.fa-chevron-down::before{content:""}#widget197464161 section.search-box .tab-content form .fields-additional-button a.btn span i.fa-chevron-up::before{content:""}#widget197464161 section.search-box .tab-content form .fields-additional-button a.btn span i::before{font-weight:var(--fa-style);font-family:var(--fa-style-family, "Font Awesome 6 Pro");position:absolute;top:calc(50% - 16px);right:0;text-align:center;width:32px;line-height:32px;font-size:22px;color:#0085ed;cursor:pointer}#widget197464161 section.search-box .tab-content form .btn.btn-send{background:#ffd024;border-radius:8px;padding:8px 24px}#widget197464161 section.search-box .tab-content form .btn.btn-send:hover{background:#ffe37c}#widget197464161 section.search-box .tab-content form .btn.btn-send span{color:#2a2a2a}.br-input{border-radius:3px;border-color:#d9d9d9}#widget197464171,#widget197464166{padding-left:0;padding-right:0}body section.offer-box .offer{padding:0;border-radius:5px;box-shadow:rgba(0,0,0,.1) 0px 1px 2px 0px;transition:box-shadow .25s ease-in-out}body section.offer-box .offer:hover{box-shadow:rgba(0,0,0,.1) 0px 8px 16px -4px}body section.offer-box .offer:hover .img-container-wrap .img-container{transition:all 4s linear}body section.offer-box .offer .img-container-wrap .img-container{border-top-left-radius:4px;border-top-right-radius:4px;transition:all 300ms linear}body section.offer-box .offer .text-container h3{color:#191919;display:flex;flex-direction:column;row-gap:3px;margin-bottom:15px}body section.offer-box .offer .text-container h3 sup.stars{top:0}body section.offer-box .offer .text-container h3 sup.stars i.fa.fa-star.fa-solid{color:#ffd024}body section.offer-box .offer .text-container .box-header *{color:#191919}body section.offer-box .offer .text-container .box-header h4{color:#191919}body section.offer-box .offer .text-container .data p .text-nowrap{color:#191919}body section.offer-box .offer .text-container .data p .text-nowrap span{color:#191919}body section.offer-box .offer .text-container .data>*{display:flex;flex-direction:column;row-gap:5px}body section.offer-box .offer .text-container .data .price span{color:rgba(0,133,237,.8);font-size:28px;font-weight:400}body section.offer-box .offer .text-container .data .price span sup{color:rgba(0,133,237,.8)}body .offerlist-box{padding:0;border-radius:5px;box-shadow:rgba(0,0,0,.1) 0px 1px 2px 0px;transition:box-shadow .25s ease-in-out}body .offerlist-box:hover{box-shadow:rgba(0,0,0,.1) 0px 8px 16px -4px}body .offerlist-box .img-container-wrapper .img-container{border-top-left-radius:4px;border-top-right-radius:4px}body .offerlist-box ul.offers li:not(:last-child){border-bottom:1px solid #f2f2f2}body .offerlist-box ul.offers li:last-child{border-bottom:none}body .offerlist-box ul.offers li:hover:not(.link-to-more-offers) a{background:#f2f4f7}body .offerlist-box ul.offers li.link-to-more-offers .more{color:#2a2a2a;font-size:14px}body .offerlist-box ul.offers li.link-to-more-offers .more span{color:#2a2a2a;margin-left:5px}body .offerlist-box ul.offers li a{margin:5px 10px;border-radius:5px;transition:all 250ms ease-in-out}body .offerlist-box ul.offers li a .name span{color:#2a2a2a;font-size:16px;font-weight:600}body .offerlist-box ul.offers li a .price strong{color:rgba(0,133,237,.8);font-size:18px;font-weight:600}body .offerlist-box ul.offers li a .price strong sup{color:rgba(0,133,237,.8)}body .offerlist-box ul.offers li a .omnibus span{color:#191919}.section-header{background:#0085ed;border-radius:5px !important}.section-header h2{font-weight:300}main#mainCol .object-listing-elem.elem-booking>.elem-details>.elem-name h1{color:#191919;display:flex;flex-direction:column;row-gap:3px;margin-bottom:15px}main#mainCol .object-listing-elem.elem-booking>.elem-details>.elem-name h1 .stars i.fa.fa-star.fa-solid{color:#ffd024}main#mainCol .object-listing-elem.elem-booking>.elem-details table.elem-meta tbody tr:nth-child(even) td.meta-label{border-top-left-radius:10px;border-bottom-left-radius:10px}main#mainCol .object-listing-elem.elem-booking>.elem-details table.elem-meta tbody tr:nth-child(even) td.meta-value{border-top-right-radius:10px;border-bottom-right-radius:10px}main#mainCol .object-listing-elem.elem-booking>.elem-details table.elem-meta tbody tr td{padding:8px 10px;vertical-align:middle}main#mainCol .object-listing-elem.elem-booking>.merlin-gallery-container .merlin-gallery .btn.br-btn.disabled{background:#ffe37c;opacity:.6}main#mainCol .object-listing-elem.elem-booking>.merlin-gallery-container .merlin-gallery .btn.br-btn i{font-weight:300}main#mainCol .object-listing-elem.elem-booking ul.facilities li{background:rgba(0,0,0,0);border-radius:5px}main#mainCol section.occupancy-editor form#occupancy-form>div{border-radius:5px;background:rgba(0,133,237,.2)}main#mainCol section.occupancy-editor form#occupancy-form>div .background-color-7{background:#ffd024}main#mainCol section.occupancy-editor form#occupancy-form>div .text-color-7{color:#2a2a2a}main#mainCol section.occupancy-editor form#occupancy-form>div span{border-color:#ffd024}main#mainCol section.occupancy-editor form#occupancy-form>div span.disabled{background:#ffe37c !important}main#mainCol section.occupancy-editor form#occupancy-form>div span i.fa-plus,main#mainCol section.occupancy-editor form#occupancy-form>div span i.fa-minus{color:#2a2a2a}section[id="197674051"] .section-content{padding-left:0;padding-right:0;margin:100px 0 50px}section[id="197674051"] .section-content h2{color:#2a2a2a;font-size:24px;font-family:"Poppins",sans-serif;font-weight:700;margin:0 0 20px 0}body .checkbox-stack{position:relative !important;width:16px !important;height:16px !important;flex:0 0 16px !important;margin-top:3px !important;margin-right:6px !important;inset:0 !important}body .checkbox-stack label.last-plan{width:16px !important;height:16px !important;position:absolute;inset:0 !important}body .checkbox-stack label.last-plan::before{content:"" !important;width:10px !important;height:10px !important;background:rgba(0,0,0,0) !important;background:rgba(0,0,0,0) !important;border-radius:3px !important;top:50% !important;left:50% !important;transform:translate(-50%, -50%) !important}body .checkbox-stack label.first-plan::before{content:"" !important;inset:0 !important;width:16px !important;height:16px !important;background:rgba(0,0,0,0) !important;border:1px solid #0085ed !important;border-radius:4px !important}body .checkbox-stack input[type=checkbox]:checked+label.last-plan::before{background:#0085ed !important}body .checkbox-stack2{position:relative !important;display:inline-block;width:16px !important;height:16px !important;flex:0 0 16px !important;margin-right:6px !important;inset:0 !important}body .checkbox-stack2 label.last-plan{width:16px !important;height:16px !important;position:absolute;inset:0 !important}body .checkbox-stack2 label.last-plan::before{content:"" !important;width:10px !important;height:10px !important;background:rgba(0,0,0,0) !important;background:rgba(0,0,0,0) !important;border-radius:3px !important;top:50% !important;left:50% !important;transform:translate(-50%, -50%) !important}body .checkbox-stack2 label.first-plan::before{content:"" !important;inset:0 !important;width:16px !important;height:16px !important;background:rgba(0,0,0,0) !important;border:1px solid #0085ed !important;border-radius:4px !important}body .checkbox-stack2 input[type=checkbox]:checked+label.last-plan::before{background:#0085ed !important}#offer-details .object-listing-elem .elem-name h1{color:#191919;display:flex;flex-direction:column;row-gap:3px;margin-bottom:15px}#qtip-1{border-radius:8px}#qtip-1 .qtip-titlebar{border-top-left-radius:8px;border-top-right-radius:8px}#qtip-1 .qtip-titlebar #qtip-1-title{font-size:20px;font-weight:300}#qtip-1 .qtip-titlebar .qtip-close span{display:none}#qtip-1 .qtip-titlebar .qtip-close i{top:0;font-size:20px}#qtip-1 .qtip-content{border-bottom-left-radius:8px;border-bottom-right-radius:8px}#qtip-1 .qtip-content .quick-search-results h1{padding:15px 15px}#qtip-1 .qtip-content .quick-search-results h1 span{display:flex;flex-direction:row;gap:10px;font-size:16px;line-height:1}#qtip-1 .qtip-content .quick-search-results .offer{padding:10px 15px}#qtip-1 .qtip-content .quick-search-results .offer.background-color-18{background:#ffe37c}#qtip-1 .qtip-content .quick-search-results .offer.text-color-12 h3{color:#191919}#qtip-1 .qtip-content .quick-search-results .offer.text-color-12 h4{color:#2a2a2a}#qtip-1 .qtip-content .quick-search-results .offer h3{font-weight:500}section[id="197683748"]{margin-top:50px;margin-bottom:50px}section[id="197683748"] .section-content .ubezpieczenia-head-img{margin-bottom:60px}section[id="197683748"] .section-content .ubezpieczenia-head-img img{display:block;width:100%;max-width:800px;margin-left:auto;margin-right:auto}section[id="197683748"] .section-content h2{color:#2a2a2a;font-size:24px;font-family:"Poppins",sans-serif;font-weight:700;margin:0 0 20px 0}section[id="197683748"] .section-content ul{padding:0;margin:0;list-style:none}section[id="197683748"] .section-content ul li{display:flex;flex-direction:row;align-items:center;-moz-column-gap:20px;column-gap:20px}section[id="197683748"] .section-content ul li:not(:last-child){padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #f2f2f2}section[id="197683748"] .section-content ul li .img img{width:79px;height:70px;max-width:unset}section[id="197683748"] .section-content ul li .content p:last-child{margin-bottom:0}section[id="197683748"] .section-content a.btn-block{display:block;max-width:-moz-fit-content;max-width:fit-content;margin-left:auto;margin-right:auto;margin-top:30px}div[id=widget197683827] section.iframe{margin-bottom:50px;margin-top:50px}div[id=widget197683827] section.iframe>.section .section-header{display:none}div[id=widget197683876] section.iframe>.section .section-header{display:none}div[id=widget197683900] section.text-widget{margin-bottom:50px}#contact-additional-info a{color:#0085ed;transition:all 250ms ease-in-out;text-decoration:none}#contact-additional-info a:hover{color:#ffd024}#contact-additional-info ul{padding:0;margin:0;list-style:none}#contact-additional-info ul li:not(:last-child){margin-bottom:5px}#contact-box .section-header .sh-inner:after{display:none !important}#contact-box .section-content{display:flex;flex-direction:row}#contact-box .section-content .c-col-1{width:100%;max-width:290px}#contact-box .section-content .c-col-1 img{width:100%;max-width:-moz-fit-content;max-width:fit-content}#contact-box .section-content .c-col-2{padding-left:30px}#contact-box .section-content .c-col-2 h3{font-size:18px;margin-top:0;margin-bottom:20px}@media(max-width: 640px){#contact-box .section-content{flex-direction:column;align-items:center}#contact-box .section-content .c-col-1{padding-bottom:30px}#contact-box .section-content .c-col-2{padding-left:0px}}body[data-pageid="5353170"] main#mainCol{margin-top:50px;margin-bottom:50px}div[id=widget197684012]{margin-bottom:50px}div[id=widget197684012] section.iframe>.section .section-header{display:none}section[id="197684074"]{margin-top:50px;margin-bottom:50px}section[id="197684074"] .section-content h2{color:#2a2a2a;font-size:24px;font-family:"Poppins",sans-serif;font-weight:700;margin:0 0 20px 0}section[id="197684074"] .section-content h3{color:#2a2a2a;font-size:18px;font-family:"Poppins",sans-serif;font-weight:700;margin:0 0 20px 0}section[id="197684074"] .section-content h3 strong{color:#0085ed}div[id=widget197684168] section.iframe{margin-top:50px}div[id=widget197684168] section.iframe>.section .section-header{display:none}div#widget197687178 section.iframe>.section .section-header{display:none}div#widget197464262,div#widget197464283,div#widget197464288,div#widget197464305,div#widget197464310,div#widget197464315{display:none}div#widget197687371 h4{display:flex;flex-direction:row;align-items:center;gap:20px;margin:50px 0 20px}div#widget197687371 h4 img{width:100%;max-width:150px}div#widget197464176 .promo-box{margin-bottom:0}div#widget197687138>section{width:100svw;transform:translateX(-50%);margin-left:50%}div#widget197687138 .section-content{padding-left:0;padding-right:0}div#widget197687138 .section-content ul{display:flex;flex-direction:row;padding:0;margin:0;list-style:none}div#widget197687138 .section-content ul li{position:relative;height:250px;flex-basis:20%;overflow:hidden}div#widget197687138 .section-content ul li::before{content:"";position:absolute;inset:0;background-repeat:no-repeat;background-position:center center;background-size:cover;transition:all 300ms linear}div#widget197687138 .section-content ul li:nth-child(1)::before{background-image:url("https://vcdn.merlinx.eu/image//getbyid/513195")}div#widget197687138 .section-content ul li:nth-child(2)::before{background-image:url("https://vcdn.merlinx.eu/image//getbyid/513196")}div#widget197687138 .section-content ul li:nth-child(3)::before{background-image:url("https://vcdn.merlinx.eu/image//getbyid/513197")}div#widget197687138 .section-content ul li:nth-child(4)::before{background-image:url("https://vcdn.merlinx.eu/image//getbyid/513198")}div#widget197687138 .section-content ul li:nth-child(5)::before{background-image:url("https://vcdn.merlinx.eu/image//getbyid/513199")}div#widget197687138 .section-content ul li:hover::before{transform:scale(1.2);filter:brightness(0.7);transition:all 4s linear}div#widget197687138 .section-content ul li a{display:block;position:absolute;inset:0;z-index:10}div#widget197687138 .section-content ul li a span{position:absolute;bottom:0%;left:50%;transform:translate(-50%, -50%);color:#fff;font-family:"Poppins",sans-serif;font-weight:300;font-size:16px;width:100%;text-align:center;background:rgba(0,0,0,.65);padding:10px}div#widget197687470 .section-content .c-row-1{display:flex;flex-direction:row;gap:40px}div#widget197687470 .section-content .c-row-1 .c-col-1{width:45%}div#widget197687470 .section-content .c-row-1 .c-col-1 img{max-width:500px}div#widget197687470 .section-content .c-row-1 .c-col-2{width:55%}@media(max-width: 767px){div#widget197687470 .section-content .c-row-1{flex-direction:column}div#widget197687470 .section-content .c-row-1 .c-col-1{width:100%}div#widget197687470 .section-content .c-row-1 .c-col-2{width:100%}}div#widget197687470 .section-content img{display:block;margin:20px auto 30px;width:100%;max-width:-moz-fit-content;max-width:fit-content}div#widget197687470 .section-content .c-box-head{min-height:46px;line-height:31px;outline:none;padding:7.5px 15px;white-space:nowrap;background:#0085ed;border-radius:5px;margin-bottom:20px}div#widget197687470 .section-content .c-box-head p{color:#fff;font-size:20px;font-weight:300;font-family:"Poppins",sans-serif;margin:0}div#widget197687470 .section-content .col-md-4{margin-bottom:30px}/*# sourceMappingURL=styles.css.map */ \ No newline at end of file +@import"https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";@import"https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&display=swap";*{font-family:"Poppins",sans-serif}.text-color-11{color:#0085ed}.btn{border-radius:8px;padding:8px 24px;transition:all 250ms ease-in-out}.btn.background-color-7{background:#ffd024}.btn.background-color-7:hover{background:#ffe37c}.btn.background-color-7.text-color-15{color:#191919}section.search-box div[data-template-type=searchbtn]:not(.grid-stack-item),section.subscriptionsbox div[data-template-type=searchbtn]:not(.grid-stack-item){height:55px !important}section.search-box .fields-container:not(.grid-stack)>.searchbox-dd-item{height:55px !important}section.search-box .fields-additional-button:not(.grid-stack-item),section.subscriptionsbox .fields-additional-button:not(.grid-stack-item){height:55px !important}header#main-header .mobile-header{display:none !important}header#main-header .functional-header .main>div{display:inline-block;min-height:100px;align-content:center}header#main-header .functional-header .main .mobile-menu-item{display:flex;align-items:center;-moz-column-gap:10px;column-gap:10px}header#main-header .functional-header .main .mobile-menu-item .val{font-size:14px;font-weight:400}header#main-header .functional-header .main #logo-image-container img{max-width:100px}header#main-header .functional-header .main .google-reviews img{max-width:80px;width:100%}header#main-header>div:nth-child(2):not(#custom-header){visibility:hidden !important;opacity:0 !important}header#main-header #custom-header{position:relative;height:140px;padding:15px 0}@media(max-width: 820px){header#main-header #custom-header{height:220px}}@media(max-width: 500px){header#main-header #custom-header{height:280px}}header#main-header #custom-header>.container-fluid.wrapper{position:initial}header#main-header #custom-header .custom-header{display:flex;flex-direction:row;justify-content:space-between;align-items:center}@media(max-width: 991px){header#main-header #custom-header .custom-header{flex-wrap:wrap}}@media(max-width: 500px){header#main-header #custom-header .custom-header{row-gap:15px}}@media(max-width: 820px){header#main-header #custom-header .custom-header .c-col{width:50% !important}}header#main-header #custom-header .custom-header .c-col-1{width:calc((100% - 100px)/3)}@media(max-width: 500px){header#main-header #custom-header .custom-header .c-col-1{width:50% !important}}header#main-header #custom-header .custom-header .c-col-1 a{display:flex;flex-direction:column;text-decoration:none;row-gap:5px;margin-left:5%}@media(min-width: 1300px)and (max-width: 1400px){header#main-header #custom-header .custom-header .c-col-1 a{margin-left:0}}@media(min-width: 1300px){header#main-header #custom-header .custom-header .c-col-1 a{width:375px;position:absolute;left:0;top:50%;transform:translateY(-50%);height:113px}}@media(max-width: 500px){header#main-header #custom-header .custom-header .c-col-1 a{align-items:center}}header#main-header #custom-header .custom-header .c-col-1 img{width:100%;max-width:250px}@media(min-width: 1300px){header#main-header #custom-header .custom-header .c-col-1 img{max-width:375px}}@media(max-width: 991px){header#main-header #custom-header .custom-header .c-col-1 img{max-width:200px}}header#main-header #custom-header .custom-header .c-col-1 span{color:#dd222a;font-family:"Gloria Hallelujah",sans-serif;font-size:12px;width:100%;max-width:250px;text-align:center;font-weight:900;text-decoration:none;margin-left:7.5%}@media(min-width: 1300px){header#main-header #custom-header .custom-header .c-col-1 span{margin-left:28%;font-size:18px}}@media(max-width: 991px){header#main-header #custom-header .custom-header .c-col-1 span{margin-left:0}}@media(max-width: 500px){header#main-header #custom-header .custom-header .c-col-1 span{margin-left:13%}}@media(max-width: 820px){header#main-header #custom-header .custom-header .c-col-1{order:1}}header#main-header #custom-header .custom-header .c-col-2{width:calc((100% - 100px)/3)}@media(max-width: 500px){header#main-header #custom-header .custom-header .c-col-2{width:100% !important}}header#main-header #custom-header .custom-header .c-col-2 ul{list-style:none;padding:0;margin:0}header#main-header #custom-header .custom-header .c-col-2 ul li{color:#000;font-size:14px;font-weight:400}header#main-header #custom-header .custom-header .c-col-2 ul li a{color:inherit}@media(max-width: 991px){header#main-header #custom-header .custom-header .c-col-2 ul li{font-size:12px}}@media(max-width: 820px){header#main-header #custom-header .custom-header .c-col-2{order:3}}@media(max-width: 500px){header#main-header #custom-header .custom-header .c-col-2{text-align:center}}header#main-header #custom-header .custom-header .c-col-3{width:calc((100% - 100px)/3);height:80px}@media(max-width: 500px){header#main-header #custom-header .custom-header .c-col-3{width:100% !important}}header#main-header #custom-header .custom-header .c-col-3 ul{list-style:none;padding:0;margin:0}header#main-header #custom-header .custom-header .c-col-3 ul li{color:#000;font-size:14px;font-weight:400}header#main-header #custom-header .custom-header .c-col-3 ul li a{color:inherit}@media(max-width: 991px){header#main-header #custom-header .custom-header .c-col-3 ul li{font-size:12px}}@media(max-width: 820px){header#main-header #custom-header .custom-header .c-col-3{order:4}}@media(max-width: 500px){header#main-header #custom-header .custom-header .c-col-3{text-align:center;height:auto}}header#main-header #custom-header .custom-header .c-col-4{width:100px}@media(max-width: 500px){header#main-header #custom-header .custom-header .c-col-4{width:50% !important}}header#main-header #custom-header .custom-header .c-col-4 ul.box-social-header{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;row-gap:10px;align-items:center}header#main-header #custom-header .custom-header .c-col-4 ul.box-social-header li{color:#000;font-size:14px;font-weight:400}header#main-header #custom-header .custom-header .c-col-4 ul.box-social-header li a{color:inherit}header#main-header #custom-header .custom-header .c-col-4 ul.box-social-header li img{width:100%;max-width:80px}header#main-header #custom-header .custom-header .c-col-4 ul.box-social-header li.box-social-header-1 a img{max-width:90px}@media(max-width: 820px){header#main-header #custom-header .custom-header .c-col-4 ul.box-social-header{align-items:flex-end}}@media(max-width: 500px){header#main-header #custom-header .custom-header .c-col-4 ul.box-social-header{align-items:center}}@media(max-width: 820px){header#main-header #custom-header .custom-header .c-col-4{order:2}}@media(min-width: 768px)and (max-width: 991px){body nav.main-nav{display:block !important}}@media(max-width: 767px){body nav.main-nav{display:block !important}}@media(max-width: 500px){body nav.main-nav .additional-separator{display:none !important}body nav.main-nav .header-container{min-height:36px}}body nav.main-nav ul.mega-menu-content{padding-left:15px;padding-right:15px}@media(max-width: 500px){body nav.main-nav ul.mega-menu-content{display:none;flex-direction:column}}body nav.main-nav ul.mega-menu-content>li .btn-cart,body nav.main-nav ul.mega-menu-content>li .quick-search{background:rgba(0,0,0,0)}body nav.main-nav ul.mega-menu-content>li>a{padding:13px 14px 14px}@media(max-width: 500px){body nav.main-nav ul.mega-menu-content>li>a{padding:5px;min-height:auto !important;text-align:center}}body nav.main-nav ul.mega-menu-content>li .elem-in-nav span{font-size:16px}@media(max-width: 500px){body nav.main-nav ul.mega-menu-content>li .elem-in-nav span{font-size:14px}}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu{border-color:rgba(25,25,25,.85)}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul{display:flex;flex-direction:column;padding-left:10px;padding-right:10px;border-color:rgba(25,25,25,.16)}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.sub-menu-caption span{color:#0085ed}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item{height:100%}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item:hover{background-color:rgba(0,133,237,.07)}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item>a{flex-direction:column;display:flex;height:100%}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item h2{color:#2a2a2a;font-size:16px;display:flex;flex-direction:column;row-gap:7px}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item h2 .stars i.fa.fa-star.fa-solid{color:#ffd024}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item p{color:#2a2a2a;font-size:14px}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item p.price-details{flex:1;align-content:end}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item p.price-details .price-label{color:#2a2a2a;font-size:14px;font-weight:600}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item p.price-details .text-color-11{color:#0085ed}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu .sub-menu-inner>ul>li.mobile-menu-item .omnibus .omnibus-label{font-size:10px;color:#2a2a2a}@media(max-width: 500px){body nav.main-nav ul.mega-menu-content>li.mm-basket-li>.btn-cart{margin:0 auto}}@media(max-width: 500px){body nav.main-nav ul.mega-menu-content>li.pull-left>.quick-search{margin:0 auto}}@media(max-width: 500px){body nav.main-nav ul.mega-menu-content>li.pull-left.visible-panel .quick-search{bottom:0}}@media(max-width: 820px){body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu.full-width-sub-menu{width:calc(100% - 30px) !important;left:15px !important;right:15px !important}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu.full-width-sub-menu .sub-menu-inner>ul{width:33% !important}}@media(max-width: 700px){body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu.full-width-sub-menu .sub-menu-inner{flex-wrap:wrap;row-gap:15px}body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu.full-width-sub-menu .sub-menu-inner>ul{width:50% !important;min-height:300px !important}}@media(max-width: 530px){body nav.main-nav ul.mega-menu-content>li .mobile-menu-item.sub-menu.full-width-sub-menu .sub-menu-inner>ul{width:100% !important}}@media(max-width: 500px){body nav.main-nav ul.mega-menu-content>li{width:100%}}body nav.main-nav .quick-search .quick-search-elem input.quick-search-input{color:#fff;font-family:"Poppins",sans-serif;font-size:16px}body nav.main-nav .mega-menu-hamburger{position:relative;padding:10px 15px;line-height:0;text-align:center}@media(min-width: 501px){body nav.main-nav .mega-menu-hamburger{display:none}}body nav.main-nav .mega-menu-hamburger .mega-menu-hamburger-btn{position:relative;border:none;width:36px;height:36px;background:#fff;padding:0;margin:0;border-radius:3px;overflow:hidden}body nav.main-nav .mega-menu-hamburger .mega-menu-hamburger-btn::before{content:"";position:absolute;top:8px;left:5px;width:25px;height:2px;background:#0085ed;transition:all 250ms ease-in-out}body nav.main-nav .mega-menu-hamburger .mega-menu-hamburger-btn::after{content:"";position:absolute;top:26px;left:5px;width:25px;height:2px;background:#0085ed;transition:all 250ms ease-in-out}body nav.main-nav .mega-menu-hamburger .mega-menu-hamburger-btn.active::before{top:18px;transform:rotate(-45deg)}body nav.main-nav .mega-menu-hamburger .mega-menu-hamburger-btn.active::after{top:18px;transform:rotate(45deg)}body nav.main-nav .mega-menu-hamburger .mega-menu-hamburger-btn.active span{transform:translateX(calc(100% + 10px))}body nav.main-nav .mega-menu-hamburger .mega-menu-hamburger-btn span{position:absolute;top:17px;left:5px;width:25px;height:2px;background:#0085ed;transition:all 250ms ease-in-out}#widget197464156 .promo-box .carousel .carousel-indicators li{height:10px;width:30px;transition:all 250ms ease-in-out;border:1px solid hsla(0,0%,100%,.6)}#widget197464156 .promo-box .carousel .carousel-indicators li.active{height:10px;width:60px;background:#0085ed}#widget197464156 .promo-box .extra-link{position:relative;background:#ffd024;border-radius:8px;padding:8px 24px;max-width:-moz-fit-content;max-width:fit-content;margin-left:auto;margin-right:auto;margin-top:20px;text-shadow:none;font-size:14px;line-height:1.42857;color:#2a2a2a;transition:all 250ms ease-in-out}#widget197464156 .promo-box .extra-link:hover{background:#ffe37c}#widget197464161 section.search-box{background:#fff;border-bottom-left-radius:10px;border-bottom-right-radius:10px}#widget197464161 section.search-box .background-color-3{background:rgba(0,0,0,0)}#widget197464161 section.search-box ul.nav-tabs li{background:rgba(0,133,237,.2)}#widget197464161 section.search-box .tab-content form .fields-additional-button a.btn{border-radius:3px;background:rgba(0,0,0,0)}#widget197464161 section.search-box .tab-content form .fields-additional-button a.btn:hover{background:#ffe37c}#widget197464161 section.search-box .tab-content form .fields-additional-button a.btn span{color:#636363;flex-direction:row-reverse;justify-content:space-between;padding:3.5px}#widget197464161 section.search-box .tab-content form .fields-additional-button a.btn span i.fa-chevron-down::before{content:""}#widget197464161 section.search-box .tab-content form .fields-additional-button a.btn span i.fa-chevron-up::before{content:""}#widget197464161 section.search-box .tab-content form .fields-additional-button a.btn span i::before{font-weight:var(--fa-style);font-family:var(--fa-style-family, "Font Awesome 6 Pro");position:absolute;top:calc(50% - 16px);right:0;text-align:center;width:32px;line-height:32px;font-size:22px;color:#0085ed;cursor:pointer}#widget197464161 section.search-box .tab-content form .btn.btn-send{background:#ffd024;border-radius:8px;padding:8px 24px}#widget197464161 section.search-box .tab-content form .btn.btn-send:hover{background:#ffe37c}#widget197464161 section.search-box .tab-content form .btn.btn-send span{color:#2a2a2a}.br-input{border-radius:3px;border-color:#d9d9d9}#widget197464171,#widget197464166{padding-left:0;padding-right:0}body section.offer-box .offer{padding:0;border-radius:5px;box-shadow:rgba(0,0,0,.1) 0px 1px 2px 0px;transition:box-shadow .25s ease-in-out}body section.offer-box .offer:hover{box-shadow:rgba(0,0,0,.1) 0px 8px 16px -4px}body section.offer-box .offer:hover .img-container-wrap .img-container{transition:all 4s linear}body section.offer-box .offer .img-container-wrap .img-container{border-top-left-radius:4px;border-top-right-radius:4px;transition:all 300ms linear}body section.offer-box .offer .text-container h3{color:#191919;display:flex;flex-direction:column;row-gap:3px;margin-bottom:15px}body section.offer-box .offer .text-container h3 sup.stars{top:0}body section.offer-box .offer .text-container h3 sup.stars i.fa.fa-star.fa-solid{color:#ffd024}body section.offer-box .offer .text-container .box-header *{color:#191919}body section.offer-box .offer .text-container .box-header h4{color:#191919}body section.offer-box .offer .text-container .data p .text-nowrap{color:#191919}body section.offer-box .offer .text-container .data p .text-nowrap span{color:#191919}body section.offer-box .offer .text-container .data>*{display:flex;flex-direction:column;row-gap:5px}body section.offer-box .offer .text-container .data .price span{color:rgba(0,133,237,.8);font-size:28px;font-weight:400}body section.offer-box .offer .text-container .data .price span sup{color:rgba(0,133,237,.8)}body .offerlist-box{padding:0;border-radius:5px;box-shadow:rgba(0,0,0,.1) 0px 1px 2px 0px;transition:box-shadow .25s ease-in-out}body .offerlist-box:hover{box-shadow:rgba(0,0,0,.1) 0px 8px 16px -4px}body .offerlist-box .img-container-wrapper .img-container{border-top-left-radius:4px;border-top-right-radius:4px}body .offerlist-box ul.offers li:not(:last-child){border-bottom:1px solid #f2f2f2}body .offerlist-box ul.offers li:last-child{border-bottom:none}body .offerlist-box ul.offers li:hover:not(.link-to-more-offers) a{background:#f2f4f7}body .offerlist-box ul.offers li.link-to-more-offers .more{color:#2a2a2a;font-size:14px}body .offerlist-box ul.offers li.link-to-more-offers .more span{color:#2a2a2a;margin-left:5px}body .offerlist-box ul.offers li a{margin:5px 10px;border-radius:5px;transition:all 250ms ease-in-out}body .offerlist-box ul.offers li a .name span{color:#2a2a2a;font-size:16px;font-weight:600}body .offerlist-box ul.offers li a .price strong{color:rgba(0,133,237,.8);font-size:18px;font-weight:600}body .offerlist-box ul.offers li a .price strong sup{color:rgba(0,133,237,.8)}body .offerlist-box ul.offers li a .omnibus span{color:#191919}.section-header{background:#0085ed;border-radius:5px !important}.section-header h2{font-weight:300}main#mainCol .object-listing-elem.elem-booking>.elem-details>.elem-name h1{color:#191919;display:flex;flex-direction:column;row-gap:3px;margin-bottom:15px}main#mainCol .object-listing-elem.elem-booking>.elem-details>.elem-name h1 .stars i.fa.fa-star.fa-solid{color:#ffd024}main#mainCol .object-listing-elem.elem-booking>.elem-details table.elem-meta tbody tr:nth-child(even) td.meta-label{border-top-left-radius:10px;border-bottom-left-radius:10px}main#mainCol .object-listing-elem.elem-booking>.elem-details table.elem-meta tbody tr:nth-child(even) td.meta-value{border-top-right-radius:10px;border-bottom-right-radius:10px}main#mainCol .object-listing-elem.elem-booking>.elem-details table.elem-meta tbody tr td{padding:8px 10px;vertical-align:middle}main#mainCol .object-listing-elem.elem-booking>.merlin-gallery-container .merlin-gallery .btn.br-btn.disabled{background:#ffe37c;opacity:.6}main#mainCol .object-listing-elem.elem-booking>.merlin-gallery-container .merlin-gallery .btn.br-btn i{font-weight:300}main#mainCol .object-listing-elem.elem-booking ul.facilities li{background:rgba(0,0,0,0);border-radius:5px}main#mainCol section.occupancy-editor form#occupancy-form>div{border-radius:5px;background:rgba(0,133,237,.2)}main#mainCol section.occupancy-editor form#occupancy-form>div .background-color-7{background:#ffd024}main#mainCol section.occupancy-editor form#occupancy-form>div .text-color-7{color:#2a2a2a}main#mainCol section.occupancy-editor form#occupancy-form>div span{border-color:#ffd024}main#mainCol section.occupancy-editor form#occupancy-form>div span.disabled{background:#ffe37c !important}main#mainCol section.occupancy-editor form#occupancy-form>div span i.fa-plus,main#mainCol section.occupancy-editor form#occupancy-form>div span i.fa-minus{color:#2a2a2a}section[id="197674051"] .section-content{padding-left:0;padding-right:0;margin:100px 0 50px}section[id="197674051"] .section-content h2{color:#2a2a2a;font-size:24px;font-family:"Poppins",sans-serif;font-weight:700;margin:0 0 20px 0}body .checkbox-stack{position:relative !important;width:16px !important;height:16px !important;flex:0 0 16px !important;margin-top:3px !important;margin-right:6px !important;inset:0 !important}body .checkbox-stack label.last-plan{width:16px !important;height:16px !important;position:absolute;inset:0 !important}body .checkbox-stack label.last-plan::before{content:"" !important;width:10px !important;height:10px !important;background:rgba(0,0,0,0) !important;background:rgba(0,0,0,0) !important;border-radius:3px !important;top:50% !important;left:50% !important;transform:translate(-50%, -50%) !important}body .checkbox-stack label.first-plan::before{content:"" !important;inset:0 !important;width:16px !important;height:16px !important;background:rgba(0,0,0,0) !important;border:1px solid #0085ed !important;border-radius:4px !important}body .checkbox-stack input[type=checkbox]:checked+label.last-plan::before{background:#0085ed !important}body .checkbox-stack2{position:relative !important;display:inline-block;width:16px !important;height:16px !important;flex:0 0 16px !important;margin-right:6px !important;inset:0 !important}body .checkbox-stack2 label.last-plan{width:16px !important;height:16px !important;position:absolute;inset:0 !important}body .checkbox-stack2 label.last-plan::before{content:"" !important;width:10px !important;height:10px !important;background:rgba(0,0,0,0) !important;background:rgba(0,0,0,0) !important;border-radius:3px !important;top:50% !important;left:50% !important;transform:translate(-50%, -50%) !important}body .checkbox-stack2 label.first-plan::before{content:"" !important;inset:0 !important;width:16px !important;height:16px !important;background:rgba(0,0,0,0) !important;border:1px solid #0085ed !important;border-radius:4px !important}body .checkbox-stack2 input[type=checkbox]:checked+label.last-plan::before{background:#0085ed !important}#offer-details .object-listing-elem .elem-name h1{color:#191919;display:flex;flex-direction:column;row-gap:3px;margin-bottom:15px}#qtip-1{border-radius:8px}#qtip-1 .qtip-titlebar{border-top-left-radius:8px;border-top-right-radius:8px}#qtip-1 .qtip-titlebar #qtip-1-title{font-size:20px;font-weight:300}#qtip-1 .qtip-titlebar .qtip-close span{display:none}#qtip-1 .qtip-titlebar .qtip-close i{top:0;font-size:20px}#qtip-1 .qtip-content{border-bottom-left-radius:8px;border-bottom-right-radius:8px}#qtip-1 .qtip-content .quick-search-results h1{padding:15px 15px}#qtip-1 .qtip-content .quick-search-results h1 span{display:flex;flex-direction:row;gap:10px;font-size:16px;line-height:1}#qtip-1 .qtip-content .quick-search-results .offer{padding:10px 15px}#qtip-1 .qtip-content .quick-search-results .offer.background-color-18{background:#ffe37c}#qtip-1 .qtip-content .quick-search-results .offer.text-color-12 h3{color:#191919}#qtip-1 .qtip-content .quick-search-results .offer.text-color-12 h4{color:#2a2a2a}#qtip-1 .qtip-content .quick-search-results .offer h3{font-weight:500}section[id="197683748"]{margin-top:50px;margin-bottom:50px}section[id="197683748"] .section-content .ubezpieczenia-head-img{margin-bottom:60px}section[id="197683748"] .section-content .ubezpieczenia-head-img img{display:block;width:100%;max-width:800px;margin-left:auto;margin-right:auto}section[id="197683748"] .section-content h2{color:#2a2a2a;font-size:24px;font-family:"Poppins",sans-serif;font-weight:700;margin:0 0 20px 0}section[id="197683748"] .section-content ul{padding:0;margin:0;list-style:none}section[id="197683748"] .section-content ul li{display:flex;flex-direction:row;align-items:center;-moz-column-gap:20px;column-gap:20px}section[id="197683748"] .section-content ul li:not(:last-child){padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #f2f2f2}section[id="197683748"] .section-content ul li .img img{width:79px;height:70px;max-width:unset}section[id="197683748"] .section-content ul li .content p:last-child{margin-bottom:0}section[id="197683748"] .section-content a.btn-block{display:block;max-width:-moz-fit-content;max-width:fit-content;margin-left:auto;margin-right:auto;margin-top:30px}div[id=widget197683827] section.iframe{margin-bottom:50px;margin-top:50px}div[id=widget197683827] section.iframe>.section .section-header{display:none}div[id=widget197683876] section.iframe>.section .section-header{display:none}div[id=widget197683900] section.text-widget{margin-bottom:50px}#contact-additional-info a{color:#0085ed;transition:all 250ms ease-in-out;text-decoration:none}#contact-additional-info a:hover{color:#ffd024}#contact-additional-info ul{padding:0;margin:0;list-style:none}#contact-additional-info ul li:not(:last-child){margin-bottom:5px}#contact-box .section-header .sh-inner:after{display:none !important}#contact-box .section-content{display:flex;flex-direction:row}#contact-box .section-content .c-col-1{width:100%;max-width:290px}#contact-box .section-content .c-col-1 img{width:100%;max-width:-moz-fit-content;max-width:fit-content}#contact-box .section-content .c-col-2{padding-left:30px}#contact-box .section-content .c-col-2 h3{font-size:18px;margin-top:0;margin-bottom:20px}@media(max-width: 640px){#contact-box .section-content{flex-direction:column;align-items:center}#contact-box .section-content .c-col-1{padding-bottom:30px}#contact-box .section-content .c-col-2{padding-left:0px}}body[data-pageid="5353170"] main#mainCol{margin-top:50px;margin-bottom:50px}div[id=widget197684012]{margin-bottom:50px}div[id=widget197684012] section.iframe>.section .section-header{display:none}section[id="197684074"]{margin-top:50px;margin-bottom:50px}section[id="197684074"] .section-content h2{color:#2a2a2a;font-size:24px;font-family:"Poppins",sans-serif;font-weight:700;margin:0 0 20px 0}section[id="197684074"] .section-content h3{color:#2a2a2a;font-size:18px;font-family:"Poppins",sans-serif;font-weight:700;margin:0 0 20px 0}section[id="197684074"] .section-content h3 strong{color:#0085ed}div[id=widget197684168] section.iframe{margin-top:50px}div[id=widget197684168] section.iframe>.section .section-header{display:none}div#widget197687178 section.iframe>.section .section-header{display:none}div#widget197464262,div#widget197464283,div#widget197464288,div#widget197464305,div#widget197464310,div#widget197464315{display:none}div#widget197687371 h4{display:flex;flex-direction:row;align-items:center;gap:20px;margin:50px 0 20px}div#widget197687371 h4 img{width:100%;max-width:150px}div#widget197464176 .promo-box{margin-bottom:0}div#widget197687138>section{width:100svw;transform:translateX(-50%);margin-left:50%}div#widget197687138 .section-content{padding-left:0;padding-right:0}div#widget197687138 .section-content ul{display:flex;flex-direction:row;padding:0;margin:0;list-style:none}div#widget197687138 .section-content ul li{position:relative;height:250px;flex-basis:20%;overflow:hidden}div#widget197687138 .section-content ul li::before{content:"";position:absolute;inset:0;background-repeat:no-repeat;background-position:center center;background-size:cover;transition:all 300ms linear}div#widget197687138 .section-content ul li:nth-child(1)::before{background-image:url("https://vcdn.merlinx.eu/image//getbyid/513195")}div#widget197687138 .section-content ul li:nth-child(2)::before{background-image:url("https://vcdn.merlinx.eu/image//getbyid/513196")}div#widget197687138 .section-content ul li:nth-child(3)::before{background-image:url("https://vcdn.merlinx.eu/image//getbyid/513197")}div#widget197687138 .section-content ul li:nth-child(4)::before{background-image:url("https://vcdn.merlinx.eu/image//getbyid/513198")}div#widget197687138 .section-content ul li:nth-child(5)::before{background-image:url("https://vcdn.merlinx.eu/image//getbyid/513199")}div#widget197687138 .section-content ul li:hover::before{transform:scale(1.2);filter:brightness(0.7);transition:all 4s linear}div#widget197687138 .section-content ul li a{display:block;position:absolute;inset:0;z-index:10}div#widget197687138 .section-content ul li a span{position:absolute;bottom:0%;left:50%;transform:translate(-50%, -50%);color:#fff;font-family:"Poppins",sans-serif;font-weight:300;font-size:16px;width:100%;text-align:center;background:rgba(0,0,0,.65);padding:10px}div#widget197687470 .section-content .c-row-1{display:flex;flex-direction:row;gap:40px}div#widget197687470 .section-content .c-row-1 .c-col-1{width:45%}div#widget197687470 .section-content .c-row-1 .c-col-1 img{max-width:500px}div#widget197687470 .section-content .c-row-1 .c-col-2{width:55%}@media(max-width: 767px){div#widget197687470 .section-content .c-row-1{flex-direction:column}div#widget197687470 .section-content .c-row-1 .c-col-1{width:100%}div#widget197687470 .section-content .c-row-1 .c-col-2{width:100%}}div#widget197687470 .section-content img{display:block;margin:20px auto 30px;width:100%;max-width:-moz-fit-content;max-width:fit-content}div#widget197687470 .section-content .c-box-head{min-height:46px;line-height:31px;outline:none;padding:7.5px 15px;white-space:nowrap;background:#0085ed;border-radius:5px;margin-bottom:20px}div#widget197687470 .section-content .c-box-head p{color:#fff;font-size:20px;font-weight:300;font-family:"Poppins",sans-serif;margin:0}div#widget197687470 .section-content .col-md-4{margin-bottom:30px}/*# sourceMappingURL=styles.css.map */ \ No newline at end of file diff --git a/wagabunda.net.pl/styles.css.map b/wagabunda.net.pl/styles.css.map index 27b4a77..f0d8840 100644 --- a/wagabunda.net.pl/styles.css.map +++ b/wagabunda.net.pl/styles.css.map @@ -1 +1 @@ -{"version":3,"sources":["styles.css","styles.scss"],"names":[],"mappings":"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","file":"styles.css"} \ No newline at end of file +{"version":3,"sources":["styles.css","styles.scss"],"names":[],"mappings":"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","file":"styles.css"} \ No newline at end of file diff --git a/wagabunda.net.pl/styles.scss b/wagabunda.net.pl/styles.scss index b0fb6dc..2bcfca6 100644 --- a/wagabunda.net.pl/styles.scss +++ b/wagabunda.net.pl/styles.scss @@ -349,10 +349,23 @@ body nav.main-nav { display: block !important; } + @media (max-width: 500px) { + .additional-separator { + display: none !important; + } + .header-container { + min-height: 36px; + } + } ul.mega-menu-content { padding-left: 15px; padding-right: 15px; + @media (max-width: 500px) { + display: none; + flex-direction: column; + } + > li { .btn-cart, .quick-search { @@ -361,11 +374,20 @@ body nav.main-nav { > a { padding: 13px 14px 14px; + + @media (max-width: 500px) { + padding: 5px; + min-height: auto !important; + text-align: center; + } } .elem-in-nav { span { font-size: 16px; + @media (max-width: 500px) { + font-size: 14px; + } } } @@ -439,6 +461,28 @@ body nav.main-nav { } } + &.mm-basket-li { + > .btn-cart { + @media (max-width: 500px) { + margin: 0 auto; + } + } + } + &.pull-left { + > .quick-search { + @media (max-width: 500px) { + margin: 0 auto; + } + } + @media (max-width: 500px) { + &.visible-panel { + .quick-search { + bottom: 0; + } + } + } + } + @media (max-width: 820px) { .mobile-menu-item.sub-menu.full-width-sub-menu { width: calc(100% - 30px) !important; @@ -474,6 +518,9 @@ body nav.main-nav { } } } + @media (max-width: 500px) { + width: 100%; + } } } @@ -486,6 +533,74 @@ body nav.main-nav { } } } + + .mega-menu-hamburger { + position: relative; + padding: 10px 15px; + line-height: 0; + text-align: center; + + @media (min-width: 501px) { + display: none; + } + + .mega-menu-hamburger-btn { + position: relative; + border: none; + width: 36px; + height: 36px; + background: #fff; + padding: 0; + margin: 0; + border-radius: 3px; + overflow: hidden; + + &::before { + content: ''; + position: absolute; + top: 8px; + left: 5px; + width: 25px; + height: 2px; + background: $cBlue; + transition: all 250ms ease-in-out; + } + &::after { + content: ''; + position: absolute; + top: 26px; + left: 5px; + width: 25px; + height: 2px; + background: $cBlue; + transition: all 250ms ease-in-out; + } + + &.active { + &::before { + top: 18px; + transform: rotate(-45deg); + } + &::after { + top: 18px; + transform: rotate(45deg); + } + span { + transform: translateX(calc(100% + 10px)); + } + } + + span { + position: absolute; + top: 17px; + left: 5px; + width: 25px; + height: 2px; + background: $cBlue; + transition: all 250ms ease-in-out; + } + } + } } #widget197464156 { .promo-box {