/*
Theme Name: burkot
Theme URL: 
Description: 
Version: 1.0
Author: eFabryka.net
*/

@import "css/fonts.css";

html>body #content {
	height: auto;
}

body{
	padding: 0px;
	margin: 0px;
	font: 62.5% 'Inter', sans-serif; /* Resets 1em to 10px */
	overflow-y: scroll;	
	animation: fadein 1000ms ease;	
	color: var(--f-color);
	background: #fff;
}

:root {
	--f-color: #000;
	--s-color: #533A33;
	--t-color: #CAA679;
	--font1: 'Inter', sans-serif;
	--font2: 'Aboreto', serif;
}

/************************************************
*	HEAD										*
************************************************/

#head{
	position: fixed;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 9999;
	font-size: 1rem;
	color: var(--f-color);
	transition: 300ms;	
	height: 120px;
	background: #fff;
	}
	
#head.scroll {
	background: rgba(255,255,255,1);
	backdrop-filter: blur(10px);
	height: 100px;
	transition: 300ms;
	box-shadow: 0 5px 10px rgba(0,0,0,.2);
}
	
#head .logo {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;	
	width: 188px;
	height: auto;
	margin: 15px 0 15px 10px;
	transition: 300ms;
}	
	
#head.scroll .logo {
	margin: 5px 0 5px 10px;
	transition: 300ms;
}	

#head .instagram:hover img, #head .facebook:hover img {
	transform: scale(.9);
	transition: 200ms;
}

#head .instagram img, #head img {
	transition: 200ms;
}

#head .telefon {background: url(images/telefon.svg) left center / auto 22px no-repeat; padding-left: 30px !important; margin-right: 30px;}
#head .email {background: url(images/email.svg) left center / auto 18px no-repeat; padding-left: 35px !important;  margin-right: 30px;}

#head header div:nth-of-type(2) {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 10px 0 0 0;
  color: var(--t-color);
}

#head header div:nth-of-type(2) span, #head header div:nth-of-type(2) a {
	display: flex;
	align-items: center;
	height: 30px;
	padding: 5px 10px 5px 0;
	color: var(--t-color);
	transition: 200ms;
}

#head header div:nth-of-type(2) a:hover {
	color: #740000;
	transition: 200ms;
}

#head header div:nth-of-type(2) a:last-of-type{
	padding-right: 10px;
}

#head header div:nth-of-type(2) div {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

#head h5 {display: none;}


#head .menu {
		display: block;
		text-align: right;
		float: right;
		clear: right;
		}
		
#head ul.menu {
		margin: 0 10px 0 0;
		padding: 0;
		}

#head .menu li {
		list-style: none; 
		display: inline-block;
		margin: 15px 30px 15px 0;
		}
		
#head .menu li:last-of-type {
		margin-right: 0;
		}
		
#head .menu li a{
		font-size: 1rem;
		font-weight: 500;
		transition: 200ms ease;
		color: var(--f-color);
		transition: 200ms;
		padding: 5px 0;
		}
		
#head .menu li.kontakt-menu a {
	background: var(--t-color);
	padding: 10px 30px;
	border-radius: 30px;
	color: #fff;
	transition: 200ms;	
}	
		
#head .menu li.kontakt-menu a:hover {
	background: #C19053;
	color: #fff;
	transition: 200ms;
	box-shadow: none;
}		
		
#head .menu li.current-menu-item a {
		transition: 200ms;
		color: #740000;
		}		
		
#head .menu li a:hover{
		transition: 200ms;
		box-shadow: inset 0 -2px 0 #740000;
		color: #740000;
		}
		
#head .menu li.menu-item-has-children {
	position: relative;
}	
	
#head .menu li.menu-item-has-children:after {
	content: url(images/li-after.svg);
	margin-left: 5px;
	transition: 200ms;
	display: inline-block;
	
}	

#head .menu li.menu-item-has-children:hover:after {
	transform: rotate(90deg);
	transition: 200ms;
}

#head ul.sub-menu {
		display: flex;
		width:250px;
		flex-direction: column;
		padding: 30px 0 0 0;
		position: absolute;
		left: -70px;
		transform-origin: top;
		transition: 500ms ease;
		z-index: 666;
		transform: scale(1,0);
		opacity: 0;
}

#head ul.sub-menu li {
	padding: 10px 10px;
	text-align: center;
	margin: 4px 0;
}

#head ul.sub-menu li a {
	padding: 10px 10px;
	text-align: center;
}

#head ul.sub-menu li a:hover {
}

#head li.menu-item-has-children:hover > ul.sub-menu {
	transform: scale(1,1);
	opacity: 1;
	transition: 500ms;
}

.top-space {
	padding-top: 120px;
}

/************************************************
*	TEXT										*
************************************************/

.text-content {
	font-size: 1rem;
	line-height: 1.6rem;
}

a img,:link img,:visited img { border:none }    
a, a:link {text-decoration: none; color: var(--page-color);}
a:hover {text-decoration: none;}
strong, b {font-weight: bold;}
em, i {font-style: italic;}
ul {margin: 0;}

::selection {color: #fff;background: #333;}

.text-content h1 {
        font-size: 1.775rem;
		line-height: 2.5rem;
		font-family: var(--font2);
		font-weight: 500;
		color: var(--s-color);
}

.text-content h1:after {
	content: '';
	height: 1px;
	width: 315px;
	background: #740000;
	display: block;
	margin-top: 10px;
}

.text-content h2 {
        font-size: 1.775rem;
		line-height: 2.5rem;
		font-family: var(--font2);
		font-weight: 500;
		color: var(--s-color);
}

.text-content h3 {
        font-size: 1.775rem;
		line-height: 2.5rem;
		font-family: var(--font2);
		font-weight: 500;
		color: var(--s-color);
}

.text-content h3:after {
	content: '';
	height: 1px;
	width: 315px;
	background: #740000;
	display: block;
	margin-top: 10px;
}

.text-content h4 {
        font-size: 1.25rem;
		line-height: 1.5rem;
		font-family: var(--font2);
		font-weight: 500;
		color: var(--f-color);
		margin: 10px 0;
}


.text-content .aligncenter h3:after, .text-content .aligncenter h1:after {
	margin: 10px auto 0 auto !important;
}


/************************************************
*	LAYOUT										*
************************************************/
.zapytanie {
	padding: 40px;
	border: 1px solid var(--t-color);
	box-shadow: 0 0 15px rgba(0,0,0,.3);
	border-radius: 10px;
}

.zapytanie p {
	margin: 0;
}


.zapytanie .forminator-description {
	display: none !important;
}

.formularz {
	background: #D6B48F;
	border-radius: 20px;
	padding: 30px;
}

.formularz h2 {
	color: #fff;
	font-size: 2.5rem;
	line-height: 3.1rem;
	margin: 0;
}

.formularz h3 {
	color: #fff;
	font-size: 1.25rem;
	line-height: 1.8rem;
	margin: 0;
}

.formularz h3:after {
	display: none;
}

.formularz input, .formularz textarea {
	font-size: 1rem;
	padding: 10px 10px;
	border: none !important;
	background: #fff !important;
	border-radius: 8px !important;
}

.formularz .forminator-checkbox__label p {
	margin: 0 !important;
	font-size: .8rem !important;
	color: #fff !important;
}

.forminator-error-message {
	background: var(--s-color) !important;
	border-radius: 5px !important;
	color: #fff !important;
}

.forminator-success{
	background: var(--s-color) !important;
	border-radius: 5px !important;
	color: #fff !important;
	box-shadow: none !important;
}

.formularz .fl-button {
	box-shadow: none !important;
	color: #fff !important;
	background-color: var(--s-color) !important;
}

.formularz .fl-button:hover {
	box-shadow: none !important;
	color: #fff !important;
	background-color: var(--s-color) !important;
}

.formularz .forminator-description {display: none !important;}

.kontakt-podstrona {font-weight: 600;}

.kontakt-podstrona strong {color: var(--t-color);display: block; margin: 5px 0;}
.kontakt-podstrona a{transition: 200ms;}
.kontakt-podstrona a:hover{color: #740000; transition: 200ms;}

.kontakt-podstrona .email strong {background: url(images/email-kontakt.svg) left center / auto 17px no-repeat; padding: 2px 0 2px 35px;}
.kontakt-podstrona .telefon strong {background: url(images/telefon-kontakt.svg) left center / auto 23px no-repeat; padding: 2px 0 2px 35px;}
.kontakt-podstrona .mapa {background: url(images/mapa-kontakt.svg) left top 5px / auto 27px no-repeat; padding: 2px 0 2px 35px; color: var(--t-color);}
.kontakt-podstrona .mapa p {margin: 0;}

.kontakt-podstrona img {transition: 200ms;}
.kontakt-podstrona img:hover {opacity: .6; transition: 200ms;}
}

.index-title {
	padding: 20px 0 40px 0;
}

.lista-blog {
	display: flex;
	flex-wrap: wrap;
}

.lista-blog .blog{
	width: 31%;
	margin: 0 1% 40px 1%;
	transition: 200ms;
	border-radius: 20px;
}

.lista-blog .blog .opis {
	padding: 0 20px 20px 20px;
}

.lista-blog .blog:hover {
	box-shadow: 0 5px 15px rgba(0,0,0,.2);
	transition: 200ms;
}

.lista-blog .blog img {
	width: 100%;
	height: auto;
	border-radius: 20px;
}

.lista-blog .blog h2  {
	font-size: 1.25rem;
	line-height: 1.6rem;
	font-family: var(--font2);
	font-weight: 700;
	margin: 10px 0 0 0;
	color: var(--s-color);
	margin: 20px 0 0 0;
}

.lista-blog .blog .przycisk, .single-post .przycisk  {text-align: right;}
.lista-blog .blog .data, .single-post .data  {font-size: .8rem; color: var(--s-color);}

.lista-blog .realizacja .fl-button {
	position: relative !important;
	margin: -80px 20px 0 0 !important;
}

.single-post {padding: 10px 0 40px 0;}
.single-post .text-content img {border-radius: 20px;}

.kafel {
	background: #FFF;
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(226, 226, 226, 1) 100%);	
	padding: 20px 40px 60px 40px !important;
	margin: 0 20px !important;
	box-sizing: border-box !important;
	border-radius: 20px !important;
	text-align: center;
	transition: 200ms;
}

.kafel img {transition: 200ms;}

.kafel:hover img {
	transform: scale(1.03); 
	transition: 200ms;
}

.kafel:hover {
	box-shadow: 0 0 15px rgba(0,0,0,.3);
	transition: 200ms;
}

.ikona {display: flex;}

.ikona p:first-of-type {
	width: 100px;
	margin-right: 30px;
	text-align: center;
}

.ikona p:last-of-type {
	width: calc(100% - 130px);
	margin-right: 30px;
}

.ikona p {
	margin: 0;
}

.ikona strong {
	font-family: var(--font2);
	font-weight: 500;
	font-size: 1.125rem;
	line-height: 1.6rem;
	display: block;
	margin-bottom: 5px;
}

.bg-gradient {
	background: #FDE6CD;
	background: linear-gradient(90deg, rgba(253, 230, 205, 1) 0%, rgba(214, 180, 143, 1) 100%);
}

.liczniki > div {
	text-align: center;
}

.liczniki strong {
	font-size: 3.75rem;
	line-height: 4.1rem;
	font-weight: 300;
	font-family: var(--font2);
}

.liczniki em {
	display: block;
	font-size: 1.875rem;
	line-height: 2.1rem;
	font-weight: 500;
	font-family: var(--font2);
	font-style: normal;
}

.liczniki {
	display: block;
	font-size: 1rem;
	line-height: 1.4rem;
	font-weight: 500;
	font-family: var(--font2);
}

.inside, .wp-block-woocommerce-checkout {
        width: 1440px !important;
		margin: 0 auto !important;
}

.slogan {
	color: #fff;
	font-family: var(--font2);
	font-size: 2.188rem;
	line-height: 2.5rem;
	text-shadow: 3px 3px 5px rgba(0,0,0,.5);
}

.alignleft {float: left;margin-right: 20px;}
.alignright {float: right;margin-left: 20px;}
.aligncenter {display: block;text-align: center;margin: 0 auto !important;}
.item p a{text-decoration: none;}
.clear {clear: both;}


/************************************************
*	FOOTER									*
************************************************/
#foot {
	padding: 60px 0;
	font-size: 1rem;
	line-height: 1.6rem;
	background: url(images/foot-bg.jpg) center / cover no-repeat;
}

#foot a  {
	transition: 200ms;
}

#foot a:hover {
	opacity: .6;
	transition: 200ms;
}

#foot .footer {display: flex; justify-content: space-between;}
#foot .footer > div:first-of-type {margin-left: 10px;}
#foot .footer > div:last-of-type {margin-right: 10px;}
#foot ul {margin: 0; padding: 0; list-style-image: url(images/li.svg); padding: 0;}
#foot ul li {margin: 0 0 0 12px;}
#foot .telefon {background: url(images/telefon-foot.svg) left center / auto 20px no-repeat;	padding: 0 0 0 30px;}
#foot .email {background: url(images/email-foot.svg) left center / auto 14px no-repeat;	padding: 0 0 0 30px;}
#foot .mapa {background: url(images/mapa-foot.svg) left top 5px / auto 24px no-repeat;	padding: 0 0 0 30px;}

#foot h5 {
	color: #533A33; 
	font-size: 1.25rem;
	line-height: 1.6rem;
	font-family: var(--font2);
	margin: 0 0 10px 0;
}
#foot .footer > div:first-of-type h5 {display: none;}
#foot .social h5 {display: none;}
#foot .social > div {display: flex; align-items: center;}
#foot .social img {margin: 0 0 0 10px;}
#foot .bottom {padding-top: 10px; margin-top: 10px; border-top: 1px solid #533A33; text-align: right;}
#foot .efabryka {
	background: url(images/efabryka.svg) right center / auto 19px no-repeat; 
	font-size: .563rem; 
	padding: 10px 110px 10px 0; 
	margin-right: 10px; 
	}

/************************************************
*	PLUGINS										*
************************************************/				

select.orderby {
	padding: 5px 10px !important;
	border-color: var(--s-color) !important;
	color: var(--s-color) !important;
}

.aws_result_title, .aws_search_more a{
	color: var(--t-color) !important;
}

.myaccount {
	margin-top: 60px !important;
}

section.related {
	display: block !important;
	float: none !important;
	clear: both !important;
}

section.related h2 {
	padding-top: 40px !important;
}

.woocommerce-loop-product__title {
	text-align: center;
}

.woocommerce-MyAccount-navigation  {
	width: 300px !important;

}
.woocommerce-MyAccount-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.woocommerce-MyAccount-navigation ul li a {
	background: var(--t-color);
	color: #fff;
	border: 1px solid var(--t-color);
	padding: 10px 30px;
	margin: 0 0 5px;
	display: block;
	text-align: center;
	border-radius: 20px;
	transition: 200ms;
}

.woocommerce-MyAccount-navigation ul li a:hover {
	background: var(--s-color);
}

.rightmbottom ul {
	padding: 0;
	margin: 0;
}

.rightmbottom ul li {
	padding: 0;
	margin: 0;
}

.rightmbottom li.widget {
	padding: 0 0 0 30px;
	margin: 0;
}

.rightmbottom ul li a {
	color: #fff;
}

.singleproduct .sku_wrapper {
	display: none;
}

h3.wc-block-components-product-name {
	font-size: 1rem !important;
}

.wc-block-components-product-name {
	max-width: 200px;
}

.singleproduct input {
	font-size: 1rem;
	padding: 8px;
	margin-right: 20px;	
}

.singleproduct .tabs {
	display: none;
}

.singleproduct .price {
	color: var(--s-color) !important;
	}

.woocommerce-product-gallery__wrapper {
	border-radius: 20px !important;
}

.singleproduct {
	margin-top: 40px;
	padding: 0 10px;
	box-sizing: border-box;
}

.singleproduct .posted_in {
	font-size: .8rem;
	color: var(--t-color);
}

.woocommerce div.product form.cart .variations select {
	padding: 10px !important;
	width: auto !important;
	min-width: 150px !important;
}

.woocommerce-variation-price .price {
	padding: 5px 15px;
 	border: 1px solid var(--s-color);
	border-radius: 8px;
	display: inline-block;
	margin-bottom: 20px;
}

.woo-sklep {display: flex; min-height: 600px;}
.woo-side {
	width: 350px; 
	margin-right: 40px; 
	padding: 20px 20px 20px 10px;
	box-sizing: border-box;	
	border-right: 1px solid var(--s-color);
	position: relative;
	}
	
	
.woo-lista {
	width: calc(100% - 390px); 
	margin-top: 20px;
	box-sizing: border-box;	
	padding-right: 10px;
	}

.woo-side h5 {
	color: var(--s-color);
	font-size: 1rem;
	margin: 20px 0 10px 0;
	padding: 20px 0 0 0;
	border-top: 1px solid var(--s-color);
}

.woo-side ul {
	color: var(--s-color);
	list-style: none;
	padding: 0;
	background: #fff;
}

.woo-side ul.children li {
	padding-left: 20px;
	margin-left: 10px;
	font-size: .9rem; 
	background: url(images/li1.svg) left center / auto 100% no-repeat;
}

.woo-side ul.children li:last-of-type {
	background: url(images/li2.svg) left center / auto 100% no-repeat;
}

.woo-side ul.children li.cat-parent{
	background: none;
}

.woo-side li.cat-parent {
	margin-top: 20px;
}

.woo-side li.cat-parent li.cat-parent {
	margin-top: 0;
	background: url(images/li2.svg) top left / auto 28px no-repeat;
}

ul.page-numbers {
	border-color: var(--t-color) !important;
}

ul.page-numbers a {
	color: var(--t-color) !important;
}

.woo-side li.current-cat > a {
	color: var(--t-color);
}

.woo-side a {
	transition: 200ms;
}

.woo-side a:hover {
	color: var(--t-color);
	transition: 200ms;
}

.woo-side ul span.count {
	font-size: .8rem;
}

ul.products {
	margin-top: 60px !important;
}


.woocommerce-info {border: none !important;}
.woocommerce-info::before {color: var(--s-color) !important;}

.woocommerce-loop-product__link img {
	border-radius: 20px;
}

h2.woocommerce-loop-product__title {
	font-size: 1.5rem;
	font-weight: 700;
}

.products .product {
	border-radius: 20px;
	transition: 200ms;
}

.products .product span.price {
	color: var(--s-color) !important;
	text-align: center !important;
}

.products .product h2, .products .product span.price {
	padding: 0 20px !important;
}

.products .product:hover {
	box-shadow: 0 5px 15px rgba(0,0,0,.2);
	transition: 200ms;
}

.products .product a.button {
	display: inline-block !important;
	margin: 20px auto 20px auto !important;
	
}

.mob-menu-header-holder {
	box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.mobmenu-content a:focus {
	font-weight: 700 !important;
}

.fl-button, .products .product a.button, .singleproduct .button, button.wc-block-components-button, button.woocommerce-button {
	background-color: #CAA679 !important;
	background-image: url(images/but-01.svg), url(images/but-02.svg) !important;
	background-position: right 10px center, right 16px center !important;
	background-size: 25px auto, 11px auto !important;
	background-repeat: no-repeat !important;
	border: none !important;
	border-radius: 50px !important;
	color: #fff !important;
	display: inline-block !important;
	padding: 10px 45px 10px 15px !important;
	transition: 200ms;
}

.fl-button:hover, .products .product a.button:hover, .singleproduct .button:hover, button.wc-block-components-button:hover, .button.woocommerce-button:hover {
	background-color: #C18F52 !important;
	background-image: url(images/but-01.svg), url(images/but-02.svg) !important;
	background-position: right 10px center, right -12px center !important;
	background-size: 25px auto, 11px auto !important;
	background-repeat: no-repeat !important;
	transition: 200ms;
}

.fl-button span {
	color: #fff !important;
	transition: 200ms;
}

.cky-btn-revisit-wrapper.cky-revisit-bottom-left {
	display: none !important;
}


/************************************************
*	ANIMATION									*
************************************************/	
@keyframes fadein {
	0%{opacity: 0;}
	100%{opacity: 1;}
}


/************************************************
*	RESPONSIVE									*
************************************************/	
@media(max-width:1440px) {
	.inside, .wp-block-woocommerce-checkout {width: 100% !important;}
}

@media(max-width:1350px) {#head .menu li {margin-right: 10px;}}

@media(max-width:1170px) {	
		#foot .footer {flex-direction: column; align-items: center;}
		#foot .footer >div {width: 320px; margin: 0 0 20px 0;}
		#foot .social {width: 320px; margin: 0 auto;}
		.woo-side {display: none;}
		.woo-lista {width: 100%; padding-left: 10px;}
}

@media(max-width:1000px) {	
		.liczniki strong {font-size: 2.5rem;}
		.liczniki em {font-size: 1.4rem;}
		.lista-blog .blog{width: 48%;}
}

@media(max-width:768px) {	
	.text-content h1, .text-content h2, .text-content h3 {font-size: 1.5rem; line-height: 1.7rem; font-weight: 700;}
}

@media(max-width:600px) {	
	.lista-blog .blog{width: 98%;}
}

