/*
Theme Name: sizzle Child
Template: slaceso
Author: slacesthemes
Description: Slaceso Theme is a powerful yet lightweight WordPress theme designed for speed, accessibility, and ease of use. With its intuitive drag-and-drop header and footer builder, you can create custom layouts in minutes—no coding required. The theme includes a stunning collection of starter templates, fully customizable with global font and color controls. Seamlessly integrated with top third-party plugins, Slaceso is perfect for building eCommerce stores, online courses, business sites, and more. Whether you're a beginner or an expert, Slaceso makes website creation effortless and efficient.
Tags: translation-ready,two-columns,right-sidebar,left-sidebar,footer-widgets,blog,custom-logo,custom-background,custom-menu,rtl-language-support,editor-style,threaded-comments,custom-colors,featured-images,wide-blocks,full-width-template,theme-options,e-commerce
Version: 1.1.40.1693277791
Updated: 2023-08-29 02:56:31

*/

@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&family=Oranienbaum&display=swap');

/* theme loader */

/* ZOZ FIX 2026-06-29: wyłączony preloader (krab z patelnią) na życzenie klienta — strona ma się ładować bez animacji */
.themeloader {
	display: none !important;
}

.themeloader.zoz-disabled-original {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url(./assets/image/theme-loader.gif);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 180px;
	background-color: var(--global-palette7);
}

/* common css */
body .single-content h1.elementor-heading-title,
body .single-content h2.elementor-heading-title,
body .single-content h3.elementor-heading-title,
body .single-content h4.elementor-heading-title,
body .single-content h5.elementor-heading-title,
body .single-content h6.elementor-heading-title {
    margin: 0;
}

.wp-block-search .wp-block-search__input,
.wp-block-search .wp-block-search__input:focus,
body .wp-block-search .wp-block-search__button,
.wp-block-search .wp-block-search__button:hover,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    box-shadow: none;
    color: var(--global-palette1);
    border-color: #e5e5e5;
    border-radius: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    border-radius: 0;
    color: #000000;
}

/* left sidebar margin */
.wp-block-latest-posts.wp-block-latest-posts__list {
    margin: 0;
}

body .wp-block-latest-posts__list li,
body.search-results.content-style-unboxed .site .post-thumbnail,
body.woocommerce div.product .woocommerce-tabs ul.tabs li:first-child {
    margin: 0;
    line-height: 1.2;
}

#secondary .woocommerce.widget_product_categories>ul li,
.widget .tagcloud a,
.widget li,
#secondary .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item,
.wp-block-tag-cloud .tag-cloud-link {
    padding-block: 5px;
}

.primary-sidebar .wp-block-latest-posts .wp-block-latest-posts__post-date {
    color: var(--global-palette2);
}

.slaceso-svg-icon.slaceso-arrow-right-alt-svg{
    display: none;
}

/* search Drawer*/

#search-drawer .drawer-inner .drawer-content {
    align-items: normal;
}

.search-form .slaceso-search-icon-wrap {
    top: 10px;
    height: 0;
    display: block;
    color: #000;
}

#search-drawer .drawer-inner input.search-field {
    border: none;
}

.site-header-section-right .site-header-item .site-header-focus-item .header-item-search-bar .search-form {
    color: transparent;
}

.search-toggle-open.drawer-toggle.search-toggle-style-default{
    border-radius: 30px;
}

/* blog left side */
.primary-sidebar.widget-area .widget_block {
    padding-block-end: 30px;
}

.wp-block-search__label {
    display: none;
}

body.wp-block-search .wp-block-search__input {
    background: transparent;
    color: #ffffff;
    border-radius: 0;
    padding: 0.6em 0.5em;
}

.blog .loop-entry .entry-header .entry-title,
.blog-section .uc_post_title,
.blog-section .uc_post_list_title {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 380px;
}

.wp-block-search .wp-block-search__button:not(.has-background) {
	background: var(--global-palette2);
}

.wp-block-search .wp-block-search__button:not(.has-text-color) {
	color: var(--global-palette9);
}

/* footer */
.site-footer-section .widget-area ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* end common css  */

/* hover css */

.shine-effect{
    overflow: hidden;
}

.shine-effect::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 50%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 50%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.shine-effect:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
} 

.flip-area .elementor-widget-container:hover img,
    .elementor-widget-container.hover img {
        transform: rotateY(180deg);
    }

    .elementor-widget-image img {
        transition: 1.5s;
        transform-style: preserve-3d;
        position: relative;
    }

.swing-animation .attachment-full {
	animation: mover 1s infinite  alternate;
}

@-webkit-keyframes mover {
	0% { transform: translateY(0); }
	100% { transform: translateY(-10px); }
}
@keyframes mover {
	0% { transform: translateY(0); }
	100% { transform: translateY(-10px); }
}

.flip-area .elementor-widget-container:hover img,
    .elementor-widget-container.hover img {
        transform: rotateY(180deg);
    }

    .elementor-widget-image img {
        transition: 1.5s;
        transform-style: preserve-3d;
        position: relative;
}

.side-effect img {
    animation: linear infinite;
    animation-name: run;
    animation-duration: 3s;
}

@keyframes run {
    0% {
        left: 0;
    }

    50% {
        left: 2%;
    }

    100% {
        left: 0;
    }
}

.circle_effect{
    overflow: hidden;
}

.circle_effect {
	position: relative;
}
.circle_effect::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255,255,255,.2);
	border-radius: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}

.circle_effect:hover::before {
	-webkit-animation: circle .75s;
	animation: circle .75s;
}
@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
@keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}

/* newslatter section */
.newsletter-form {
    position: relative;
    width: 100%;
    display: inline-block;
}

.newsletter-form .sub-email {
    margin-inline-start: 20px;
    margin-inline-end: 20px;
}

.newsletter-form input[type="email"],
input[type="text"],
.newsletter-form input[type="email"],
input[type="text"]:focus {
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 8px;
    color: #fff;
    box-shadow: none;
    width: 100%;
    display: block;
}

.mc4wp-form .newsletter-form input[type="submit"] {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 0;
    background-color: transparent;
    background-image: url(./assets/image/send.svg);
    background-size: 23px;
    background-repeat: no-repeat;
    background-position: 50%;
    width: 10%;
    padding: 0;
    border: none;
}

@media (max-width: 576px) {
    .newsletter-form {
        width: 100%;
    }
}

.icon_area::after {
    content: '';
    background: url(./assets/image/left-icon.svg) no-repeat;
    display: block;
    width: 30px;
    height: 15px;
    position: absolute;
    right: 56em;
    top: -53px;
    transform: translate(7.8em , 3.6em);
}

.icon_area::before {
    content: '';
    background: url(./assets/image/right-icon.svg) no-repeat;
    display: block;
    width: 30px;
    height: 15px;
    position: absolute;
    right: 44em;
    top: -53px;
    transform: translate(7.8em , 3.6em);
}

@media (max-width: 1201px){
    .icon_area::after {
        right: 52em;
    }
    
    .icon_area::before {
        right: 40em;
    }
}

@media (max-width: 1025px){
    .icon_area::after {
        right: 46em;
    }
    
    .icon_area::before {
        right: 34em;
    }
}

@media (max-width: 881px){
    .icon_area::after {
        right: 41em;
    }
    
    .icon_area::before {
        right: 29em;
    }
}

@media (max-width: 768px){
    .icon_area::after {
        right: 37em;
    }
    
    .icon_area::before {
        right: 25em;
    }
}

@media (max-width: 360px){
    .icon_area::after {
        right: 23em;
    }
    
    .icon_area::before {
        right: 12em;
    }
}

.icon_section::after {
    content: '';
    background: url(./assets/image/left-icon.svg) no-repeat;
    display: block;
    width: 30px;
    height: 15px;
    position: absolute;
    right: 47em;
    top: -53px;
    transform: translate(7.8em , 3.6em);
}

.icon_section::before {
    content: '';
    background: url(./assets/image/right-icon.svg) no-repeat;
    display: block;
    width: 30px;
    height: 15px;
    position: absolute;
    right: 33em;
    top: -53px;
    transform: translate(7.8em , 3.6em);
}

@media (max-width: 1201px){
    .icon_section::after {
        right: 43em;
    }
    
    .icon_section::before {
        right: 28em;
    }
}

@media (max-width: 1025px){
    .icon_section::after {
        right: 37em;
    }
    
    .icon_section::before {
        right: 22em;
    }
}

@media (max-width: 881px){
    .icon_section::after {
        right: 41em;
    }
    
    .icon_section::before {
        right: 27em;
    }
}

@media (max-width: 768px){
    .icon_section::after {
        right: 36em;
    }
    
    .icon_section::before {
        right: 22em;
    }
}

@media (max-width: 360px){
    .icon_section::after {
        right: 24em;
    }
    
    .icon_section::before {
        right: 10em;
    }
}

.icon_part::after {
    content: '';
    background: url(./assets/image/left-icon.svg) no-repeat;
    display: block;
    width: 30px;
    height: 15px;
    position: absolute;
    right: 49em;
    top: -53px;
    transform: translate(7.8em , 3.6em);
}

.icon_part::before {
    content: '';
    background: url(./assets/image/right-icon.svg) no-repeat;
    display: block;
    width: 30px;
    height: 15px;
    position: absolute;
    right: 40em;
    top: -53px;
    transform: translate(7.8em , 3.6em);
}

@media (max-width: 1201px) {
    .icon_part::after {
        right: 44em;
    }
    
    .icon_part::before {
        right: 35em;
    }
}

@media (max-width: 1025px) {
    .icon_part::after {
        right: 38em;
    }
    
    .icon_part::before {
        right: 29em;
    }
}

@media (max-width: 881px) {
    .icon_part::after {
        right: 39em;
    }
    
    .icon_part::before {
        right: 30em;
    }
}

@media (max-width: 768px) {
    .icon_part::after {
        right: 34em;
    }
    
    .icon_part::before {
        right: 24em;
    }
}

@media (max-width: 360px) {
    .icon_part::after {
        right: 24em;
    }
    
    .icon_part::before {
        right: 14em;
    }
}

/* gallery area */

.uc_long_content_box .uc_box_content{
    opacity: 0;
}

.uc_long_content_box:hover .uc_box_content {
    opacity: 1;
}

/* ===== ZOZ FIX icon_area — romby trzymają się tekstu (inline) zamiast sztywnych pozycji ===== */
/* Wyłącza stare, rozjeżdżające się pseudo-elementy na wrapperze widgetu */
.icon_area::before, .icon_area::after,
.icon_section::before, .icon_section::after,
.icon_part::before, .icon_part::after {
    content: none !important;
}

/* Wyśrodkowanie i romby jako elementy inline wokół tekstu nagłówka */
.icon_area .elementor-widget-container,
.icon_section .elementor-widget-container,
.icon_part .elementor-widget-container {
    text-align: center;
}

.icon_area .elementor-heading-title,
.icon_section .elementor-heading-title,
.icon_part .elementor-heading-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.icon_area .elementor-heading-title::before,
.icon_area .elementor-heading-title::after,
.icon_section .elementor-heading-title::before,
.icon_section .elementor-heading-title::after,
.icon_part .elementor-heading-title::before,
.icon_part .elementor-heading-title::after {
    content: '';
    display: inline-block;
    flex: 0 0 auto;
    width: 31px;
    height: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.icon_area .elementor-heading-title::before,
.icon_section .elementor-heading-title::before,
.icon_part .elementor-heading-title::before {
    background-image: url(./assets/image/left-icon.svg);
}

.icon_area .elementor-heading-title::after,
.icon_section .elementor-heading-title::after,
.icon_part .elementor-heading-title::after {
    background-image: url(./assets/image/right-icon.svg);
}
/* ===== /ZOZ FIX icon_area ===== */
/* ===== ZOZ FIX: wylacz title-case (text-transform: capitalize) z demo Sizzle =====
   Powod: motyw kapitalizuje pierwsza litere kazdego wyrazu. Po angielsku wyglada
   to ok, po polsku jest bledne (kazde slowo z wielkiej). Wyswietlamy tekst tak,
   jak jest wpisany. Nie ruszamy elementow celowo pisanych WIELKIMI literami
   (tytuly widgetow, "czytaj wiecej", cytaty), ktore motyw daje przez uppercase. */
h1, h2, h3, h4, h5, h6,
.elementor-widget-heading .elementor-heading-title,
.elementor-widget-text-editor,
.elementor-widget-text-editor p,
.entry-title, .entry-content p,
.uc_hover_text_reveal_content_box .uc_title {
    text-transform: none !important;
}
/* ===== /ZOZ FIX title-case (2026-07-12: + kafelki galerii .uc_title) ===== */

/* ===== ZOZ FIX (cd.): title-case w STOPCE =====
   Stopka ma wlasne selektory (.site-footer, .footer-*), ktorych poprzednia
   regula nie obejmowala. Wymuszamy normalna wielkosc liter w calej stopce:
   tytuly widgetow, menu, linki, teksty. */
.site-footer,
.site-footer *,
.site-footer-row,
.site-footer-row *,
.footer-section-inner-items-1,
.footer-section-inner-items-2,
.footer-widget-area,
.footer-widget-area *,
.footer-navigation,
.footer-navigation a,
.footer-navigation ul li a,
.footer-html,
.footer-html * {
    text-transform: none !important;
}
/* ===== /ZOZ FIX title-case stopka ===== */

/* ===== ZOZ FIX: białe logo w nagłówku na AKTUALNOŚCIACH =====
   Nagłówek jest transparentny (overlay) nad niebieskim banerem aktualności,
   więc niebieskie logo ginie. Na blogu/wpisach/archiwach pokazujemy istniejące
   białe logo (.slaceso-sticky-logo) zamiast niebieskiego — w stanie górnym i sticky.
   Strony statyczne (.page) i home (.home) zostają z niebieskim logo. */
.blog #masthead .site-branding a.brand img.custom-logo:not(.slaceso-sticky-logo),
.single #masthead .site-branding a.brand img.custom-logo:not(.slaceso-sticky-logo),
.archive #masthead .site-branding a.brand img.custom-logo:not(.slaceso-sticky-logo),
.page-id-3 #masthead .site-branding a.brand img.custom-logo:not(.slaceso-sticky-logo),
.page-id-684 #masthead .site-branding a.brand img.custom-logo:not(.slaceso-sticky-logo),
.page-id-685 #masthead .site-branding a.brand img.custom-logo:not(.slaceso-sticky-logo) {
    display: none !important;
}
.blog #masthead .site-branding a.brand.has-sticky-logo img.slaceso-sticky-logo,
.single #masthead .site-branding a.brand.has-sticky-logo img.slaceso-sticky-logo,
.archive #masthead .site-branding a.brand.has-sticky-logo img.slaceso-sticky-logo,
.page-id-3 #masthead .site-branding a.brand.has-sticky-logo img.slaceso-sticky-logo,
.page-id-684 #masthead .site-branding a.brand.has-sticky-logo img.slaceso-sticky-logo,
.page-id-685 #masthead .site-branding a.brand.has-sticky-logo img.slaceso-sticky-logo {
    display: block !important;
}
/* ===== /ZOZ FIX: białe logo na aktualnościach + strony prawne (3 polityka prywatności, 684 cookies, 685 regulamin) ===== */

/* ZOZ 2026-06-29: paleta (kremowe tlo) i fonty (Playfair Display + Inter) przeniesione do USTAWIEN motywu
   (Customizer > Global Colors + Typografia). Tu juz nic nie nadpisujemy. */

/* ZOZ 2026-06-29: KAFELKI Menu/Wina/Wydarzenia (#oferta) — wysokosc i podpis na dole
   (kolumny Elementora nie maja kontrolki min-height, dlatego CSS) */
#oferta > .elementor-container > .elementor-column > .elementor-element-populated {
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
#oferta .elementor-widget-button .elementor-button {
    padding: 8px 18px;
    font-size: 13px;
    letter-spacing: .04em;
}
/* eyebrow nad duzymi naglowkami: lekki odstep */
#oferta .elementor-widget-heading + .elementor-widget-heading { margin-top: 2px; }

/* O nas: wymus proporcje kolumn 58/42 (w pelnoekranowej sekcji sie rozjechaly) */
#o-nas > .elementor-container > .elementor-col-58 { width: 58%; flex: 0 0 58%; }
#o-nas > .elementor-container > .elementor-col-42 { width: 42%; flex: 0 0 42%; }
/* O nas: zdjecie wypelnia kolumne (placeholder portretowy) */
#o-nas .elementor-widget-image,
#o-nas .elementor-widget-image .elementor-widget-container { width: 100%; }
#o-nas .elementor-widget-image img { width: 100% !important; max-width: 100% !important; height: auto; display: block; border-radius: 2px; }

/* Galeria: rowna siatka mimo roznych proporcji placeholderow (object-fit) */
#galeria .elementor-widget-image img { width: 100%; height: 240px; object-fit: cover; display: block; border-radius: 2px; }
#galeria .elementor-widget-image { margin-bottom: 12px; }

/* ============================================================
   ZOZ FIX 2026-07-12: naglowek wg wzoru klienta (WhatsApp 09.07)
   Czcionka menu (Montserrat 600/12px/rozstrzelenie/uppercase), kolory
   hover i tlo stron (#f1f1f1) ustawione NATYWNIE w motywie (theme_mods:
   primary_navigation_typography, primary_navigation_color,
   site_background, content_background) + styl PL/EN w Customizer >
   Additional CSS. Tutaj tylko to, czego motyw nie ma w ustawieniach:
   wysrodkowanie menu, odstepy, ramka przycisku REZERWACJE GRUPOWE.
   ============================================================ */

/* odstepy miedzy pozycjami jak na wzorze */
#site-navigation .primary-menu-container > ul {
    gap: 6px;
}

/* menu wysrodkowane miedzy logo a PL/EN — TYLKO desktopowy naglowek
   (#main-header; bez zawezenia regula wypycha hamburger z #mobile-header) */
#main-header .site-header-main-section-left {
    flex: 1 1 auto;
}
#main-header .site-header-main-section-left .site-header-item-main-navigation {
    flex: 1 1 auto;
}
#main-header .site-header-main-section-left #site-navigation {
    justify-content: center;
    width: 100%;
}

/* REZERWACJE GRUPOWE: przycisk w ramce (nie rozciagaj na wysokosc naglowka) */
#site-navigation li.menu-item a[href*="rezerwacje-grupowe"] {
    border: 1px solid #1e31f7;
    padding: 13px 22px;
    line-height: 1;
    margin-left: 14px;
    align-self: center;
    height: auto;
}
#site-navigation .primary-menu-container > ul > li:has(> a[href*="rezerwacje-grupowe"]) {
    display: flex;
    align-items: center;
}
#site-navigation li.menu-item a[href*="rezerwacje-grupowe"]:hover {
    background: rgba(30, 49, 247, .08);
}

/* ZOZ FIX 2026-07-12: kafelki wydarzen (Post List) — tlo strony + delikatna czarna ramka
   (tlo #f1f1f1 ustawione w widgecie item_background; widget UE nie ma kontrolki ramki per kafelek) */
.elementor-601 .uc_post_list_box {
    border: 1px solid #000;
}
/* ZOZ FIX 2026-07-12: mobilny naglowek — logo z lewej, hamburger z prawej,
   uklad flex (grid motywu potrafil zepchnac przycisk poza ekran) */
@media (max-width:1024px){
  #mobile-header .site-main-header-inner-wrap{display:flex !important; justify-content:space-between !important; align-items:center; width:100%;}
}

/* ZOZ 2026-07-12: style pol formularza rezerwacji ustawione NATYWNIE w widgetach
   MetForm szablonu 242 (ramki/kolory/placeholdery) — bez CSS. */

/* ZOZ FIX 2026-07-16: galeria na stronie glownej (widget UE "Tiles Columns Image",
   biblioteka unite-gallery.js) — widget ma tylko Masonry/Justified, brak natywnej
   opcji na sztywny kwadrat kafli. JS liczy i wpisuje wlasne inline width/height/
   position:absolute na kazdym kaflu — nadpisujemy !important siatka CSS Grid,
   zdjecie wypelnia kafel przez object-fit:cover (kosztem przyciecia zdjec). */
#wrapperuc_uc_tiles_columns_image_elementor_9199eb3 .uc-columns-tiles-wrapper {
    position: static !important;
    height: auto !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}
#wrapperuc_uc_tiles_columns_image_elementor_9199eb3 .ug-thumb-wrapper.ug-tile {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    left: auto !important;
    top: auto !important;
    margin: 0 !important;
    overflow: hidden;
}
#wrapperuc_uc_tiles_columns_image_elementor_9199eb3 .ug-thumb-wrapper.ug-tile .ug-thumb-image,
#wrapperuc_uc_tiles_columns_image_elementor_9199eb3 .ug-thumb-wrapper.ug-tile .ug-thumb-overlay {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
}
#wrapperuc_uc_tiles_columns_image_elementor_9199eb3 .ug-thumb-image {
    object-fit: cover !important;
}
@media (max-width: 900px) {
  #wrapperuc_uc_tiles_columns_image_elementor_9199eb3 .uc-columns-tiles-wrapper {
      grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 600px) {
  #wrapperuc_uc_tiles_columns_image_elementor_9199eb3 .uc-columns-tiles-wrapper {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 10px !important;
  }
}
