.plus-icon {
    background-image: url("../images/plus.svg");
}

.minus-icon {
    background-image: url("../images/minus.svg");
}

.plus-icon,
.minus-icon {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

header {
    background: #ffffff;
    color: #ffffff;
    position: relative;
}

header .first-line {
    background: #00a77e;
    top: 0;
    z-index: 9999;
    width: 100%;
}

header .first-line .icon-bar {
    background-color: #fff;
    width: 21px;
    height: 3px;
    display: block;
    border-radius: 1px;
}

header .first-line .icon-bar+.icon-bar {
    margin-top: 4px;
}

header #menu-button {
    display: flex;
    align-items: center;
    background: #00a77e;
    float: left;
    width: 170px;
    height: 78px;
    padding: 30px 25px;
    font-family: 'Work Sans', sans-serif;
}

header #menu-button .icon {
    float: left;
}

header #menu-button .text {
    float: left;
    padding-left: 10px;
    font-size: 18px;
    font-weight: bold;
}

header .logo {
    float: left;
    position: absolute;
    right: 240px;
    left: 170px;

    text-align: center;
}

header .logo a {
    width: 100%;
}

header #cart-button {
    float: right;
    width: 230px;
    height: 78px;
    font-family: 'Work Sans', sans-serif;
}

header .open .icon {
    font-size: 16px;
    height: 21px;
    width: 17px;
}

header #cart-button .text {
    line-height: 80px;
    font-size:18px;
    font-weight: bold;
}

header #cart-button .image {
    float: right;
    height: 78px;
    width: 45px;
    background: url(../images/Cart.svg);
    position: relative;
    background-repeat: no-repeat;
    background-size: 35px;
    background-position: center;
}

header #cart-button .image span {
    position: absolute;
    top: 45%;
    width: 100%;
    text-align: center;
    color: #00a77e;
    left:0;
}

div.mobile-links > ul.links,
header div.links > ul.links {
    margin-bottom: 0;
    clear: both;
    padding-left: 0;
}

div.mobile-links > ul.links li,
header div.links > ul.links li {
    list-style: none;
    display: inline;
}

header div.links > ul.links li a {
    color: black;
    padding: 10px 15px;
    display: inline-block;
    float: left;
    font-weight: 600;
    font-size:16px;
    font-family: 'Work Sans', sans-serif;
}

header div.links > ul.links li a:hover {
    text-decoration: none;
    color: #00936f;
}

header #menu-button.open,
header #cart-button.open {
    z-index: 999999
}

header #menu-button.open .icon-bar {
    display: none;
}

header #menu-button.open .icon {
    background-image: url("../images/close.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

header #menu-button,
header #cart-button {
    z-index: 999999999;
}

header #cart-button.open {
    background: #00936f;
    z-index: 999999;
}

#offcanvas-main-menu {
    left: -270px;
    background: #00936f;
}

#offcanvas-main-menu ul {
    list-style: none;
    padding-left: 0;
}

#offcanvas-main-menu a {
    display: block;
    color: #ffffff;
}

#offcanvas-main-menu > ul > li {
    position: relative;
}

#offcanvas-main-menu > ul > li:hover:not(.open) {
    background: #00936f;
}

#offcanvas-main-menu > ul > li.open > a {
    background: #00936f;
}

#offcanvas-main-menu > ul > li > a {
    padding: 10px 20px;
    border-bottom: 1px solid #00a77e;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
}

#offcanvas-main-menu > ul > li > a:hover,
#offcanvas-main-menu > ul > li > a:active {
    background: #00a77e;
}

#offcanvas-main-menu > ul > li > button {
    position: absolute;
    top: 5px;
    right: 10px;
    padding: 15px;
    color: #ffffff;
}

#offcanvas-main-menu > ul > li > ul {
    border-bottom: 1px solid #00936f;
}

#offcanvas-main-menu > ul > li > ul > li > a {
    padding: 10px 60px;
}

#offcanvas-mini-cart {
    right: -270px;
    background: #ffffff;
}

#offcanvas-main-menu,
#offcanvas-mini-cart {
    height: 100%;
    overflow-y: auto;
    position: fixed;
    z-index: 99999;
    width: 270px;
    top: 0;
    font-family: 'Work Sans', sans-serif;
}

#offcanvas-mini-cart .empty-cart {
    padding: 20px;
}

.header-timer {
    float: right;
    margin: 25px 0;
    border-right: 1px solid #00936f;
    padding-right: 50px;
    font-family: 'Work Sans', sans-serif;
}

.header-timer h5 {
    display: inline-block;
}

.header-timer ul {
    display: inline-block;
    font-weight: 700;
    font-family: 'Work Sans', sans-serif;
}

.header-timer ul li {
    display: inline-block;
}

@media (min-width: 768px) {
    header .logo {
        top: 50%;
        transform: translateY(-50%);
    }

    header .first-line {
        height: 80px;
        position: fixed;
    }
    header .second-line {
        margin-top: 80px;
    }
    header .logo {
        padding: 10px;
    }
    header #menu-button,
    header #cart-button {
        font-size: 16px;
    }
    header #cart-button {
        padding-left: 50px;
    }
    header #cart-button .icon {
        float: left;
        margin: 30px 5px;
    }
    header .second-line > .search {
        color:black;
        width: 171px;
    }
    header .second-line > .search input {
        font-size: 16px;
        background: transparent;
        font-weight: 600;
        border: 0;
        width: 130px;
        padding: 11px;
        height: 40px;
        box-shadow: none;
        font-family: 'Work Sans', sans-serif;
    }
    header .second-line > .search button {
        width: 40px;
        background: transparent;
        border: 0;
        padding: 10px;
        margin: 0;
    }
}

@media (max-width: 767px) {
    header #menu-button {
        width: 55px;
        height: 50px;
        clear: both;
        padding: 15px 5px;
        font-size: 12px;
        top: 49px;
    }
    header #menu-button .icon {
        margin-left: 10px;
    }
    header #menu-button.open {
        border-right: 1px solid #00936f;
        border-top: 1px solid #00936f;
        border-bottom: 1px solid #00936f;
        height: 52px;
    }
    header #menu-button.open .icon {
        margin-left: 12px;
    }
    #offcanvas-main-menu,
    #offcanvas-mini-cart {
        top: 49px;
    }
    header #cart-button .icon {
        float: left;
        margin: 15px 0 15px 30px;
        background-image: url("../images/close.svg");
    }
    header #cart-button {
        width: 60px;
        height: 50px;
        border-left: 1px solid #00936f;
    }
    header #cart-button .image {
        background-size: 25px 48px;
        float: left;
        height: 48px;
        width: 48px;
        font-size: 12px;
    }
    header .logo {
        right: 100px;
        left: 55px;
    }
    header .logo a img {
        width: 120px;
        margin-top: 8px;
    }
    header .search-form-mobile {
        margin: 0;
        border: 0;
        border-left: 1px solid #00936f;
        border-radius: 0;
        padding: 15px 20px;
        top: 0;
        width: 60px;
        font-size: 20px
    }
    div.mobile-links {
        overflow: hidden;
        background: #00936f;
        text-align: center;
        border-right: 1px solid #00936f;
        border-left: 1px solid #00936f;
        border-top: 1px solid #00936f;
    }
    div.mobile-links > ul.links li a {
        font-size: 13px;
        color: #ffffff;
        padding: 15px;
        display: inline-block;
        font-family:'Work Sans', sans-serif;
    }
}


/* minicart */

#offcanvas-mini-cart {
    padding: 0 20px;
}

#offcanvas-mini-cart .cart-item-price {
    padding: 20px 0 0;
}

#offcanvas-mini-cart .mini-cart-element {
    height: 100px;
    border-bottom: 1px solid #eeeeee;
    padding: 15px 0;
}

#offcanvas-mini-cart .mini-cart-element > div {
    float: left;
}

#offcanvas-mini-cart .mini-cart-element .element-remove {
    width: 20px;
    height: 65px;
    display: table;
}

#offcanvas-mini-cart .mini-cart-element .element-remove a {
    vertical-align: middle;
    display: table-cell;
}

#offcanvas-mini-cart .mini-cart-element .element-remove .small-remove-icon {
    background: url("../images/sprite.png") -78px 19px;
    height: 20px;
    width: 20px;
    display: block;
}

#offcanvas-mini-cart .mini-cart-element .element-image {
    width: 80px;
    padding: 0 5px;
}

#offcanvas-mini-cart .mini-cart-element .element-info {
    width: 130px;
    height: 65px;
    display: table;
}

#offcanvas-mini-cart .price {
    font-family: 'Work Sans', sans-serif
}

#offcanvas-mini-cart .mini-cart-element .element-info .product-name {
    max-height: 40px;
    overflow: hidden;
}

#offcanvas-mini-cart .mini-cart-element .element-info .product-name a {
    color: #000000;
}

#offcanvas-mini-cart .mini-cart-element .element-info .info-container {
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    text-align: right;
}


/* mini search */

@media (max-width: 767px) {
    #search-form-mobile > form {
        padding: 20px;
        border-top: 1px solid #00936f;
    }
    #mini_top_search {
        width: 100%;
        right: 0;
        padding: 30px 0;
    }
    #search_mini_form_mobile input {
        width: 85%;
        padding: 10px;
        border: 0;
        display: block;
        float: left;
        color: #000;
    }
    #search_mini_form_mobile button {
        width: 15%;
        display: block;
        float: right;
        margin: 0;
        background-color: #00936f;
    }
}

@media (max-width: 479px) {
    #search_mini_form_mobile input {
        width: 75%;
        display: block;
        float: left;
    }
    #search_mini_form_mobile button {
        width: 25%;
        display: block;
        float: right;
    }
}

.cookie-notification{
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #00a77e;

}

.cookie-notification__wrapper{
    display: flex;
    justify-content: center;
    align-content: center;
    font-family: 'Work Sans', sans-serif;
}

.cookie-notification__text{
    color: #ffffff;
    margin: 20px;
}

.cookie-notification__close{
    color: #ffffff;
    background: #f2b826;
    height: 20px;
    padding: 0 10px;
    text-align: center;
    margin-top: 20px;
}

.cookie-notification__close:hover{
    color: #ffffff;
    background:#ffdc91;
}
