<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!
Theme Name: FameArt
Theme URI: http://underscores.me/
Author: NTSR
Author URI: https://ntsr.pl
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: fameart
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

FameArt is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
&gt;&gt;&gt; TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

body {
	margin: 0;
}

main {
	display: block;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: none;
	text-decoration: none;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;resize:none;
}

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

details {
	display: block;
}

summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

template {
	display: none;
}

[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #1B1B1B;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
	margin-top:0;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li &gt; ul,
li &gt; ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 0;
}

table {
	margin: 0;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: inherit;text-decoration:none;
}


*:hover,
*:focus,
*:active {
	outline: 0;
}

textarea {
	width: 100%;
}

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover &gt; ul,
.main-navigation ul ul li.focus &gt; ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover &gt; ul,
.main-navigation ul li.focus &gt; ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */

.main-navigation.toggled ul {
	display: block;
}
.menu-toggle {display:grid;}
@media screen and (min-width: 1140px) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.updated:not(.published) {
	display: none;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
	/*rtl:ignore*/
	float: left;
	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	/*rtl:ignore*/
	float: right;
	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/* GLOBAL
--------------------------------------------- */

section, footer {float:left;width:100%} 
.wrap {width:1280px;margin:auto;}
.wrap920 {width:920px;margin:auto;}
.wrap640 {width:640px;margin:auto;}
.wrap680 {width:680px;margin:auto;}
.heading--large {margin-top:0;font-size: 64px;line-height: 85px;}
.heading--medium {margin-top:0;font-size: 48px;line-height: 64px;}
.heading--small {margin-top:0;font-size: 32px;line-height: 42px;}
.heading--tiny {margin:0;font-size: 24px;line-height: 32px;font-family: ff-nexus-serif, serif; font-weight: normal;}
.button {display:inline-block;font-weight: bold;font-size: 14px;line-height: 17px;padding:12px 16px;} 
.button--large {display:inline-block;font-weight: bold;font-size: 18px;line-height: 22px;padding:12px 16px;}
.button--dark {background: #141414;border:1px solid #141414;color:#fff;transition: all 0.15s linear;}
.button--dark:hover, .button--dark:focus {color: #E2B13D;border:1px solid #E2B13D;background:#fff;transition: all 0.15s linear;}
.button--light {border: 1px solid #ABABAB;;color: #1F1F1F;background:#fff;transition: all 0.15s linear;}
.button--light:hover, .button--light:focus {background: #E2B13D;transition: all 0.15s linear;}
.text {font-size: 18px;line-height: 180%;}
.text--small {font-size: 14px;line-height: 180%;} 

h1, h2, h3, h4, h5, h6 {font-family: ff-nexus-serif, serif; font-weight: normal;}
.center {text-align:center;}

/* HEADER
--------------------------------------------- */

.site-header {position:fixed;top:0;left:0;width:100%;background:#fff;z-index:999;}
.admin-bar .site-header {top:32px;}
.header__grid {display:grid;height:120px;grid-template-columns:auto auto;justify-content: space-between;align-items: center;}

.header__flex {display:grid;grid-template-columns:auto auto auto auto auto;justify-content: space-between;grid-column-gap: 40px;align-items: center;}
.main-navigation ul {display:flex;align-items: center;}
.main-navigation ul li {margin: 0 12px;}
.main-navigation ul li a {font-weight: bold;font-size: 16px;line-height: 19px;position:relative;}
.main-navigation ul li a:after {content:'';position:absolute;bottom:-2px;left:0;width:0;height:1px;background:#141414;transition: all 0.15s linear;}
.main-navigation ul li a:hover:after, .main-navigation ul li.current-menu-item a:after {width:100%;transition: all 0.15s linear;}
.header__socials {display: flex;}
.header__socials .social {margin:0 8px;background: #F3F3F3;width:40px;height:40px;display:inline-flex;border-radius: 50%;justify-content: center;align-items: center;font-size:18px;transition: all 0.15s linear;}
.header__socials .social:hover {color:#fff;transition: all 0.15s linear;}
.social__fb:hover {background:#1877F2;}
.social__ig:hover {background:#E4405F;}
.social__tw:hover {background:#1DA1F2;}
.header__cart {display: flex;align-items: center;cursor: pointer;}
.header__cart span {font-weight: bold;font-size: 16px;line-height: 19px;margin-right:6px;}

#page {margin-top:120px;}
body {background: #EBE8E1;}

/* KOSZYK
--------------------------------------------- */
.header__cart__wrap {position:relative;}
.header-mc {position:absolute;display:none;right:0;top:56px;width:380px;background:#fff;padding: 24px 16px;box-shadow: 0px 0px 1px rgba(15, 23, 42, 0.06), 0px 4px 6px -1px rgba(15, 23, 42, 0.1), 0px 2px 4px -1px rgba(15, 23, 42, 0.06);}
.header-mc.toggled {display:block;}
.woocommerce-mini-cart__empty-message {margin:0;font-weight: bold;font-size: 16px;line-height: 19px;}
.cart__header {border-bottom:1px solid #ABABAB;margin-top:0;margin-bottom:16x;padding-bottom:16px;font-weight: bold;font-size: 16px;line-height: 19px;position:relative;}
.cart__header span {position:absolute;right:0;font-size:20px;top:0px;cursor:pointer;}
.woocommerce-mini-cart {margin-left:0;padding-left:0;margin-bottom:16px;list-style: none;max-height:300px;overflow-y:scroll;overflow-x: hidden;}
.woocommerce-mini-cart-item {display: grid; grid-template-columns: 16px 64px 1fr auto; align-items: center; justify-content: space-between;}
.cart__name {font-weight: bold;font-size: 14px;line-height: 160%;margin:0;padding:0 16px;}
.woocommerce-mini-cart-item .quantity {height:auto;grid-template-columns:auto auto;}
.woocommerce-mini-cart-item .quantity .amount {margin-left:4px;}
.woocommerce-mini-cart__total {text-align:right;margin-top:0;margin-bottom:24px;}
.woocommerce-mini-cart__total strong {font-weight:400;font-size:14px;}
.woocommerce-mini-cart__total .woocommerce-Price-amount {font-weight:700;font-size:16px;}
.woocommerce-mini-cart__buttons {margin:0;}
.woocommerce-mini-cart__buttons .button {display:block;text-align:center;}

.freeshipping {font-size: 14px;line-height:18px;margin-top:0;text-align:center;margin-bottom:8px;}
.freeshipping strong {font-weight:700;}
.progressbar {background: #E4E4E4;border-radius: 5px;width:100%;height:5px;margin-bottom:8px;}
.percentage {background: #E2B13D;border-radius:5px;height:5px;float:left;}

.shipping {padding-top:16px;}
.woocommerce-checkout-review-order-table tfoot .shipping td {grid-template-columns:100%;}


.ins-container .numberbutton, .ins-cart-item-quantity .numberbutton {display:none !important;}
.ins-container .quantity {height:auto !important;display:block;}
.ins-cart-qty-wrap .quantity {background-color: transparent !important;}
.ins-toggle-button-2 {display:none !important;visibility:hidden;width:0;height:0;}
.ins-lay2-container .ins-footer p {margin-bottom:16px !important;}
.save {color:green;font-size:14px;font-weight:700;margin-bottom:16px;}
/* HOME
--------------------------------------------- */

.home__hero {padding:32px 0;}
.hero__grid {display:grid;grid-template-columns:45% 50%;justify-content: space-between;align-items: center;} 
.hero__left .heading--large {margin-bottom:40px;}
.hero__left .text {margin-bottom:40px;}
.hero__scroll {background: #1B1B1B;border:1px solid #1B1B1B;width:55px;height:55px;display:inline-flex;align-items: center;justify-content: center;border-radius:50%;transition: all 0.15s linear;}
.hero__scroll:hover, .hero__scroll:focus {background:#EBE8E1;transition: all 0.15s linear;}
.hero__scroll svg path {transition: all 0.15s linear;}
.hero__scroll:hover svg path, .hero__scroll:focus svg path {fill:#1B1B1B;transition: all 0.15s linear;}
.hero__right img {display:block;width:100%;}

.section__header {margin-bottom:48px;}
.section__header .heading--medium {margin-bottom:0;}

.home__books {padding:80px 0;background: #F8F7F5;}
.home__books .section__header {margin-bottom:48px;}
.books__grid {display:grid;grid-template-columns:48% 48%;justify-content: space-between;grid-row-gap:42px;}
.books__grid .product__box {margin-bottom:40px;}
.product__box__thumb img {display:block;}
.product__meta {display:grid;justify-content: right;}
.product__meta .product__price {display: grid;align-items: center;margin-bottom:12px;text-align:right;}
.product__meta .product__price del bdi {font-weight: bold;font-size: 14px;line-height: 17px;color: #CFBF96;}
.product__meta .product__price bdi {margin-left:10px;font-weight: bold;font-size: 20px;line-height: 24px;}
.variation-attributes {font-weight: bold;font-size: 16px;line-height: 18px;}

.product__box__content .heading--small {margin-bottom:12px;}
.product__author {font-size: 16px;line-height: 19px;display:block;margin-bottom:12px;}
.product__box__content .text--small {margin-bottom:12px;}
.product__box__content .text--small p {margin:0;}
.books__box {display:grid;grid-template-columns:200px 1fr;grid-column-gap:40px;column-gap:40px;align-items:flex-start;position:relative;border: 1px solid #ABABAB;padding:24px;transition: all 0.15s linear;}
.books__box:hover, .books__box:focus {background: #FFFFFF;border: 1px solid #E2B13D;transition: all 0.15s linear;}
.books__box--link {position:absolute;width:100%;height:100%;left:0;top:0;}

.bb__buttons {position:relative;}
.books__toggle {cursor:pointer;}
.book__buttons {position:absolute;top:100%;right:0;background:#fff;padding:12px;display:grid;grid-row-gap:12px;visibility:hidden;;width:280px;z-index:2;}
.book__buttons.active {visibility:visible;}
.bb__row {display:grid;grid-template-columns:auto auto;justify-content: space-between;align-items: center;}
.small__price {display: flex;align-items: center;}
.small__price del bdi {font-weight: bold;font-size: 13px;line-height: 16px;color: #CFBF96;}
.small__price bdi {margin-left:8px;font-weight: bold;font-size: 16px;line-height: 22px;}

.book__buttons .iworks-omnibus {display:none;opacity:0;visibility: hidden;}

.home__music {background:#fff;padding:80px 0;}
.music__grid {display:grid;grid-template-columns:28% 28% 28%;justify-content: space-between;grid-row-gap:40px;margin-bottom:40px;}
.music__box .product__box__thumb img {margin-bottom: 24px; height: 320px; width: auto; margin-left: auto; margin-right: auto;}
.music__box .product__author {margin-bottom:24px;}
.music__box .product__box__content .text--small {margin-bottom:24px;}
.music__grid .product__box__content .product__links {display:grid;grid-template-columns: auto auto;justify-content: left;grid-column-gap:32px;column-gap:32px;}

.home__about {background: #DED9CD;padding-top:100px;position:relative;}
.about__grid {display:grid;grid-template-columns:48% 40%;justify-content: space-between;}
.about__left .heading--large {margin-bottom:32px;}
.about__left img {display:block;position:relative;z-index:2;}
.about__right .text {margin-bottom:30px;}
.about__buttons {display:grid;grid-template-columns:auto auto;grid-column-gap:40px;justify-content: flex-start;}
.home__about:after {content:'';position:absolute;width:100%;bottom:0;height:200px;background: #EBE8E1;}

.home__blog {background: #EBE8E1;padding:100px 0;}
.home__blog .section__header {margin-bottom:48px;}
.home__blog .heading--medium {margin-bottom:6px;}

.blog__grid {display:grid;grid-template-columns:100%;grid-row-gap:48px;margin-bottom:48px;}
.blog__article {display:grid;grid-template-columns:48% 52%;}
.blog__content {background:#fff;padding:24px;}
.blog__date {display:block;margin-bottom:16px;font-weight: bold;font-size: 14px;line-height: 17px;}
.blog__content .heading--small {margin-bottom:24px;}
.blog__excerpt {margin-bottom:24px;}
.blog__content .button {float:right;}
.blog__thumb img {display: block;object-fit: cover;width: 100%;height: 100%;}

.newsletter {background: #F2F2F2;padding-top:64px;padding-bottom:32px;}
.newsletter .heading--small {text-align:center;margin-bottom:12px;}
.newsletter .text {text-align:center;margin-bottom:32px;}

.mc-field-group {margin-bottom:24px;}
#mce-EMAIL {background:#fff;height:50px;font-size: 14px;line-height: 180%;padding-left:24px;width:100%;border:none;}
#mc-embedded-subscribe {float:right;}


.partners {background: #FFFFFF;padding:64px 0;}
.partners .heading--small {text-align:center;margin-bottom:24px;}
.partners .text {text-align:center;}
.partners__grid {display:grid;grid-template-columns:repeat(6, 15%);justify-content: space-between;}
.partner {border: 1px solid #E2B13D;height:100px;display:flex;align-items: center;justify-content: center;}
.partner img {max-width:90%;max-height:80px;}

/* AKTUALNOĹCI
--------------------------------------------- */
.blog__page {padding:64px 0;}
.blog__page .akt__heading {text-align:center;margin-bottom:48px;}
.ipages {text-align:center;}
.ipages .page-numbers {display:inline-block;margin:0 15px;font-weight: bold;background:#fff;font-size: 16px;line-height: 19px;width:52px;height:52px;text-align:center;line-height:56px;transition: all 0.15s linear;}
.ipages .page-numbers.current, .ipages .page-numbers:hover {background:#1b1b1b;color:#fff;transition: all 0.15s linear;}

/* SINGLE POST
--------------------------------------------- */

.single__post {padding:64px 0;}
.single__thumb img {display:block;width:100%;}
.single__content {background:#fff;padding:24px;}
.single__date {font-weight: bold;font-size: 14px;line-height: 17px;margin-bottom:16px;}
.single__meta .heading--small {margin-bottom:24px;}
.single__text p, .single__text li {font-weight: 350;font-size: 14px;line-height: 180%;margin-top:0;margin-bottom:24px;}
.single__text a {text-decoration: underline;}
.single__share {text-align:center;}
.button--fb {background: #3B5998;border:1px solid #3B5998;color:#fff;transition: all 0.15s linear;}
.button--fb:hover, .button--fb:focus {color:#3B5998;background:#fff;transition: all 0.15s linear;}

/* STATIC PAGE
--------------------------------------------- */

.single__page {padding:80px 0;}
.single__page .heading--small {text-align:center;margin-bottom:40px;}
.single__page .text a {text-decoration:underline;}

/* KONTAKT
--------------------------------------------- */

.contact {padding:80px 0;}
.contact__grid {display:grid;grid-template-columns:47% 43%;justify-content: space-between;}
.contact__left .heading--large {margin-bottom:16px;}
.contact__left .text {margin-bottom:32px;}
.nf-form-fields-required {display:none;}
nf-field {margin-bottom:32px;}
nf-field input[type="text"], nf-field input[type="email"] {border:none;height:52px;padding:0 24px;background:#fff;font-size: 18px;}
nf-field textarea {border:none;font-size: 18px;padding:10px 24px;height:230px;}
.nf-field-label label {font-weight:400 !important;font-size:12px;line-height: 180%;}
nf-field input[type="button"] {border:none;background:#fff;padding:10px 24px;float:right;font-weight: bold;font-size: 18px;line-height: 180%;cursor:pointer;transition: all 0.15s linear;}
nf-field input[type="button"]:hover {background:#000;color:#fff;transition: all 0.15s linear;}
.contact__right .heading--small {margin-bottom:40px;margin-top:5px;}
.contact__right .text {margin-bottom:24px;}
.contact__right .text p {margin-top:0;margin-bottom:8px;}
#map {width:100%;height:450px;}
.contact__grid a {text-decoration:underline;}

/* WSPĂĹPRACA
--------------------------------------------- */

.team__section {margin-top:80px;}
.team__section:last-of-type {margin-bottom:120px;}
.team__header {display:grid;grid-template-columns: 39% 55%;justify-content: space-between;align-items:center;margin-bottom:64px;}
.team__section .heading--large {margin-bottom:48px;}
.team__grid {display:grid;justify-content: space-between;grid-row-gap:32px;}
.team__3 {grid-template-columns:repeat(3, 31%);}
.team__4 {grid-template-columns:repeat(3, 31%);}
.team__box {border:1px solid #CAC6BD;padding:12px;display: grid;align-items: center;}
.team__box img {display:block;width:100%;height: 280px;object-fit: cover;}
.team__box .heading--small, .team__box .heading--tiny {margin-bottom:0px;}
.team__box strong {display:block;font-weight: bold;font-size: 16px;line-height: 19px;margin-top:14px;display:block;}
.team__box .text--small {margin-top:14px;}
.team__box .text--small p {margin-bottom:0;margin-top:14px;}
.tb__pic {display:grid;grid-template-columns:47% 47%;align-items: center;justify-content: space-between;}

/* WYDAWNICTWO
--------------------------------------------- */
.wyd__hero {margin-top:48px;margin-bottom:80px;}
.wh__grid {display:grid;grid-template-columns:52% 44%;align-items:center;justify-content: space-between;grid-column-gap:48px;}
.wh__imgleft img {display:block}
.wh__content .heading--large {margin-bottom:32px;}
.wh__content .text {margin-bottom:24px;}
.wh__imgright img {display:block;}

.wyd__blocks {margin-bottom:56px;}
.wb__grid {display:grid;grid-template-columns:50% 50%;align-content: stretch;}
.wyd__block {padding:64px 64px 100px 64px;position:relative;}
.wyd__block:first-of-type {background: #DED9CD;}
.wyd__block .heading--large {margin-bottom:32px;}
.wyd__block .text {margin-bottom:32px;}
.wyd__block .button {position:absolute;bottom:64px;left:64px;}

.wyd__about {background: #DED9CD;position:relative;padding-bottom:64px;}
.wyd__about:before {content:'';position:absolute;z-index:1;left:0;top:0;width:100%;height:100px;background: #EBE8E1;}
.wa__grid {display:grid;grid-template-columns:46% 50%;justify-content: space-between;}
.wa__left {padding-top:180px;}
.wa__left .heading--large {margin-bottom:40px;}
.wa__right {position:relative;z-index:2;}
.wa__right img {display:block;margin-bottom:40px;}
.wa__right .heading--small {margin-bottom:5px;}
.wa__right strong {font-weight: bold;font-size: 16px;line-height: 19px;display:block;}

.wyd__articles {padding:80px 0;}
.wyd__articles .heading--large {text-align:center;margin-bottom:54px;}

.wyd__zw {margin-top:80px;}
.wydzw__inner {background: #DED9CD;padding:48px 80px;}
.wydzw__inner .heading--tiny {font-weight: bold;margin-bottom:24px;}

/* SHOP PAGES
--------------------------------------------- */

.shop__page {margin-top:64px;}
.shop__page__header {margin-bottom:64px;display:grid;grid-template-columns:auto 400px;;justify-content: space-between;align-items: center;}
.shop__page__header .heading--medium {margin-bottom:0;}
.shop__filters {display:grid;grid-template-columns:auto auto auto;grid-column-gap:32px;}
.shopsearch {border:none;height:52px;background:#fff;font-size: 18px;line-height: 180%;padding:0 24px;}
.shopfilter {border:none;height:52px;background:#fff;font-size: 18px;line-height: 180%;padding:0 24px;}
.shopsubmit {border:none;cursor:pointer;background:#fff;height:52px;font-weight:700;font-size: 18px;line-height: 180%;padding:0 24px;}

.filters-container form {display: grid; grid-template-columns: auto auto; justify-content: ; grid-column-gap: 32px; align-items: center;}
.yith-wcan-filters {background: none !important; margin-bottom: 0px !important;}
.filter-orderby .filter-content {background:#fff;}
.yith-wcan-filters .yith-wcan-filter {margin-bottom: 0px !important;}
.filter-items {margin:0;}
/* ARCHIVE PAGES
--------------------------------------------- */

.custom__archive {margin-top:64px;margin-bottom:80px;}
.archive__page__header {margin-bottom:64px;display:grid;grid-template-columns:auto auto;justify-content: space-between;align-items: center;}
.archive__page__header .heading--medium {margin-bottom:0;}
.shop__filters {display:grid;grid-template-columns:auto auto auto;grid-column-gap:32px;}
.orderby {border:none;height:52px;background:#fff;font-size: 18px;line-height: 180%;padding:0 24px;}
.archive__page__header p {margin:0;font-weight:700;}

/* SINGLE PRODUCT
--------------------------------------------- */

.product {margin-top:40px;}
.product__top {display:grid;justify-content: space-between;margin-top:40px;margin-bottom:80px;}
.pt__music {grid-template-columns:45% 50%;}
.pt__book {grid-template-columns:45% 50%;}
.product__left {position:relative;}
.product__left .onsale {display:none;}
.woocommerce-product-gallery__image img {display:block;width:100%;}
.woocommerce-product-gallery__image a img {width:auto;margin:auto;}
.flex-control-thumbs {margin:0;padding:0;list-style:none;position:absolute;top:24px;right:-40px;}
.flex-control-thumbs li {margin-bottom:12px;width:80px;}
.flex-control-thumbs img {display:block;cursor:pointer;}
.product__tags {display:flex;}
.product__tags span {margin-right:32px;margin-bottom:24px;font-weight: bold;font-size: 18px;line-height: 180%;color:#fff;background: #1F1F1F;padding:8px 12px;}
.product__title {margin-bottom:24px;}
.single__author {font-weight: bold;font-size: 18px;line-height: 19px;margin-bottom:24px;display:block;}

.summary .price {margin-top:0;margin-bottom:24px;}
.summary .price del bdi {font-weight: bold;font-size: 16px;line-height: 22px;color: #A9A9A9;margin-right:16px;}
.summary .price bdi {font-weight: bold;font-size: 32px;line-height: 38px;}
.summary .scroll {margin-bottom:24px;}
.short__description {font-size: 16px;line-height: 150%;margin-bottom:24px;}
.product__shipping {font-size: 18px;line-height: 180%;margin-bottom:16px;display: flex;align-items: center;}
.product__shipping svg {margin-right:24px;}
.product__shipping p {margin:0;}

.summary .cart {display:grid;grid-template-columns:104px 1fr;grid-column-gap:32px;margin-bottom:24px;}
.summary .cart.variations_form {grid-template-columns:100%;grid-row-gap:24px;}

.variations tr {display:grid;grid-template-columns:100%;grid-row-gap:0px;}
.variations label {font-weight:700px;font-size: 18px;line-height: 180%;padding-bottom:4px;}
.variations select {height:50px;background:#fff;border:none;border-radius:0;width:100%;padding-left:12px;}
.reset_variations {display:inline-block;margin-top:8px;font-size:14px;font-weight: bold;line-height: 18px;padding:4px 8px;background: #141414;border:1px solid #141414;color:#fff;transition: all 0.15s linear;}
.woocommerce-variation-price {margin-bottom:8px;}
.woocommerce-variation-add-to-cart {display:grid;grid-template-columns:104px 1fr;grid-column-gap:32px;}

.woocommerce-variation-add-to-cart .single_add_to_cart_button {pointer-events:none;}
.woocommerce-variation-add-to-cart.woocommerce-variation-add-to-cart-enabled .single_add_to_cart_button {pointer-events:auto;}

.summary .quantity {background:#fff;}
.quantity {display:grid;grid-template-columns:32px 1fr 31px;height:54px;align-items:stretch;background:#fff;font-size: 16px;line-height: 22px;font-weight: 600;}
.quantity .qty {border:none;background:none;text-align:center;max-width:44px;font-size: 16px;line-height: 22px;font-weight: 600;}
.numberbutton {cursor:pointer;align-items: center;display: flex;justify-content: center; transition: all 0.15s ease-out;}
.numberbutton:hover, .numberbutton:focus {color:#fff;background:#000;transition: all 0.15s ease-out;}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {-webkit-appearance: none;margin: 0;}
input[type=number] {-moz-appearance: textfield;}

.summary .cart button {background: #1F1F1F;border:1px solid #1f1f1f;color:#fff;height:54px;font-size: 16px;line-height: 22px;font-weight:600;cursor:pointer;transition: all 0.15s ease-out;}
.summary .cart button.disabled, .summary .cart button.loading {pointer-events:none;opacity:0.55;cursor:default: all 0.15s ease-out;}
.summary .cart button:hover {background:#fff;color:#1f1f1f;transition: all 0.15s ease-out;}
.product__metalinks a {font-size: 18px;line-height: 180%;text-decoration:underline;margin-right:32px;}

.product__content {display:grid;grid-template-columns:49% 47%;justify-content: space-between;margin-bottom:80px;}

.book__table {display:grid;grid-template-columns:50% 50%;}
.bt__row {padding-top:12px;padding-bottom:12px;margin-bottom:12px;border-bottom:1px solid #C4C4C4;position:relative;}
.bt__row:nth-last-child(1), .bt__row:nth-last-child(2):nth-child(odd) {border-bottom:none;}
.bt__row:nth-of-type(odd) {padding-right:24px;}
.bt__row:nth-of-type(odd):after {content:'';position:absolute;right:0;top:0;bottom:12px;width:1px;background:#c4c4c4;width:1px;}
.bt__row:nth-of-type(even) {padding-left:24px;}
.bt__name {display:block;margin-bottom:10px;font-weight: bold;font-size: 18px;line-height: 170%;}

.book__info .heading--small {margin:24px 0;text-align:center;}
.book__review {background: #FFFFFF;padding:48px;}
.book__review .text {margin-bottom:32px;}
.book__review .text p {margin-top:0;}
.review__author {font-weight: bold;font-size: 18px;line-height: 180%;display:block;margin-bottom:32px;}

.music__video .heading--small {text-align:center;margin-bottom:32px;}

.pc__right .heading--small {text-align:center;margin-bottom:32px;}
.text a, .text--small a {text-decoration:underline;}

.product__recommended {margin-bottom:80px;}
.product__recommended .heading--medium {text-align:center;margin-bottom:32px;}

.cwginstock-subscribe-form .panel-primary &gt; .panel-heading {font-weight: bold !important;font-size: 22px !important;line-height: 180%;background: #1f1f1f !important;}
.cwginstock-panel-heading h4 {font-family: 'Rubik',sans-serif;}	
.cwginstock-panel-body input[type="text"], .cwginstock-panel-body input[type="email"] {height:40px;}

.cwgstock_button {cursor:pointer;display:inline-block;font-weight: bold;font-size: 18px;line-height: 22px;padding:12px 16px !important;background: #141414 !important;border:1px solid #141414 !important;color:#fff;transition: all 0.15s linear;}
.cwgstock_button:hover, .cwgstock_button:focus {color: #E2B13D;border:1px solid #E2B13D;background:#fff;transition: all 0.15s linear;}
.cwginstock-subscribe-form {max-width:520px;}

/* Checkout
--------------------------------------------- */

.checkout__content {padding:80px 0;}

.checkout__heading {display:block;font-weight: bold;font-size: 16px;line-height: 19px;margin-bottom:24px;}

.checkout_coupon {width:59%;background:#fff;display:block !important;padding:32px 48px;margin-bottom:32px;}
.checkout_coupon h2 {margin-bottom:32px;}
.checkout_coupon p {display: grid;grid-template-columns: 1fr 58px;margin:0;}
.checkout_coupon input {font-size: 16px;line-height: 22px;font-weight: 600;height:58px;padding-left:24px;border: 1px solid #CFCFCF;}
.checkout_coupon button {border:none;cursor:pointer;background: #151515;color:#fff;}

.checkout__grid {display:grid;grid-template-columns:59% 36%;justify-content: space-between;}
.woocommerce-billing-fields {background:#fff;padding:32px 48px;margin-bottom:32px;}

.woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper {display:grid;grid-template-columns:48% 48%;justify-content: space-between;grid-row-gap:16px;}
.woocommerce-billing-fields__field-wrapper input, .woocommerce-shipping-fields__field-wrapper input {width:100%;padding-top:16px;font-size: 16px;line-height: 22px;font-weight: 700;height:58px;padding-left:24px;border: 1px solid #CFCFCF;}
.woocommerce-billing-fields__field-wrapper .form-row, .woocommerce-shipping-fields__field-wrapper .form-row {position:relative;margin:0;}
.woocommerce-billing-fields__field-wrapper .form-row label, .woocommerce-shipping-fields__field-wrapper .form-row label {font-size: 16px;line-height: 22px;position:absolute;pointer-events:none;left:25px;top:18px;font-weight:600;transition:0.2s ease all; -moz-transition:0.2s ease all; -webkit-transition:0.2s ease all;}
  
.form-row input:focus ~ label {top:4px;font-size:12px;}
.form-row input:not(:placeholder-shown) ~ label {top:4px;font-size:12px;}
#billing_address_2_field {display:none !important;visibility:hidden;}

.select2-container--default .select2-selection--single {border-radius:0 !important;border: 1px solid #CFCFCF;height:58px;}
.select2-container .select2-selection--single .select2-selection__rendered {padding-left: 24px; height: 58px; line-height: 58px !important;font-weight:700;}
.select2-container--default .select2-selection--single .select2-selection__arrow {top: 15px !important; right: 6px !important;}

#ship-to-different-address {font-family: rubik, sans-serif !important; margin-top:0;margin-bottom:32px;cursor:pointer;position: relative;background: #1F1F1F;display:inline-block;font-weight:700;font-size: 16px;line-height: 22px;padding:16px 24px;color: #FFFFFF;}
#ship-to-different-address input {display:none;}
#ship-to-different-address span {cursor:pointer;}

.shipping_address {background:#fff;padding:32px 48px;margin-bottom:32px;}
.woocommerce-additional-fields {}
.woocommerce-additional-fields .checkout__heading {margin-bottom:16px;margin-top:24px;}
.woocommerce-additional-fields textarea {height:140px;resize:none;font-weight: 600;font-size: 16px;padding:18px 23px;border: 1px solid #CFCFCF;}
#order_comments_field {margin:0;}

.woocommerce-additional-fields .optional {display:none;}
#order_comments_field label {display:none;}

.order__details {background:#fff;padding:32px;margin-bottom:32px;}
.order__details h3 {margin-bottom:32px;}

.woocommerce-checkout-review-order-table {border-top:1px solid #DDDDDD;display:grid;grid-template-columns:100%;}
.woocommerce-checkout-review-order-table tbody {display: grid;grid-template-columns: 100%;grid-row-gap: 16px;padding: 24px 0;border-bottom:1px solid #DDDDDD;}
.woocommerce-checkout-review-order-table .cart_item {display:grid;grid-template-columns:1fr auto auto;grid-column-gap:8px;align-items:center;justify-content: space-between;}
.woocommerce-checkout-review-order-table .cart_item .product-total {font-weight: 600;font-size: 16px;line-height: 22px;}
.woocommerce-checkout-review-order-table tfoot tr {display:grid;}
.woocommerce-checkout-review-order-table tfoot td {display: grid;width: 100%;grid-template-columns: auto auto;justify-content: space-between;}
.woocommerce-checkout-review-order-table tfoot tr span {font-weight: 600;font-size: 16px;line-height: 22px;}
.woocommerce-checkout-review-order-table tfoot .woocommerce-shipping-totals td {grid-template-columns:100%;grid-row-gap:24px;padding:24px 0;border-bottom:1px solid #DDDDDD;}
.woocommerce-checkout-review-order-table tfoot .woocommerce-shipping-totals h3 {margin-bottom:0;}

.paczkomaty-shipping td {grid-template-columns: 100% !important;grid-row-gap: 8px;padding-top: 8px;}
.paczkomaty-shipping label {font-weight: 600;font-size: 16px;}
.paczkomaty-shipping .select2 {width:100% !important;}

#open-geowidget {text-decoration:underline;}

.woocommerce-checkout-review-order-table tfoot .cart-discount {padding:24px 0;border-bottom:1px solid #DDDDDD;}
.woocommerce-shipping-totals th {text-align:left;padding-top:16px;}
#shipping_method {margin:0;list-style:none;padding:0;display:grid;grid-template-columns:100%;grid-row-gap:24px;}
#shipping_method li label {display:grid;grid-template-columns:100px auto auto;align-items: center;grid-column-gap:16px;cursor:pointer;}
#shipping_method li label img {max-height:36px;}
#shipping_method li label {font-weight: 600;font-size: 16px;position:relative;padding-left:32px;}
#shipping_method li input {position:absolute;display:none;visibility:hidden;opacity:0;}
#shipping_method li label:before {cursor:pointer;border-radius: 50%; position: absolute; width: 20px; height: 20px; content:'';left:0;top:calc(50% - 10px);;background:#fff;border: 1px solid #DCDCDC;}
#shipping_method li input:checked ~ label:before {background:#fff url(img/check.png);background-position:center center;background-repeat: no-repeat;background-size:60%;}
#shipping_method li p {margin-top:8px;margin-bottom:8px;font-size:14px;}
#shipping_method li label .woocommerce-Price-amount {display:grid;justify-self: end;}

.woocommerce-checkout-review-order-table tfoot .cart-subtotal {padding:24px 0;border-bottom:1px solid #DDDDDD;}
.woocommerce-checkout-review-order-table tfoot .order-total {padding-top:24px;}
.woocommerce-checkout-review-order-table tfoot tr.order-total .review__content span {font-size:24px;}
.includes_tax {display:none;}

.payment__methods {background:#fff;padding:32px;margin-bottom:32px;}
.payment__methods h3 {margin-bottom:32px;}
.payment_methods {margin:0;padding:0;list-style:none;display:grid;grid-template-columns:100%;grid-row-gap:24px;}
.about_paypal {display:none;}

.payment_methods li label {display:grid;grid-template-columns:auto auto;justify-content: left;align-items: center;grid-column-gap:32px;cursor:pointer;}
.payment_methods li label {font-weight: 700;font-size: 16px;position:relative;padding-left:48px;}
.payment_methods li input {position:absolute;display:none;visibility:hidden;opacity:0;}
.payment_methods li label:before {cursor:pointer;border-radius: 50%; position: absolute; width: 20px; height: 20px; content:'';left:0;top:calc(50% - 10px);;background:#fff;border: 1px solid #DCDCDC;}
.payment_methods li input:checked ~ label:before {background:#fff url(img/check.png);background-position:center center;background-repeat: no-repeat;background-size:60%;}

.woocommerce-privacy-policy-text p {font-size:12px;line-height: 24px;margin-top:0;margin-bottom:32px;}

.woocommerce-terms-and-conditions-wrapper label {font-weight: 700;font-size: 16px;position:relative;padding-left:48px;}
.woocommerce-terms-and-conditions-wrapper label input {position:absolute;display:none;visibility:hidden;opacity:0;}
.woocommerce-terms-and-conditions-wrapper label span:before {cursor:pointer;border-radius: 50%; position: absolute; width: 20px; height: 20px; content:'';left:0;top:0;background:#fff;}
.woocommerce-terms-and-conditions-wrapper label input:checked ~ span:before {background:#fff url(img/check.png);background-position:center center;background-repeat: no-repeat;background-size:60%;}
.woocommerce-terms-and-conditions-wrapper label a {text-decoration:underline;}
#place_order {background: #1F1F1F;padding:18px 0;display:block;border:none;cursor:pointer;width:100%;margin-top:8px;font-weight: bold;font-size: 18px;line-height: 180%;color:#fff;}


.mailchimp-newsletter {font-weight: 700;font-size: 16px !important;position:relative;padding-left:48px;}
.mailchimp-newsletter span {font-size: 16px !important;}
.mailchimp-newsletter input {position:absolute;display:none;visibility:hidden;opacity:0;}
.mailchimp-newsletter label:before {cursor:pointer;border-radius: 50%; position: absolute; width: 20px; height: 20px; content:'';left:0;top:0;background:#fff;}
.mailchimp-newsletter input:checked ~ label:before {background:#fff url(img/check.png);background-position:center center;background-repeat: no-repeat;background-size:60%;}

.woocommerce-terms-and-conditions-wrapper p {margin-bottom:16px;margin-top:0;}
.woocommerce-terms-and-conditions {background:#fff;font-size:13px;line-height:16px;padding:8px;margin-bottom:16px;}

.woocommerce-privacy-policy-text a {text-decoration:underline;}

.woocommerce-error {margin:0;padding:0;list-style:none;display:grid;grid-row-gap:8px;background: #FF3939;padding:16px 42px;color:#fff;width: 59%;margin-bottom: 32px;}
.woocommerce-error li {font-weight: 700;font-size: 16px;line-height: 22px;}
.woocommerce-invalid {border:1px solid red;}
.woocommerce-message {background: #06BB18;font-weight: 700;font-size: 16px;line-height: 22px;padding:16px 42px;display:grid;margin-bottom:32px;}
/* Thank you
--------------------------------------------- */
.woocommerce-order {text-align:center}
.woocommerce-order svg {margin-bottom:32px;}
.woocommerce-order h1 {margin-bottom:32px;}
.woocommerce-order .text {max-width:720px;margin:auto;margin-bottom:32px;}


/* 404
--------------------------------------------- */

.fof{
	margin:120px 0;text-align:center;width:100%;
}

.fof h1{
	font-size: 50px;
	display: inline-block;
	padding-right: 12px;
}



/* FOOTER
--------------------------------------------- */

.site-footer {background: #FFFFFF;}
.footer__grid {display:grid;padding:64px 0;grid-template-columns:auto auto;justify-content: space-between;}
.footer__right {display:grid;grid-template-columns:auto auto auto;justify-content: space-between;grid-column-gap:40px;}
.footer__menu ul {list-style:none;margin:0;padding:0;columns:2;column-gap:100px;margin-right:60px;}
.footer__menu ul li a {font-weight: bold;font-size: 16px;line-height: 19px;display:inline-block;margin-bottom:14px;}
.footer__payments strong {margin-bottom:14px;display:block;font-size: 16px;line-height: 19px;}
.footer__socials strong {margin-bottom:14px;display:block;font-size: 16px;line-height: 19px;}
.footer__socials .socials {display:grid;grid-template-columns:auto auto;grid-column-gap: 16px;}
.footer__socials .social {background: #F3F3F3;width:40px;height:40px;display:inline-flex;border-radius:50%;align-items: center;justify-content: center;transition: all 0.15s ease-out;}
.footer__socials .social.social__fb:hover {color:#fff;background:#1877F2;transition: all 0.15s ease-out;}
.footer__socials .social.social__ig:hover {color:#fff;background:#E4405F;transition: all 0.15s ease-out;}
.footer__socials .social.social__tw:hover {color:#fff;background:#1DA1F2;transition: all 0.15s ease-out;}

.cli-style-v2 {font-size: 11px !important; line-height: 16px !important;}
.cli-bar-message a {text-decoration:underline;}

.flexible-shipping-notice-container .woocommerce-info {display:none;}
/* RWD
--------------------------------------------- */

@media screen and (max-width: 1280px) {
	.wrap {width:1140px;}
	.wyd__block {padding:48px 48px 80px 48px;}
	.wyd__block .button {bottom:48px;left:48px;}
	.about__grid {grid-template-columns: 50% 48%;}
	.footer__menu ul {column-gap:32px;margin-right:0;}
	.flex-control-thumbs {right: 0px;}
	.pt__music {grid-template-columns: 45% 50%;}
	.shop__page__header {margin-bottom: 48px;grid-template-columns: auto auto;}
	.contact__grid {grid-template-columns: 48% 48%;}
	.team__3, .team__4 {grid-template-columns: 48% 48%;}
	.music__box .product__box__thumb img {height: 240px;}
	.books__box {grid-template-columns: 180px 1fr;grid-column-gap: 24px;column-gap: 24px;}
	.bb__buttons .button {margin-bottom:8px;}
	.books__grid .product__box {margin-bottom: 0;}
}

@media screen and (max-width: 1140px) {
	.wrap {width:100%;padding:0 16px;}
	.main-navigation ul {display:none;}
	.menu-toggle {border:none;background:none;font-size:18px;padding:0 8px;}
	.main-navigation.toggled ul {position:absolute;top:100%;left:0;width:100%;text-align:center;background:#fff;padding:10px;}
	.main-navigation ul li {margin-left:0;margin-right:0;padding:8px 0;}
	.main-navigation {order:3;}
	.main-navigation ul li a {display: inline-block;}
}


@media screen and (max-width: 920px) {
	.wrap920 {width:100%;padding:0 16px;}
	.books__grid {grid-template-columns:100%;grid-row-gap:32px;}
	.music__grid {grid-template-columns: 32% 32% 32%;grid-row-gap: 32px;}
	.about__grid {grid-template-columns: 100%;grid-row-gap:16px;}
	.home__about::after {display:none;}
	.about__left img {margin: auto;}
	.home__about {padding-bottom:48px;}
	.footer__grid {padding: 32px 0;grid-template-columns: 100%;text-align:center;grid-row-gap: 24px;}
	.footer__right {grid-template-columns: 50% 50%;grid-row-gap:32px;grid-column-gap: 0px;}
	.footer__menu {grid-column-start: 1;grid-column-end: 3;}
	.footer__socials .socials {justify-content: center;}
	.books__grid .product__box {margin-bottom: 0;}
	.home__books .center {margin-top:24px;}
}

@media screen and (max-width: 780px) {
	.hero__grid {grid-template-columns: 100%;grid-row-gap:32px;}
	.hero__left {order:2;}
	.hero__right {order:1;}
	.heading--large {font-size: 48px;line-height: 64px;}
	.home__books, .home__music, .home__blog, .wyd__articles, .blog__page {padding: 40px 0;}
	.contact {padding:24px 0;}
	.home__about {padding-top:48px;}
	.blog__article {grid-template-columns: 100%;}
	.blog__content {order:2;}
	.blog__thumb {order:1;}
	.wh__grid {grid-template-columns: 100%;grid-row-gap:24px;}
	.wh__imgright {order:1;}
	.wh__imgright img {max-height: unset;margin: auto;}
	.wh__content {order: 2;}
	.wh__content .heading--large {margin-bottom:24px;}
	.wyd__hero {margin-top: 24px;margin-bottom: 48px;}
	.wyd__block {padding: 24px;}
	.wyd__block {padding:24px 24px 64px 24px;}
	.wyd__block .button {bottom:24px;left:24px;}
	.wyd__block .heading--large {margin-bottom: 24px;}
	.wyd__block .text {margin-bottom: 24px;}
	.wyd__articles .heading--large {margin-bottom:24px;}
	.wa__right img {margin-bottom: 24px;}
	.wyd__about {padding-bottom: 16px;}
	.wyd__zw {margin-top: 48px;}
	.wydzw__inner {padding: 16px;}
	.wydzw__inner .text {font-size: 14px;}
	.product__top {margin-top: 24px;margin-bottom: 32px;}
	.pt__book {grid-template-columns: 100%;grid-row-gap:32px;}
	.flex-control-thumbs {top: 16px;transform: translateY(0);}
	.woocommerce-product-gallery {max-width:480px;position:relative;margin:auto;}
	.product__content {grid-template-columns: 100%;margin-bottom: 24px;grid-row-gap:24px;}
	.bt__row:nth-of-type(2n+1) {padding-right: 16px;}
	.bt__row {padding-top: 16px;padding-bottom: 16px;margin-bottom: 16px;}
	.bt__name {margin-bottom: 8px;}
	.book__review {background: #FFFFFF;padding: 24px;}
	.review__author {margin-bottom: 16px;}
	.product__recommended {margin-bottom: 48px;}
	.partners {padding: 48px 0;}
	.partners__grid {grid-template-columns: repeat(3, 31%);grid-row-gap: 16px;}
	.pt__music {grid-template-columns: 100%;grid-row-gap:24px;}
	.product__tags span {margin-right: 16px;margin-bottom: 24px;font-size: 14px;line-height: 180%;	padding: 6px 10px;}
	.single__author {margin-bottom: 24px;}
	.shop__page__header {grid-template-columns: 100%;grid-row-gap:16px;}
	.shop__filters {grid-column-gap: 16px;}
	.team__section {margin-top: 48px;}
	.team__header {grid-template-columns: 100%;margin-bottom: 24px;}
	.team__section .heading--large {margin-bottom: 0px;}
	.team__section:last-of-type {margin-bottom: 48px;}
	.team__grid {grid-row-gap: 32px;}
	.team__3, .team__4 {grid-template-columns: 100%;}
	.contact__grid {grid-template-columns:100%;grid-row-gap:24px;}
	.contact__right .heading--small {margin-bottom: 24px;margin-top: 0;}
	#map {height: 320px;}
	.blog__page .akt__heading {margin-bottom: 32px;}
	.hero__left .heading--large {margin-bottom: 24px;}
	.hero__left .text {margin-bottom: 24px;}
	.hero__right img {width: 80%;margin:auto;}
	.home__blog .section__header {margin-bottom: 32px;}
	.home__books .section__header {margin-bottom: 32px;}
	.newsletter {padding-top: 48px;}
	.section__header {margin-bottom: 32px;}
	.music__box .product__author {margin-bottom: 16px;}
	.product__recommended {margin-bottom: 32px;}
	.product {margin-top: 24px;}
	.bt__name {font-size: 14px;line-height: 150%;}
	.short__description {font-size: 14px;}
	.single__post {padding: 48px 0;}
	.product__meta .product__price {margin-bottom:0;}
	.footer__menu ul li {margin-bottom:10px;}
	.music__grid {grid-template-columns: 100%;}
	.music__box .product__box__thumb img {height: auto;	width: 288px;}
	.about__right .text {margin-bottom: 24px;}
	.blog__grid {grid-row-gap: 24px;margin-bottom: 32px;}

	.shop__page {margin-top: 24px;}
	.shop__page__header {margin-bottom: 32px;}

	.checkout_coupon input {height: 48px;padding-left: 16px;}
	.woocommerce-billing-fields__field-wrapper input, .woocommerce-shipping-fields__field-wrapper input {height: 52px;padding-left: 16px;}
	.woocommerce-billing-fields__field-wrapper .form-row label, .woocommerce-shipping-fields__field-wrapper .form-row label {left: 16px;}
	.form-row input:not(:placeholder-shown) ~ label {top: 3px;}
	#ship-to-different-address {margin-bottom: 0;}
	.checkout__grid {grid-template-columns: 100%;grid-row-gap:24px;}
	.checkout_coupon {width: 100%;}
	.checkout__heading {margin-bottom:16px;}
	.order__details {margin-top:0;}
	.flex-control-thumbs {padding:0;}
	.checkout__content {padding-top:24px;padding-bottom:48px;}
	.checkout_coupon {padding: 24px;}
	.woocommerce-billing-fields {padding: 24px;}
	.shipping_address {padding: 24px;margin-top:24px;}
	.woocommerce-additional-fields {padding: 24px;}
	.order__details {padding: 24px;}
	.payment__methods {padding: 24px;}
	.woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper {grid-template-columns: 100%;}
	.woocommerce-checkout-review-order-table tbody {padding: 16px 0;}
	.filters-container form {grid-column-gap: 8px;}
	.yith-wcan-filters.custom-style span.checkboxbutton::before {margin-right:0;}
	.text--small {line-height: 170%;}

	nf-field input[type="text"], nf-field input[type="email"] {height: 48px;padding: 0px 16px;font-size: 16px;}
	nf-field textarea {font-size: 16px;padding: 10px 16px;height: 160px;}
	nf-field input[type="button"] {padding: 8px 16px;font-size: 16px;line-height: 170%;}

	.header__cart__wrap {position:static;}
	.header-mc {right: 16px;top: 90px;}
	.flex-control-thumbs {position:static;margin-top:16px;text-align:center;}
	.flex-control-thumbs li {display: inline-block;margin-left: 4px;margin-right: 4px;}
	
	.woocommerce-error {width: 100%;margin-bottom: 24px;padding: 16px;}
}

@media screen and (max-width: 680px) {
	.wrap680 {width:100%;padding:0 16px;}
	.wrap640 {width:100%;padding:0 16px;}
	
	.heading--large {font-size: 40px;line-height: 56px;}
	.heading--medium {font-size: 36px;line-height: 48px;}
	.heading--small {font-size: 28px;line-height: 36px;}
	.wa__grid {grid-template-columns: 100%;grid-row-gap:24px;}
	.wa__right {order:1;}
	.wa__left {order:2;padding-top:0;}
	.wa__left .heading--large {margin-bottom:0;}
	.header__grid {height: 90px;}
	.logo {max-height: 64px; margin-top: 4px;}
	#page {margin-top: 90px;}
}

@media screen and (max-width: 580px) {
	.books__box {grid-template-columns: 120px 1fr;grid-column-gap: 16px;column-gap: 16px;}
	.wb__grid {grid-template-columns: 100%;}
	.wyd__block {padding:24px;}
	.wyd__block .button {position:static;}
	.shop__filters {grid-template-columns: 100%;grid-row-gap: 8px;}
	.about__buttons {grid-template-columns: auto;grid-row-gap: 16px;}
}

@media screen and (max-width: 480px) {
	.header__flex {grid-column-gap: 16px;}
	.header__socials .social {margin: 0 8px;width: 32px;height: 32px;font-size: 14px;}
	.header__cart span {font-size: 14px;}
	.header__cart svg {width:15px;}
	.header__grid {grid-row-gap:8px;}
	.books__box {grid-template-columns: 100%;padding: 16px;grid-row-gap: 16px;}
	.product__box__thumb img {max-height: 280px;margin: auto;width: auto;}
	.text {font-size: 16px;}
	.heading--tiny {font-size: 18px;line-height: 26px;}
	.woocommerce-mini-cart-item {grid-template-columns: 16px 48px auto auto;}
	.heading--large {font-size: 32px;line-height: 40px;}
	.heading--small {font-size: 24px;line-height: 32px;}
	.heading--medium {font-size: 28px;line-height: 36px;}
	.single__content {padding: 16px;}
	.button {font-size: 14px;line-height: 16px;padding: 10px 14px;}
	.button--large {font-size: 16px;line-height: 20px;padding: 10px 14px;}
	.tb__pic {grid-template-columns: 43% 53%;}
	.team__box img {height:auto;}
	.wyd__block {padding: 16px;}
	#shipping_method li label {font-size: 14px;}
	#shipping_method li label {grid-template-columns: 90px auto auto;}
	.custom-baner-home {display: none !important;}
	.custom-baner-home-mobile {display: inline-block !important;}
	.home-first-section {padding-bottom: 0px !important; }
	.home-timer-box {margin-top: -34px;}
}

@media screen and (max-width: 380px) {
	.footer__right {grid-template-columns: 100%;}
	.footer__menu {grid-column-end: 1;}
	.footer__menu ul li {margin-bottom: 12px;}
	.footer__menu ul li a {font-size: 13px;line-height: 16px;}
	.header-mc {width: 300px;padding:10px;}
	.cart__header {margin-bottom: 16px;padding-bottom: 16px;}
	.woocommerce-mini-cart-item a {display:none;}
	.woocommerce-mini-cart-item a.remove {display:block;}
	.woocommerce-mini-cart-item {grid-template-columns: 16px 1fr auto;}
	.cart__name {font-size: 14px;padding: 0px 8px;}
	.summary .cart {grid-column-gap: 16px;}
	.summary .cart button {padding:8px 10px !important;}
	.contact__left .heading--large {font-size: 30px;}
}

@media screen and (max-width: 360px) {
	.tb__pic {grid-template-columns: 100%;}
	.team__box img {height: 320px;margin-bottom:8px;}
	.music__grid .product__box__content .product__links {grid-column-gap: 16px;column-gap: 16px;}
	.paczkomaty-shipping .select2 {max-width: 256px !important;}
	.checkout_coupon p {grid-template-columns: 180px 58px;}
	.woocommerce-terms-and-conditions-wrapper label {font-size: 14px; padding-left: 24px;}
	.woocommerce-terms-and-conditions-wrapper label span::before {width: 16px;height: 16px;top: 1px;}
	.mailchimp-newsletter {font-size: 14px; padding-left: 24px!important;}
	.mailchimp-newsletter span {font-size: 14px !important;}
	.mailchimp-newsletter label::before {width: 16px;height: 16px;top: 3px;}
}

.custom-baner-home {display: inline-block;}
.custom-baner-home-mobile {display: none;}
.home-first-section{
	background: #030001; 
	padding-bottom: 40px;
}
.home-timer-box{
	max-width: 770px; 
	background: #fff3dc; 
	opacity: 1; 
	padding: 10px 0px;
}

.home-first-section-wfd{
	background-image: linear-gradient(90deg, #f8f8f8 49%, #f1eee7 49%); 
	padding:0px; 
}
.home-first-section-grid-wfd{
	display: grid;
	grid-template-columns: 68% 32%; 
	align-items: stretch;
}
.home-first-section-grid-left-wfd{
	background: #f8f8f8; 
	padding: 15px 0px; 
	text-transform: uppercase; 
	font-size: 16px; 
	font-weight: 500; 
	line-height:18px; 
	padding-right:25px;
}
.home-first-section-grid-right-wfd{
	background: #f1eee7; 
	padding: 15px 0px; 
	text-transform: uppercase; 
	font-size: 16px; 
	font-weight: 500; 
	line-height:18px; 
	padding-left:25px;
}
 
.home-first-section-grid-left-gr-wfd{
	display: grid;
	grid-template-columns: 85% 15%;
	justify-content: space-between;
	align-items: center;
}
.home-first-section-grid-right-gr-wfd{
	display: grid; 
	grid-template-columns: 68% 32%; 
	justify-content: space-between; 
	align-items: center;
}

.section-book-announcement-div-wfd{
	background: #ebe8e1; 
	padding: 70px 0px; 
	position: relative;
}
.book-announcement-wfd{
	display: grid; 
	grid-template-columns: 31% 31% 32%;
	justify-content: space-between; 
}
.image-author-wfd{
	max-width:33%;
	position: absolute; 
	top:0px; 
	right:0px;
	height:100%;
}
.book-announcement-first-head-wfd{
	font-size:22px; 
	font-weight:800;  
	margin-bottom:15px; 
	margin-top:0px; 
	line-height:28px; 
}
.book-announcement-first-p-wfd{
	font-size:18px;
	line-height:22px;
	max-width:320px;
	margin-bottom:30px;
}
.book-announcement-second-p-wfd{
	font-size:15px;
	line-height:22px;
	max-width:400px;
}
.book-announcement-third-p-wfd{
	font-size:12px;
	line-height:18px;
	text-align:right;
	max-width:400px;
}
.book-announcement-first-head-2-wfd{
	margin-bottom:30px;
}
.shop-page-wfd .filter-item label{	
	font-size: inherit;
    padding: 8px 12px;
    margin: 0px 0px 0px 0px;
    font-size: 15px;
    line-height: 20px;
    text-align: inherit;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid #52515191;
    background: #000;
    color: #fff;
	font-weight:600;
    min-width: 20%;
    max-width: 75%;
}
.shop-page-wfd .filter-item label:hover{
		background: #fff;
	border: 1px solid #e2b13d;
	color:#e2b13d;
}
.shop-page-wfd .filter-items .active  label{
	background: #fff;
	border: 1px solid #e2b13d;
}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item&gt;a, .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item&gt;label&gt;a{
	color: inherit;
}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.active&gt;label&gt;a, .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item&gt;a:hover, .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item&gt;label&gt;a:hover {
	color:#e2b13d;
}
.shop-page-wfd .yith-wcan-filters.custom-style span.checkboxbutton:before{
	width: 0px !important;
    height: 0px !important;
	border: none !important;
	margin-right: 0px !important;
}
.shop-page-wfd .filter-item{
	display:inline-block;
	margin-bottom: 8px !important;
	margin-right:4px !important;
}
.shop-page-wfd .shop__page__header{
	grid-template-columns: 200px auto;
}
.yith-wcan-filters .yith-wcan-filter h4{
	margin: 5px 0px;
	font-size: 22px;
	font-weight:500;
	margin-right:20px;
	display: inline-block;
}
.filter-content{
	display: inline-block;
}

.shadowbox1 {
	-webkit-box-shadow: 1px 8px 31px -11px rgba(66, 68, 90, 0.5);
-moz-box-shadow: 1px 8px 31px -11px rgba(66, 68, 90, 0.5);
box-shadow: 1px 8px 31px -11px rgba(66, 68, 90, 0.5);
}
.koncert-kontakt-wfd{
	display: grid; 
	grid-template-columns: 30% 30% 30%; 
	justify-content: space-between;
}
@media screen and (max-width: 960px){
	.home-first-section-grid-wfd{grid-template-columns: 100%}
	.home-first-section-wfd{background: #fff;}
	.home-first-section-grid-left-wfd{padding-left:25px;}
	.home-first-section-grid-left-gr-wfd{grid-template-columns: 68% 30%;}
	.home-first-section-grid-right-wfd{padding-right:25px;}
	.book-announcement-wfd{	grid-template-columns: 100%;}
	.image-author-wfd{max-width:100%; position: relative !important; height: auto;}
	.book-announcement-first-head-wfd, .book-announcement-first-p-wfd, .book-announcement-second-p-wfd{max-width:100%; margin-top:30px;}
	.book-announcement-third-p-wfd{max-width:100%; margin-bottom:50px;}
	.book-announcement-first-head-2-wfd{margin-bottom:20px; margin-top:50px;}
	.section-book-announcement-div-wfd{padding:30px 0px;}
	.btn-wfd{display: block; width: 115px; margin: auto; margin-top: 10px;}
	.koncert-kontakt-wfd{	grid-template-columns: none; }
}

span.variation-prices &gt; span &gt; ins &gt; span &gt; bdi{
color: green !important;
}

div.product__meta &gt; div &gt; ins &gt; span &gt; bdi{
color: green !important;
}
div.product__meta &gt; span &gt; ins &gt; span &gt; bdi{
color: green !important;
}
div.summary.entry-summary &gt; p &gt; ins &gt; span &gt; bdi{
color: green !important;
}
#main &gt; section &gt; div &gt; div.books__grid.shop__page__grid &gt; div &gt; div.product__box__content &gt; p &gt; span{
display:inline;
}
.news-wrap-wfd p{
	margin-bottom:0px;
}

.woocommerce-variation-price {display:none !important;visibility:hidden;}
.ins-lay2-container .ins-footer .footer-button a {display:block !important;}

.product__box .iworks-omnibus {font-size:12px;font-weight:400;color:rgba(153, 153, 153, 1);margin-bottom:16px;}
.product__box .iworks-omnibus bdi {font-size:12px !important;font-weight:400!important;margin:0;}

.summary .iworks-omnibus {font-size:14px;font-weight:400;color:rgba(153, 153, 153, 1);margin-bottom:0;}
#zgody_marketingowe_field .optional{display:none;}

.fs-free-shipping-notice-and-button-wrapper {margin-bottom:24px;background:#fff;padding:0 10px;}

.container_account input[type="text"], .container_account input[type="password"], .container_account input[type="email"], .woocommerce-form-login input[type="text"], .woocommerce-form-login input[type="password"], .woocommerce-form-login input[type="email"] {
	display: block;
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #CFCFCF;
	box-sizing: border-box;
}
.woocommerce-form-login label, .container_account label {
	font-size: 16px;
    font-weight: 800;
    line-height: 19px;
    margin-bottom: 5px !important;
}
.container_account .u-column1{
	width: 45%;
	margin-right:10%;
	padding: 10px 35px;
	box-sizing: border-box;
	background: #fff;
	float: left;
	margin-bottom: 25px;
}
.container_account .u-column2{
	width: 45%;
	float: left;
	box-sizing: border-box;
	padding: 10px 35px;
	background: #fff;
}
.container_account .button, .woocommerce-form-login .button {
	background: #1F1F1F;
    padding: 18px 0;
    display: block;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 8px;
    font-weight: bold;
    font-size: 18px;
    line-height: 180%;
    color: #fff;
}
.container_account .heading--small {
	font-size: 45px;
	color:#000;
}
.container_account .mailchimp-newsletter label:before, .container_account label span:before{
	border: 1px solid #000;
}
.container_account .mailchimp-newsletter, .container_account .woocommerce-terms-and-conditions-wrapper .form-row label{
	line-height: 22px;
	padding-left: 30px;
}
.container_account  .woocommerce-privacy-policy-text p{
	line-height: 16px;
	font-size: 11px;
}
.container_account  .woocommerce-form-login__submit{
	margin-top: 35px;
}
.woocommerce-MyAccount-navigation ul{
	margin-left: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
}
.woocommerce-MyAccount-navigation ul li{
	padding: 5px 15px;
	background: #fff;
	margin-bottom: 5px;
}
.checkout__content .woocommerce-form-login{
	max-width: 400px;
	background: #fff;
	padding: 15px;
	margin-bottom: 15px;
}
.checkout__content .woocommerce-form-login-toggle .woocommerce-info{
	padding: 8px 15px;
	background-color: #fff;
	margin-bottom: 25px;
}
.checkout__content .woocommerce-form-login-toggle .woocommerce-info .showlogin{
	font-weight:600;
}
.checkout__content div.create-account{
	padding: 15px;
	background: #fff;
	max-width: 400px;
	margin-bottom: 25px;
}
.checkout__content div.create-account p{
	margin-bottom: 0px;
	border: none !important;
}
.checkout__content div.create-account p input[type="password"]{
	display: block;
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #CFCFCF;
	box-sizing: border-box;
	margin-bottom: 5px;
}
.checkout__content div.woocommerce-account-fields p.create-account{
	font-weight:600;
}
.single__page__content h1.heading--small{
	font-size: 48px;
}
.tinv-header h2{
	display: none;
}
button[name="tinvwl-add-to-cart"]{
	background: #1B1B1B;
	color: #fff;
}
a.wishlist_products_counter.top_wishlist-heart:before{
	font-size: 30px;
	margin-right: -5px;
}
.tinvwl-table-manage-list thead th{
	text-align: left;
}
.tinv-wishlist .product-action{
	width: 175px;
}
.tinv-wishlist table td, .tinv-wishlist table th{
	border-top: 1px solid #cfcfcf;
}
#sgpb-popup-dialog-main-div{
	background-color: #f2f2f2 !important;
}
.pllexislider .pllex-control-nav{
	bottom: 10px !important;
	top: unset !important;
}

#tabs{
	padding-top: 60px;
	padding-bottom:30px;
	text-align: center;
}
#tabs h2{
	cursor: pointer;
	display: inline-block;
	margin: 0 10px;
	opacity:0.4;
	transition: 0.3s;
}
#tabs h2:hover{
	opacity: 1;
}
#tabs h2.active-tab{
	opacity: 1;
}
.tab-content {
	display: none;
}
.active-tabs-content {
	display: block;
}
/*Opinie*/
p.stars.selected a.active::before, p.stars.selected a:not(.active)::before, p.stars:hover a::before, .star-rating span::before {
    color: #ffbc00  !important;
} 
.woocommerce-product-rating{
	margin-bottom:15px;
}
#respond input#submit{
	background: #141414;
    border: 1px solid #141414;
    color: #fff;
    transition: all 0.15s linear;
	    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    padding: 12px 16px;
	cursor: pointer;
	width: 100%;
}
#respond input#submit:hover{
	color: #E2B13D;
    border: 1px solid #E2B13D;
    background: #fff;
    transition: all 0.15s linear;
}
.comment-form-rating label, .comment-form-comment label{
	font-size:18px;
	font-weight: 600;
}
.comment-reply-title{
	font-size:24px;
	margin-top:0px;
	text-align: center;
}
.cr-ajax-search{
	display: none !important;
}
.cr-all-reviews-shortcode .cr-summaryBox-wrap, .cr-reviews-grid .cr-summaryBox-wrap{
	background: #fff;
}
.cr-all-reviews-shortcode .cr-count-row, #reviews.cr-reviews-ajax-reviews .cr-count-row{
	background: #fff;
}
.ivole-meter{
	background: #f4f4f4 !important;
	background-color: #f4f4f4 !important;
	box-shadow: none !important;
}
.ivole-meter .ivole-meter-bar{
	background-color: #ffbc00  !important;
	background: #ffbc00  !important;
	box-shadow: none !important;
}
.cr-all-reviews-shortcode .cr-summaryBox-wrap, .cr-reviews-grid .cr-summaryBox-wrap{
	background: transparent !important;
}
.cr-ajax-reviews-sort-div{
	display: none !important;
}
.comment-form-comment textarea#comment{
	background: transparent !important;
	border: 1px solid #ababab;
	margin-top: 5px;
	padding: 10px;
}
input#author,  input#email{
	background: transparent !important;
	border: 1px solid #ababab;
	margin-left:10px;
}
#pwgc-purchase-container{
	grid-column: 1 / span 2;
}
.pwgc-input-text, #pwgc-message, #pwgc-redeem-gift-card-number {
    width: 100% !important;
    padding: 12px;
    border: 1px solid #CFCFCF;
}
#pwgc-redeem-button{
	width: 100%;
    background: transparent;
    padding: 14px;
    border: 1px solid #ABABAB;
    font-weight: 700;
    font-size: 16px;
	transition: all 0.15s linear;
	cursor: pointer;
}
#pwgc-redeem-button:hover{
	background: #E2B13D;
}
.easypack-shipping-method-logo {
	display: none !important;
}
.easypack-parcel-machine-select .easypack_show_geowidget {
    font-size: 16px !important;
    box-shadow:unset !important;  
    border-radius: 0px !important; 
    padding: 15px 15px 15px 15px !important; 
    font-weight: 700;
}
#selected-parcel-machine { 
    border-radius: 0px !important;
    margin-left: 10px !important;
	border: 2px solid #E2B13D !important;
}
#customer_details h3{
	padding-top: 
}
h3#ship-to-different-address{
	padding-top: 16px !important; 
}
div[data-coupon="promodeal"]{
	display: none;
}

.ins-cart-btns .view-cart{
	display: none !important;
}</pre></body></html>