/*!
Theme Name: motf
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: motf
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 with others.

motf is based on Underscores https://underscores.me/, (C) 2012-2017 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/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

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

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

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

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,900&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600&subset=latin-ext');
html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

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

/**
  * Remove the margin in all browsers.
  */

body {
    margin: 0;
    background-color: #f6f6f6;
}

html, body {
    max-width: 100%
}

/**
  * Correct the font size and margin on `h1` elements within `section` and
  * `article` contexts in Chrome, Firefox, and Safari.
  */

h1 {
    font-size: 1.8em;
    margin: 0.67em 0;
    font-family: 'Montserrat', sans-serif;
}

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

/**
  * 1. Add the correct box sizing in Firefox.
  * 2. Show the overflow in Edge and IE.
  */

hr {
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */

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

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

/**
  * Remove the gray background on active links in IE 10.
  */

a:visited, a {
    
    cursor: pointer;
}

a {
    background-color: transparent;
    color:#32402d;
}

/**
  * 1. Remove the bottom border in Chrome 57-
  * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  */

abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    text-decoration: underline dotted;
    /* 2 */
}

/**
  * Add the correct font weight in Chrome, Edge, and Safari.
  */

b, strong {
    font-weight: bolder;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */

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

/**
  * Add the correct font size in all browsers.
  */

small {
    font-size: 80%;
}

/**
  * Prevent `sub` and `sup` elements from affecting the line height in
  * all browsers.
  */

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

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

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

/**
  * Remove the border on images inside links in IE 10.
  */

img {
    border-style: none;
}

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

/**
  * 1. Change the font styles in all browsers.
  * 2. Remove the margin in Firefox and Safari.
  */

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

/**
  * Show the overflow in IE.
  * 1. Show the overflow in Edge.
  */

button, input {
    /* 1 */
    overflow: visible;
}

/**
  * Remove the inheritance of text transform in Edge, Firefox, and IE.
  * 1. Remove the inheritance of text transform in Firefox.
  */

button, select {
    /* 1 */
    text-transform: none;
}

/**
  * Correct the inability to style clickable types in iOS and Safari.
  */

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

/**
  * Remove the inner border and padding in Firefox.
  */

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

/**
  * Restore the focus styles unset by the previous rule.
  */

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

/**
  * Correct the padding in Firefox.
  */

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

/**
  * 1. Correct the text wrapping in Edge and IE.
  * 2. Correct the color inheritance from `fieldset` elements in IE.
  * 3. Remove the padding so developers are not caught out when they zero out
  *		`fieldset` elements in all browsers.
  */

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

/**
  * Add the correct vertical alignment in Chrome, Firefox, and Opera.
  */

progress {
    vertical-align: baseline;
}

/**
  * Remove the default vertical scrollbar in IE 10+.
  */

textarea {
    overflow: auto;
}

/**
  * 1. Add the correct box sizing in IE 10.
  * 2. Remove the padding in IE 10.
  */

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

/**
  * Correct the cursor style of increment and decrement buttons in Chrome.
  */

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

/**
  * 1. Correct the odd appearance in Chrome and Safari.
  * 2. Correct the outline style in Safari.
  */

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

/**
  * Remove the inner padding in Chrome and Safari on macOS.
  */

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

/**
  * 1. Correct the inability to style clickable types in iOS and Safari.
  * 2. Change font properties to `inherit` in Safari.
  */

::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

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

/*
  * Add the correct display in Edge, IE 10+, and Firefox.
  */

details {
    display: block;
}

/*
  * Add the correct display in all browsers.
  */

summary {
    display: list-item;
}

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

/**
  * Add the correct display in IE 10+.
  */

template {
    display: none;
}

/**
  * Add the correct display in IE 10.
  */

[hidden] {
    display: none;
}

/*--------------------------------------------------------------
 # Typography
 --------------------------------------------------------------*/

body, button, input, select, optgroup, textarea {
    color: #404040;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    clear: both;
    font-family: 'Montserrat', sans-serif;
}

p {
    margin-bottom: 1.5em;
}

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

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code, kbd, tt, var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
    font-size: 0.9375rem;
}

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

mark, ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}

/*--------------------------------------------------------------
 # Elements
 --------------------------------------------------------------*/

html {
    box-sizing: border-box;
}

*, *:before, *:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #ffffff;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
    /* Fallback for when there is no custom background color defined. */
}

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

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

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

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

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    height: auto;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
}

figure {
    margin: 1em 0;
    /* Extra wide images within figure tags don't overflow the content area. */
}

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

/*--------------------------------------------------------------
 # Forms
 --------------------------------------------------------------*/

button, input[type="button"], input[type="reset"], input[type="submit"] {
    border: 1px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: #e6e6e6;
    color: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1;
    padding: .6em 1em .4em;
}

button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa;
}

button:active, button:focus, input[type="button"]:active, input[type="button"]:focus, input[type="reset"]:active, input[type="reset"]:focus, input[type="submit"]:active, input[type="submit"]:focus {
    border-color: #aaa #bbb #bbb;
}

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 {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 3px;
    padding-left: 1px;
}

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 {
    color: #111;
}

select {
    border: 1px solid #ccc;
}

textarea {
    width: 100%;
}

/*--------------------------------------------------------------
 # Navigation
 --------------------------------------------------------------*/

/*--------------------------------------------------------------
 ## Links
 --------------------------------------------------------------*/

a:visited {
    color: inherit;
}

a:hover, a:focus, a:active {
    color: inherit;
}

a:focus {
    color: inherit;
}

a:hover, a:active {
    outline: 0;
}

/*--------------------------------------------------------------
 ## Menus
 --------------------------------------------------------------*/

.main-navigation {
    clear: both;
    display: block;
    float: left;
    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>ul, .main-navigation ul ul li.focus>ul {
    left: 100%;
}

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

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

.main-navigation li {
    float: left;
    position: relative;
}

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

/* Small menu. */

.menu-toggle, .main-navigation.toggled ul {
    display: block;
}

@media screen and (min-width: 37.5em) {
    .menu-toggle {
        display: none;
    }
    .main-navigation ul {
        display: block;
    }
}


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

.comment-navigation .nav-previous, .posts-navigation .nav-previous, .post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next, .posts-navigation .nav-next, .post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

/*--------------------------------------------------------------
 # 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;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.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: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */

#content[tabindex="-1"]:focus {
    outline: 0;
}

/*--------------------------------------------------------------
 # Alignments
 --------------------------------------------------------------*/

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

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

/*--------------------------------------------------------------
 # Clearings
 --------------------------------------------------------------*/

.clear:before, .clear:after, .entry-content:before, .entry-content:after, .comment-content:before, .comment-content:after, .site-header:before, .site-header:after, .site-content:before, .site-content:after, .site-footer:before, .site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after, .entry-content:after, .comment-content:after, .site-header:after, .site-content:after, .site-footer:after {
    clear: both;
}

/*--------------------------------------------------------------
 # Widgets
 --------------------------------------------------------------*/

.widget {
    margin: 0 0 1.5em;
    /* Make sure select elements fit in widgets. */
}

.widget select {
    max-width: 100%;
}

/*--------------------------------------------------------------
 # Content
 --------------------------------------------------------------*/

/*--------------------------------------------------------------
 ## Posts and pages
 --------------------------------------------------------------*/

.sticky {
    display: block;
}

.hentry {
    margin: 0 0 1.5em;
}

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

.page-content, .entry-content, .entry-summary {
    margin: 1.5em 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
 ## Comments
 --------------------------------------------------------------*/

.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/*--------------------------------------------------------------
 # Infinite scroll
 --------------------------------------------------------------*/

/* Globally hidden elements when Infinite Scroll is supported and in use. */

.infinite-scroll .posts-navigation, .infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */
    display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */

.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
 # 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 embeds and iframes fit their containers. */

embed, iframe, object {
    max-width: 100%;
}

/* 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;
}

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

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}

.banner img {
    width: 100%
}

h1, h2, h3 {
    font-weight: bold;
    font-size: 32px;
    text-transform: uppercase;
    color: #7a7a7a;
}

.news-text .title a {
    font-family: 'Montserrat', sans-serif;
    margin-top: 2px;
    margin-top: -1.1em;
}

.container h1, .container h2, .container h3 {
    margin-top: 1.3em;
    margin-bottom: 1em;
}

.green {
    color: #49814d
}

.nav-links a, .nav-links a:visited {
    color: #49814d;
    text-decoration: none
}

.button-outline {
    width: 100%;
    padding: 2em;
    text-align: center
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce div.product form.cart .button, input[type="submit"], .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    all: unset
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce div.product form.cart .button, a.button, input[type="submit"], .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    position: relative;
    /** background-color: #49814d; **/
    color: #49814d;
    ;
    font-size: 14px;
    font-weight: 800;
    font-weight: 500;
    text-transform: uppercase;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid #49814d;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
}

.woocommerce div.product form.cart .button:hover, a.button:hover, input[type="submit"]:hover, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .checkout-button:hover {
    color: #ffffff;
}

.woocommerce div.product form.cart .button::before, a.button::before, input[type="submit"]::before {
    content: '';
    position: absolute;
    left: -100px;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    transition: all 0.1s ease-in-out 0.1s;
}

.woocommerce .products ul li .small-img, .woocommerce ul.products li .small-img {
    height: 280px;
    display: inline-block;
    overflow: hidden;
}

.woocommerce div.product form.cart .button:hover, a.button:hover, input[type="submit"]:hover {
    color: #ffffff;
    transition: all 0.4s ease-in-out 0.1s;
    z-index: 2;
    position: relative;
}

.woocommerce-cart-form, .woocommerce-checkout {
    width: 100%!important
}

.checkout h2, .checkout h3 {
    font-size: 1.6em
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce div.product form.cart .button:hover::before, a.button:hover::before, input[type="submit"]:hover::before {
    left: 0px;
    background-color: #49814d;
    color: #ffffff;
    transition: all 0.1s ease-in-out 0.1s;
}

.woocommerce form .form-row label {
    line-height: 2;
    color: #161616;
    font-weight: normal;
}

.woocommerce a.button.alt {
    float: right
}

.variations tbody {
    display: flex
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: transparent;
}

#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
    color: #ffffff;
    border-radius: 10px;
    background-color: #49814d;
    padding: 1.3em;
}

#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
    border: 1em solid #49814d;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
}

.cart-collaterals h2 {
    font-size: 1.3em
}

.variations .label {
    font-size: 1.3em
}

/***
 a.button:after{
     content:'';
     position:absolute;
     background-image: url('img/button.png');
     background-repeat: no-repeat;
     width:100%;
     height:44px;
     left:10px;
     transform: translateY(-25%) rotateY(180deg);	
 }
 a.button:before{
     content:'';
     position:absolute;
     background-image: url('img/button.png');
     background-repeat: no-repeat;
     width:100%;
     height:44px;
     left:-10px;
     transform: translateY(-25%);	
 }
 
 a.button:hover::before{
     left:-5px;
 }
 a.button:hover::after{
     left:5px;
 }
 **/

.page-frag {
    margin-top: 30px;
}

.page-frag a.butto {
    text-align: center;
    margin: 0 auto
}

a:hover {
    text-decoration: none;
}

.search-panel {
    width: 100%;
    height: 400px;
    display: block;
    background-image: url('img/back-search.jpg');
    background-size: cover;
    background-position: center center;
    padding: 50px;
}

.search-panel h3, .searchbox h3 {
   
    font-size: 40px;
    font-weight: 700;
    color: white!important;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0px;
    margin-top: 0px;
    /**  text-shadow: 2px 6px 11px #2a2a2a; **/
}

.search-panel input[type="text"], .searchbox input[type="text"] {
    height: 50px;
    width: 90%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 0;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    padding-left: 20px;
    font-size: 20px;
    outline: none;
    display: inline;
    float: left;
    color: #ffffff;
}

.search-panel input[type="text"]:after, .searchbox input[type="text"]:after {
    content: '';
    position: absolute;
    border-left: 1px solid #ffffff;
    height: 20px;
}

.input-group {
    padding-top: 1em;
    position: relative;
    width: 80%;
}

.search-panel .input-group {
    padding-top: 1em;
    position: relative;
    width: 100%;
    margin-left: 0px;
}

#searchsubmit {
    height: 50px;
    background-color: rgba(255, 255, 255, 0.5);
    width: 10%;
    border: 0;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    top: 0;
    display: inline;
    outline: none;
    position: relative;
    float: left;
}

.search-panel #searchsubmit:after, .searchbox #searchsubmit:after {
    content: '';
    background: url('img/lupa.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    height: 20px;
    width: 20px;
    margin: 0 auto;
    transform: translate(-50%, -50%)
}

.banner-thin {
    background-position: center center!important;
}

footer {
    background-color: #000000;
    background-image: url('../../../bigsearch.jpg');
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto;
    position: relative;
    width: 100%;
    margin-top: 4em;
    background-size: cover;
}

.page-template-page-onas footer, .single-product footer {
    margin-top: 0;
}

footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px
}

footer li a {
    color: #ffffff!important;
}

footer li a:visited {
    color: #ffffff!important;
}

footer li a:hover, footer li a:focus, footer li a:active {
    color: #ffffff!important;
}

footer li a:focus {
    color: #ffffff!important;
}

#primary {
    margin-top: 5em;
}

.news-block {
    text-align: justify
}

.multi .news-text {
    padding-left: 20px;
    padding-right: 20px
}

.search-panel #searchsubmit:before {
    content: '';
    border-left: 1px solid #f1f1f1;
    position: absolute;
    height: 70%;
    width: 20px;
    margin: 0 auto;
    transform: translate(-120%, -50%)
}

.in-stock {
    display: none
}

.recent-post span {
    overflow: hidden;
}

.recent-post img {
    transition: 0.33s
}

.recent-post img:hover {
    transform: rotate(-3deg) scale(1.3);
}

.front-loop-post {
    margin-bottom: 3em;
}

.slogan {
    position: absolute;
    left: 50%;
    top: calc(50% + 4em);
    transform: translate(-50%, -50%);
    margin: 0 auto;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
   
}

.slogan img {
    width: 150px;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    visibility: hidden;
}

.page-slogan {
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-align: center;
    font-size: 2.7em
}

.page-slogan small {
    color: #ffffff;
    display: block;
    padding-bottom: 0.7em;
    letter-spacing: 3px
}

.rooler {
    margin: 0 auto;
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 99%;
    border: 2px solid rgba(255, 255, 255, 0.8)
}

.rooler-inside {
    width: 17px;
    height: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    margin: 0 auto;
    margin-top: 13px
}

.ball {
    width: 7px;
    height: 12px;
    border-radius: 20px;
    margin-left: 3px;
    margin-top: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    animation-name: example;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes example {
    0% {
        background-color: rgba(255, 255, 255, 0.9);
        margin-top: 5px;
    }
    50% {
        background-color: rgba(255, 255, 255, 0.2);
        margin-top: 20px
    }
    100% {
        background-color: rgba(255, 255, 255, 0.9);
        margin-top: 5px;
    }
}

@keyframes blur {
    0% {
        filter: blur(0px)
    }
    15% {
        filter: blur(2px)
    }
    30% {
        filter: blur(4px)
    }
    45% {
        filter: blur(2px)
    }
    100% {
        filter: blur(0px)
    }
}

.hamburger {
    display: inline;
    float: left;
    margin-right: 15px;
    margin-top: 1px
}

.hamburger div {
    width: 25px;
    height: 4px;
    background-color: #ffffff;
    margin: 4px 0;
}

nav {
    position: absolute;
    color: #ffffff;
    top: 40px;
    z-index: 99
}

.main-navigation {
    width: 70%;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%)
}

.main-navigation ul li {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: normal!important;
}

.main-navigation ul li a {
    color: #ffffff
}

.column-two {
    float: right
}

.logo-w {
    display: inline;
    float: left;
}

.logo-w img {
    width: 100px;
}

.single .main-navigation, {
    line-height: 100px
}

#page-shop nav {
    position: absolute;
    color: #ffffff;
    top: 50px;
    z-index: 99;
    line-height: 1em
}

#page-shop .main-navigation {
    width: 70%;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%)
}

#page-shop .main-navigation ul {
    margin-top: 4px
}

#page-shop .main-navigation ul li {
    padding-left: 10px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    position: relative;
}

#page-shop .main-navigation ul li a {
    color: #ffffff;
    font-weight: normal
}

#page-shop .hamburger div {
    background-color: #ffffff;
}

.front-loop-post .news-foto, .front-loop-post .news-text {
    width: 50%;
    display: inline-block;
    float: left;
}

.front-loop-post .news-foto img {
    width: 100%;
}

.title a {
    display: block;
    position: relative;
    color: #49814d;
    font-size: 25px;
    margin-left: 1rem;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
}

.meta {
    margin-top: 2em;
}

.meta ul {
    margin-left: 1rem;
    padding-left: 0
}

.meta ul li {
    list-style: none;
    display: inline-block;
    font-size: 14px;
    margin: 0;
    padding: 0;
    padding-right: 20px;
    text-transform: lowercase;
    text-align: justify;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.meta ul li:after {
    content: '';
    width: 7px;
    height: 7px;
    background-color: #000000;
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100%
}

/*** .meta ul li:last-child{text-transform:uppercase} **/

.meta ul li:last-child:after {
    display: none
}

.meta ul li a {
    color: inherit
}

.front-loop-post .news {
    display: block;
    clear: both;
    padding-top: 2.3em
}

.archive-loop-post .multi {
    padding-left: 10px
}

.news-body {
    margin-left: 1rem;
    margin-top: 1em
}
.page-template-page-warsztaty h1,.page-template-page-fotograficy h1,.page-template-page-umowa h1{    padding-bottom: 0.5em;
    position: relative;}
.archive h1:after,.page-template-page-fotograficy h1:after,.page-template-page-umowa h1:after, .page-template-page-store h1:after,.page-template-page-warsztaty h1:after, .page-template-page-kontakt h1:after, .page-template-page-onas h1:after {
    content: '';
    /* border: 1px solid #000; */
    border-radius: 100px;
    width: 70%;
    height: 2px;
    position: absolute;
    background-image: linear-gradient(to right, #7a7a7a, #fbffed);
    bottom: 0;
    left: 0;
    border-radius: 99%;
}

.odd>.news-foto, .odd>.news-text {
    width: 50%;
    display: inline-block;
    float: right !important;
}

.odd .meta ul {
    margin-right: 1rem;
    padding-right: 0;
    text-align: right
}

.odd .title a {
    display: block;
    position: relative;
    color: #49814d;
    font-size: 25px;
    text-align: right;
    margin-right: 1rem;
    margin-left: auto;
}

.odd .meta ul li {
    margin-right: 0;
    margin-left: 3px
}

.odd .news-body {
    margin-right: 1rem;
}

.front-loop-post .news:first-of-type {
    padding-top: 0px
}

.site-small-header {
    box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 0.1);
}

.site-small-header nav {
    position: relative;
    width: 100%;
    margin: 0;
    left: 0%;
    top: 0;
    margin-top: 2em;
    transform: translateX(0%);
    padding-bottom: 2em
}

.site-small-header .hamburger div {
    width: 25px;
    height: 4px;
    background-color: #000000;
    margin: 4px 0;
}

.site-small-header .main-navigation ul li a {
    color: #151515;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
}

#page-shop .main-navigation ul li {
    font-size: 13px!important;
}

.site-small-header .menu {
    padding-top: 30px;
}

.site-small-header .column-two .menu {
    padding-top: 0px
}

.post-navigation {
    font-size: 15px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.archive-loop-post {
    position: relative
}

.archive-loop-post .news-text {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.archive-loop-post .news-text .meta {
    padding-top: 1em;
    left: 0
}

.archive-loop-post .news-text .news-body {
    margin-left: 0px;
}

.multi {
    padding: 20px
}

.archive-loop-post img {
    position: relative;
    width: 100%
}

.archive-loop-post .meta ul {
    margin-left: 0;
    padding-left: 2em;
}

.archive-loop-post .title a {
    margin-left: 0;
    padding-left: 1.4em;
}

.breaking-strip {
    height: 80px;
    background-color: #c50000;
    width: 100%;
    position: relative;
}

@keyframes move-news {
    0% {
        left: 80%
    }
    100% {
        left: 20%
    }
}

.breaking-news {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    animation-name: move-news;
    animation-duration: 40s;
    animation-iteration-count: infinite;
}

.breaking-news ul {
    padding: 0;
    margin: 0;
    display: inline-block;
}

.breaking-news li {
    display: inline;
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
}

.breaking-news li a, .breaking-news li a:visited, .breaking-news li a:hover, .breaking-news li a:active, .breaking-news li a:focus {
    color: #ffffff
}

.breaking-news li:after {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: #ffffff;
    display: block;
    right: -5px;
    border-radius: 99%;
    top: 50%;
    transform: translateY(-50%)
}

.breaking-news li:last-of-type:after {
    display: none;
}

.products {
    margin: 0 auto;
    width: 1170px;
    margin-bottom: 10em;
    margin-top: 4em;
}

.products li:hover, .products li:focus {
    box-shadow: 6px 5px 15px 0px #d7d7d7;
    transition: 0.33s;
}

.reset_variations {
    visibility: hidden!important
}

.woocommerce .products ul, .woocommerce ul.products {
    margin: 0;
    margin-top: 2px;
}

.products li {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 0;
    position: relative;
}

.products li img {
    width: 100%;
    border: 5px solid #ffffff;
    object-position: center center;
}

.products ul li:last-of-type {}

.big-img img {
    all: unset;
    position: absolute;
    opacity: 0;
    z-index: 1000;
    transition: 0.4s;
    top: -10px;
    height: 10px!important;
    left: 0px;
    border: 0px!important
}

.zoomed img {
    opacity: 1;
    left: 0px;
    height: 600px!important;
    width: auto!important
}

.products ul li:last-of-type .zoomed img {
    opacity: 1;
    left: -100%;
    height: 600px!important;
    width: auto!important
}

.woocommerce div.product form.cart .variations label {
    color: #000000
}

/**
 .woocommerce div.product form.cart .variations select {
     visibility: hidden!important
 }
 **/

.author a {
    text-decoration: underline
}

.woocommerce div.product form.cart .variations label {
    color: #77a464;
}

.woocommerce-MyAccount-navigation {
    all: unset
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
    padding-top: 1em;
}

.product.has-default-attributes.has-children>.images {
    opacity: 1;
}

.option {
    padding: 1em;
    width: 400px;
}

.option:hover {
    background-color: #f1f1f1;
    border-bottom: 1px solid #dfdfdf;
}

.option label {
    margin-left: 1em;
    margin-right: 1em
}

.myrow {
    margin: 0 auto;
    text-align: center;
}

.w25 {
    width: calc(25% - 5px)
}

.w12 {
    width: calc(15% - 5px)
}

.abs {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

.stripe {
    position: absolute;
    width: 100%;
    bottom: 0px;
    position: absolute;
    width: 100%;
    background-color: rgba(165, 176, 166, 0.64);
    bottom: 0px;
    padding-left: 5px;
    padding-right: 5px;
    margin: 0 auto;
    left: 0px;
    opacity: 0;
    transition: 0.33s;
    padding: 10px;
    display: block;
    height: 100%;
}

li:hover .stripe, li:focus .stripe, li:active .stripe {
    opacity: 1;
    bottom: 0;
}

.strip-title {
    display: block;
    position: absolute;
    top: 0;
    width: calc(100% - 10px);
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.6);
    line-height: 2em;
    left: 5px;
    padding: 5px;
}

.inner-stripe {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 10px;
}

.inner-stripe .icon {
    all: unset;
    width: 60px;
    height: 20px;
    display: inline-block;
    position: relative;
    display: inline-block;
    padding: 10px;
    text-align: center;
    margin: 0 auto;
    color: #ffffff;
}

.inner-stripe .icon .fas, .inner-stripe .icon .far {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

.inner-stripe .icon:hover {
    color: #ffffff;
    transition: 0.33s;
}

.header-shop {
    height: 400px;
    width: 100%;
    display: block;
    position: relative;
    background-image: url('../../../searchbg.jpg');
    background-size: cover;
    background-position: center center;
}

.searchbox {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    width: 100%;
}

.prod {
    width: 33%
}

.imgx {
    position: relative;
    padding: 20px;
    transition: all 0.1s ease-in-out;
}

nav li>a {
    position: relative;
    color: #49814d;
    background: 0 0;
}

nav li>a {
    position: relative;
    padding: 8px 16px;
}

nav a span {
    transform: scale3d(1, 1, 1);
}

nav li>a:hover, nav li.current_page_item {
    background: 0 0;
}

nav li>a span, nav li>span span {
    position: absolute;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    border: 0 solid transparent;
    background-color: transparent;
    pointer-events: none;
    transition: .33s;
    transform: scale3d(1.35, 1.35, 1.35);
}

.inner-stripe .icon>span {
    position: absolute;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    border: 0 solid transparent;
    background-color: transparent;
    pointer-events: none;
    transition: .33s;
    transform: scale3d(1.35, 1.35, 1.35);
}

.inner-stripe .icon:hover>span {
    border-color: #ffffff;
    transform: scale3d(1, 1, 1);
}

.inner-stripe .icon>span:nth-child(1) {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px;
}

.inner-stripe .icon>span:nth-child(2) {
    top: 0;
    right: 0;
    border-width: 2px 2px 0 0;
    ;
}

.inner-stripe .icon>span:nth-child(3) {
    bottom: 0;
    right: 0;
    border-width: 0px 2px 2px 0;
}

.w12 .abs>a {
    display: block
}

.inner-stripe .icon>span:nth-child(4) {
    bottom: 0;
    left: 0;
    border-width: 0px 0px 2px 2px;
}

nav li>a:hover span, #primary-menu span:hover>span {
    border-color: #49814d;
    transform: scale3d(1, 1, 1);
}

nav li>a span:nth-child(1), nav li>span span:nth-child(1) {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px;
}

nav li>a span:nth-child(2), nav li>span span:nth-child(2) {
    top: 0;
    right: 0;
    border-width: 2px 2px 0 0;
}

nav li>a span:nth-child(3), nav li>span span:nth-child(3) {
    bottom: 0;
    right: 0;
    border-width: 0px 2px 2px 0;
}

nav li>a span:nth-child(4), nav li>span span:nth-child(4) {
    bottom: 0;
    left: 0;
    border-width: 0px 0px 2px 2px;
}

.site-small-header a span:nth-child(1) {
    border-width: 1px 0 0 1px;
}

.site-small-header a span:nth-child(2) {
    border-width: 1px 1px 0 0;
}

.site-small-header a span:nth-child(3) {
    border-width: 0px 1px 1px 0;
}

.site-small-header a span:nth-child(4) {
    border-width: 0px 0px 1px 1px;
}

.site-small-header li>span span:nth-child(1) {
    border-width: 1px 0 0 1px;
}

.site-small-header li>span span:nth-child(2) {
    border-width: 1px 1px 0 0;
}

.site-small-header li>span span:nth-child(3) {
    border-width: 0px 1px 1px 0;
}

.site-small-header li>span span:nth-child(4) {
    border-width: 0px 0px 1px 1px;
}

.imgx:hover::before {
    width: 120px;
    height: 120px;
    border-width: 2px 0 0 2px;
}

.imgx:hover::after {
    width: 120px;
    height: 120px;
    border-width: 0px 2px 2px 0px;
}

.imgx::before, .imgx::after {
    content: '';
    position: absolute;
    border: 2px solid #49814d;
    width: 80px;
    transition: .33s;
    height: 80px;
    pointer-events: none;
}

.imgx::before {
    top: 0;
    transition: .33s;
    left: 0;
    border-width: 1px 0 0 1px;
}

.imgx::after {
    bottom: 0;
    right: 0;
    transition: .33s;
    border-width: 0 1px 1px 0;
}

.recent-category a, .recent-title a, .small {
    color: #848485;
}

.site-small-header .main-navigation ul li>span {
    color: #000!important
}

.about-image {
    padding-top: 2em
}

.about-image img {
    margin-bottom: 2em
}

.recent-title {
    text-align: left;
}

.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
    margin-top: 2em;
}

.nav-previous:before {
    content: '<<';
    margin-right: 10px;
    color: #49814d;
    height: 100%;
}

.nav-next:after {
    content: '>>';
    margin-left: 10px;
    color: #49814d;
    height: 100%;
}

.woocommerce .quantity .qty {
    width: 100px;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    font-weight: 500;
    text-transform: uppercase;
    padding: 15px;
    margin-top: 10px;
}

.single .meta {
    margin-top: 0.1em;
}

.not-single .title a {
    padding-top: 1em;
}

.not-single .meta {
    padding-top: 0em;
    margin: 0;
}

.single .title {
    text-transform: uppercase;
}

.single .news-text {
    all: unset;
    top: 10px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.single .news-body {}

.single .news-text .news-body {
    background: unset;
    margin-bottom: 2em;
}

.single-title {
    padding-left: 20px
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.overlay-black {
    background: rgba(0, 0, 0, 0.7);
}

.overlay-green {
    background: rgba(0, 0, 0, 0.3);
}

/***
 .page-title {
    position: absolute;
    left: 50%;
    text-transform: uppercase;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 5em;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 2px 6px 11px #000000;
 }
 ***/

.page-title {
    position: relative;
    text-transform: uppercase;
    font-size: 2em;
    font-weight: 600;
    color: #7a7a7a;
}
.page-title a{   color: #7a7a7a;}

.p2em {
    margin-top: 2em;
    margin-bottom: 2em
}

.flex {
    display: flex
}

.side {
    width: 50%
}

.w30 {
    width: 30%;
}

.w70 {
    width: 70%
}

form:not(#searchform) input[type='password'], form:not(#searchform) input[type='tel'], form:not(#searchform) input[type='text'], form:not(#searchform) input[type='email'], form:not(#searchform) textarea {
    display: block;
    width: 100%;
    min-height: 44px;
    padding: 9px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    font-weight: normal;
    background-color: transparent;
    background-image: none;
    border-radius: 0;
    -webkit-appearance: none;
    transition: .3s ease-in-out;
    border: 0;
    padding-left: 1px;
    border-bottom: 1px solid #d5d3d3;
    transition: all 0.3s ease-in-out;
    outline: none;
    color: #ababab;
}

form:not(#searchform) textarea {
    height: 120px;
}

form:not(#searchform) input::-webkit-input-placeholder, orm:not(#searchform) textarea::-webkit-input-placeholder {
    color: #49814d;
}

form:not(#searchform) input::-moz-placeholder, orm:not(#searchform) textarea::-moz-placeholder {
    color: #49814d;
}

form:not(#searchform) input::-ms-input-placeholder, form:not(#searchform) textarea::-ms-input-placeholder {
    color: #49814d;
}

form:not(#searchform) input:focus::-webkit-input-placeholder, form:not(#searchform) textarea:focus::-webkit-input-placeholder {
    opacity: 0;
    color: #49814d;
    transition: all 0.3s ease-in-out;
}

form:not(#searchform) input:focus::-webkit-input-placeholder, form:not(#searchform) textarea:focus::-webkit-input-placeholder {
    opacity: 0;
    color: #49814d;
    transition: all 0.3s ease-in-out;
}

form:not(#searchform) input:focus::-moz-placeholder, form:not(#searchform) textarea:focus::-moz-placeholder {
    opacity: 0;
    color: #49814d;
    transition: all 0.3s ease-in-out;
}

form:not(#searchform) input:focus:-ms-input-placeholder, form:not(#searchform) textarea:focus:-ms-input-placeholder {
    opacity: 0;
    color: #49814d;
    transition: all 0.3s ease-in-out;
}

form:not(#searchform) input:focus:-moz-placeholder, form:not(#searchform) textarea:focus:-moz-placeholder {
    opacity: 0;
    color: #49814d;
    transition: all 0.3s ease-in-out;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #000000;
    text-transform: capitalize;
    font-weight: normal;
    transition: all 0.3s ease-in-out;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #000000;
    text-transform: capitalize;
    font-weight: normal;
    transition: all 0.3s ease-in-out;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #000000;
    text-transform: capitalize;
    font-weight: normal;
    transition: all 0.3s ease-in-out;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #000000;
    text-transform: capitalize;
    font-weight: normal;
    transition: all 0.3s ease-in-out;
}

.archive h1 {
    padding-left: 0;
    margin-left: 0
}

.search-panel :-moz-placeholder, .search-panel> :-ms-input-placeholder, .search-panel input> ::-webkit-input-placeholder, .search-panel input> ::-webkit-input-placeholder {
    color: #ffffff
}

.center {
    margin: 0 auto;
    text-align: center;
}

.heading {
    padding-bottom: 1em;
    font-weight: bold;
    font-size: 1.2em;
    text-transform: uppercase;
    top: 0;
    left: 0;
    font-family: 'Source Sans Pro', sans-serif;
}

.zajawka {
    position: relative;
    margin-bottom: 2em;
    color: #636363;
}

em {
    margin-top: 2em;
    position: relative;
    color: #616161;
    line-height: 1.8em;
    font-weight: 300;
    font-style: italic;
    display: block;
    margin-bottom: 4em;
    text-align: justify;
}

em:after {
    content: '';
    width: 60%;
    height: 1px;
    background-color: #404040;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.zajawka:after {
    content: '';
    position: absolute;
    bottom: -1.3em;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
}

form:not(#searchform) {
    padding: 40px;
    width: 70%;
}

.justify {
    text-align: justify
}

.onas-form form {
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

.onas-form .heading {
    color: #000000
}

.onas-form input {
    color: #000000;
    border-bottom: 1px solid #000000;
}

.onas-form input[type='submit'] {
    color: #000000;
    border: 1px solid #000000
}

.onas-form form input::-webkit-input-placeholder, .onas-form form textarea::-webkit-input-placeholder {
    color: #000000;
}

.onas-form form input::-moz-placeholder, .onas-form form textarea::-moz-placeholder {
    color: #000000;
}

.onas-form form input:-ms-input-placeholder, .onas-form form textarea:-ms-input-placeholder {
    color: #000000;
}

.onas-form form input:-moz-placeholder, .onas-form form textarea:-moz-placeholder {
    color: #000000;
}

.woocommerce div.product div.images img {
    display: block;
    width: auto;
    max-height: 500px;
    margin: 0 auto;
    box-shadow: none;
}

.reset_variations {
    display: none
}

.onas-form label {
    color: #7b7878;
}

.onas-form input {
    color: #7b7878;
}

#s::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
    text-transform: lowercase;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 200;
}

#s::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
    text-transform: lowercase;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 200;
}

#s:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
    text-transform: lowercase;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 200;
}

#s:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
}

.onas-form form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
    text-transform: lowercase;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 200;
}

.onas-form form textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
    text-transform: lowercase;
    font-family: "'Domine'", sans-serif;
    font-size: 15px;
    font-weight: normal;
}

.onas-form input, .onas-form textarea {
    color: #ffffff!important;
}

.onas-form input[type="submit"] {
    color: #ffffff;
    border-color: #ffffff
}

.woocommerce input {
    color: #161616;
    font-weight: normal;
}

.woocommerce .products .grid {
    margin: 0;
    margin-top: 2px;
    display: grid;
    grid-gap: 1em;
    /* grid-column: 3; */
    grid-auto-rows: min-content;
    grid-auto-flow: row;
    grid-auto-rows: 200px;
    column-gap: 1em;
    /* grid-auto-flow: row dense; */
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.woocommerce-MyAccount-content form {
    width: 100%!important
}

.woocommerce nav.woocommerce-pagination ul {
    border: 1px solid #49814d;
}

.woocommerce nav.woocommerce-pagination ul li {
    border-right: 1px solid #49814d;
}

nav.woocommerce-pagination {
    position: relative;
    top: 0;
    color: #000000;
    margin-bottom: 50px;
}

.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
    color: #000000;
}

.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover {
    background: #8cab8e;
    color: #ffffff
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #49814d;
    color: #ffffff
}

.overlay-green2 {
    background: rgba(13, 87, 74, 0.79);
    opacity: 1!important;
    width: 100%!important;
    height: 100%!important
}

.onas-form form {
    background-color: rgba(23, 23, 23, 0.6)
}

.onas-form input[type="submit"]:hover {
    background: #f1f1f1;
    color: #000000!important
}

.contact-page form {
    width: 100%!important
}

.always-visible {
    opacity: 1!important;
}

.page-template-default .front-loop-post h3 {
    margin-top: 2em
}

.front-loop-post .news {
    margin-top: 2em;
    display: inline-block
}

#menu-fixed {
    position: fixed;
    z-index: 1000;
    width: 100%;
    display: block;
    top: 0;
    background-color: #ffffff;
    display: none;
}

#menu-fixed nav {
    padding-bottom: 1em;
    margin-top: 1em
}



.woocommerce div.product div.summary {
    background-color: #f4f4f4;
    padding: 4em;
    margin-top: 0em;
    margin-bottom: 0em;
}

.single-product #primary {
    margin-top: 0em
}

.single-product form {
    box-shadow: none!important;
    padding: 0!important
}

ul.product_tags {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    display: inline-block;
}

ul.product_tags li {
    margin-left: 0;
    padding-left: 0;
    display: inline-block;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    clear: both;
}

.woocommerce div.product .product_title {
    margin-bottom: 7px
}

.price:before {
    content: 'Cena:';
    margin-right: 10px;
}

.daty {
    color: #77a464;
    font-size: 1em;
    margin-bottom: 2em
}

.start-date:before {
    content: 'Od:';
    margin-right: 10px;
}

.end-date:before {
    content: 'do:';
    margin-right: 10px;
    margin-left: 10px;
}

.daycount:before {
    content: 'Ilość dni:';
    margin-left: 10px;
}

.price {
    margin-bottom: 0.5em;
}

.product-desc {
    text-align: justify;
    margin-right: 4em
}

.warsztaty-subtitle {
    margin-top: -0.7em;
    margin-bottom: 1.4em;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.variation-radios {
    margin-top: -2.2em;
}

section {
    width: 100%;
}

#main .product {
    display: flex;
    flex-wrap: wrap;
}

#main .product>div {
    width: 50%
}

.page-template footer {
    margin-top: 0
}

.page-template .p2em {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 2em;
    padding-right: 2em;
    text-align: justify;
    padding-bottom: 6em;
}

.page-template-page-warsztaty p:first-of-type {
    font-weight: bold
}

.woocommerce-cart form {
    box-shadow: none!important;
    padding: 0px!important
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    width: 100%;
}

.woocommerce table.shop_table {
    border-radius: 0px;
}

.woocommerce .woocommerce-customer-details address {
    border-radius: 0;
}

.woocommerce .page-template .p2em {
    background-color: #f4f4f4;
}

.woocommerce-Address-title h3 {
    font-size: 1em;
}

.woocommerce-Address-title .edit {
    font-size: 1em
}

.woocommerce-account em, .woocommerce-account em:after {
    all: unset
}

.woocommerce-account form input[type='text'], .woocommerce-account form input[type='email'], .woocommerce-account form input[type='password'] {
    padding-left: 0px!important
}

legend {
    all: unset;
    font-size: 1.2em;
    padding-top: 1em;
    font-weight: bold
}

fieldset {
    all: unset;
}

#add_payment_method table.cart img, .woocommerce-cart table.cart img, .woocommerce-checkout table.cart img {
    width: 300px
}

ul.sub-menu {
    all: unset;
    background: #fff!important;
    position: absolute;
    left: 0;
    z-index: 5;
    display: block;
    transition: 0.33s!important;
}

.sub-menu>li>a {
    all: unset;
    cursor: pointer;
    clear: both;
    padding: 25px 30px!important;
    float: none!important;
    display: block!important;
    font-weight: normal;
    transition: 0.33s!important;
    color: #151515!important;
}

.main-navigation ul li>span {
    position: relative;
    display: block;
    padding: 8px 16px;
}

footer ul.sub-menu {
    all: unset;
    display: block;
}

footer .sub-menu>li>a {
    all: unset
}

.page-template-page-kontakt .contact-page {
    padding-top: 0em!important;
}

h2.widget-title, h3.widget-title {
    font-size: 22px;
    font-weight: 600
}

.wooc_sclist {
    color: #727272
}
.wooc_sclist a,.wooc_sclist a:visited{
    color: #727272
}
.fa-facebook-f {
    color: #0d574a;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    font-size: 30px;
    line-height: 50px;
    border-radius: 99%;
}

.p2em h1, .p2em h2, .p2em h3, .archive h1 {
    margin-top: 2em
}

.page-template-page-kontakt .p2em {
    padding-bottom: 0em
}

.flex .contact-page {
    margin-bottom: 6em
}

ul.contact {
    margin: 0;
    padding: 0
}

.contact-page form {
    padding-right: 0px!important;
}

.contact-page input[type='submit'] {
    float: right;
    border-width: 2px;
    font-weight: bold
}

.archive-loop-post h1 {
    text-transform: none;
    font-weight: 900;
    font-size: 32px;
    margin-top: 1.3em;
    margin-bottom: 1em;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    text-transform: none;
}

h1.page-title {
    text-transform: uppercase
}

.warsztaty-recent h2, .warsztaty-recent-prod h3 {
    text-transform: none;
    font-size: 1.7em
}

.archive h1, .page-template-page-store h1, .page-template-page-kontakt h1, .page-template-page-onas h1 {
    /** border-bottom: 2px solid #0d574a; **/
    padding-bottom: 0.5em;
    position: relative
}

.p2em h2 {
    font-size: 1.7em;
}

.single .widget-title {
    margin-top: 2.5em;
    margin-bottom: 2em!important;
    text-transform: none
}

.shop::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.shop::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f07a";
    left: -5px;
    position: absolute;
    top: 5px;
}

.shop::before, #menu-fixed .shop::before {
    color: #0d574a!important;
}

.home .shop::before, .archive.woocommerce .shop::before, .single-product .shop::before {
    top: 7px;
    color: #ffffff!important;
}

nav li.shop>a span:nth-child(1), nav li.shop>span span:nth-child(1), nav li.shop>a span:nth-child(4), nav li.shop>span span:nth-child(4) {
    left: -20px;
}

.warszt-button {
    position: relative;
    background-color: #ffffff;
    line-height: 36px;
    text-align: center;
    height: 36px;
    text-align: center;
    width: 130px;
    margin-top: 1em;
    display: block
}

.warszt-button:after {
    content: '>';
    position: relative;
    display: inline-block;
    right: -36px;
    background-color: #cfdae0;
    width: 36px;
    height: 36px;
    position: absolute;
}

.slogan-container {
    width: 60%;
    margin: 0 auto;
    color: #ffffff
}

.subsearch {
    width: 60%;
    margin: 0 auto
}

footer a {
    color: #ffffff
}

.image img {
    object-fit: cover;
    object-position: center
}

.modalx #author a {
    margin-left: 10px;
}

.woocommerce-MyAccount-navigation ul {
    margin: 0px;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 17px;
    color: #ffffff;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(237, 237, 237, 0.27);
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 1em;
}

.p20 {
    padding-top: 3em;
    padding-bottom: 1em
}

footer .img {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    text-align: center
}

footer .img span {
    color: #ffffff;
    display: block;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 4px
}

footer .row, footer .col-md-2, footer .col-md-7 {
    position: relative
}

footer .kontakt {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px
}

footer .kontakt i {
    margin-right: 15px
}

.mobile-menu {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    height: 100%;
    position: fixed;
    display: block;
    background: #49814d;
    z-index: 1000;
    top: 0;
    display: none
}

.shop::before {
    display: none
}

.menu-box ul.sub-menu, .menu-box ul.sub-menu ul {
    all: unset
}

.mobile-menu img {
    width: 120px;
    text-align: center;
    margin: 0 auto;
}

.menu-box {
    text-align: center;
    margin: 0 auto;
    ;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.menu-box ul {
    margin: 0;
    margin-top: 1em;
    color: #ffffff;
    padding: 0
}

.menu-box ul li {
    list-style: none;
    width: 100%
}

.menu-box ul.sub-menu {
    background-color: transparent!important;
    ;
    position: relative
}

.menu-box .sub-menu li a {
    font-size: 0.8em;
    font-weight: 600;
    color: #ffffff!important;
    padding: 0.4em!important
}

#close-menu {
    position: absolute;
    top: 1em;
    right: 1em;
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    line-height: 25px;
    font-weight: bold;
    padding-left: 1px;
    border: 3px solid #ffffff;
    border-radius: 99%;
    width: 30px;
    height: 30px;
    z-index: 99
}

.mobile {
    justify-content: space-between;
    align-items: center;
    padding: 2em;
    display: none
}

.mobile .logo img {
    height: 120px
}

.mobile .menu .fas {
    font-size: 2em
}

.mobile .menu div {
    text-align: center
}

.home .mobile, .mobile.abso {
    position: absolute;
    z-index: 19;
    width: 100%;
}

.user img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    object-position: center center;
    border-radius: 99%;
    text-align: center;
    margin: 0 auto;
}

.user {
    width: 33%;
    text-align: center
}

.author {
    text-align: center;
    font-weight: bold;
    margin-top: 1em
}

.bio {
    margin-top: 1em;
    font-style: italic
}



@media (max-width: 800px) {
    #site-navigation {
        display: none!important;
    }
    .user {
        width: 50%;
    }
    .no-mobile {
        display: none
    }
    .mobile {
        display: flex
    }
    .fab.fa-facebook-f {
        margin-top: 1em;
        width: 40px;
        height: 40px;
        font-size: 20px;
        line-height: 40px;
    }
    footer .kontakt div {
        margin-top: 0.8em
    }
    .footer-title {
        margin-top: 1em;
        margin-bottom: 2em;
    }
    .products {
        width: 100%;
        padding-left: 10px;
        padding-right: 15px
    }
    .woocommerce .products .grid {
        grid-template-columns: 49% 49%;
    }
    .search-panel #searchsubmit:before {
        width: 30px
    }
    .search-panel #searchsubmit:after, .searchbox #searchsubmit:after {
        transform: translate(-90%, -50%);
    }
    .slogan-container {
        width: 100%
    }
    .page-slogan {
        font-size: 2em
    }
    .front-loop-post .news-foto, .front-loop-post .news-text {
        width: 100%
    }
    .news-body, .meta ul, .news-text .title a, .odd .meta ul {
        margin-left: 0px
    }
    .odd .meta ul, .odd .title a {
        text-align: left
    }
    .stripe {
        opacity: 1;
        background-color: transparent;
    }
    footer {
        text-align: center
    }
    footer .img {
        margin-top: 10%
    }
    .inner-stripe .icon {
        width: 20px;
        color: #ffffff
    }
    .inner-stripe .icon .fas, .inner-stripe .icon .far {
        color: #ffffff
    }
    #main .product>div {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .subsearch {
        width: 100%;
        margin: 0 auto;
        text-align: center
    }
    .input-group {
        width: 90%;
        margin: 0 auto
    }
    form:not(#searchform) {
        padding: 5px
    }
    .search-button {
        height: 100%!important;
    }
    .wooc_sclist {
        column-count: 3
    }
    .woocommerce #content table.cart td.actions .button, .woocommerce table.cart td.actions .button, .woocommerce-page #content table.cart td.actions .button, .woocommerce-page table.cart td.actions .button {
        width: 90%
    }
    .column-two {
        float: none
    }
    .main-navigation {
        left: 0!important;
        transform: none!important;
        width: 100%!important;
    }
    .main-navigation ul {
        display: flex!important;
        justify-content: center!important;
    }
    .main-navigation ul li {
        padding-left: 0px!important;
        font-size: 11px!important;
    }
    nav {
        top: 10px!important
    }
    .archive-loop-post {
        width: 100%!important
    }
    .page-template-page-onas .w30 {
        display: none
    }
    .page-template-page-onas .w70 {
        width: 100%;
        padding-right: 15%
    }
    .logo-w {
        display: inline;
        float: none;
        margin: 0 auto;
        text-align: center;
    }
    .logo-w img {
        width: 70px;
    }
    .site-small-header nav {
        margin-top: 1em;
        margin-bottom: 1em
    }
    .flex.contact-page {
        flex-wrap: wrap
    }
    .flex.contact-page .side {
        width: 100%
    }
    .sub-menu {
        display: block!important;
    }
    footer .img {
        margin-top: 10px!important;
        margin-left: 50%;
        transform: translate(-50%, -10px)!important;
    }
    footer .img img {
        max-width: 100px;
    }
    .multi {
        padding-top: 0px
    }
    .slogan img {
        width: 130px
    }
    .search-panel {
        height: 300px;
        background-size: cover;
        background-position: left center;
        padding: 50px;
        padding-left: 10px;
    }
    #menu-fixed {
        display: none!important;
    }
    footer ul {
        padding: 0.4em;
    }
}

@media (max-width:1024px) {
    .main-navigation{width:90%}
 
    .image img{    height: 90vh!important;}
    .woocommerce .products .grid{    grid-template-columns: 1fr 1fr 1fr;padding-left:15px;padding-right:15px}
}
@media (max-width:1366px) {   #page-shop .main-navigation{width:100%}}
@media (max-width:768px) {  .container{    padding-left: 15px!important;} .woocommerce .products .grid {grid-template-columns: 1fr 1fr; }   .search-button ul{display: flex;flex-wrap: wrap}
#author img{   display:none!important;}
    .modalx #author a{font-size:12px}
    .image img {
        height: 80vh!important;
    }

.page-template-page-warsztaty .col-md-8:after{
border-right:0px;
}

}
@media (min-width: 768px){


    .grid {
    width: 750px;

}
}

@media (min-width: 992px){
    .grid {
        width: 970px;
    }
}
@media (min-width: 1200px){
    .grid {
        width: 1170px;
    }
    }
ol ol li{
	    list-style-type: lower-alpha;
}
.product-template-default .author{
    text-align: left;
   
    margin-top: 0;
}

li.strong  a{font-weight: bold!important}

.cw_custom_class .input-checkbox {
    position:relative!important;

}
#alo_em_privacy_agree{margin-right:10px}
.page-template-page-fotograficy .flex{flex-wrap: wrap}

.woocommerce form .form-row .input-checkbox {
    width: 20px;
}

.woocommerce form .form-row label.checkbox, .woocommerce-page form .form-row label.checkbox {
    display: flex;
    flex-direction: row;
    text-align: left;
    align-items: center;
}
 label > span{margin-left:20px}

 .recent-post .small{position:relative!important}