/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
  }
body {
    margin: 0;
  }
main {
    display: block;
  }
h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
  }
pre {
    font-family: monospace, monospace;
    font-size: 1em;
  }
a {
    background-color: transparent;
  }
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
  }
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;
  }
img {
    border-style: none;
  }
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;
  }
[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;
  }
details {
    display: block;
  }
summary {
    display: list-item;
  }
template {
    display: none;
  }
[hidden] {
    display: none;
  }
/*** /NORMALIZE***/

* {
    box-sizing: border-box;
}

body {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    /*min-height: -webkit-fill-available;*/
}

a {
    color: #000000;
    text-decoration: none;
}

p {
    font-size: 16px;
    line-height: 27px;
    margin: 16px 0 26px;
}

.container {
    width: 100%;
    max-width: 1398px;
    padding: 0 16px;
    margin: 0 auto;
}

/************ HEADER *************/

header {
    width: 100%;
    height: 150px;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 1;
}

.header-main {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

.header-logo {
    font-size: 0;
    flex-basis: 155px;
}

.header-logo a {
    display:block;
    width: 155px;
    height: 106px;
    background-image: url('img/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

nav {
    flex-grow: 1;
    flex-shrink: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 52px;
    padding: 0 8px 0 16px;
}

nav a {
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.2s ease-in-out;
    padding: 10px 0;
}

nav a.active {
    color: #E5AD4D;
}

nav a:hover {
    color: #E5AD4D;
}

.show-s {
    display: none;
}

.header-buttons {
    flex: 0 0 300px;
    background: linear-gradient(0deg, #252525, #252525), #C4C4C4;
    position: relative;
    display: flex;
    justify-content: space-around;
    height: 100%;
    align-items: center;
    padding: 10px;
    /*column-gap: 10px;*/
}

.header-buttons.empty {
    visibility: hidden;
}

.header-buttons .button-h {
    font-weight: 500;
    font-size: 12px;/*12px*/
    line-height: 15px;
    text-align: center;
    color: #FFFFFF;
    width: 109px;
    background-image:
        url('img/honey-s-left.svg'),
        url('img/honey-s-right.svg');
    background-position:
        top left,
        bottom right;
    background-repeat: no-repeat;
    background-size: 27px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 8px;
    transition: background 0.3s ease-in-out;
}

.header-buttons .button-h:hover {
    background-image:
        url('img/honey-s-bold-left.svg'),
        url('img/honey-s-bold-right.svg');
}

.header-buttons .button-r {
    position: absolute;
    left: 6px;
    bottom: 0;
    transform: translateY(90%);
    color: #000000;
    background: #E5AD4D;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    width: 142px;
    height: 71px;
    border-bottom-left-radius: 142px;
    border-bottom-right-radius: 142px;
    border: 1px solid #e9ba47;
    padding: 26px 25px 0;
    z-index: -2;
    transition: all 0.3s ease-in-out;
}

.show-cart.header-buttons .button-r.button-r-left {
    padding: 18px 25px 0;
}

.cart {
    display: none;
    position: absolute;
    left: 6px;
    bottom: -55px;
    width: 142px;
    /*background-image: url('img/cart.svg');*/
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 24px;
    line-height: 24px;
    font-weight: bold;
    text-align: center;
}

.cart::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url('img/cart.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: all .3s ease-in-out;
  }

.cart:hover::before {
    /*height: 30px;
    line-height: 30px;
    bottom: -58px;*/
    
    transform: rotate(-10deg);
}

.show-cart .cart {
    display: block;
}

.show-cart #cart-products {
    color: #fff;
}

.header-buttons .button-r-right {
    right: 6px;
    left: auto;
    padding: 17px 25px 0;
}

.header-buttons .button-r:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    z-index: -1;
}

#expander {
    display: none;
}

/********** ISKALNIK **************/

.magnify {
    width: 29px;
    height: 32px;
    font-size: 0;
    background-image: url('img/magnify.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: background-image 0.2s ease-in-out;
}

.magnify:hover {
    filter: grayscale(0.7);
}

.search-on .magnify {
    background-image: url('img/x.svg');
}

.search-on nav .magnify {
    background-size: 17px 26px;
}

#searchbar {
    background: #E5AD4D;
    height: 64px;
    position: fixed;
    top:150px;
    width: 1034px;
    left: 50%;
    transform: translate(-667px, 0px);
    padding: 8px 16px 8px 8px;
    display: none;
}

.search-on #searchbar {
    display: block;
}

#searchbar form {
    display: flex;
    margin-top: 7px;
}

#searchbar input {
    outline: none;
    -webkit-appearance: none;
    border: 0;
    height: 34px;
}

#searchbar input[type="text"] {
    flex-grow: 1;
    padding-left: 192px;
    padding-right: 8px;
    background: transparent;
    font-size: 22px;
}

#searchbar input[type="text"]::placeholder {
    color: #555;
}

#searchbar input[type="submit"] {
    flex: 0 0 29px;
    background: transparent;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    background-image: url('img/magnify-black.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 0;

}

.main {
    margin-top:150px;
}

.banner-image img {
    width: 100%;
    min-height: 250px;
    object-fit: cover;
}

/****** ARTICLES LIST *****/

.articles-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    padding: 25px 0;
}

.articles-list a {
    position: relative;
    width: 286px;
    height: 248px;
    margin: 10px 10px 20px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    padding: 0 31px;
}

.articles-list a .art-image {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 280px;
    height: 242px;
    background-size: cover;
    background-position: center;
    opacity: .05;
    transition: opacity .5s ease-in-out;
    -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    -webkit-clip-path: url("#polygon-clip-hexagon");
    clip-path: url("#polygon-clip-hexagon");
}

.articles-list a:hover .art-image {
    opacity:1
}

.articles-list a .hexa {
    background-image:
        url('img/honey-left.svg'),
        url('img/honey-right.svg');
    background-position: top left, bottom right;
    background-repeat: no-repeat;
    background-size: 216px;
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
    width: 286px;
    height: 248px;
}

.articles-list a div.title {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.pagination {
    display: flex;
    justify-content: center;
    font-size: 0;
    column-gap: 10px;
    padding: 10px 0 20px;
}

.pagination span {
    font-size:22px;
    font-weight:bolder;
    line-height: 35px;
}

.pagination-numbers {
    padding: 0 0 20px;
}

.pagination-numbers span:nth-of-type(2) {
    font-weight: normal;
}

.page-left, .page-right {
    transition: transform 0.3s ease-in-out;
}

.page-left:hover {
    transform: translateX(-4px);
}

.page-right:hover {
    transform: translateX(4px);
}

/********* ARTICLES ***********/

/*.articles-list, .pagination {display: none}*/

section.article article {
    padding: 10px 0 0;
}

section.article ul, section.article ol {
    line-height: 27px;
}

section.article article h1 {
    font-weight: 700;
    font-size: 50px;
    line-height: 61px;
    margin: 30px 0 35px;
}

article.one-column .article-column {
    width: 100%;
    max-width: 700px;
}

article.two-columns .article-column {
    width: 100%;
    max-width: 700px;
}

.article-columns-container {
    display: flex;
    column-gap: 40px;
}

.article-columns-container .article-column {
    flex-basis: 50%;
}

.article-column figure {
    padding: 0 0 16px 0;
    margin: 0;
    text-align: center;
}

.article-column figure figcaption {
    font-style: italic;
    font-weight: bold;
    margin-top: 6px;
    font-size: 0.85em;
}

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

.article-column .userContent {
    display: block;
    background: #2B3542;
    font-weight: 700;
    line-height: 2em;
    color: #fff;
    padding: 16px;
    font-style: italic;
}

.article-column iframe[src*="youtube.com"], .article-column iframe[src*="player.vimeo.com"] {
    width: 100%;
    border: 0;
}

article.plants h2 {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 16px;
}

article.plants .legend {
    background: #F3DB36;
    display: flex;
    font-weight: 300;
    font-size: 12px;
    line-height: 20px;
}

article.plants .legend-title {
    padding: 16px;
}

article.plants .legend-description {
    padding: 16px 16px 16px 8px;
}

article.plants .plants-list {
    background: #E5AD4D;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    color: #ffffff;
    padding: 12px 16px 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 32px;
    row-gap: 32px;
}

article.plants .plants-list .plant {
    flex: 0 0 calc((100% - 96px) / 4);
}

article.plants .plants-list .plant .plant-title {
    font-size: 16px;
    line-height: 27px;
}

article.plants .plants-list .plant .plant-description {
    padding-top: 10px;
}

.article-header {
    padding-top: 60px;
    font-size: 16px;;
    line-height: 36px;
    color: #E5AD4D;
}

.article-column a {
    color: #E5AD4D;
}

section.article article.article-page h1 {
    margin: 10px 0 35px;
}

.article-header .page-right {
    margin-left: 15px;
}

.article-header .page-left img, .article-header .page-right img {
    width: 34px;
    height: 30px;
}

.gallery {
    padding: 16px 0;
}

.gallery-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.gallery-list .image {
    width: 17%;
    padding-bottom: 17%;
    margin-bottom: 3.75%;
    margin-right: 3.75%;
    background: #eeeeee;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 17%;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-list .image:nth-child(5n) {
    margin-right: 0;
}

.gallery-featured {
    position: relative;
    width: 100%;
    height: 0;
    background: #eeeeee;
    display: block;
    padding-bottom: 66.6667%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: zoom-in;
    /*transition: background-image .2s ease-in-out;*/
}
.gallery-featured::after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(238,238,238,0);/*eeeeee*/
    transition: background .2s ease-in-out;
}
.gallery-featured.changing::after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(238,238,238,1);/*eeeeee*/
}

/********** SHOP **************/
section.shop-list h1, section.shop-basket h1, section.shop-product .h1 {
    font-weight: 700;
    font-size: 50px;
    line-height: 61px;
    margin: 30px 0 35px;
}

.shop-notification {
    background: #E5AD4D;
    line-height: 39px;
    font-size: 24px;
    padding: 0 10px;
    display: inline-block;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
}

.product-container {
    text-align: center;
    width: 280px;
    border-bottom: 1px solid #000000;
    margin-bottom: 30px;
    padding-bottom: 35px;
}

.product-container.no-fill {
    border: 0;
}

.product-image {
    width: 280px;
    height: 320px;
    background-color: #eee;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.product-container h2 {
    font-weight: bold;
    margin: 20px 0;
    height: 60px;
    font-size: 24px;;
    line-height: 29px;
}

.product-price {
    font-size: 24px;
}

.product-presentation {
    display: flex;
    margin-bottom: 80px;
}

.shop-basket .product-presentation {
    margin-bottom: 30px;
    opacity: 1;
    overflow: hidden;
    transition: opacity .5s ease-in-out, height .5s ease-in-out, margin-top .5s ease-in-out;
}

.product-presentation .product-image {
    flex: 0 0 280px;
}

.product-data {
    padding-left: 50px;
    max-width: 725px;
}

.product-data h1 {
    font-size: 48px;
    margin-top: 0;
}

.shop-basket .product-data h1 {
    font-size: 28px;
    line-height: 28px;
    margin: 0 0 18px;
}

.product-data p {
    font-size: 24px;
    line-height: 40px;
}

.product-order-part {
    display: flex;
    justify-content: space-between;
}

.shop-basket .product-order-part {
    flex-direction: column;
}

.product-order-part .product-price {
    font-size: 48px;
    line-height: 50px;
    margin-right: 10px;
}

.shop-basket .product-order-part .product-price {
    font-size: 24px;
    line-height: 26px;
}

.product-buttons {
    width: 380px;
    display: flex;
}

.shop-basket .product-buttons {
    margin-top: 5px;
    width: 100%;
}

.product-number-group {
    display: flex;
    justify-content: center;
    font-size: 24px;;
}
.product-number-group div {
    width: 50px;
    height: 50px;
    line-height: 50px;;
    background: #e5e5e5;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.shop-basket .product-number-group div {
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 20px;
}

.product-number-group div.product-number {
    border: 0px solid #000;
    border-width: 0 1px;
    cursor: text;
}

.product-number-deduct:hover, .product-number-add:hover {
    background: #E5AD4D;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.product-add, .product-remove {
    position: relative;
    background: #E5AD4D;
    font-size: 24px;
    line-height: 50px;
    height: 50px;
    padding: 0 10px;
    cursor: pointer;
    margin-left: 10px;
    transition: all .3s ease-in-out;
}

.product-add.available::after, .product-remove.available::after {
    content: 'dodano';
    width: 100%;
    height: 100%;
    background: #4f8c88;
    position: absolute;
    left:0;
    top:0;
    text-align: center;
    opacity:0;
    transition: opacity .5s ease-in-out;
}

.product-add::after, .product-remove::after {
    content: 'dodano';
    width: 100%;
    height: 100%;
    background: #4f8c88;
    position: absolute;
    left:0;
    top:0;
    text-align: center;
    opacity:1;
}

.shop-basket .product-add, .shop-basket .product-remove {
    background: #E5E5E5;
    font-size: 18px;
    line-height: 34px;
    height: 34px;
}

.product-add:hover, .product-remove:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.shop-basket .product-presentation .product-image {
    width: 140px;
    height: 160px;
    flex: 0 0 140px;
}

.shop-summary {
    font-size: 20px;
    line-height: 36px;
    border-top: 1px solid #000;
    padding: 30px 0;
}

.shop-all {
    font-size: 24px;
    font-weight: bold;
    padding: 10px 0;
}

.next {
    background: #E5AD4D;
    cursor: pointer;
    display: inline-block;
    padding: 0 10px;
    transition: all .3s ease-in-out;
}

.next:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

/********* FOOTER *************/

footer {
    background: #000000;
    margin-top: 30px;
    color: #ffffff;
}

footer .clip-svg {
    position:absolute;
    left:-10000px;
}

.footer-main {
    display: flex;
    padding-top: 32px;
    padding-bottom: 32px;
    column-gap: 0.5%;
}

.container-half {width: 50%;}

/*.footer-main .container-half {
    display: flex;
}*/

.footer-main .column {
    /*width: 20%;*/
    flex: 0 0 20.5%;
    font-size: 15px;
    line-height: 19px;
    font-weight: 300;
}

.footer-main .column:first-of-type {
    flex: 0 0 16%;
}

.footer-main .column-logos {
    display: flex;
    justify-content: flex-end;
    column-gap: 20px;
}

.footer-main .column-logos img {
    height: 85px;
}

.footer-main a {
    color: #ffffff;
}

.footer-main .column img {
    transition: opacity 0.3s ease-in-out;
}

.footer-main .column img:hover {
    opacity: 0.9;
}

.footer-main .foode {
    display:block;width:55px;height:55px;overflow:hidden;
    margin: 0 17px 7px 0;
}

.footer-main .foode img {
    width: 100%;
}

.footer-main .eu {
    height: 36px;
    width: 54px;
}

.footer-fb-img {
    margin-top: 20px
}

.modal-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.shop-basket {
    padding-bottom: 60px;
}

#shop-form h2 {
    font-size: 24px;
}

#shop-form label {
    display: block;
    font-size: 18px;
    line-height: 22px;
    margin: 10px 0 5px;
    font-weight: 400;
}

#shop-form label.inline {
    display: inline;
    font-size: 16px;
    margin: 0;
}
#shop-form input {
    margin-bottom: 10px;
    padding: 3px 5px;
    width: 100%;
    max-width: 350px;
}

#shop-form input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.avans {
    background: #E5AD4D;
    padding: 4px 8px;
}

#shop-form p {
    max-width: 680px;
    margin: 10px 0 15px;
    line-height: 20px;
}

#shop-form a {
    color: #E5AD4D
}

#shop-form .next {
    line-height: 39px;
    font-size: 24px;
}

@media (max-width: 1397px) {
    .header-main {
        padding-right: 0;
    }

    .header-buttons {
        flex: 0 0 260px;
    }

    .banner-image {
        padding: 0;
    }

    #searchbar {
        width: calc(100% - 260px);
        left: 0;
        transform: translate(0, 0);
    }

    #searchbar input[type="text"] {
        padding-left: 10px;
    }
}

@media (max-width: 1199px) {
    header {
        height: 120px;
    }

    .header-buttons {
        display: none;
    }

    .header-buttons.show-cart {
        display: flex;
        width: 1px;
        flex-basis: 1px;
        overflow: hidden;
        left: -10000px;
    }

    .header-buttons.show-cart::after {
        content: ' ';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: #fff;
    }

    .show-cart .cart {
        position: fixed;
        display: block;
        bottom: 10px;
        right: 10px;
        left: auto;
        background: #E5AD4D;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 10px solid #E5AD4D;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, .2);
    }

    .main {
        margin-top: 120px;
    }

    #searchbar {
        width: 100%;
        left: 0;
        transform: translate(0, 0);
        top: 120px;
    }

    article.plants .plants-list .plant {
        flex: 0 0 calc((100% - 64px) / 3);
    }

    .product-list {
        justify-content: space-evenly;
    }
}

@media (max-width: 959px) {
    header {
        height: 83px;
    }

    .header-logo {
        flex-basis: 71px;
    }

    .header-logo a {
        height: 57px;
        width: 84px;
    }

    nav {
        margin-top: 0;
        padding: 0 6px;
    }

    nav a {
        font-size: 13px;
    }

    .main {
        margin-top: 83px;
    }

    #searchbar {
        top: 83px;
        display:none;
    }

    .footer-main {
        flex-wrap: wrap;
        column-gap: 2%;
        row-gap: 32px;
    }

    .footer-main:nth-of-type(2n) {
        column-gap: 0;
    }

    .footer-main .column, .footer-main .column:first-of-type {
        flex: 0 0 49%;
    }

    .footer-main .column-logos {
        flex: 0 0 100%;
        justify-content: center;
        column-gap: 50px;
    }

    .product-order-part {
        flex-direction: column;
    }

    .product-buttons {
        margin-top: 25px;
        width: 100%;
    }
}

@media (min-width: 768px) {
    nav {
        min-height: auto !important;
    }
}

@media (max-width: 767px) {
    .article.container {
        padding: 0 14px;
    }
    .header-main {
        padding: 0;
        flex-direction: column;
        align-items: start;
    }

    .header-logo {
        padding: 13px 16px;
        flex-basis: 83px;
    }

    nav {
        display: none;
    }

    #expander {
        display: block;
        cursor: pointer;
        position: absolute;
        right: 18px;
        top: 13px;
        width: 17px;
        height: 26px;
        font-size: 0;
        background-image: url('img/menu.svg');
        background-size: contain;
        background-repeat: no-repeat;
        cursor: pointer;
        transition: background 0.2s ease-in-out;
    }

    .show-s.additional-buttons {
        position: absolute;
        top: 50px;
        right: 15px;
        display: flex;
        justify-content: center;
        justify-content: space-between;
        align-items: center;
        width: 65px;
        height: 30px;
    }
    .additional-buttons .magnify {
        width: 16px;
        height: 18px;
    }

    .expanded {
        overflow: hidden;
    }

    .expanded #expander {
        background-image: url('img/x.svg');
    }

    #searchbar {
        background: #F3DB36;
        height: 35px;
        padding: 0 16px 0 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,.35) inset;
    }

    #searchbar form {
        margin-top: 0;
    }

    #searchbar input[type="text"] {
        font-size: 14px;
    }

    #searchbar input[type="submit"] {
        flex: 0 0 16px;
    }

    .expanded #searchbar {
        box-shadow: 0 4px 8px rgba(0,0,0,.35) inset;
    }

    /*.expanded .modal-bg {
        display: block;
    }*/

    .expanded nav {
        display: flex;
        /*position: absolute;
        right: 0;
        top: 60px;*/
        /*border-top: 1px solid #f1f1f1;*/
        background: #E5AD4D;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35) inset;
        flex-direction: column;
        align-items: flex-start;
        padding: 55px 16px 110px;
        width: 100%;
        min-height: calc(100vh - 83px);
    }

    .expanded nav a {
        font-size: 14px;
        font-weight: 300;
        color: #fff;
        width: 100%;
        text-align: center;
    }

    .show-s {
        display: block;
    }

    .expanded nav a.show-l, .expanded nav div.show-l {
        display: none;
    }

    .footer-main {
        padding-left: 14px;
    }

    /*.footer-main .foode {
        width:80px;height:80px;
        margin: 0 17px 32px 0;
    }
        
    .footer-main .eu {
        height: 80px;
        width: 120px;
    }*/

    .articles-list {
        padding: 20px 0;
    }

    .articles-list a {
        width: 100%;
        height: 124px;
        margin: 10px 12px 20px;
        font-size: 15px;
        line-height: 18px;
        padding: 0 16px 0 156px;
        justify-content: flex-start;
        text-align: left;
        font-weight: 500;
    }
    
    .articles-list a .art-image {
        top: 2px;
        left: 2px;
        width: 140px;
        height: 121px;
        opacity: 1;
    }
    
    .articles-list a .hexa {
        background-image:
            url('img/honey-left2.svg'),
            url('img/honey-right2.svg');
        background-size: 108px;
        width: 143px;
        height: 124px;
    }
    
    .articles-list a div.title {
        -webkit-line-clamp: 7;
    }

    article.plants h2 {
        margin: 25px 0 10px;
    }

    article.plants .legend-title {
        padding: 8px 12px;
    }

    article.plants .legend-description {
        padding: 8px;
    }

    article.plants .plants-list {
        padding: 8px 12px 12px;
        row-gap: 20px;
    }

    article.plants .plants-list .plant {
        flex: 0 0 calc((100% - 32px) / 2);
    }

    article.plants .plants-list .plant .plant-title {
        font-size: 14px;
        line-height: 22px;
    }

    .static-page .article-columns-container {
        flex-direction: column;
    }

    .article-page .article-columns-container {
        flex-direction: column-reverse;
    }

    .article-header {
        font-size: 12px;
        line-height: 24px;
        padding-top: 0;
    }

    .article-header .page-left img, .article-header .page-right img {
        width: 16px;
        height: 14px;
    }

    section.article article h1 {
        font-size: 24px;
        line-height: 30px;
        margin: 10px 0;
    }

    section.article article.article-page h1 {
        margin: 10px 0;
    }

    section.shop-list h1, section.shop-basket h1, section.shop-product .h1 {
        font-size: 24px;
        line-height: 30px;
    }

    .shop-notification {
        font-size: 16px;
        line-height: 24px;
        padding: 0 8px;
    }

    .shop-product .product-presentation {
        flex-direction: column;
    }

    .product-data {
        padding-left: 0;
    }

    .shop-basket .product-data {
        padding-left: 16px;
    }

    .product-data h1 {
        margin-top: 30px;
        font-size: 24px;
        line-height: 30px;
    }

    .shop-basket .product-data h1 {
        margin: 0 0 10px;
        font-size: 20px;
        line-height: 24px;
    }

    .product-presentation .product-image {
        align-self: center;
    }

    .shop-basket .product-presentation .product-image {
        width: 84px;
        height: 96px;
        flex: 0 0 84px;
        align-self: flex-start;
    }

    .product-order-part .product-price {
        font-size: 24px;
        font-weight: bold;
        line-height: 30px;
    }

    .shop-basket .product-order-part .product-price {
        font-size: 16px;
        font-weight: normal;
        line-height: 24px;
    }

    .product-buttons {
        width: 100%;
    }

    .shop-basket .product-buttons {
        margin-top: 12px;
    }

    .product-number-group div {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 20px;
    }

    .shop-basket .product-number-group div {
        width: 26px;
        height: 26px;
        line-height: 26px;
        font-size: 14px;
    }

    .product-add, .product-remove {
        font-size: 18px;
        line-height: 34px;
        height: 34px;
    }

    .shop-basket .product-add, .shop-basket .product-remove {
        font-size: 14px;
        line-height: 26px;
        height: 26px;
    }

    .product-data p {
        font-size: 16px;
        line-height: 27px;
    }

    .shop-summary {
        font-size: 16px;
        line-height: 30px;
        border-top: 1px solid #000;
        padding: 30px 0;
    }

    .next {
        font-size: 20px;
    }

    #shop-form h2 {
        font-size: 20px;
    }

    #shop-form label {
        font-size: 16px;
    }
}

@media (max-width: 767px) and (max-height: 410px) {
    .expanded nav {
        min-height: 250px;/*315*/
        padding: 55px 16px 55px;
    }
    .expanded nav a {
        padding: 6px 0;
    }
    .expanded nav a br {
        display: none;
    }
}

@media (max-width: 767px) and (max-height: 359px) {
    .expanded nav {
        padding: 45px 16px 55px;
    }
    .expanded nav a {
        padding: 4px 0;
    }
}

@media (max-width: 599px) {
    article.plants .plants-list .plant {
        flex: 0 0 100%;
    }

    article.plants .plants-list .plant.filler {
        display: none;
    }

    /*footer {
        padding: 13px 0;
    }*/


    .footer-main .container-half.half-simple {
        flex-direction: row;
        row-gap: unset;
    }

    
}

@media (max-width: 479px) {
    .shop-basket .product-add span, .shop-basket .product-remove span {
        display: none;
    }

    .footer-main .column {
        flex: 0 0 100%;
    }

    .footer-main .column:first-of-type {
        flex: 0 0 100%;
    }
}

@media (max-height: 481px) {
    .expanded header {
        height: 100vh;
        overflow-y: auto;
    }
}