@charset "UTF-8";
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    color: #7b7b7b;
    font-family: Oswald, arial;
    font-size: 15px;
    letter-spacing: 0.4px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

*:after {
    box-sizing: border-box;
}

.clearfix:after {
    content: " ";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.5s ease;
    transition-property: color;
}

strong,
b {
    font-weight: 600;
}

img {
    max-width: 100%;
}

input,
textarea,
select {
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}

textarea {
    resize: none;
}

::placeholder {
    color: #bdbdbd;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #bdbdbd;
}

::-ms-input-placeholder {
    color: #bdbdbd;
}

.right {
    float: right;
}

.left {
    float: left;
}

.no-padding {
    padding: 0!important;
}

.page-width-margin {
    max-width: 1280px;
    padding: 0 60px;
    margin: 0 auto;
}

.btn {
    height: 40px;
    display: inline-block;
    line-height: 40px;
    color: white;
    padding: 0 22px;
    -webkit-border-radius: 0;
    -webkit-appearance: none;
    border: none;
    cursor: pointer;
    transition: 0.5s ease;
}

.btn-green {
    background: #8ac349;
    transition: 0.5s ease all;
}

.btn-orange {
    background: #f59e00;
}

.btn-orange:hover {
    background: #DE8F00
}

.btn-yellow {
    background-color: #ffcb01;
    color: black
}

.btn-r-tr-bl {
    border-radius: 0 15px;
}

.btn-r-tl-br {
    border-radius: 15px 0;
}

.btn-green:hover {
    background: #77ae2d;
}

.title-line {
    position: relative;
    font-weight: 500;
    color: #000;
}

.title-line>span {
    position: relative;
    z-index: 2;
    background: white;
    padding-right: 30px;
    font-size: 28px;
    display: inline-block;
}

.title-line:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 1px;
    background: #d7d7d7;
}

.title-line.line-green:after {
    height: 4px;
    background: #8ac349;
}

.title-line h2.dor-bestsellers {
    position: relative;
    z-index: 2;
    background: #fff;
    padding-right: 30px;
    font-size: 28px;
    display: inline-block;
    font-weight: 500;
}

.teko {
    font-family: Teko, arial;
}

.tooltip {
    width: 16px;
    height: 16px;
    display: inline-block;
    background: #b6b6b6;
    color: white;
    font-size: 12px;
    text-align: center;
    line-height: 16px;
    border-top-left-radius: 6px;
    border-bottom-right-radius: 6px;
    cursor: pointer;
}

body .ui-widget.ui-widget-content {
    box-shadow: none;
    border-radius: 15px 0;
    border: 2px solid #636363;
    padding: 15px 20px;
}

.ui-widget-content .arrow {
    width: 11px;
    height: 15px;
    position: absolute;
    left: 0;
    margin-left: -2px;
    bottom: -15px;
    border: 1px solid;
    border-width: 15px 15px 0px 0px;
    border-color: #636363 transparent transparent transparent;
}

.ui-widget-content .arrow:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2px;
    width: 7px;
    height: 15px;
    border: 1px solid;
    border-width: 11px 11px 0px 0px;
    border-color: white transparent transparent transparent;
}

.ui-widget-content .arrow.right {
    border-width: 15px 0px 0px 15px;
    border-color: #636363 transparent transparent transparent;
    left: initial;
    right: 9px;
}

.ui-widget-content .arrow.right:after {
    left: initial;
    right: 2px;
    border-width: 11px 0px 0px 11px;
}

.burger-icon:hover>div {
    background: #000;
}

.burger-icon {
    position: relative;
    height: 20px;
    width: 28px;
    clear: both;
    overflow: visible;
    cursor: pointer;
    margin-top: 7px;
    margin-right: 20px;
    display: none;
}

.burger-icon>div {
    width: 100%;
    ;
    height: 4px;
    background: #000;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: 250ms all ease;
    -moz-transition: 250ms all ease;
    -ms-transition: 250ms all ease;
    -o-transition: 250ms all ease;
    transition: 250ms all ease;
}

.burger-icon .top {
    -webkit-transform: translate3d(0, -7px, 0);
    -moz-transform: translate3d(0, -7px, 0);
    -ms-transform: translate3d(0, -7px, 0);
    -o-transform: translate3d(0, -7px, 0);
    transform: translate3d(0, -7px, 0);
}

.burger-icon .bottom {
    -webkit-transform: translate3d(0, 7px, 0);
    -moz-transform: translate3d(0, 7px, 0);
    -ms-transform: translate3d(0, 7px, 0);
    -o-transform: translate3d(0, 7px, 0);
    transform: translate3d(0, 7px, 0);
}

.burger-icon.active .top {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.burger-icon.active .bottom {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.burger-icon.active .middle {
    opacity: 0;
}


/* header */

.lang-currency-belt-wrapper {
    height: 30px;
    line-height: 28px;
    background: #000;
    color: #747474;
}

.lang-currency-belt .teko {
    font-weight: 500;
    font-size: 16px;
}

.lang-currency-belt span i {
    font-size: 8px;
    position: relative;
    bottom: 1px;
}

.language-bar,
.currency-bar {
    margin-right: 30px;
    height: 30px;
    position: relative;
    line-height: 33px;
    cursor: pointer;
}

.language-bar {
    text-transform: uppercase;
}

.language-wrapper,
.currency-wrapper {
    position: absolute;
    top: 100%;
    left: -20px;
    padding: 10px 0;
    background: #000;
    display: none;
    z-index: 2002;
}

.lang-currency-belt a {
    display: block;
    padding: 0 30px 0 20px;
}

.lang-currency-belt a:hover {
    color: white;
}

.lang-currency-belt ul {
    list-style-type: none;
}

.menu-top {
    color: #000;
    font-size: 21px;
    position: relative;
    z-index: 999;
}

.menu-top>ul {
    display: flex;
}

.menu-top>ul>li {
    display: inline-block;
    padding-right: 25px;
}

.menu-top>ul>li:last-child {
    padding-right: 0;
}

.logo {
    width: 200px;
    margin-right: 40px;
}

.logo-small {
    width: 26px;
    display: none;
}

.header-wrapper {
    margin-bottom: 20px;
}

.header-top {
    margin-top: 36px;
    margin-bottom: 30px;
}

.header-top .header-contact-wrapper {
    display: none;
    width: 200px;
}

.header-contact {
    font-weight: 500;
    color: #8ac349;
}

.header-contact a {
    margin-left: 20px;
}

.search-wrapper form {
    position: relative;
    z-index: 2000;
}

.search-wrapper form>input {
    color: #777777;
    background: #ebebeb;
    border: none;
    height: 44px;
    padding-left: 20px;
    border-bottom-left-radius: 15px;
    width: calc(100% - 60px);
    float: left;
    padding-right: 160px;
}

.search-wrapper .selectric-wrapper {
    position: absolute;
    top: 0;
    right: 60px;
    min-width: 150px;
}

.search-wrapper .selectric {
    border: none;
    background: none;
}

.search-wrapper .selectric:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    background: #cccccc;
    width: 1px;
}

.search-wrapper .selectric .label {
    line-height: 44px;
    height: 44px;
    font-size: 14px;
    color: inherit;
    position: relative;
    margin-right: 0;
    padding-right: 50px;
}

.search-wrapper .selectric .label:after {
    content: '\e918';
    font-size: 7px;
    margin-left: 10px;
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 15px;
    top: 20px;
}

.search-autocomplete {
    padding: 15px;
    border: 1px solid #ebebeb;
    position: absolute;
    top: 100%;
    left: 0;
    right: 60px;
    border-top: none;
    background: white;
    z-index: 10;
    display: none;
}

.search-autocomplete:before {
    content: '';
    width: 15px;
    height: 15px;
    position: absolute;
    left: -1px;
    bottom: 100%;
    background: #ebebeb;
}

body .search-autocomplete h4 {
    margin: 0;
    color: #000;
    font-family: Oswald, arial;
    font-weight: 400;
    margin-bottom: 5px;
}

.search-autocomplete ul {
    list-style-type: none;
    padding-left: 20px;
}

.search-autocomplete a {
    transition: 0.5s ease all;
}

.search-autocomplete a:hover {
    color: black;
}

.search-wrapper .selectric .button {
    display: none;
}

.search-wrapper .submit-wrapper {
    width: 60px;
    background: #8ac349;
    display: inline-block;
    height: 44px;
    border-top-right-radius: 15px;
    position: relative;
    transition: 0.5s ease all;
}

.search-wrapper .submit-wrapper:after {
    content: '\e902';
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    line-height: 44px;
    color: white;
    font-size: 20px;
    pointer-events: none;
}

.search-wrapper .submit-wrapper input {
    width: 100%;
    height: 100%;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    opacity: 0;
    cursor: pointer;
}

.search-wrapper .submit-wrapper:hover {
    background: #77ae2d;
}

.logo-wrapper {
    width: 240px;
}

.header-actions-wrapper {
    width: 350px;
    text-align: right;
    border-bottom: 1px solid #d7d7d7;
    position: relative;
}

.header-actions-wrapper .free-shipping-block {
    position: absolute;
    right: 0;
    top: 100%;
    padding-top: 8px;
    color: #000;
}

.header-actions {
    float: right;
}

.header-actions>div {
    float: left;
    position: relative;
    margin-left: 30px;
    cursor: pointer;
    height: 43px;
}

.header-actions>div:after {
    content: '';
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
    z-index: 4;
    opacity: 0;
    transition: 0.5s ease all;
}

.header-actions>div:hover:after {
    opacity: 1;
}

.header-actions-basket>a {
    color: #000;
}

.header-actions-content-wrapper {
    position: absolute;
    top: 43px;
    left: -30px;
    background: white;
    padding: 15px 30px;
    border: 1px solid #cccccc;
    cursor: initial;
    display: none;
    z-index: 2001;
}

a .header-actions-content-wrapper {
    cursor: pointer;
}

.profile .header-actions-content-wrapper a:not(:last-child) {
    display: block;
    text-align: left;
    padding-right: 30px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #cccccc;
    white-space: nowrap;
}

.profile .header-actions-content-wrapper .btn {
    background: #8ac349;
    display: block;
    text-align: center;
}

.header-actions>div:hover .header-actions-content-wrapper {
    display: block;
}

.header-actions>.active .header-actions-content-wrapper {
    display: block;
}

.header-actions-basket .header-actions-content-wrapper {
    right: 0;
    left: unset;
    padding: 30px;
    min-width: 280px;
    z-index: 200000;
}

.search-wrapper {
    width: calc(100% - 350px - 240px);
    padding-right: 40px;
}

.header-bot .search-wrapper {
    display: none;
}

.blog .search-wrapper {
    width: calc(100% - 150px - 290px);
}

.header-actions>span {
    margin-left: 30px;
    position: relative;
}

.header-actions .notify {
    width: 30px;
    height: 18px;
    position: absolute;
    bottom: 100%;
    left: 22px;
    background: #8ac349;
    text-align: center;
    color: white;
    font-size: 14px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-weight: 500;
}

.menu-top>ul>li>a {
    position: relative;
}

.menu-top>ul>li>a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 4;
    height: 2px;
    background: #000;
    pointer-events: none;
    opacity: 0;
    transition: ease 0.6s all;
}

.menu-top>ul>li:hover>a:after {
    opacity: 1;
}

.menu-top>ul>li:hover .menu-child {
    display: block;
}

.menu-child {
    background: white;
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    display: none;
}

.submenu-menu {
    border: 1px solid #d7d7d7;
    padding: 30px 30px;
}

.submenu-menu .title {
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 20px;
}

.submenu-menu .title:after {
    content: '';
    width: 60px;
    height: 5px;
    background: #8ac349;
    display: block;
    margin-top: 14px;
}

.submenu-menu-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 140px;
    font-size: 18px;
    color: #565656;
}

.menu-child.producents .submenu-menu-content.best {
    height: 80px;
}

.menu-child.producents .submenu-menu-content {
    /*height: 544px;*/
}

.menu-child.producents .submenu-menu-content a {
    margin-right: 22px;
}

.submenu-menu-content a {
    margin-right: 30px;
    line-height: 34px;
    transition: 0.5s ease all;
}

.submenu-menu-content a:hover {
    color: black;
}

.submenu-product-wrapper {
    height: 100%;
    position: absolute;
    width: 240px;
    top: 0;
}

.submenu-product {
    height: 100%;
    width: 100%;
    background-size: cover !important;
    background-position: center !important;
}

.submenu-product:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    opacity: 0.6;
    z-index: 1;
}

.submenu-product .content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 40px;
    position: relative;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.submenu-product .title {
    font-size: 27px;
    font-weight: 500;
    padding-bottom: 20px;
    position: relative;
    line-height: 26px;
    text-align: center;
}

.submenu-product .title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #8ac349;
    opacity: 0.5;
}

.submenu-product .price-wrapper {
    text-align: center;
    margin: 15px 0;
}

.submenu-product .price-wrapper label {
    color: #8ac349;
}

.submenu-product .price-wrapper .price {
    font-size: 50px;
    display: inline-block;
    margin: 0 6px;
    line-height: 46px;
}

.submenu-product .price-wrapper .currency {
    font-size: 32px;
}

.submenu-product .btn {
    width: 100%;
    text-align: center;
}

.menu-child.product-left .submenu-menu {
    margin-left: 240px;
}

.menu-child.product-right .submenu-menu {
    margin-right: 240px;
}

.menu-child.product-left .submenu-product-wrapper {
    left: 0;
}

.menu-child.product-right .submenu-product-wrapper {
    right: 0;
}

.order-status table {
    font-size: 16px;
}

.order-status table:first-of-type tr:first-child {
    font-weight: 600;
}

.order-status table a {
    color: royalblue;
}

.order-status table tr td {
    padding: 5px 0;
}

.header-basket-product {
    min-height: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid #cccccc;
    min-width: 280px;
    text-align: left;
    margin-bottom: 20px;
}

.header-basket-product .image {
    width: 87px;
    height: 60px;
    background-position: center !important;
    background-size: cover !important;
    position: absolute;
}

.header-basket-product-info {
    padding-left: 87px;
    margin-left: 25px;
    position: relative;
}

.header-basket-product-info .product-title {
    height: 38px;
    padding-right: 12px;
    line-height: 18px;
    color: #000;
    position: relative;
    top: -2px;
    display: block;
}

.header-basket-product-info .icon-close {
    font-size: 11px;
    position: absolute;
    right: 0;
    top: 3px;
    z-index: 3;
    cursor: pointer;
}

.header-basket-product-info .price {
    color: #000;
}

.goto-basket {
    display: block;
    text-align: center;
}

.header-basket-summary {
    margin-bottom: 20px;
}

.header-basket-summary .left {
    color: #404040;
    position: relative;
    top: 5px;
}

.header-basket-summary .right {
    font-size: 20px;
    color: #8ac349;
}

.mobile-menu-wrapper {
    width: 320px;
    position: absolute;
    top: 30px;
    left: 0;
    bottom: 0;
    background: black;
    z-index: 2001;
    display: none;
}

.mobile-menu-wrapper .mobile-menu-head {
    background: black;
    padding: 25px 20px;
    position: relative;
}

.mobile-menu-wrapper .mobile-menu-head img {
    width: 140px;
}

.blog .mobile-menu-wrapper .mobile-menu-head img {
    width: 70px;
}

.mobile-menu-wrapper .mobile-menu-head .close {
    font-size: 10px;
    color: white;
    width: 10px;
    height: 10px;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
}

.mobile-menu-wrapper .mobile-menu-main {
    background: white;
}

.mobile-menu-wrapper .mobile-menu-main a {
    display: block;
    height: 50px;
    border-bottom: 1px solid #e1e1e1;
    padding: 0 20px;
    line-height: 50px;
    border-right: 1px solid #e1e1e1;
}

.mobile-menu-wrapper .mobile-menu-main .burger-icon {
    display: block;
    margin-top: 16px;
    width: 20px;
}

.mobile-menu-wrapper .mobile-menu-main .burger-icon>div {
    height: 2px;
}

.mobile-menu-wrapper .mobile-menu-main .burger-icon .top {
    -webkit-transform: translate3d(0, -5px, 0);
    -moz-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    -o-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
}

.mobile-menu-wrapper .mobile-menu-main .burger-icon .bottom {
    -webkit-transform: translate3d(0, 5px, 0);
    -moz-transform: translate3d(0, 5px, 0);
    -ms-transform: translate3d(0, 5px, 0);
    -o-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
}

.mobile-menu-wrapper .mobile-menu-main .icon-arrow_right_big {
    float: right;
    line-height: 50px;
    font-size: 12px;
}

.mobile-menu-wrapper .mobile-menu-main a img {
    vertical-align: sub;
    margin-right: 20px;
}

.mobile-menu-wrapper .mobile-menu-main a .notify {
    width: 30px;
    cursor: pointer;
    height: 18px;
    display: inline-block;
    background: #8ac349;
    text-align: center;
    color: white;
    font-size: 14px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-weight: 500;
    line-height: 20px;
    margin-left: 5px;
    position: relative;
    top: -3px;
}

.mobile-menu-wrapper .mobile-menu-other {
    padding: 25px 20px;
    background: #252525;
    color: white;
}

.mobile-menu-wrapper .mobile-menu-other ul {
    list-style-type: none;
}

.mobile-menu-wrapper .mobile-menu-other li a {
    display: block;
    padding: 10px 0;
}

.mobile-menu-wrapper .mobile-menu-other li a:before {
    content: '';
    width: 9px;
    height: 9px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background: #8ac349;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 1px;
}

.mobile-menu-wrapper .mobile-menu-social {
    color: #878787;
    background: #1e1e1e;
    padding: 20px;
}

.mobile-menu-wrapper .mobile-menu-social a {
    margin-left: 20px;
}

.mobile-menu-wrapper .mobile-menu-category .title {
    color: white;
    margin-left: 20px;
    font-size: 24px;
    line-height: 5px;
}

.mobile-menu-wrapper .mobile-menu-category .icon-arrow_left_big {
    font-size: 11px;
    position: relative;
    bottom: 2px;
}

.mobile-menu-wrapper .mobile-menu-category {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    background: black;
    display: none;
}

.mobile-menu-wrapper .mobile-menu-main .menu-child {
    position: static;
}

.mobile-menu-wrapper .mobile-menu-main .menu-child a {
    padding-left: 40px;
}


/* end header */


/* footer */

.footer-wrapper {
    margin-top: 80px;
}

.footer-top-wrapper {
    background: #252525;
    color: #5b5b5b;
}

.footer-bottom-wrapper {
    background: #1e1e1e;
    color: #5b5b5b;
}

.footer-wrapper .footer-top {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: space-between;
}

.footer-wrapper .footer-bottom {
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer-top>div {
    padding: 0 60px;
    border-left: 2px solid #363636;
}

.footer-top>div:first-child {
    padding-left: 0;
    border-left: none;
}

.footer-top>div:last-child {
    padding-right: 0;
    width: 310px;
}

.footer-top ul {
    list-style-type: none;
    line-height: 40px;
}

.footer-social {
    margin-top: 45px;
    white-space: nowrap;
}

.footer-social a {
    font-size: 16px;
    margin-right: 35px;
}

.footer-social a:last-child {
    margin-right: 0;
}

.footer-social a.icon-facebook {
    font-size: 20px;
}

.footer-top a {
    transition: 0.5s ease all;
}

.footer-top a:hover {
    color: white;
}

.footer-copy {
    background: #181818;
    color: #404040;
    line-height: 44px;
    text-align: center;
    font-size: 12px;
}

.footer-bottom .footer-pay-methods img {
    margin-left: 40px;
}

.footer-bottom .footer-pay-methods img:nth-of-type(3) {
    margin-left: 0;
}

.footer-bottom .footer-pay-methods img:nth-of-type(n+3) {
    margin-top: 40px;
}

.footer-bottom {
    display: flex;
}

.footer-bottom>div {
    padding: 0 60px;
    border-left: 2px solid #363636;
}

.footer-bottom>div:first-child {
    padding-left: 0;
    border-left: none;
}

.footer-bottom>div:last-child {
    padding-right: 0;
}

.footer-contact-wrapper a {
    margin-left: 15px;
}

.footer-title {
    font-size: 20px;
}

.footer-deliver-wrapper img {
    margin-left: 30px;
    margin-top: 30px;
}

.footer-deliver-wrapper img:first-of-type {
    margin-left: 0;
}

.footer-contact-wrapper>div:not(:first-child) {
    margin-top: 20px;
    color: #afafaf;
    white-space: nowrap;
}

.scroll-top-site {
    width: 40px;
    height: 40px;
    line-height: 38px;
    color: white;
    background: #878787;
    text-align: center;
    position: fixed;
    bottom: 50px;
    right: 50px;
    cursor: pointer;
    z-index: 200;
    display: none;
}

#newsletter-form2 {
    clear: both;
    overflow: auto;
    margin-top: 10px;
}

#newsletter-form2 input {
    height: 40px;
    margin-right: 10px;
}

#newsletter-form2 .title {
    margin-bottom: 10px;
}

.footer-copy a {
    padding-left: 20px;
}


/* end footer */


/* right bar */

.right-bar>div {
    position: fixed;
    right: 0;
    z-index: 9999;
}

.right-bar-blog-link-wrapper {
    top: 175px;
}

.right-bar-socials-wrapper {
    top: 242px;
}

.right-bar-payments-wrappper {
    top: 384px;
}

.right-bar-wrapper {
    position: fixed;
    right: 0;
    z-index: 9999;
}

.right-bar-blog-link {
    display: block;
    width: 40px;
    height: 66px;
    background: url(/images/svg/blog.svg);
    color: white;
}

.right-bar-blog-link span {
    transform: rotate(-90deg);
    font-weight: 500;
    display: inline-block;
    line-height: 80px;
    font-size: 18px;
    margin-left: 6px;
}

.right-bar-socials {
    margin-top: 18px;
}

.right-bar-social {
    width: 40px;
    height: 40px;
    display: block;
    color: white;
    background: #b6b6b6;
    margin-top: 2px;
    text-align: center;
    line-height: 40px;
    transition: 0.6s ease all;
}

.right-bar-social:first-child {
    border-top-left-radius: 15px;
}

.right-bar-social:last-child {
    border-bottom-left-radius: 15px;
}

.right-bar-social.icon-facebook:hover {
    background: #4e6ca9;
}

.right-bar-social.icon-twitter:hover {
    background: #1da1f2;
}

.right-bar-social.icon-google_plus:hover {
    background: #ef8076;
}

.right-bar-payments {
    margin-top: 45px;
}

.right-bar-payments-trigger {
    width: 40px;
    height: 66px;
    background: url(/images/svg/coin_button.svg);
    position: absolute;
    left: -40px;
    cursor: pointer;
    top: 55px;
}

.right-bar-payments-trigger i {
    color: white;
    margin: 0 auto;
    margin-left: 10px;
    margin-top: 38px;
    display: inline-block;
}

.right-bar-payments-content-wrapper {
    width: 0;
    transition: 1s ease all;
}

.right-bar-payments-content {
    width: 238px;
    height: 256px;
    background: url(/images/svg/snoop_payments.svg);
    padding: 23px 70px 23px 30px;
}

.right-bar-payments-content img {
    margin-bottom: 18px
}


/* end right bar */


/* product box */

.product-box-wrapper {
    width: 246px;
    margin: 32px 22px;
}

.product-box-wrapper ul {
    list-style-type: none;
}

.product-box-image {
    position: relative;
    width: 100%;
    height: 250px;
}

.product-box-image .product-image {
    background-size: cover !important;
    background-position: center !important;
    width: 100%;
    height: 100%;
    display: block;
}

.product-box-image .btn {
    position: absolute;
    bottom: 0;
    right: -20px;
    border: 2px solid white;
    border-width: 2px 0px 0px 2px;
    box-sizing: content-box;
    letter-spacing: 1.1px;
    font-size: 18px;
}

.product-box-image .favourite {
    bottom: initial;
    top: -14px;
    border-width: 0px 0px 2px 2px;
    padding: 0 14px;
    background: #d7d7d7;
    color: #636363;
    transition-property: all;
    font-size: 22px;
}

.product-box-image .favourite.active,
.product-box-image .favourite:hover {
    color: white;
    background: #f16a7b;
}

.boxlabel {
    height: 24px;
    line-height: 28px;
    background: #575757;
    color: white;
    position: absolute;
    left: -12px;
    top: -11px;
    padding: 0 14px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    min-width: 106px;
    text-align: center;
    z-index: 2;
}

.boxlabel:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 12px;
    height: 12px;
    border: 1px solid;
    border-width: 0px 12px 12px 0px;
    border-color: transparent #b6b6b6 transparent transparent;
}

.boxlabel.blue {
    background: #1f9ed5;
}

.boxlabel.blue:after {
    border-color: transparent #0c506e transparent transparent;
}

.boxlabel.orange {
    background: #f59e00;
}

.boxlabel.orange:after {
    border-color: transparent #9e7b39 transparent transparent;
}

.boxlabel.promotion {
    background: red;
}

.boxlabel.promotion:after {
    border-color: transparent #b96161 transparent transparent;
}

.boxlabel+.boxlabel {
    top: 25px;
}

.boxlabel+.boxlabel+.boxlabel {
    display: none;
}

.product-box-description {
    padding: 15px 0;
    border-bottom: 2px solid #d7d7d7;
}

.product-box-description .title {
    font-size: 20px;
    letter-spacing: 1px;
    height: 2.4em;
    line-height: 1.2em;
    overflow: hidden;
    display: inline-block;
}

.product-box-description .subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.9px;
}

.product-box-price-list {
    height: 160px;
}

.product-box-price-list ul {
    margin-top: 10px;
    height: 160px;
    overflow: hidden;
    transition: 0.5s ease all;
    background: white;
}

.product-box-price-list ul {
    margin-left: -22px;
    margin-right: -22px;
    padding: 0 22px;
    position: relative;
    z-index: 30;
}

.product-box-price-list li {
    padding-bottom: 10px;
    position: relative;
}

.product-box-price-list li:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 21px;
    height: 1px;
    background: #d7d7d7;
}

.product-box-price-list li .price {
    color: #404040;
    font-size: 24px;
    position: relative;
    background: white;
    padding-right: 20px;
    z-index: 2;
}

.product-box-price-list li .price label {
    font-size: 14px;
    color: red;
}

.product-box-price-list li .price .currency {
    font-size: 20px;
}

.product-box-price-list li .count {
    color: #b6b6b6;
    font-size: 20px;
    position: absolute;
    right: 0;
    bottom: 11px;
    background: white;
    z-index: 2;
    padding-left: 20px;
}

.product-box-price-list li:first-child {
    margin-bottom: 0;
}

.product-box-price-list li:first-child .price {
    color: #8ac349;
    font-size: 50px;
}

.product-box-price-list li:first-child .price .currency {
    font-size: 30px;
}

.product-box-price-list li:first-child:after {
    bottom: 34px;
}

.product-box-price-list li:first-child .count {
    bottom: 24px;
}

.product-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
}


/* end product box */


/* homepage */

.main-banner-wrapper {
    margin-top: 50px;
}

.main-banner-wrapper .slick-slide img {
    width: 100% !important;
    height: auto !important;
}

.main-banner {
    padding-left: 85px;
    padding-right: 60px;
    height: 375px;
    margin-bottom: 25px;
}

.main-banner .slick-dots {
    position: absolute;
    left: 0;
    top: 0;
    list-style-type: none;
}

.main-banner .slick-dots li {
    pointer-events: none;
}

.main-banner .slick-dots li:after {
    content: '';
    width: 1px;
    height: 15px;
    background: #e1e1e1;
    display: block;
    margin: 6px auto;
}

.main-banner .slick-dots li:last-child:after {
    display: none;
}

.main-banner .slick-dots button {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    color: white;
    text-align: center;
    line-height: 26px;
    font-size: 14px;
    font-weight: 700;
    pointer-events: all;
    cursor: pointer;
    background: #d7d7d7;
}

.main-banner .slick-dots .slick-active button {
    background: #000;
}

.main-banner .slick-arrow {
    position: absolute;
    top: 0;
    background: #878787;
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 15px;
    cursor: pointer;
    z-index: 2;
    transition: 0.5s ease;
}

.main-banner .slick-arrow:hover {
    background: #6E6E6E;
}

.main-banner .slick-next {
    padding-left: 5px;
    right: 60px;
    border-top-right-radius: 10px;
}

.main-banner .slick-prev {
    right: 102px;
    border-bottom-left-radius: 10px;
}

.main-banner.slick-initialized .slick-slide {
    height: 375px;
}

.ban-1 .ban-right {
    width: 255px;
    height: 100%;
    background: #f3f3f3;
    position: absolute;
    right: 0;
    top: 0;
    border-top-right-radius: 15px;
    z-index: 1;
}

.ban-1 .ban-right span {
    font-size: 300px;
    position: absolute;
    bottom: 0;
    line-height: 146px;
    font-weight: 500;
    left: -369px;
    color: #f3f3f3;
}

.ban-1 .ban-right img {
    position: absolute;
    right: 50%;
    top: 0;
    z-index: 2;
}

.ban-1 ul {
    line-height: 40px;
    margin-top: 14px;
}

.ban-1 li:before {
    content: '';
    width: 9px;
    height: 9px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background: #8ac349;
    display: inline-block;
    margin-right: 30px;
    margin-bottom: 1px;
}

.ban-1 .ban-title {
    position: relative;
    float: left;
}

.ban-1 .ban-title span {
    font-size: 130px;
    font-weight: 500;
    color: #000;
    line-height: 120px;
    display: inline-block;
}

.ban-1 .ban-title img {
    width: 228px;
    position: absolute;
    bottom: -20px;
    right: -210px;
}

.ban-1 .btn-green {
    width: 220px;
    text-align: center;
    margin-top: 40px;
}

.ban-1 .ban-title-wrapper,
.ban-1 .ban-list-wrapper {
    position: relative;
    z-index: 2;
}

.ban-2 .ban-right {
    width: 255px;
    height: 100%;
    background: #000;
    position: absolute;
    right: 0;
    top: 0;
    border-top-right-radius: 15px;
    z-index: 1;
}

.ban-2 .ban-title .img2 {
    margin-top: 20px;
    display: inline-block;
    float: left;
}

.ban-2 .btn-green {
    width: 220px;
    text-align: center;
    margin-top: 40px;
}

.ban-2 .ban-right img {
    position: absolute;
    bottom: 0;
    left: -100px;
}

.ban-2 .ban-title span {
    font-size: 42px;
    color: #000;
    transform: rotate(-90deg);
    display: inline-block;
    position: relative;
    right: 20px;
    float: left;
    top: 150px;
}

.ban-2 .ban-title label {
    font-size: 20px;
    color: #000;
    margin-top: 100px;
    display: inline-block;
}

.grass-info-wrapper {
    position: relative;
    overflow: hidden;
}

.grass-info-container {
    color: white;
    position: relative;
    z-index: 2;
}

.grass-info-wrapper .grass-background {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20px;
    right: -20px;
    background: url(/images/svg/main_ban_1.svg) no-repeat top center;
    background-size: cover;
}

.grass-info {
    padding: 80px 0 60px;
    padding-top: 120px;
    display: flex;
    justify-content: space-between;
}

.grass-info .grass-el {
    /* width: 25%; float: left;  */
    padding-left: 65px;
    position: relative;
    padding-right: 40px;
}

.grass-info .grass-el img {
    position: absolute;
    top: 0;
    left: 0;
}

.grass-el .title {
    font-size: 24px;
    color: #c5f88a;
    white-space: nowrap;
}

.bestseller-product-wrapper .title-line {
    margin: 55px 0 20px;
}

.bestseller-load-more,
.newest-load-more {
    height: 40px;
    line-height: 40px;
    background: #b6b6b6;
    color: white;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    text-align: center;
    cursor: pointer;
    margin-top: 30px;
}

.bestseller-load-more i,
.newest-load-more i {
    font-size: 8px;
}

.new-product-wrapper .title-line {
    margin: 55px 0 20px;
}

.marijuana-seeds-info-wrapper {
    margin-top: 25px;
}

.marijuana-seeds-info .right {
    width: 550px;
}

.marijuana-seeds-info .right .title {
    font-size: 60px;
    line-height: 60px;
    color: #000;
    font-weight: 500;
    position: relative;
    margin-top: 140px;
}

.marijuana-seeds-info .right .title:before {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: #8ac349;
    margin-bottom: 50px;
}

.marijuana-seeds-info .right .text {
    line-height: 24px;
}

.marijuana-seeds-info .right .text p {
    margin: 25px 0;
}

.seed-text {
    font-size: 240px;
    color: #dbdbdb;
    position: absolute;
    bottom: 0;
    line-height: 174px;
    left: -215px;
    font-weight: 500;
    pointer-events: none;
}

.marijuana-seeds-info>div {
    position: relative;
}

.homepage-newsletter-wrapper {
    position: relative;
    overflow: hidden;
}

.homepage-newsletter-background {
    position: absolute;
    left: -20px;
    right: -20px;
    top: 32%;
    bottom: 0;
    background: url(/images/svg/main_ban_newsletter.svg) no-repeat top center;
    background-size: cover;
}

.homepage-newsletter {
    position: relative;
    z-index: 2;
}

.homepage-newsletter-wrapper .form-wrapper {
    text-align: center;
    padding: 190px 0 80px;
    position: relative;
    z-index: 2;
}

.homepage-newsletter-wrapper .form-wrapper form {
    display: inline-block;
}

.homepage-newsletter-wrapper .form-wrapper form>input {
    width: 400px;
    height: 40px;
    padding-left: 20px;
    background: white;
    border: none;
}

.homepage-newsletter-wrapper .form-wrapper .submit-wrapper {
    width: 60px;
    height: 40px;
    display: inline-block;
    position: relative;
    background: #8ac349;
    color: white;
}

.homepage-newsletter-wrapper .form-wrapper .submit-wrapper .icon-envelope {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    pointer-events: none;
}

.homepage-newsletter-wrapper .form-wrapper .submit-wrapper input {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    opacity: 0;
    cursor: pointer;
}

.homepage-newsletter-wrapper .form-wrapper .title {
    font-size: 60px;
    color: #000;
    margin-bottom: 60px;
}

.homepage-newsletter-wrapper .form-wrapper .text {
    color: #000;
    margin-bottom: 20px;
}

.homepage-newsletter-wrapper .snoop-water-can {
    height: 400px;
    position: absolute;
    bottom: 20px;
    left: 26px;
}

.homepage-newsletter-wrapper .plant-bg {
    height: 242px;
    position: absolute;
    right: 0;
    z-index: 3;
    bottom: 126px;
}

.homepage-newsletter-wrapper .form-wrapper .button-wrapper {
    color: white;
}

.feminised-seeds {
    margin-top: 70px;
    overflow: hidden;
}

.feminised-seeds .left {
    width: 470px;
    margin-top: 90px;
}

.feminised-seeds .left .title {
    font-size: 30px;
    color: #000;
}

.feminised-seeds .left .info {
    color: #8ac349;
    font-weight: 500;
}

.feminised-seeds .left .text {
    line-height: 24px;
    margin: 20px 0 30px;
}

.feminised-seeds .right {
    width: 550px;
    padding-right: 155px;
}

.feminised-seeds-chart-wrapper {
    position: relative;
    background: #ebebeb;
    padding: 40px;
    border-top-left-radius: 80px;
    padding-bottom: 55px;
}

.feminised-seeds-chart-wrapper .chart {
    width: 94px;
    padding-bottom: 40px;
    border-bottom: 5px solid #b6b6b6;
    margin-bottom: 40px;
}

.feminised-seeds-chart-wrapper .leaf {
    position: absolute;
    bottom: 0;
    right: -164px;
    width: 316px;
}

.feminised-seeds-chart-wrapper .teko {
    font-size: 40px;
    color: #000;
    line-height: 30px;
}

.feminised-seeds-chart-wrapper .text {
    font-weight: 500;
}

.where-to-buy-wrapper {
    overflow: hidden;
    margin-top: 80px;
}

.where-to-buy .left {
    position: relative;
    max-width: 680px;
    width: calc(100% - 400px);
}

.where-to-buy-description {
    width: 100%;
    background: #363636;
    color: #d7d7d7;
    margin-left: -1000px;
    box-sizing: content-box;
    padding: 60px 60px 75px;
    padding-left: 1000px;
    font-weight: 100;
}

.where-to-buy-description .text {
    position: relative;
    z-index: 2;
    line-height: 24px;
}

.where-to-buy .where {
    font-size: 200px;
    color: #282828;
    position: absolute;
    bottom: 0;
    left: -8px;
    font-weight: 500;
    pointer-events: none;
    line-height: 97px;
}

.where-to-buy .right {
    font-size: 30px;
    color: #000;
    font-weight: 500;
    position: relative;
    padding-bottom: 40px;
    border-bottom: 5px solid #8ac349;
    line-height: 25px;
    padding-top: 50px;
    margin-top: 60px;
}

.where-to-buy .right:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    height: 5px;
    background: #8ac349;
}

.where-to-buy .right>div {
    font-size: 60px;
    line-height: 55px;
}

.seeds-quality-wrapper {
    margin-top: 80px;
}

.seeds-quality .right {
    width: calc(100% - 610px);
    max-width: 430px;
    margin-right: 140px;
}

.seeds-quality .right .title {
    font-size: 30px;
    color: #000;
    margin-bottom: 20px;
}

.seeds-quality .right .text {
    font-weight: 100;
}

.seeds-quality .right .text div {
    font-weight: 500;
    color: #000;
    float: right;
    width: 280px;
    padding: 0 0 20px 30px;
}

.seeds-quality-border-wrapper {
    width: 310px;
    position: relative;
    margin-left: 100px;
    border-top: 1px solid transparent;
}

.seeds-quality-border-wrapper:before {
    content: '';
    position: absolute;
    width: 310px;
    height: 310px;
    border: 6px solid #d7d7d7;
    right: 0;
    box-sizing: border-box;
}

.seeds-quality-border-wrapper .text-block {
    padding: 40px;
    color: white;
    background: #8ac349;
    margin-left: -100px;
    width: 300px;
    margin-top: 125px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    position: relative;
    z-index: 1;
}

.seeds-quality-border-wrapper img {
    position: absolute;
    top: 60px;
    right: -114px;
    z-index: 2;
}

.idica-vs-sativa .right {
    width: 550px
}

.idica-vs-sativa .right .title {
    font-size: 60px;
    color: #8ac349;
    margin-bottom: 10px;
}

.idica-vs-sativa .right .sub-title {
    font-size: 30px;
    color: #282828;
    margin-bottom: 15px;
}

.idica-vs-sativa .right .text {
    margin-bottom: 30px;
    font-weight: 100;
}

.idica-vs-sativa>.left {
    margin-top: 80px;
    width: 560px;
}

.idica-vs-sativa .half {
    width: 50%;
}

.idica-vs-sativa .half span {
    color: #8ac349;
    font-size: 30px;
    margin-left: 15px;
}

.idica-vs-sativa .half ul {
    padding-left: 55px;
    list-style-type: none;
    margin-top: 20px;
    line-height: 40px;
    color: #000;
}

.idica-vs-sativa .half ul li:before {
    content: '';
    width: 9px;
    height: 9px;
    background: #8ac349;
    display: inline-block;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    margin-right: 40px;
}

.idica-vs-sativa .sativa-img {
    height: 100px;
}

.idica-vs-sativa .indica-img {
    height: 90px;
    margin-top: 10px;
}

.seeds-autoflowering .left {
    width: 440px;
}

.seeds-autoflowering .left .title {
    font-size: 60px;
    color: #000;
    line-height: 60px;
    font-weight: 500;
    margin-bottom: 40px;
}

.seeds-autoflowering .text {
    font-weight: 100;
}

.seeds-autoflowering .text b {
    color: #8ac349;
    font-weight: 500;
}

.seeds-autoflowering .right {
    width: 550px;
    margin-top: 90px;
}

.seeds-autoflowering .right .text {
    margin-top: 50px;
}

.medicine-seeds-and-oils-wrapper {
    clear: both;
    overflow: hidden;
}

.medicine-seeds-and-oils {
    margin-top: 80px;
}

.medicine-seeds-and-oils .left {
    position: relative
}

.medicine-seeds-and-oils .left img {
    display: block;
    position: relative;
    z-index: 2;
}

.medicine-seeds-and-oils .left:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 92px;
    left: -1000px;
    background: #ebebeb;
}

.medicine-seeds-and-oils .right {
    width: 550px;
}

.medicine-seeds-and-oils .right .title {
    font-size: 30px;
    color: #000;
    line-height: 30px;
}

.medicine-seeds-and-oils .right .title span {
    font-size: 60px;
    line-height: 60px;
    margin-top: 10px;
    display: block;
    margin-bottom: 30px;
}

.medicine-seeds-and-oils .right .text b {
    color: #8ac349;
    font-weight: 500;
}


/* end homepage */

.localizer {
    margin-bottom: 20px
}

.localizer a {
    text-decoration: underline;
}


/*
.localizer a,
.localizer a:hover {
    text-decoration: underline
}
.localizer div:hover ul {
    display: block
}
*/

.localizer div {
    display: inline-block;
    position: relative
}

.localizer div ul {
    position: absolute;
    top: 13px;
    left: -3px;
    width: 150px;
    background-color: #fff;
    z-index: 10;
    padding: 6px 0;
    margin: 0;
    display: none
}

.localizer div ul li {
    list-style-type: none;
    padding: 0 3px 2px;
    margin: 0
}


/* products page */

.banner-small-wrapper {
    background: url(/images/png/banners_images/header_background.jpg);
    background-size: cover;
    padding: 25px 0;
    margin-bottom: 40px;
}

.banner-small-wrapper h1 {
    color: white;
}

.banner-small-wrapper div {
    color: #8ac349;
}

.filter-wrapper {
    position: relative;
    z-index: 6;
}

.filter-box {
    /*width: calc((100% - 4*9px)/5);*/
    width: calc((100% - 3*9px)/4);
    float: left;
    margin-right: 9px;
    margin-bottom: 9px;
    border: 1px solid #cccccc;
    color: #000;
    position: relative;
}

.filter-box:nth-child(4n) {
    margin-right: 0;
}

.filter-box-trigger {
    display: none;
}

.filter-box-title {
    position: relative;
    padding-left: 50px;
    line-height: 44px;
    cursor: pointer;
}

.filter-box-title img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: calc(100% - 50px);
}

.filter-box-title .icon-arrow_down_small {
    font-size: 8px;
    position: absolute;
    right: 15px;
    line-height: inherit;
    color: #000;
    transition: 0.5s ease all;
}

.filter-box-content {
    display: none;
    padding: 10px 0 30px 15px;
    position: absolute;
    background: white;
    border: 1px solid #000;
    left: -1px;
    right: -1px;
    top: calc(100% - 1px);
    border-top: none;
    z-index: 2;
}

.filter-box-title:hover,
.filter-box-title:hover .icon-arrow_down_small {
    color: #7b7b7b
}

.filter-box:first-child .filter-box-content {
    max-height: 400px;
    overflow-y: scroll;
}


/*
.filter-box:first-child .filter-box-content {width: calc(200% + 13px); border-top: inherit;}
.filter-box:first-child .filter-box-content .checkbox-wrapper {width: 50%; float: left;}
*/

.filter-box.chosen .filter-box-title {
    color: #8ac349;
}

.filter-box-title .icon-check_small {
    font-size: 10px;
    margin-left: 4px;
    display: none;
}

.filter-box.chosen .filter-box-title .icon-check_small {
    display: inline-block;
}

.filter-box.opened {
    border-color: #000;
    transition: 0.5s ease all;
}

.filter-box.opened .filter-box-title .icon-arrow_down_small {
    transform: rotate(180deg);
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkbox-wrapper label {
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"]+.checkbox {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #cccccc;
    border-top-left-radius: 6px;
    border-bottom-right-radius: 6px;
    margin-right: 10px;
    position: absolute;
    top: 4px;
}

.checkbox-wrapper input[type="checkbox"]:checked+.checkbox {
    background: #8ac349;
    border-color: #8ac349;
}

.checkbox-wrapper input[type="checkbox"]:checked+.checkbox:after {
    content: "\e91d";
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: white;
    font-size: 8px;
    line-height: 16px;
    text-align: center;
    position: absolute;
    right: 0;
    left: 0;
}

.checkbox-wrapper {
    position: relative;
}

.checkbox-wrapper .checkbox-text {
    padding-left: 25px;
    display: inline-block
}

.new-account+label {
    top: 22px !important
}

.current-filter-wrapper {
    margin-top: 10px;
}

.current-filter-wrapper a {
    line-height: 28px;
    padding: 0 10px;
    display: inline-block;
    height: 30px;
}

.current-filter-wrapper a i {
    font-size: 9px;
    position: relative;
    bottom: 1px;
}

.current-filter-wrapper a.clear-all {
    color: white;
    background: #8ac349;
}

.sorter {
    margin-top: 35px;
    position: relative;
}

.sorter:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 1px;
    background: #ccc;
    margin: auto;
}

.sorter .selectric {
    border: 1px solid #cccccc;
    background: #fff;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    min-width: 245px;
}

.sorter .selectric .button {
    background-color: #cccccc;
    transition: 0.5s ease;
}

.sorter .selectric:hover .button {
    background-color: #b6b6b6;
}

.sorter .selectric .button:after {
    content: '\e918';
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 8px;
    border: none;
    color: white;
    width: auto;
    top: 3px;
}

.sorter .select-wrapper {
    padding-right: 20px;
    background: white;
    position: relative;
}

.sorter .product-count {
    line-height: 36px;
    background: white;
    position: relative;
    padding-left: 20px;
    font-size: 18px;
}

.sorter-wrapper {
    margin-bottom: 12px;
}

.sorter .selectric .label {
    margin-left: 20px;
}

.selectric-items {
    box-shadow: none;
    background: white;
    top: calc(100% - 1px);
}

.selectric-open .selectric {
    border-bottom-left-radius: 0;
}

.selectric-open .selectric .button:after {
    transform: rotate(180deg);
    top: 0;
}

.sorter .selectric-open .button {
    background-color: #b6b6b6;
}


/* end products page */


/* category page */

.category-list-wrapper {
    margin-top: 60px;
}

.category-list-wrapper .category-sidebar {
    width: 245px;
    margin-right: 60px;
}

.category-sidebar .title-line {
    margin-bottom: 35px;
}

.sidebar-text-wrapper {
    border: 1px solid #e1e1e1;
    padding: 25px 30px 35px;
}

.sidebar-text-wrapper h2 {
    font-size: 20px;
}

.sidebar-text-wrapper div {
    font-weight: 100;
    margin-top: 15px;
}

.sidebar-article-wrapper {
    margin-bottom: 40px;
}

.sidebar-article {
    margin-bottom: 20px;
}

.sidebar-article .image {
    width: 60px;
    height: 60px;
    background-position: center !important;
    background-size: cover !important;
}

.sidebar-article-link-wrapper {
    width: calc(100% - 60px);
    padding-left: 20px;
    height: 60px;
}

.sidebar-article-link-wrapper a {
    color: #000;
    position: relative;
    top: calc(50% - 3px);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: block;
}

.category-list-wrapper .category-list {
    width: calc(100% - 305px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.category-block {
    width: 245px;
    margin: 0 20px;
    margin-bottom: 50px;
}

.category-block .image-wrapper {
    position: relative;
    height: 170px;
    border: 2px solid #ebebeb;
}

.category-block .image-wrapper img {
    display: block;
    max-height: 100%;
    margin: 0 auto;
}

.category-block .image-wrapper .boxlabel {
    top: -24px;
}

.category-block .image-wrapper .btn {
    position: absolute;
    bottom: -2px;
    right: -18px;
}

.category-block .product-name {
    color: #000;
    font-weight: 500;
    font-size: 22px;
    margin-top: 15px;
    display: block;
}

.pager-wrapper {
    padding: 10px 0px 5px 10px;
    position: relative;
}

.pager {}

.pager-wrapper ul {
    position: absolute;
    top: 6px;
    right: 10px;
    clear: both;
    margin: 0px;
    padding: 0px;
}

.pager-wrapper ul li {
    float: left;
    list-style-type: none;
    margin: 0px;
    padding: 0px 0px 0px 5px;
    line-height: 20px;
    width: 15px;
    text-align: center;
    font-size: 16px;
}

.pager-wrapper ul li.current {
    color: #8ac349;
    font-weight: 600;
}

.pager-wrapper ul li a {
    display: inline-block;
    width: 100%;
    height: 100%;
}


/* end category page */


/* contact page */

.contact-form p.error {
    color: red;
}

.contact-form p.form-success {
    color: #8ac349;
    font-size: 20px;
}

.contact-us-wrapper {
    margin-top: 60px;
}

.contact-us>div {
    width: calc((100% - 40px)/2);
}

.contact-us>div:first-child {
    margin-right: 40px;
}

.contact-title {
    color: #000;
    font-size: 30px;
    line-height: 26px;
    margin-bottom: 10px;
}

.contact-title+p {
    margin-bottom: 20px;
}

.contact-title-wrapper .contact-title {
    padding-right: 30px;
    border-right: 2px solid #b6b6b6;
}

.contact-title-wrapper .contact-subtitle {
    padding-left: 30px;
    color: #000;
}

.contact-title-wrapper {
    margin-bottom: 41px;
}

.contact-form .input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.contact-form .input-wrapper input {
    border: 1px solid #d7d7d7;
    width: 100%;
    height: 40px;
    background: white;
    padding-left: 20px;
}

.contact-form .input-wrapper textarea {
    border: 1px solid #d7d7d7;
    width: 100%;
    background: white;
    height: 120px;
    padding-left: 20px;
    padding-top: 20px;
    border-bottom-right-radius: 20px;
    display: block;
}

.contact-form .input-wrapper label {
    position: absolute;
    left: 10px;
    top: -12px;
    background: white;
    padding: 0 10px;
    font-size: 14px;
}

.contact-form .input-wrapper:last-child label {
    color: #000;
}

.contact-form .input-wrapper:first-child input {
    border-top-left-radius: 20px;
}

.contact-form .input-wrapper input.btn {
    width: 110px;
    background: #1f9ed5;
    border: none;
    position: absolute;
    bottom: 0px;
    right: -18px;
    cursor: pointer;
}

.contact-location-wrapper {
    display: flex;
    white-space: nowrap;
    margin-top: 35px;
}

.contact-location-wrapper>div {
    padding-right: 40px;
    font-weight: 100;
    color: #000;
    line-height: 24px;
}

.contact-location-wrapper>div:last-child {
    padding-right: 0;
    padding-left: 40px;
    border-left: 4px solid #8ac349;
}

.contact-location-wrapper .title {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-location-wrapper a {
    font-weight: 500;
    color: #8ac349;
}

.contact-forum-wrapper {
    margin-top: 70px;
}

.contact-forum-block-wrapper {
    position: relative;
    margin-top: 15px;
}

.contact-forum-block {
    width: 420px;
    height: 110px;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    margin-top: 40px;
    border-top-left-radius: 20px;
    float: left;
}

.contact-forum-block:nth-child(2n) {
    float: right;
}

.contact-forum-wrapper .snoop {
    height: 277px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.contact-forum-block.trawka {
    background: url(/images/png/banners_images/contact_trawkaorg.png);
}

.contact-forum-block.haszysz {
    background: url(/images/png/banners_images/contact_haszyszkom.png);
}

.contact-forum-block.nasiona {
    background: url(/images/png/banners_images/contact_nasionakonopii.png);
}

.contact-forum-block.growlike {
    background: url(/images/png/banners_images/contact_growlikepro.png);
}

.contact-forum-block:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.6;
    border-top-left-radius: inherit;
}

.contact-forum-block .btn {
    min-width: 110px;
    position: absolute;
    bottom: 0;
    right: -18px;
    z-index: 2;
    text-align: center;
}

.contact-forum-block .text {
    padding-left: 60px;
    color: white;
    position: relative;
    z-index: 2;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}


/* end contact page */


/* payment delivery page */

.delivery-block {
    width: 50%;
    padding-right: 8%;
    margin-top: 40px;
}

.delivery-block:nth-child(2n) {
    padding-right: 0;
    padding-left: 8%;
}

.delivery-block .image-wrapper {
    width: 100px;
    height: 100px;
    background: #ebebeb;
    text-align: center;
    position: relative;
}

.delivery-block .image-wrapper .number {
    height: 26px;
    width: 26px;
    border-radius: 50%;
    position: absolute;
    left: -13px;
    top: -13px;
    background: #000;
    color: #fff;
    text-align: center;
    line-height: 24px;
    font-weight: 600;
}

.delivery-block .image-wrapper .number.green {
    background: #8ac349;
}

.delivery-block .image-wrapper img {
    position: relative;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.delivery-block .description-wrapper {
    width: calc(100% - 100px);
    padding-left: 40px;
    height: 100px;
}

.delivery-block .description {
    position: relative;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.delivery-block .description .title {
    color: #000;
    font-size: 22px;
}

.delivery-block .description .text p {
    position: relative;
    font-weight: 100;
    color: #404040;
}

.delivery-block .description .text p:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 1px;
    background: #d7d7d7;
    z-index: 1;
}

.delivery-block .description .text span {
    position: relative;
    z-index: 2;
    background: white;
    padding-right: 15px;
}

.delivery-block .description .text .price {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: white;
    padding-left: 15px;
    font-weight: 500;
    font-size: 18px;
    line-height: 15px;
}

.delivery-block .description-wrapper .green {
    color: #8ac349 !important;
}

.delivery-block:first-child .description .title {
    font-size: 30px;
    font-weight: 500;
}

.payment-wrapper {
    margin-top: 50px;
}

.payment-block {
    width: 50%;
    padding-right: 8%;
}

.payment-block:nth-child(2n) {
    padding-right: 0;
    padding-left: 8%;
}

.payment-block .title {
    color: #000;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.payment-block ul {
    list-style-type: none;
    line-height: 40px;
    font-weight: 100;
    color: #404040;
}

.payment-block ul li:before {
    content: '';
    width: 9px;
    height: 9px;
    background: #8ac349;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    display: inline-block;
    margin-right: 20px;
}

.payment-block.bank-info {
    font-weight: 100;
}

.payment-block.bank-info b {
    color: #8ac349;
}

.payment-block.bank-info label {
    display: inline-block;
    width: 120px;
    margin-bottom: 30px;
}

.payment-block.bank-info span {
    display: inline-block;
    margin-bottom: 30px;
}


/* end payment delivery page */


/* safety legality page */

.safety-legality-wrapper .title-line {
    margin-bottom: 50px;
}

.safety-legality-wrapper b {
    color: #000;
}

.safety-legality-wrapper {
    overflow: hidden;
    font-weight: 100;
}

.safety-wrapper {
    width: 65%;
    padding-right: 60px;
    position: relative;
}

.legality-wrapper {
    width: 35%;
}

.safety-wrapper .bg-text {
    font-size: 200px;
    font-weight: 500;
    position: absolute;
    bottom: 0;
    line-height: 100px;
    left: -800px;
    z-index: -1;
    color: #dbdbdb;
}

.safety-legality-shops {
    color: #8ac349;
    font-size: 20px;
    font-weight: 500;
    margin-top: 90px;
    padding-bottom: 60px;
    position: relative;
    margin-bottom: 40px;
}

.safety-legality-shops:after {
    content: '';
    width: 60px;
    height: 5px;
    background: #8ac349;
    position: absolute;
    left: 0;
    bottom: 0;
}

.legality-wrapper b {
    font-size: 20px;
    margin-top: 20px;
    display: inline-block;
}


/* end safety legality page */


/* about us page */

.about-us-wrapper {
    margin-top: 60px;
}

.about-us {
    overflow: hidden;
}

.about-us-wrapper .left {
    width: calc((100% - 75px)/2);
    margin-right: 75px;
}

.about-us-wrapper .right {
    width: calc((100% - 75px)/2);
    position: relative;
    padding-bottom: 200px;
}

.about-us-wrapper .title {
    color: #000;
    font-size: 56px;
    padding-top: 30px;
    position: relative;
    margin-bottom: 20px;
}

.about-us-wrapper .title:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 5px;
    background: #8ac349;
}

.about-us-wrapper .bg-text {
    color: #dbdbdb;
    font-size: 240px;
    font-weight: 500;
    line-height: 130px;
    margin-top: 60px;
    position: absolute;
    left: 0;
    white-space: nowrap;
}

.our-reviews-wrapper {
    margin-top: 60px;
    overflow: hidden;
}

.our-reviews-wrapper .our-reviews .reviews-sites {
    width: calc((100% - 75px)/2);
    margin-right: 75px;
}

.our-reviews-wrapper .our-reviews .about-us-user-reviews-wrapper {
    width: calc((100% - 75px)/2);
}

.our-reviews-wrapper .about-us-user-reviews {
    background: #363636;
    padding: 45px 60px 55px;
    margin-right: -1000px;
    padding-right: 1000px;
    color: white;
    box-sizing: content-box;
}

.reviews-sites .title {
    font-size: 32px;
    color: #000;
}

.reviews-sites .text {
    font-weight: 100;
    padding: 20px 50px 20px 0;
}

.reviews-sites ul {
    list-style-type: none;
    line-height: 40px;
    color: #000;
}

.reviews-sites li:before {
    content: '';
    width: 9px;
    height: 9px;
    background: #8ac349;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    display: inline-block;
    margin-right: 20px;
}

.about-us-user-review {
    width: 50%;
    padding-right: 40px;
}

.about-us-user-review .name {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 30px;
}

.about-us-user-review .text {
    color: #c7c7c7;
}

.about-us-we-are-cool {
    margin-top: 30px;
}

.about-us-we-are-cool .left {
    width: calc((100% - 75px)/2);
    margin-right: 75px;
    padding-left: 215px;
    position: relative;
}

.about-us-we-are-cool .right {
    width: calc((100% - 75px)/2);
}

.about-us-we-are-cool .title {
    font-size: 30px;
    color: #000;
    margin-bottom: 20px;
}

.about-us-we-are-cool .text {
    font-weight: 100;
}

.about-us-we-are-cool .snoop {
    width: 190px;
    position: absolute;
    left: 0;
    top: 0;
}

.about-us-we-are-cool .greetings {
    position: relative;
    padding-top: 50px;
}

.about-us-we-are-cool .greetings:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 5px;
    background: #8ac349;
}

.about-us-we-are-cool .greetings b {
    color: #000;
    display: block;
    font-size: 20px;
}


/* end about us page */


/* basket */

.basket-gratis {
    margin-top: 30px;
    border-top: 1px solid #d7d7d7;
    padding-top: 20px;
}

.basket-page-wrapper {
    margin-top: 40px;
}

.basket-table-wrapper {
    position: relative;
}

.basket-page-wrapper .basket-table-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: #ebebeb;
}

.product-table {
    width: 100%;
    border-spacing: 0;
    position: relative;
    z-index: 3;
}

.product-table thead tr {
    height: 40px;
    font-weight: 100;
}

.product-table tbody tr td {
    padding: 30px 0;
    border-bottom: 1px solid #d7d7d7;
}

.product-table tbody tr:last-child td {
    border-bottom: none;
}

.product-table .rwd {
    display: none;
}

.product-table .image-wrapper {
    width: 86px;
    height: 60px;
    margin-right: 20px;
}

.product-table .product-name {
    color: #000;
    font-size: 20px;
    padding-left: 86px;
}

.product-table .product-name span {
    font-size: 14px;
    color: red;
}

.product-table .product-description {
    font-weight: 100;
    padding-left: 86px;
}

.product-table .remove {
    width: 31px;
    height: 31px;
    display: inline-block;
    line-height: 31px;
    font-size: 11px;
    text-align: center;
    border-radius: 50%;
    color: white;
    background: #b6b6b6;
    transition: 0.5s ease;
}

.product-table .remove:hover {
    background: #959393;
}

.basket-page-wrapper table tr td:nth-child {
    width: 35px;
}

.basket-page-wrapper .product-price {
    color: #000;
    font-size: 16px;
}

.basket-page-wrapper .product-total-price {
    color: #8ac349;
    font-size: 20px;
}

.current-basket {
    color: #000;
    font-size: 30px;
    margin-bottom: 30px;
}

.current-basket .quantity {
    color: #8ac349;
}

.current-discount-info {
    position: relative;
    color: #1f9ed5;
}

.current-discount-info:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 8px;
    bottom: 0;
    margin: auto;
    height: 4px;
    background: #8ac349;
}

.current-discount-info .right {
    padding-left: 40px;
    background: white;
    position: relative;
    z-index: 3;
    font-size: 18px;
    width: 330px;
    text-align: right
}

.current-discount-info .right span {
    font-size: 22px;
}

.amount input {
    width: 40px;
    float: left;
    height: 30px;
    border: 1px solid #dadada;
    border-right: none;
    text-align: center;
}

.amount .change-amount {
    width: 30px;
    float: left;
    height: 30px;
}

.amount .change-amount a {
    display: block;
    height: 50%;
    font-size: 6px;
    text-align: center;
    line-height: 15px;
    color: white;
}

.amount .change-amount a.plus {
    background: #7bae40;
}

.amount .change-amount a.minus {
    background: #8ac349;
}

.basket-summary {
    margin-top: 25px;
    margin-bottom: 50px;
}

.basket-summary>div {
    width: 245px;
}

.basket-summary .input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.basket-summary .input-wrapper label {
    position: absolute;
    font-weight: 100;
    padding: 0 10px;
    background: #fff;
    left: 10px;
    top: -10px;
}

.basket-summary .input-wrapper input {
    width: 100%;
    height: 40px;
    border: 1px solid #d7d7d7;
    padding-left: 20px;
    padding-right: 45px;
}

.basket-summary .input-wrapper .btn {
    width: 40px;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    cursor: pointer
}

.basket-summary .btn {
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
}

.basket-summary .popup-button {
    color: #1f9ed5;
    border: 2px solid #1f9ed5;
    position: relative;
    font-size: 20px;
    margin-bottom: 70px;
}

.basket-summary .popup-button span {
    position: absolute;
    right: 20px;
    font-size: 28px;
}

.basket-summary .continue-shopping {
    background: #d7d7d7;
    font-size: 18px;
    color: #636363;
    line-height: 44px;
    position: relative;
    transition: 0.5s ease;
}

.basket-summary .prices>div {
    position: relative;
    margin-bottom: 40px;
}

.basket-summary .prices>div:before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 1px;
    background: #d7d7d7;
}

.basket-summary .prices label {
    padding-right: 10px;
    position: relative;
    background: white;
    z-index: 2;
}

.basket-summary .prices span {
    padding-left: 10px;
    position: absolute;
    background: white;
    right: 0;
    z-index: 2;
    bottom: 0;
}

.basket-summary .continue-shopping:hover {
    background: #C3C3C3;
}

.basket-summary .prices .base-price label {
    font-weight: 100;
}

.basket-summary .prices .base-price span {
    font-size: 30px;
    line-height: 21px;
    color: #404040;
}

.basket-summary .prices .base-price span:after {
    content: '';
    height: 2px;
    background: #1f9ed5;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    transform: rotate(15deg);
}

.basket-summary .prices .base-price.not-line span:after {
    display: none;
}

.basket-summary .prices .delivery-price span {
    font-size: 30px;
}

.basket-summary .prices .final-price label {
    color: #404040;
}

.basket-summary .prices .final-price span {
    font-size: 50px;
    line-height: 32px;
    color: #8ac349;
}

.basket-gratis .title span {
    color: #000;
    font-size: 24px;
    vertical-align: text-bottom;
    margin-right: 10px;
}

.basket-gratis .title img {
    height: 36px;
}

.radio-wrapper input[type="radio"] {
    display: none;
}

.radio-wrapper .radio {
    width: 30px;
    height: 30px;
    border: 2px solid #e1e1e1;
    border-radius: 50%;
    display: inline-block;
    margin-right: 15px;
    float: left;
    position: relative;
    cursor: pointer;
}

.radio-wrapper .desc {
    position: relative;
    top: 2px;
    cursor: pointer;
}

.radio-wrapper input[type="radio"]:checked~.radio {
    border: 4px solid #8ac349;
}

.radio-wrapper input[type="radio"]:checked~.radio:after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.radio-wrapper input[type="radio"]:checked~.desc {
    color: #000;
}

.basket-gratis-option-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.basket-gratis-option-wrapper .radio-wrapper {
    margin-bottom: 14px;
    width: calc(100% / 3);
    padding-right: 30px;
}

.slider-range {
    border-radius: unset !important;
    padding: 0 !important;
    border: none !important;
    background: #cccccc !important;
}

.slider-range:before {
    display: none;
}

.slider-range label {
    position: absolute !important;
    bottom: calc(100% + 10px);
    padding: 0 !important;
}

.slider-range label:nth-child(1) {
    left: 0;
}

.slider-range label:nth-child(2) {
    right: 0;
}


/* end basket */


/* login page */


/*
body.header-checkout .search-wrapper {display: none;}
body.header-checkout .menu-top {display: none;}
body.header-checkout .header-bot .header-contact-wrapper {display: none;}
body.header-checkout .header-top .header-contact-wrapper {display: block;}
*/

.checkout-login-wrapper {
    margin-top: 30px;
}

.checkout-login-block-wrapper {
    display: flex;
    justify-content: center;
}

.checkout-login-block-wrapper>div {
    width: 322px;
}

.checkout-login-block {
    padding-right: 80px;
    border-right: 4px solid #e2e2e2;
}

.checkout-without-login {
    padding-left: 80px;
}

.checkout-login-block-wrapper .title {
    color: #000;
    font-size: 30px;
    margin-bottom: 40px;
}

.social-login {
    margin-bottom: 20px;
}

.social-login a {
    height: 40px;
    padding: 0 15px;
    display: inline-block;
    color: white;
    line-height: 40px;
}

.social-login a span {
    font-size: 18px;
    margin-left: 15px;
}

.social-login .facebook-login {
    background: #4e6ca9;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    width: 100%;
    text-align: center;
}

.social-login .google-login {
    background: #ef8076;
    border-bottom-right-radius: 15px;
}

.checkout-login-block .input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.checkout-login-block .input-wrapper input {
    height: 40px;
    width: 100%;
    border: 1px solid #d7d7d7;
    padding-left: 20px;
}

.checkout-login-block .input-wrapper label {
    position: absolute;
    left: 10px;
    top: -10px;
    padding: 0 10px;
    background: #fff;
    pointer-events: none;
}

.checkout-login-action {
    margin-top: 35px;
}

.checkout-login-action .btn {
    border: none;
}

.remind-password-link {
    border-bottom: 2px solid #e2e2e2;
}

.remind-password-link a {
    line-height: 38px;
}

.checkout-without-login .btn {
    background: #1f9ed5;
    width: 100%;
    margin-top: 30px;
    text-align: center;
    transition: 0.5s ease;
}

.checkout-without-login .account-check-icon {
    width: 40px;
    margin-right: 20px;
}

.checkout-without-login .btn:hover {
    background: #0C87BC
}


/* end login page */


/* checkout page */

.checkout-step-1-wrapper {
    padding-bottom: 50px;
    border-bottom: 1px solid #d7d7d7;
}

.checkout-step-1 .left {
    width: 420px;
}

.checkout-step-1 .title {
    font-size: 30px;
    color: #000;
    margin-bottom: 30px;
}

.checkout-step-1 .input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.checkout-step-1 .create-account {
    display: none;
    margin-top: 20px;
}

.checkout-step-1 .input-wrapper label {
    position: absolute;
    left: 10px;
    top: -10px;
    font-weight: 100;
    padding: 0 10px;
    background: white;
}

.checkout-step-1 .input-wrapper input:not([type="checkbox"]) {
    height: 40px;
    width: 100%;
    border: 1px solid #d7d7d7;
    padding-left: 20px;
    color: #000;
}

.checkout-step-1 .input-wrapper .tooltip {
    position: absolute;
    right: -8px;
    top: -8px;
}

.checkout-step-1 .checkout-data>.input-wrapper:first-child input {
    border-top-left-radius: 15px;
}

.checkout-step-1 .checkout-data>.input-wrapper:last-child input {
    border-bottom-right-radius: 15px;
}

.checkout-step-1 .input-double.postcode-city .input-wrapper:first-child {
    width: 140px;
}

.checkout-step-1 .input-double.postcode-city .input-wrapper:last-child {
    width: calc(100% - 140px);
}

.checkout-step-1 .input-double.half .input-wrapper {
    width: 50%;
}

.onepage-checkout select:disabled {
    opacity: 0.3;
    cursor: not-allowed !important;
}

.shipment-country:nth-child(n+2) {
    display: none;
}

.checkout-lang-select .input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.checkout-lang-select .input-wrapper label {
    position: absolute;
    left: 10px;
    top: -10px;
    font-weight: 100;
    padding: 0 10px;
    background: white;
}

.checkout-lang-select .input-wrapper select {
    height: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: white;
    border-radius: 0;
    width: 100%;
    padding-left: 20px;
    border: 1px solid #d7d7d7;
    color: #000;
    cursor: pointer;
}

.checkout-lang-select .input-wrapper .arrow {
    position: absolute;
    right: 20px;
    top: 0;
    line-height: 40px;
    font-size: 6px;
    pointer-events: none;
}

.checkout-step-1 .input-double .input-wrapper:last-child input {
    border-left: none;
}

.checkout-step-1 .input-wrapper select {
    height: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: white;
    border-radius: 0;
    width: 100%;
    padding-left: 20px;
    border: 1px solid #d7d7d7;
    color: #000;
    cursor: pointer;
}

.checkout-step-1 .input-wrapper .arrow {
    position: absolute;
    right: 20px;
    top: 0;
    line-height: 40px;
    font-size: 6px;
    pointer-events: none;
}

.checkout-step-1 .checkbox-wrapper {
    margin-bottom: 5px;
}

.checkout-step-1 .checkbox-text {
    color: #000;
}

.checkout-step-1 .checkbox-text span {
    font-size: 30px;
    color: #1f9ed5;
}

.checkout-step-1 .checkbox-text a {
    color: #8ac349;
}

.checkout-step-1 .snoop-info-wrapper {
    width: 480px;
    height: 395px;
    background: url(/images/svg/benefits.svg) no-repeat;
    margin-right: 80px;
    padding-left: 35px;
    clear: both;
    overflow: auto;
    margin-top: 30px;
    color: #000;
}

.checkout-step-1 .snoop-info-wrapper>div {
    clear: both;
    overflow: auto;
    margin-top: 40px;
}

.checkout-step-1 .snoop-info-wrapper img {
    width: 36px;
    float: left;
    margin-right: 20px;
}

.checkout-step-1 .snoop-info-wrapper span {
    color: #8ac349;
}

.checkout-step-2-wrapper {
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.checkout-step-2>div {
    width: calc((100% - 40px)/2);
}

.checkout-step-2>div:first-child {
    margin-right: 40px;
}

.checkout-step-2 .title {
    font-size: 30px;
    color: #000;
    margin-bottom: 20px;
}

.checkout-lang-select .title {
    font-size: 30px;
    color: #000;
    margin-bottom: 20px;
}

.payment-checkbox-wrapper {
    display: none;
}

.payment-checkbox-wrapper:first-child {
    display: block;
}

#payment-option {
    position: relative;
}

#payment-option.not-active:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20px;
    right: -20px;
    background: white;
    opacity: 0.7;
    z-index: 20;
}

.checkout-step-2 .delivery-checkbox-block {
    width: calc((100% - 20px)/2);
    float: left;
    height: 70px;
    margin-bottom: 20px;
    position: relative;
}

.checkout-step-2 .delivery-checkbox-block .tooltip {
    position: absolute;
    right: -8px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.checkout-step-2 .delivery-checkbox-block:nth-child(2n+1) {
    margin-right: 20px;
}

.checkout-step-2 .delivery-checkbox-block input[type="radio"] {
    display: none;
}

.checkout-step-2 .delivery-checkbox-block label {
    width: 100%;
    height: 100%;
    border: 2px solid #e1e1e1;
    display: block;
    position: relative;
    color: #000;
    padding-left: 95px;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-align: center;
}

.checkout-step-2 .delivery-checkbox-block:first-child label {
    border-top-left-radius: 25px;
}

.checkout-step-2 .delivery-checkbox-block:last-child label {
    border-bottom-right-radius: 25px;
}

.checkout-step-2 .delivery-checkbox-block input[type="radio"]:checked+label {
    border-color: #8ac349;
}

.checkout-step-2 .delivery-checkbox-block input[type="radio"]:checked+label:before {
    content: '\e91d';
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 30px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    background: #8ac349;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.checkout-step-2 .delivery-checkbox-block img {
    position: absolute;
    left: 0;
    right: calc(100% - 95px);
    top: 0;
    bottom: 0;
    margin: auto;
}

.checkout-step-2 .delivery-checkbox-block img.house {
    width: 36px;
}

.checkout-step-2 .payment-checkbox-block {
    clear: both;
    overflow: visible;
    margin-bottom: 15px;
    line-height: 28px;
    padding-right: 100px;
}

.checkout-step-2 .payment-checkbox-block label {
    cursor: pointer;
}

.checkout-step-2 .payment-checkbox-block input[type="radio"] {
    display: none;
}

.checkout-step-2 .payment-checkbox-block .radio {
    width: 30px;
    height: 30px;
    border: 2px solid #e1e1e1;
    border-radius: 50%;
    display: inline-block;
    margin-right: 15px;
    float: left;
    position: relative;
}

.checkout-step-2 .payment-checkbox-block input[type="radio"]:checked~.radio {
    border: 4px solid #8ac349;
}

.checkout-step-2 .payment-checkbox-block input[type="radio"]:checked~.radio:after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.checkout-step-2 .payment-checkbox-block input[type="radio"]:checked~.text-wrapper .text {
    color: #000;
}

.checkout-step-2 .payment-checkbox-block .text-wrapper {
    display: inline-block;
    width: calc(100% - 45px);
    position: relative;
    padding-right: 75px;
}

.checkout-step-2 .payment-checkbox-block .text-wrapper span {
    position: relative;
    z-index: 2;
    background: white;
}

.checkout-step-2 .payment-checkbox-block .text-wrapper:before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 1px;
    background: #d7d7d7;
    z-index: 1;
}

.checkout-step-2 .payment-checkbox-block .text-wrapper .text {
    padding-right: 10px;
}

.checkout-step-2 .payment-checkbox-block .text-wrapper .cost {
    padding-left: 10px;
    position: absolute;
    right: 0;
    height: 30px;
    bottom: -2px;
    font-size: 22px;
}

.checkout-step-2 .payment-checkbox-block .text-wrapper .cost.green {
    color: #8ac349;
    bottom: 3px;
}

.checkout-step-2 .payment-checkbox-block .text-wrapper .cost img {
    width: 20px;
}

.checkout-step-3>div {
    width: calc((100% - 40px)/2);
}

.checkout-step-3>div:first-child {
    margin-right: 40px;
}

.checkout-step-3 .title {
    font-size: 30px;
    color: #000;
    padding: 50px 0 15px;
}

.data-summary .summary-block {
    line-height: 30px;
    font-weight: 100;
}

.data-summary .summary-label {
    float: left;
    width: 120px;
}

.data-summary .summary-text {
    float: left;
    width: calc(100% - 120px);
    color: #000;
}

.checkout-step-3 .change-deliver-address .btn {
    background: #1f9ed5;
    width: 245px;
    text-align: center;
    margin-top: 35px;
}

.checkout-step-3 .checkout-comment-trigger {
    height: 60px;
    background: #d7d7d7;
    position: relative;
    color: #636363;
    cursor: pointer;
    line-height: 60px;
    text-align: center;
}

.checkout-step-3 .checkout-comment-trigger .arrow {
    position: absolute;
    right: 20px;
    font-size: 8px;
    pointer-events: none;
    line-height: inherit;
}


/*
.checkout-step-3 .checkout-comment {position: relative; display: none;}
.checkout-step-3 .checkout-comment:before {content: ''; position: absolute; bottom: 100%; right: 0; height: 14px; border-right: 1px solid #d7d7d7;}
*/

.checkout-step-3 .checkout-comment textarea {
    border: 1px solid #d7d7d7;
    width: 100%;
    padding: 10px 20px;
}

.checkout-step-3 .checkout-comment-wrapper {
    margin-top: 40px;
}

.checkout-step-3 .product-list {
    list-style-type: none;
    margin-top: 10px;
}

.checkout-step-3 .product-list li {
    position: relative;
    margin-bottom: 20px;
}

.checkout-step-3 .product-list li>div {
    height: 40px;
    float: left;
    position: relative;
    z-index: 2;
    background: white;
}

.checkout-step-3 .product-list li:before {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    top: 8px;
    left: 0;
    right: 0;
    margin: auto;
    height: 1px;
    background: #d7d7d7;
}

.checkout-step-3 .product-list .image-wrapper {
    width: 58px;
    text-align: center;
}

.checkout-step-3 .product-list .image-wrapper img {
    position: relative;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.checkout-step-3 .product-list .product-name {
    color: #000;
    font-size: 22px;
    padding: 0 15px;
    line-height: 40px;
    padding-left: 0;
}

.checkout-step-3 .product-list .product-name br {
    display: none;
}

.checkout-step-3 .product-list .price {
    position: absolute;
    right: 0;
    bottom: 4px;
    padding-left: 15px;
    font-size: 30px;
}

.checkout-step-3 .product-list .price.green {
    color: #8ac349;
}

.checkout-step-3 .product-list .price.green img {
    width: 24px;
}

.onepage-checkout .current-discount-info {
    margin-top: 30px;
    margin-bottom: 40px;
    height: 4px;
}

.basket-summary .continue-shopping .arrow {
    position: absolute;
    left: 20px;
    font-size: 12px;
    line-height: 40px;
    top: 1px;
}

.checkout-step-1-wrapper.not-active {
    pointer-events: none;
    position: relative;
}

.checkout-step-1-wrapper.not-active:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20px;
    right: -20px;
    background: white;
    opacity: 0.7;
    z-index: 20;
}

.checkout-step-3-wrapper.not-active {
    pointer-events: none;
    position: relative;
}

.checkout-step-3-wrapper.not-active:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20px;
    right: -20px;
    background: white;
    opacity: 0.7;
    z-index: 20;
}


/* end checkout page */


/* panel orders */

body.footer-no-margin .footer-wrapper {
    margin-top: 0;
}

.panel-sidebar-trigger {
    height: 40px;
    background: #363636;
    padding: 0 20px;
    color: white;
    line-height: 40px;
    position: relative;
    text-align: center;
    font-size: 22px;
    display: none;
}

.panel-sidebar-trigger .burger-icon {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    cursor: auto;
}

.panel-sidebar-trigger .burger-icon>div {
    height: 2px;
    background: white;
}

.panel-sidebar-trigger .burger-icon .top {
    -webkit-transform: translate3d(0, -5px, 0);
    -moz-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    -o-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
}

.panel-sidebar-trigger .burger-icon .bottom {
    -webkit-transform: translate3d(0, 5px, 0);
    -moz-transform: translate3d(0, 5px, 0);
    -ms-transform: translate3d(0, 5px, 0);
    -o-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
}

.panel-sidebar-trigger .arrow {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    height: 10px;
    font-size: 10px;
    color: #8ac349;
}

.panel-wrapper {
    display: flex;
}

.panel-container-wrapper {
    clear: both;
    overflow: hidden;
}

.panel-sidebar-wrapper {
    background: #363636;
    color: #878787;
    ;
    box-sizing: content-box;
    width: 245px;
}

.panel-sidebar-top-wrapper {
    padding: 30px 0;
    box-sizing: content-box;
    background: #252525;
    padding-right: 30px;
}

.panel-sidebar-bot-wrapper {
    padding: 30px;
    padding-left: 0px;
}

.panel-sidebar-wrapper a {
    display: block;
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
}

.panel-sidebar-wrapper a:last-child {
    margin-bottom: 0;
}

.panel-sidebar-top-wrapper a:last-child svg {
    position: relative;
    top: 2px;
}

.panel-sidebar-wrapper a .icon-wrapper {
    display: inline-block;
    width: 35px;
}

.panel-sidebar-wrapper a.active {
    color: #fff;
    font-weight: 500;
}

.panel-sidebar-wrapper a.active:after {
    content: '\e91b';
    color: #8ac349;
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.panel-sidebar-wrapper a.active .icon-wrapper {
    color: #8ac349;
}

.panel-sidebar-top-wrapper {
    font-size: 20px;
}

.panel-sidebar-top-wrapper a svg {
    width: 18px;
}

.panel-sidebar-top-wrapper a:first-child svg {
    width: 20px;
}

.panel-sidebar-top-wrapper a:not(.active) svg .cls-1,
.panel-sidebar-top-wrapper a:not(.active) svg .cls-2 {
    fill: #878787;
}

.panel-sidebar-top-wrapper a:not(.active) svg path,
.panel-sidebar-top-wrapper a:not(.active) svg path {
    fill: #878787;
}

.panel-sidebar-top-wrapper a.active svg#Warstwa_1 path {
    fill: #8bc34a
}

.panel-sidebar-bot-wrapper {
    font-weight: 100;
    font-size: 16px;
}

.panel-content-wrapper {
    width: calc(100% - 245px);
    padding-left: 40px;
    margin-bottom: 120px;
}

.panel-head .title {
    color: #000;
    font-size: 32px;
    font-weight: 500;
    vertical-align: middle;
    margin-right: 25px;
}

.panel-head .btn:not(.btn-green) {
    background: #b6b6b6;
}

.panel-head .btn:not(.btn-green):hover {
    background: #959393
}

.panel-order-list {
    position: relative;
}

.panel-order-list:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: -40px;
    height: 40px;
    background: #d7d7d7;
}

.panel-order-list .rwd {
    display: none;
}

.panel-head {
    margin-top: 20px;
    margin-bottom: 25px;
}

.panel-order-list table {
    width: 100%;
    border-spacing: 0;
    color: #5d5d5d;
    position: relative;
    z-index: 3;
}

.panel-order-list table thead tr {
    font-weight: 100;
    height: 40px;
}

.panel-order-list table thead tr td {
    padding-right: 10px;
}

.panel-order-list .btn {
    background: #1f9ed5;
    width: 100%;
    text-align: center;
}

.panel-order-list .btn:hover {
    background: #0C87BC
}

.panel-order-list tbody td {
    padding: 20px 10px;
    border-bottom: 1px solid #d7d7d7;
    color: #000;
}

.panel-order-list tbody td:first-child {
    padding-left: 0;
}

.panel-order-list tbody td:last-child {
    width: 165px;
    padding-right: 0;
}

.panel-order-list tbody .icon-check_small {
    width: 26px;
    height: 26px;
    display: inline-block;
    border-radius: 50%;
    color: #fff;
    background: #8ac349;
    line-height: 26px;
    text-align: center;
    font-size: 10px;
    vertical-align: text-top;
    margin-left: 10px;
}

.order-delivered .remove {
    color: #fff;
    background: #b6b6b6;
    width: 40px;
    border-bottom-right-radius: 15px;
    padding: 0;
}

.order-delivered .remove i {
    font-size: 12px;
    position: relative;
    bottom: 2px;
}

.order-delivered .details {
    width: calc(100% - 45px);
    border-top-left-radius: 15px;
}


/* end panel orders */


/* panel change password */

.panel-password-change .title {
    margin-top: 20px;
    color: #000;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
}

.panel-password-change .input-wrapper {
    position: relative;
    max-width: 420px;
    margin-bottom: 20px;
}

.panel-password-change .input-wrapper label {
    position: absolute;
    left: 10px;
    top: -10px;
    padding: 0 10px;
    background: white;
    font-weight: 100;
}

.panel-password-change .input-wrapper input {
    width: 100%;
    height: 40px;
    border: 1px solid #d7d7d7;
    padding-left: 20px;
    color: #000;
}

.panel-password-change .input-wrapper:first-child input {
    border-top-left-radius: 15px;
}

.panel-password-change .input-wrapper:last-child input {
    border-bottom-right-radius: 15px;
}

.panel-password-change .action-wrapper {
    margin-top: 40px;
}


/* end panel change password */


/* panel remove account */

.panel-remove-account {
    position: relative;
}

.panel-remove-account img.snoop {
    position: absolute;
    height: 200px;
    right: 0;
    bottom: -150px;
}

.panel-remove-account .title {
    margin-top: 20px;
    color: #000;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
}

.panel-remove-account .btn {
    background: #f16a7b;
    margin-top: 35px;
}

.panel-remove-account .btn:hover {
    background: #f7334c
}


/* end panel remove account */


/* panel addresses*/

.panel-address-block {
    width: calc((100% - 2*30px)/3);
    float: left;
    margin-right: 30px;
    padding: 30px;
    border: 2px solid #b7b7b7;
    color: #000;
    font-weight: 100;
    position: relative;
    margin-bottom: 30px;
}

.panel-address-block:nth-child(3n) {
    margin-right: 0;
}

.panel-address-block:first-child {
    border-top-left-radius: 25px;
}

.panel-address-block:last-child {
    border-bottom-right-radius: 25px;
}

.panel-address-block.default {
    border-color: #8ac349;
}

.panel-address-title {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 500;
}

.panel-address-block .btn {
    padding: 0;
    text-align: center;
    position: absolute;
    top: -20px;
    right: -22px;
    display: inline-block;
    width: 42px;
    height: 42px;
    border: 2px solid white;
    color: white;
}

.panel-address-block .edit {
    border-top-left-radius: 15px;
    background: #b6b6b6;
}

.panel-address-block .remove {
    border-bottom-right-radius: 15px;
    background: #a1a1a1;
    top: 20px;
    font-size: 12px;
}

.panel-address-block .edit:hover {
    background: #959393
}

.panel-address-block .remove:hover {
    background: #6E6E6E
}


/* end panel addresses*/


/* panel edit data */

.panel-edit-data .checkout-step-1 {
    max-width: 425px;
}

.panel-edit-data .action-wrapper .btn {
    border: none;
    width: 245px;
}


/* end panel edit data */


/* panel order details */

.order-detail-wrapper .order-header {
    display: flex;
}

.order-detail-wrapper .order-name {
    width: 420px;
}

.order-detail-wrapper .action-wrapper {
    width: calc(100% - 420px);
}

.order-detail-wrapper .order-header .back {
    height: 40px;
    width: 40px;
    background: #000;
    color: #fff;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 20px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}

.order-detail-wrapper .order-header .title {
    color: #000;
    font-size: 30px;
    font-weight: 500;
}

.order-detail-wrapper .action-wrapper a {
    width: calc((100% - 2*5px)/3);
    float: left;
    text-align: center;
    margin-right: 5px;
}

.order-detail-wrapper .action-wrapper a:first-child {
    border-top-left-radius: 15px;
}

.order-detail-wrapper .action-wrapper a:last-child {
    margin-right: 0;
    border-bottom-right-radius: 15px;
}

.order-detail-wrapper .action-wrapper .tracking {
    background: #1f9ed5;
}

.order-detail-wrapper .action-wrapper .reorder {
    background: #8ac349;
}

.order-detail-wrapper .action-wrapper .return {
    background: #878787;
}

.order-detail-wrapper .order-info {
    position: relative;
}

.order-detail-wrapper .order-info:before {
    content: '';
    position: absolute;
    z-index: 1;
    left: -40px;
    right: 0;
    top: 0;
    height: 40px;
    background: #ebebeb;
}

.order-detail-wrapper .order-info td {
    padding-right: 40px;
}

.order-detail-wrapper .order-info table {
    position: relative;
    z-index: 2;
    color: #5d5d5d;
    font-weight: 100;
    margin-top: 30px;
    border-spacing: 0;
}

.order-detail-wrapper .order-info thead td {
    height: 40px;
}

.order-detail-wrapper .order-info tbody {
    color: #000;
}

.order-detail-wrapper .order-info tbody td {
    padding-top: 30px;
    padding-bottom: 30px;
}

.order-info .rwd {
    display: none;
}

.ordered-product-list-header {
    line-height: 40px;
    margin-left: -40px;
    padding-left: 40px;
    background: #ebebeb;
    font-weight: 100;
}

.product-table .return {
    background: #b6b6b6;
    float: right;
}

.order-detail-wrapper .product-table td {
    text-align: center;
}

.order-detail-wrapper .product-table td.teko {
    font-size: 26px;
    color: #404040;
}

.order-detail-wrapper .product-table td:first-child {
    white-space: nowrap;
    text-align: left;
}

.order-detail-wrapper .product-table td:last-child {
    padding-right: 0;
    width: 100px;
}

.order-detail-wrapper .product-table tbody tr:last-child td {
    border-bottom: 2px solid #d7d7d7;
}

.order-detail-wrapper .product-table .line {
    width: 61px;
}

.order-detail-wrapper .product-table .line hr {
    background: #d7d7d7;
    border: none;
    display: inline-block;
    vertical-align: middle;
    margin: 0 30px;
}

.order-detail-wrapper .summary {
    text-align: right;
    color: #404040;
    margin-top: 10px;
}

.order-detail-wrapper .summary .shipment {
    font-weight: 100;
}

.order-detail-wrapper .summary .teko {
    font-size: 40px;
    margin-left: 10px;
}

.summary-details-wrapper>div {
    width: calc((100% - 80px)/2);
    margin-right: 80px;
}

.summary-details-wrapper>div:last-child {
    margin-right: 0;
}

.summary-details-wrapper .title {
    line-height: 40px;
    background: #ebebeb;
    font-weight: 100;
    margin-left: -40px;
    padding-left: 40px;
    margin-bottom: 30px;
}

.summary-details-wrapper {
    margin-top: 40px;
}


/* end panel order details */

.popup-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 25px;
    z-index: 99999;
    display: none;
}

.popup-wrapper .page-width-margin {
    height: 100%;
}

.popup-wrapper .mask {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    opacity: 0.6;
    z-index: 2;
}

.popup-wrapper .popup {
    border: 4px solid #8ac349;
    border-radius: 15px 0;
    padding: 35px 40px;
    background: white;
    position: relative;
    margin: auto;
    z-index: 3;
    top: 30%;
    -webkit-transform: translate(0, -30%);
    -moz-transform: translate(0, -30%);
    -ms-transform: translate(0, -30%);
    transform: translate(0, -30%);
}

.popup-wrapper .popup .close {
    width: 40px;
    height: 40px;
    color: white;
    background: #8ac349;
    border-radius: 15px 0;
    position: absolute;
    top: -22px;
    right: -22px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    font-size: 12px;
}

.panel-remove-account .popup {
    width: 310px;
    font-weight: 100;
}

.panel-remove-account .popup .teko {
    font-weight: 500;
    color: #000;
    font-size: 26px;
}

.onepage-checkout-wrapper .popup-content {
    display: flex;
}

.onepage-checkout-wrapper .popup-content img {
    width: 250px;
    margin-top: 60px;
}

.onepage-checkout-wrapper .popup-content>div {
    padding: 0 40px;
    border-right: 4px solid #e2e2e2;
}

.onepage-checkout-wrapper .popup-content>div:first-child {
    padding-left: 0;
}

.onepage-checkout-wrapper .popup-content>div:last-child {
    padding-right: 0;
    border-right: 0;
}

.onepage-checkout-wrapper .popup-content .title {
    color: #000;
    font-size: 30px;
    margin-bottom: 20px;
}

.onepage-checkout-wrapper .checkout-step-1 .checkout-data {
    padding-top: 10px;
    width: 380px;
    max-width: 100%;
}

.onepage-checkout-wrapper .checkout-data .btn {
    min-width: 50%;
    text-align: center;
}

.onepage-checkout-wrapper .popup-content .my-address-block {
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: space-around;
}

.onepage-checkout-wrapper .popup-content .my-address {
    border: 2px solid #d7d7d7;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    flex: 1 0 calc(50% - 20px);
    min-width: 150px;
}

.onepage-checkout-wrapper .popup-content .my-address:nth-child(2n) {
    margin-left: 20px;
}

.onepage-checkout-wrapper .popup-content .my-address.active {
    border-color: #8ac349;
}

.onepage-checkout-wrapper .popup-content .my-address:hover {
    border-color: #8ac349;
}

.checkout-register {
    padding-left: 80px;
    width: 320px;
}

.checkout-register .btn {
    background: #1f9ed5;
    transition: 0.5s ease;
}

.checkout-register .btn:hover {
    background: #0C87BC;
}

.checkout-register .input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.checkout-register .checkbox-wrapper {
    height: 40px;
}

.checkout-register .checkbox-wrapper a {
    color: #8ac349;
}

.checkout-register .input-wrapper label {
    position: absolute;
    left: 10px;
    top: -10px;
    padding: 0 10px;
    background: #fff;
}

.checkout-register .input-wrapper input {
    height: 40px;
    width: 100%;
    border: 1px solid #d7d7d7;
    padding-left: 20px;
}

.login-action-wrapper .btn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.panel-addresses .popup {
    width: 550px;
}

.panel-addresses .popup-content .title {
    color: #000;
    font-size: 30px;
    margin-bottom: 20px;
}


/* product */

.product-basic-info-wrapper {
    margin-bottom: 25px;
}

.product-basic-info-wrapper>div {
    width: calc((100% - 60px)/2);
    margin-right: 60px;
    position: relative;
}

.product-basic-info-wrapper>div:last-child {
    margin-right: 0;
}

.product-info-pricing .buy-option {
    position: relative;
    margin-bottom: 15px;
    padding-right: 0;
}

.product-info-pricing .buy-option .price {
    color: #404040;
    font-size: 24px;
    position: relative;
    background: white;
    padding-right: 15px;
    z-index: 2;
    color: #000;
}

.product-info-pricing .buy-option .price label {
    font-size: 14px;
    color: red;
}

.product-info-pricing .buy-option .price.reduced {
    color: #f59e00;
}

.product-info-pricing .buy-option .old-price {
    position: absolute;
    top: -18px;
    left: 0;
    z-index: 10;
}

.product-info-pricing .buy-option .old-price:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 4px;
    margin: auto;
    height: 1px;
    background: #404040;
}

.product-info-pricing .buy-option .count {
    color: #b6b6b6;
    font-size: 20px;
    position: absolute;
    right: 0px;
    bottom: -1px;
    background: white;
    z-index: 2;
    padding-left: 15px;
}

.product-info-pricing .package-price-wrapper:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 9px;
    height: 1px;
    background: #d7d7d7;
}

.prodcut-add-popup-wrapper {
    width: 100% !important;
    position: fixed !important;
    margin: 0 auto !important;
    pointer-events: none;
}

.prodcut-add-popup-wrapper .popup {
    pointer-events: all;
}

.buy-options-wrapper {
    width: calc(100% - 245px - 40px);
    margin-right: 40px;
}

.buy-action-wrapper {
    width: 245px;
}

.package-price-wrapper {
    width: calc(100% - 90px - 20px);
    margin-right: 20px;
    position: relative;
    line-height: 30px;
    height: 30px;
}

.package-quantity-wrapper {
    width: 90px;
}

.package-quantity-wrapper input {
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid #dadada;
    border-right: 0;
    float: left;
    text-align: center;
}

.package-quantity-wrapper input[type="number"]::-webkit-outer-spin-button,
.package-quantity-wrapper input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.package-quantity-wrapper input[type="number"] {
    -moz-appearance: textfield;
}

.package-quantity-wrapper a {
    display: block;
    width: 30px;
    height: 30px;
    background: #878787;
    color: white;
    float: left;
    text-align: center;
    line-height: 30px;
    transition: 0.5s ease;
}

.package-quantity-wrapper a:last-child {
    background: #b6b6b6;
}

.package-quantity-wrapper a:hover {
    background: #6E6E6E;
}

.package-quantity-wrapper a:last-child:hover {
    background: #959393;
}

.title-rating-wrapper {
    margin-bottom: 35px;
}

.title-rating-wrapper .title {
    font-size: 40px;
    color: #000;
    line-height: 35px;
}

.product-info-pricing .title-rating-wrapper .title-rating-wrapper .title {
    font-size: 40px;
    color: #000;
    line-height: 35px;
    font-weight: 400;
}

.title-rating-wrapper .manufacturer {
    color: #8ac349;
    font-size: 20px;
}

.product-orginal-price {
    display: none;
}

.product-orginal-price .price {
    font-size: 24px;
    line-height: 22px;
    position: relative;
    color: #404040;
}

.product-orginal-price .price:before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #1f9ed5;
    transform: rotate(15deg);
    z-index: 2;
}

.buy-action-wrapper .delivery {
    font-weight: 100;
    padding-bottom: 20px;
}

.buy-action-wrapper .delivery .giftbox {
    width: 25px;
    float: left;
    margin-right: 10px;
}

.buy-action-wrapper .delivery .teko {
    color: #8ac349;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 10px;
    display: inline-block;
}

.buy-action-wrapper .product-summary {
    font-size: 24px;
    margin-top: 10px;
}

.buy-action-wrapper .product-summary span {
    margin-top: 18px;
    font-size: 20px;
}

.buy-action-wrapper .product-summary .price {
    color: #8ac349;
    font-size: 40px;
}

.buy-action-wrapper .buttons a {
    display: block;
    text-align: center;
    position: relative;
}

.buy-action-wrapper .buttons .basket {
    background: #f59e00;
    color: white;
    height: 50px;
    line-height: 50px;
    margin-bottom: 10px;
    transition: 0.5s ease;
}

.buy-action-wrapper .buttons .favourite {
    background: #d7d7d7;
    color: #636363;
    transition: 0.5s ease;
}

.buy-action-wrapper .buttons .favourite.active i {
    color: #f16a7b;
}

.buy-action-wrapper .buttons .basket img {
    width: 24px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 20px;
}

.buy-action-wrapper .buttons .favourite .icon-heart {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 20px;
    font-size: 20px;
}

.buy-action-wrapper .current-rabat {
    color: #1f9ed5;
    margin-bottom: 6px;
}

.buy-action-wrapper .next-rabat {
    color: #000;
    margin-bottom: 20px;
}

.buy-action-wrapper .next-rabat-diff {
    color: #8ac349;
    font-weight: 600;
    font-size: 14px;
}

.buy-action-wrapper .next-rabat-value {
    color: #1f9ed5;
    font-weight: 600;
    font-size: 14px;
}

.buy-action-wrapper .buttons .basket:hover {
    background: #DE8F00
}

.buy-action-wrapper .buttons .favourite:hover {
    background: #C3C3C3
}

.product-description-wrapper {
    display: flex;
    margin-bottom: 50px;
}

.product-description-wrapper>div {
    width: calc((100% - 60px)/2);
}

.product-description-wrapper>div.wide {
    width: 100% !important;
}

.product-description-wrapper .product-attribute-information {
    margin-left: 60px;
    border: 1px solid #e1e1e1;
    padding: 45px 60px;
}

.product-attribute-information ul {
    list-style-type: none;
}

.product-attribute-information li {
    position: relative;
    margin-bottom: 30px;
    clear: both;
    overflow: auto;
}


/*
.product-attribute-information li span {width: 190px; padding-left: 45px; margin-right: 15px; display: inline-block; position: relative; float: left;}
.product-attribute-information li label {width: calc(100% - 205px); display: inline-block;  float: left;}
*/

.product-attribute-information li span {
    width: 100%;
    padding-left: 45px;
    display: block;
}

.product-attribute-information li label {
    padding-left: 45px;
    display: block;
}

.product-attribute-information li span:after {
    display: none;
}

.product-attribute-information li span em {
    position: relative;
    z-index: 2;
    background-white;
    padding-right: 15px;
    background: white;
    font-style: normal;
    color: #000;
}

.product-attribute-information li span:after {
    content: '';
    position: absolute;
    left: 45px;
    bottom: 3px;
    right: 0;
    height: 1px;
    background: #d7d7d7;
}

.product-attribute-information li img {
    position: absolute;
    left: 0;
    top: 0;
    margin: auto;
    max-height: 100% !important;
}

.product-description .snoop-description>div {
    margin-top: 50px;
}

.product-description .snoop-description .title {
    font-size: 24px;
    color: #8ac349;
}

.product-description .snoop-description img {
    width: 55px;
    margin-right: 20px;
}

.product-description .description-text {
    margin-top: 20px;
}

.product-description .description-text p {
    margin: 1em 0;
    letter-spacing: 0.5px;
}

.product-description-global-wrapper {
    border: 2px solid #8ac349;
    border-radius: 15px 0;
    padding: 20px 35px;
    display: flex;
    margin-bottom: 30px;
}

.product-description-global-wrapper>div {
    padding-right: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.product-description-global-wrapper>div>div:first-child {
    margin-bottom: 20px;
}

.product-description-global-wrapper>div:last-child {
    padding-right: 0;
    padding-left: 40px;
    border-left: 1px solid #d7d7d7;
}

.product-description-global-wrapper img {
    margin-right: 20px;
    vertical-align: middle;
}

.product-comment-rating-wrapper {
    display: flex;
}

.product-comment-rating-wrapper .title-line {
    margin-bottom: 50px;
}

.product-comment-rating-wrapper .title-line.line-green:after {
    height: 2px;
}

.product-comment-rating-wrapper>div {
    width: calc((100% - 60px)/2);
}

.product-rating-wrapper {
    margin-left: 60px;
}

.product-add-comment {
    margin-top: 30px;
}

.comment-list-wrapper .comment.response+.product-add-comment {
    padding-left: 40px;
}

.product-add-comment textarea {
    width: 100%;
    padding: 20px;
    border: 1px solid #d7d7d7;
    margin-bottom: 10px;
}

.product-add-rate .signature,
.product-add-comment .signature {
    border: 1px solid #d7d7d7;
    border-radius: 15px 0;
    height: 40px;
    padding-left: 20px;
    margin-right: 20px;
}

.product-add-comment .submit {
    border: none;
    background: #1f9ed5;
    cursor: pointer;
    transition: 0.5s ease;
}

.product-add-comment .error {
    border-color: red;
}

.product-add-comment .submit:hover {
    background: #0C87BC;
}

.comment-list-wrapper .comment-wrapper {
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 30px;
}

.comment-list-wrapper .comment-wrapper:last-child {
    border-bottom: none;
}

.comment-list-wrapper .comment.response {
    padding-left: 40px;
}

.comment-list-wrapper .comment {
    margin-top: 30px;
}

.comment-list-wrapper .comment .nickname {
    font-size: 20px;
    color: #000;
    padding-right: 20px;
    border-right: 1px solid #e2e2e2;
    margin-right: 15px;
}

.comment-list-wrapper .comment .date {
    font-size: 14px;
    color: #8ac349;
}

.comment-list-wrapper .comment .text {
    margin: 10px 0;
}

.comment-list-wrapper .comment .response-button {
    color: #1f9ed5
}

.rate-view {
    position: relative;
    width: calc(16px * 5);
    height: 15.2px;
    display: inline-block;
}

.rate-view span {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat-y: no-repeat !important;
    background-position: left !important;
}

.rate-view span.rate-gray {
    background: url(/images/hs_star/star_gr.svg);
    z-index: 1;
    background-size: 16px 15.2px;
}

.rate-view span.rate-yellow {
    background: url(/images/hs_star/star_yel.svg);
    z-index: 2;
    background-size: 16px 15.2px;
}

.rate-view-wrapper {
    display: inline-block;
    background: white;
    position: relative;
    z-index: 2;
    margin-left: -5px;
    padding-right: 20px;
}

.rate-view-wrapper label {
    padding-left: 10px;
    font-size: 18px;
}

.rate-list-wrapper .nickname {
    font-size: 20px;
    color: #000;
    padding-right: 20px;
    border-right: 1px solid #e2e2e2;
    margin-right: 15px;
    margin-left: 10px;
}

.rate-list-wrapper .date {
    font-size: 14px;
    color: #8ac349;
}

.rate-list-wrapper .text {
    margin: 10px 0;
}

.rate-list-wrapper .rate-wrapper {
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 30px;
    margin-top: 30px;
}

.rate-list-wrapper .rate-wrapper:last-child {
    border-bottom: none;
}

.product-add-rate {
    position: relative;
}

.product-add-rate label.teko {
    position: absolute;
    top: -13px;
    left: 20px;
    padding: 0 10px;
    background: white;
    font-size: 20px;
}

.product-add-rate label.teko.error {
    color: red;
}

.product-add-rate textarea {
    width: 100%;
    padding: 20px;
    border: 1px solid #d7d7d7;
    margin-bottom: 10px;
}

.product-add-rate textarea.error,
.product-add-rate input.error {
    border-color: red;
}

.product-add-rate .submit {
    border: none;
    background: #faaf33;
    cursor: pointer;
    transition: 0.5s ease;
}

.product-add-rate .submit:hover {
    background: #F59E00;
}

.title-rating-wrapper .rating-stars {
    margin-top: 2px;
    margin-right: 10px;
}

.title-rating-wrapper .rating-count {
    color: #000;
}

.rate-form-wrapper {
    font-size: 0;
    display: inline-block;
    margin-top: 5px;
    margin-right: 10px;
}

.rate-form-wrapper input {
    display: none;
}

.rate-form-wrapper label {
    display: inline-block;
    width: 16px;
    height: 15.2px;
    background: url(/images/hs_star/star_gr.svg);
    cursor: pointer;
}

.rate-form-wrapper .hovered label {
    background: url(/images/hs_star/star_yel.svg);
}

.rate-form-wrapper .active label {
    background: url(/images/hs_star/star_yel.svg);
}

.rate-form-wrapper .not-active label {
    background: url(/images/hs_star/star_gr.svg);
}

.product-gallery-wrapper.slick-initialized .slick-slide {
    height: 335px;
}


/* .product-gallery-wrapper .slick-slide {background: #eaeaea;} */

.product-gallery-wrapper .slick-slide img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    position: relative;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
}

.product-gallery-wrapper .slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 40px;
    width: 40px;
    background: #000;
    color: #fff;
    margin: auto;
    line-height: 40px;
    text-align: center;
    z-index: 2;
    border-radius: 50%;
    cursor: pointer;
}

.product-gallery-wrapper .slick-prev {
    left: -20px;
    padding-right: 3px;
}

.product-gallery-wrapper .slick-next {
    right: -20px;
    padding-left: 3px;
}

.product-gallery-thumbs-wrapper {
    /*width: 210px;*/
    margin: 0 auto;
    margin-top: 20px;
}

.product-gallery-thumbs-wrapper .thumb-bg {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 50%;
    border: 4px solid #b7b7b7;
    cursor: pointer;
}

.product-gallery-thumbs-wrapper .slick-current .thumb-bg {
    border-color: #8ac349;
}

#cboxContent {
    margin-top: 0;
}

#cboxLoadedContent {
    border: 5px solid #8ac349;
    border-radius: 25px 0;
}

#cboxCurrent {
    display: none !important;
}

#cboxClose {
    width: 40px;
    height: 40px;
    border-radius: 15px 0;
    top: -18px;
    right: -18px;
    background: #8ac349;
    font-size: 0;
}

#cboxClose:after {
    content: "\e908";
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    font-size: 12px;
    color: white;
    text-indent: 0;
}

#colorbox,
#cboxOverlay,
#cboxWrapper {
    overflow: visible !important;
}


/* end product */


/* blog HP */

.blog .header-actions-wrapper {
    width: 290px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
}

.blog .header-actions-wrapper a {
    height: 34px;
    line-height: 34px;
    display: inline-block;
}

.blog .header-actions-wrapper .shop {
    color: white;
    background: #f59e00;
    padding: 0 25px;
}

.blog .logo-wrapper {
    width: 150px;
}

.blog .logo {
    width: 110px;
    display: block;
}

.blog .container-wrapper {
    min-height: 100%;
    position: relative;
}

/*
.blog .content-wrapper {
    padding-bottom: 84px;
}

.blog .footer-copy {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
*/

.blog h1,
.blog h2,
.blog h3,
.blog h4,
.blog h5,
.blog h6 {
    font-family: Teko, arial;
    color: #000;
    font-weight: 400;
    margin: 20px 0;
}

.blog-main {
    width: calc(100% - 260px);
    padding-right: 40px;
}

.blog-main-sidebar {
    width: 260px;
}

.blog-main-wrapper {
    margin-top: 50px;
}

.blog-sidebar-new-wrapper {
    border: 4px solid #1f9ed5;
    border-radius: 15px 0;
    overflow: hidden;
    margin-top: 40px;
}

.blog-sidebar-new-wrapper img {
    width: 100%;
    display: block;
}

.blog-sidebar-new-tag {
    background: #1f9ed5;
    padding: 13px 40px;
}

.blog-sidebar-new-tag .title-line span {
    color: #fff;
    background: #1f9ed5;
}

.blog-sidebar-new-tag .title-line:after {
    background: #31bffd;
}

.blog-sidebar-new {
    padding: 0 40px 40px;
}

.blog-sidebar-new .title {
    font-size: 24px;
    border-bottom: 1px solid #d7d7d7;
    padding: 10px 0;
    color: #000;
}

.blog-sidebar-new .price label {
    color: #000;
    font-size: 22px;
}

.blog-sidebar-new .price span {
    color: #8ac349;
    font-size: 40px;
    margin-left: 10px;
}

.blog-sidebar-new .btn {
    width: 100%;
    text-align: center;
}

.latest-article .article-image-bg {
    width: 260px;
    height: 260px;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
}

.latest-article .article-image-bg .boxlabel {
    top: -24px;
    font-size: 12px;
    line-height: 22px;
    font-weight: 500;
}

.latest-article .article-main-content {
    width: calc(100% - 260px);
    padding-left: 40px;
}

.latest-article .title {
    color: black;
    font-size: 34px;
    line-height: 30px;
    margin-bottom: 20px;
}

.latest-article .text {
    color: #000;
    line-height: 30px;
    margin: 20px 0 35px;
}

.article-info-wrapper span {
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #d7d7d7;
}

.article-info-wrapper span:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.article-info-wrapper span i {
    margin-right: 10px;
}

.article-info-wrapper span i.icon-eye {
    font-size: 12px;
}

.blog-main .most-readed-wrapper {
    margin-top: 50px;
}

.blog-main .most-readed>div {
    width: calc((100% - 40px)/2);
    float: left;
    margin-right: 40px;
    margin-bottom: 20px;
    display: flex;
}

.blog-main .most-readed>div:nth-child(2n) {
    margin-right: 0;
}

.blog-main .most-readed-wrapper .image-wrapper {
    height: 60px;
    width: 102px;
    background-size: cover !important;
    background-position: center !important;
}

.blog-main .most-readed-wrapper .image-wrapper img {
    display: block;
    max-height: 100%;
}

.blog-main .most-readed-wrapper .title {
    width: calc(100% - 102px);
    padding-left: 35px;
    color: #000;
    font-size: 14px;
}

.blog-main .most-readed-wrapper .title a {
    position: relative;
    top: 47%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: block;
}

.most-readed-wrapper .title-line {
    margin-bottom: 40px;
}

.article-box-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.article-box {
    width: 260px;
}

.article-box .article-box-image {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    width: 100%;
    height: 154px;
}

.article-box .article-box-image .btn {
    background: #404040;
    border: 2px solid white;
    box-sizing: content-box;
    position: absolute;
    right: -22px;
    bottom: -2px;
}

.article-box .article-box-info {
    margin: 10px 0;
}

.article-box .article-box-info span {
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #d7d7d7;
}

.article-box .article-box-info span:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.article-box i.icon-eye {
    font-size: 12px;
    margin-right: 10px;
}

.article-box .title {
    font-size: 20px;
    color: #000;
}

.blog-new-post {
    margin-top: 45px;
}

.blog-new-post-wrapper .slick-initialized .slick-slide {
    margin-right: 10px !important;
}

.blog-new-post-wrapper .slick-arrow {
    position: absolute;
    top: 50px;
    height: 40px;
    width: 40px;
    background: #000;
    color: #fff;
    line-height: 40px;
    text-align: center;
    z-index: 2;
    border-radius: 50%;
    cursor: pointer;
}

.blog-new-post-wrapper .slick-prev {
    left: -20px;
    padding-right: 3px;
}

.blog-new-post-wrapper .slick-next {
    right: 10px;
    padding-left: 3px;
}

.blog-new-post .article-box .text {
    display: none;
}

.blog-instagram-wrapper {
    margin-top: 40px;
}

.blog-instagram-wrapper .title-line {
    margin-bottom: 40px;
}

.blog-instagram .instagram-photo {
    display: block;
    width: 125px;
    height: 125px;
    margin: 0 auto;
    background-size: cover !important;
    background-position: center !important;
}

.blog-instagram-button-wrapper a {
    background: #517fa4;
    color: #fff;
    padding: 5px 10px;
    display: block;
    margin: 10px auto 0;
    border-radius: 4px;
    width: fit-content;
    text-align: center;
    max-width: 200px;
}

.blog-instagram-button-wrapper a i {
    margin-right: 6px;
    font-size: 14px;
}

@supports (width: fit-content) {
    .blog-instagram-wrapper .title-line span {
        margin: 0 auto;
        width: fit-content;
        display: block;
        padding: 0 30px;
    }
}

.blog-instagram .slick-arrow {
    position: absolute;
    top: 0px;
    bottom: 0;
    margin: auto;
    height: 40px;
    width: 40px;
    background: #000;
    color: #fff;
    line-height: 40px;
    text-align: center;
    z-index: 2;
    border-radius: 50%;
    cursor: pointer;
}

.blog-instagram .slick-prev {
    left: -10px;
    padding-right: 3px;
}

.blog-instagram .slick-next {
    right: -10px;
    padding-left: 3px;
}


/* end blog HP*/


/* blog category */

.blog-category-wrapper {
    margin-top: 50px;
}

.blog-category-list>div {
    width: calc((100% - 2 * 40px)/3);
    margin-right: 40px;
    float: left;
    margin-bottom: 40px;
}

.blog-category-list>div:nth-child(3n) {
    margin-right: 0;
}

.blog-category-list .article-box {
    max-width: 100%;
}

.article-box .text {
    color: #000;
}

.blog-category-wrapper .blog-sidebar-new-wrapper {
    margin-top: 0;
    margin-bottom: 40px;
}

.blog-sidebar-text {
    padding: 35px;
    border: 1px solid #e1e1e1;
}

.blog-sidebar-text .title {
    font-size: 24px;
    margin-bottom: 20px;
}

.blog-category-sort .sort-wrapper {
    float: right;
    background: white;
    position: relative;
    z-index: 1;
    padding-left: 30px;
    height: 40px;
}

.blog-category-sort .title-line {
    margin-bottom: 40px;
}

.blog-category-sort .title-line span label {
    background: #8ac349;
    padding: 0 20px;
    color: white;
    font-size: 20px;
    padding-top: 2px;
    height: 30px;
    display: block;
    line-height: 30px;
}

.blog-category-sort .selectric .label {
    margin: 0;
    padding-left: 20px;
    padding-right: 70px;
}

.blog-category-sort .selectric .label:after {
    content: '\e918';
    font-size: 7px;
    margin-left: 10px;
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 0;
    top: 0px;
    width: 40px;
    height: 40px;
    background: #b6b6b6;
    text-align: center;
    line-height: 40px;
    color: white;
}

.blog-category-sort .selectric .button {
    display: none;
}

.blog-category-sort .selectric {
    border: 1px solid #b6b6b6;
    border-radius: 0 15px;
}

.blog-category-sort .selectric-wrapper {
    min-width: 200px;
}


/* end blog category */


/* blog article */

.blog-article-content-wrapper h1 {
    margin-top: 0;
}

.blog-article-wrapper {
    margin-top: 50px;
}

.blog-article-content {
    color: #000;
    font-family: Montserrat, Oswald, Arial;
}

.blog-article-content ul {
    list-style-type: none;
    margin: 20px 0;
}

.blog-article-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    line-height: 26px;
}

.blog-article-content ul li:before {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 0 5px;
    background: #8ac349;
    position: absolute;
    left: 0;
    top: 7px;
    margin-right: 30px;
}

.blog-article-content-wrapper .article-info-wrapper {
    margin-top: 10px;
    margin-bottom: 30px;
}

.blog-article-content p {
    margin: 30px 0;
    line-height: 28px;
    font-size: 16px;
}

.blog-article-content img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
}

.blog-article-image img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
}

.article-related-wrapper {
    border-top: 1px solid #d7d7d7;
    padding-top: 40px;
    margin-bottom: 50px;
}

.article-related-wrapper .article-box {
    margin: 0 auto;
}

.article-related-wrapper .article-box .text {
    display: none;
}

.blog-article-tag-wrapper {
    padding-top: 40px;
    border-top: 1px solid #d7d7d7;
    margin-bottom: 50px;
}

.blog-article-tag-wrapper .tag {
    height: 24px;
    line-height: 28px;
    color: white;
    background: #b6b6b6;
    padding: 0 15px;
    margin-right: 5px;
    display: inline-block;
}

.blog-article-content a {
    text-decoration: underline
}

.blog-article-share .icon-share {
    margin-right: 10px;
}

.blog-article-share a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    color: white;
    font-size: 12px;
    text-align: center;
    line-height: 30px;
}

.blog-article-share a:last-child {
    margin-right: 0;
}

.blog-article-share a.icon-facebook {
    background: #0054a6;
    font-size: 15px;
}

.blog-article-share a.icon-twitter {
    background: #1f9ed5;
}

.blog-article-share a.icon-google_plus {
    background: #ec3c25;
}


/* end blog article */

ul.errors {
    list-style-type: none;
    font-size: 14px;
    color: red;
    margin-bottom: 12px;
}

.error {
    border-color: red !important;
}

.text-right {
    text-align: right;
}

.input-double .input-wrapper {
    width: 100%;
}

.locker-options {
    margin-bottom: 20px;
    display: none;
}

.locker-options .radio-wrapper {
    margin-bottom: 10px;
}

@media only screen and (max-width: 1280px) {
    .header-contact a {
        display: block;
    }
    .seeds-quality .left {
        width: 100%;
        float: none;
    }
    .seeds-quality .right {
        width: 100%;
        float: none;
        max-width: 100%;
        margin-right: 0;
    }
    .seeds-quality .right .text div {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }
    .seeds-quality-border-wrapper {
        width: 100%;
        margin-left: 0;
        margin-bottom: 50px;
    }
    .seeds-quality-border-wrapper:before {
        right: 140px;
    }
    .seeds-quality-border-wrapper img {
        right: 0px;
    }
    .seeds-quality-border-wrapper .text-block {
        width: initial;
        margin-left: 0;
        margin-right: 265px;
    }
    .idica-vs-sativa .half {
        width: 100%;
        margin-bottom: 30px;
    }
    .idica-vs-sativa {
        margin-top: 50px;
    }
    .idica-vs-sativa>.left {
        width: 300px;
        margin-top: 0;
    }
    .idica-vs-sativa>.right {
        width: calc(100% - 300px);
        padding-left: 40px;
        margin-top: 40px;
    }
    .medicine-seeds-and-oils .left {
        margin-left: -300px;
    }
    .medicine-seeds-and-oils .right {
        width: calc(100% - 300px);
        padding-left: 40px;
    }
    .footer-bottom {
        display: block;
    }
    .footer-bottom .footer-contact-wrapper {
        width: 250px;
        float: left;
        padding-bottom: 50px;
    }
    .footer-bottom .footer-deliver-wrapper,
    .footer-bottom .footer-pay-methods {
        width: calc(100% - 250px);
        float: left;
        position: relative;
        padding-right: 0;
    }
    .footer-deliver-wrapper .footer-title {
        display: inline-block;
        vertical-align: super;
        margin-right: 20px;
    }
    .footer-bottom .footer-pay-methods img:nth-of-type(n+3) {
        margin-top: 20px;
    }
    .footer-bottom .footer-pay-methods {
        padding-bottom: 20px;
    }
    .footer-pay-methods:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 60px;
        right: 0;
        height: 1px;
        background: #363636;
    }
    .footer-deliver-wrapper img {
        margin-top: 20px;
    }
    .about-us-we-are-cool .left {
        padding-left: 0;
    }
    .about-us-we-are-cool .snoop {
        display: none;
    }
    .about-us-we-are-cool .greetings img {
        max-width: 320px;
    }
    .delivery-block {
        width: 100%;
        padding: 0 !important;
    }
    .payment-block {
        width: 100%;
        padding: 0 !important;
    }
    .payment-block.bank-info {
        margin-top: 30px;
    }
    .checkout-step-2>div {
        width: 100%;
        float: none;
        margin: 0;
    }
    .checkout-step-2>div:first-child {
        margin-bottom: 30px;
    }
    .checkout-step-2 .payment-checkbox-block {
        padding-right: 0;
    }
    .product-basic-info-wrapper>div {
        width: 100%;
        margin-right: 0px;
        float: none;
    }
    .product-basic-info-wrapper .product-info-pricing {
        margin-top: 70px;
    }
}

@media only screen and (max-width: 1180px) {
    .page-width-margin {
        padding: 0 40px;
    }
    .right-bar-wrapper {
        display: none;
    }
    .main-banner {
        padding-right: 0;
    }
    .main-banner .slick-next {
        right: 0px;
    }
    .main-banner .slick-prev {
        right: 42px;
    }
    .header-top .search-wrapper {
        width: calc(100% - 50px - 60px - 200px - 220px);
        padding-right: 20px;
    }
    .blog .header-actions-wrapper {
        display: none;
    }
    .blog .search-wrapper {
        width: calc(100% - 50px - 150px);
        padding-right: 0;
    }
    .header-actions-wrapper {
        width: 220px;
    }
    .header-actions .contact {
        display: none;
    }
    /*
    .header-actions .profile {display: none;}
    .header-actions .heart-o {display: none;}
    */
    .header-bot .menu-top {
        display: none;
    }
    .burger-icon {
        display: block;
    }
    .logo-wrapper {
        width: 60px;
    }
    .logo {
        display: none;
    }
    .logo-small {
        display: block;
        margin-top: 2px;
    }
    .marijuana-seeds-info .left {
        margin-left: -250px;
    }
    .marijuana-seeds-info .right {
        width: calc(100% - 466px + 210px);
    }
    .seed-text {
        left: -415px;
    }
    .feminised-seeds .left {
        width: calc(100% - 400px);
    }
    .feminised-seeds .right {
        width: 400px;
        padding-right: 0;
        padding-left: 40px;
    }
    .seeds-autoflowering .left {
        width: 100%;
        float: none;
    }
    .seeds-autoflowering .right {
        width: 100%;
        float: none;
        margin-top: 40px;
    }
    .seeds-autoflowering .right img {
        margin: 0 auto;
        display: block;
    }
    .footer-lock-wrapper {
        display: none;
    }
    .contact-forum-wrapper .snoop {
        display: none;
    }
    .contact-us>div {
        width: 100%;
        float: none;
        margin: 0;
    }
    .contact-us .contact-map {
        margin-top: 50px;
    }
    .checkout-step-1 .snoop-info-wrapper {
        background: none;
        margin-right: 0;
        width: 240px;
    }
    .checkout-step-1 .left {
        width: calc(100% - 240px);
    }
    .product-description-wrapper .product-attribute-information {
        padding: 45px 20px;
    }
    .panel-sidebar-wrapper {
        width: 40px;
    }
    .panel-sidebar-wrapper a {
        width: 40px;
        padding-left: 0;
        overflow: hidden;
        white-space: nowrap;
        text-align: center;
    }
    .panel-sidebar-wrapper a .icon-wrapper {
        width: 40px;
    }
    .panel-sidebar-wrapper a.active:after {
        display: none;
    }
    .panel-sidebar-top-wrapper {
        padding-right: 0;
    }
    .panel-sidebar-bot-wrapper {
        padding-right: 0;
    }
    .panel-content-wrapper {
        width: calc(100% - 40px);
    }
    .header-top .header-contact-wrapper {
        display: block;
    }
    .header-bot .header-contact-wrapper {
        display: none;
    }
    .filter-box {
        width: calc((100% - 3*9px)/4);
    }
    .filter-box:nth-child(5n) {
        margin-right: 9px;
    }
    .filter-box:nth-child(4n) {
        margin-right: 0px;
    }
    .blog-main-sidebar {
        display: none;
    }
    .blog-main {
        width: 100%;
        padding: 0;
    }
    /*
    .blog-article-wrapper .blog-main-sidebar {position: absolute; right: 40px; top: 0;}
    .blog-article-wrapper .blog-main-sidebar .blog-sidebar-new-wrapper {display: none;}
    .blog-article-wrapper .page-width-margin {position: relative;}
    */
    .blog-category-wrapper .blog-main-sidebar {
        display: block;
        width: 100%;
    }
    .blog-category-wrapper .blog-sidebar-new-wrapper {
        display: none;
    }
    .blog-category-wrapper .blog-sidebar-text {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 990px) {
    .onepage-checkout-wrapper .popup-content .my-address-block {
        display: block;
    }
    .onepage-checkout-wrapper .popup-content .my-address:nth-child(2n) {
        margin-left: 0;
    }
    .basket-gratis-option-wrapper .radio-wrapper {
        width: calc(100% / 2);
    }
    .grass-info {
        flex-wrap: wrap;
    }
    .grass-el {
        width: 50%;
        margin: 20px 0;
    }
    .homepage-newsletter-wrapper .snoop-water-can {
        display: none;
    }
    .where-to-buy .right {
        margin-bottom: 50px;
        margin-top: 0;
        width: 300px;
        float: none;
    }
    .where-to-buy .left {
        width: 100%;
        float: none;
        max-width: 100%;
    }
    .about-us-user-review {
        width: 100%;
    }
    .about-us-user-review:last-child {
        display: none;
    }
    .about-us-wrapper .left {
        display: none;
    }
    .about-us-wrapper .right {
        width: 100%;
        padding: 0;
    }
    .about-us-wrapper .bg-text {
        display: none;
    }
    .contact-forum-block {
        float: none !important;
        width: 100%;
    }
    .safety-wrapper {
        width: 100%;
        float: none;
        padding: 0;
    }
    .legality-wrapper {
        width: 100%;
        float: none;
        padding: 0;
        margin-top: 30px;
    }
    .legality-wrapper img {
        max-width: 300px;
    }
    .checkout-step-3>div {
        width: 100%;
        float: none;
        margin: 0;
    }
    .checkout-step-3>div:first-child {
        margin-bottom: 30px;
    }
    .checkout-step-3 .change-deliver-address .btn {
        width: 100%;
    }
    .popup-content .data-summary .summary-label {
        width: 100%;
        float: none;
        white-space: nowrap;
    }
    .popup-content .data-summary .summary-text {
        width: 100%;
        float: none;
        white-space: nowrap;
    }
    .popup-content .data-summary .summary-block {
        margin-bottom: 20px;
    }
    .onepage-checkout-wrapper .popup-content img {
        display: none;
    }
    .onepage-checkout-wrapper .popup-content .checkout-data {
        width: 100%;
    }
    .product-description-wrapper>div {
        width: 100%;
    }
    .product-description-wrapper .product-attribute-information {
        margin-left: 0;
        margin-top: 50px;
    }
    .product-description-wrapper {
        display: block;
    }
    .product-comment-rating-wrapper {
        display: block;
    }
    .product-comment-rating-wrapper>div {
        width: 100%;
        float: none;
        margin-left: 0;
    }
    .product-rating-wrapper {
        margin-top: 40px;
    }
    .panel-order-list table {
        display: block;
    }
    .panel-order-list tbody {
        display: block;
    }
    .panel-order-list tbody tr {
        display: block;
        padding: 20px 0;
        border-top: 1px solid #d7d7d7;
    }
    .panel-order-list tbody td {
        display: block;
        padding: 5px 0;
        border-bottom: none;
    }
    .panel-order-list .rwd {
        display: inline-block;
        width: 120px;
        color: #5d5d5d;
    }
    .panel-order-list thead {
        display: none;
    }
    .panel-order-list:before {
        display: none;
    }
    .header .search-wrapper .selectric-wrapper {
        display: none;
    }
    .header .search-wrapper form>input {
        padding-right: 10px;
    }
    .order-detail-wrapper .order-header {
        display: block;
    }
    .order-detail-wrapper .order-header>div {
        width: 100%;
    }
    .order-detail-wrapper .order-name {
        margin-bottom: 20px;
    }
    .order-detail-wrapper .product-table .line {
        width: 21px;
    }
    .order-detail-wrapper .product-table .line hr {
        margin: 0 10px;
    }
    .category-list-wrapper .category-sidebar {
        width: 100%;
        margin: 0;
        float: none;
    }
    .category-list-wrapper .category-list {
        width: 100%;
        float: none;
    }
    .filter-box {
        width: calc((100% - 2*9px)/3);
    }
    .filter-box:nth-child(4n) {
        margin-right: 9px;
    }
    .filter-box:nth-child(3n) {
        margin-right: 0px;
    }
    .blog-new-post .article-box {
        margin: 0 auto;
    }
    .blog-category-list>div {
        width: calc((100% - 1 * 40px)/2);
    }
    .blog-category-list>div:nth-child(3n) {
        margin-right: 40px;
    }
    .blog-category-list>div:nth-child(2n) {
        margin-right: 0px;
    }
    .blog-category-list .article-box {
        margin: 0 auto;
    }
    .ban-2 .ban-right {
        background: transparent;
    }
    .ban-2 .ban-right img {
        left: 0;
        height: 200px;
    }
}

@media only screen and (max-width: 840px) {
    .footer-bottom-wrapper .footer-bottom>div {
        float: none;
        width: 100%;
        border-left: none;
        padding-left: 0;
        border-bottom: 1px solid #363636;
        padding-bottom: 30px;
        margin-bottom: 20px;
    }
    .footer-bottom-wrapper .footer-bottom>div:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border: none;
    }
    .footer-pay-methods:after {
        display: none;
    }
    .footer-wrapper .footer-top {
        flex-wrap: wrap;
    }
    .footer-top>div {
        width: 50%;
        margin-bottom: 20px;
        padding: 0 30px;
    }
    .footer-top>div:nth-child(2n + 1) {
        padding-left: 0;
        border: none;
    }
    .footer-top>div:nth-child(2n) {
        padding-right: 0;
    }
    .panel-address-block {
        width: calc((100% - 1*30px)/2);
    }
    .panel-address-block:nth-child(3n) {
        margin-right: 30px;
    }
    .panel-address-block:nth-child(2n) {
        margin-right: 0px;
    }
    .checkout-login-block {
        padding-right: 40px;
    }
    .checkout-without-login {
        padding-left: 40px;
    }
    .main-banner .slick-dots {
        display: none !important;
    }
    .main-banner {
        padding-left: 0;
        margin-bottom: 0px;
    }
}

@media only screen and (max-width: 768px) {
    .header {
        border-bottom: 1px solid black;
        position: fixed;
        width: 100%;
        z-index: 2001;
        background: white;
        top: 0;
    }
    .header-top {
        margin-top: 26px;
        margin-bottom: 0;
    }
    .header-top .header-contact-wrapper {
        display: none;
    }
    .header-bot {
        display: none;
    }
    .free-shipping-block {
        display: none;
    }
    .lang-currency-belt-wrapper {
        display: none;
    }
    .header-actions-wrapper {
        border: none;
        width: auto;
    }
    .header-wrapper {
        padding-top: 70px;
    }
    .logo-wrapper {
        width: auto;
    }
    .header-actions>div {
        margin-left: 25px;
        padding-top: 7px;
    }
    .mobile-menu-wrapper {
        top: 72px;
    }
    .scroll-top-site {
        right: 20px;
        bottom: 20px;
    }
    .page-width-margin {
        padding: 0 20px;
    }
    .marijuana-seeds-info .left {
        display: none;
    }
    .marijuana-seeds-info .right {
        width: 100%;
        float: none;
    }
    .marijuana-seeds-info .right .title {
        margin-top: 0;
    }
    .feminised-seeds .left {
        width: 100%;
        margin-top: 0;
    }
    .feminised-seeds .right {
        width: 100%;
        margin-top: 30px;
        padding: 0;
    }
    .feminised-seeds-chart-wrapper {
        margin-right: 144px;
    }
    .homepage-newsletter-wrapper .plant-bg {
        display: none;
    }
    .homepage-newsletter-wrapper .form-wrapper {
        padding: 60px 0 40px;
    }
    .homepage-newsletter-wrapper .form-wrapper form {
        width: 100%;
    }
    .homepage-newsletter-wrapper .form-wrapper form>input {
        width: calc(100% - 60px);
        display: block;
    }
    .idica-vs-sativa-wrapper .idica-vs-sativa>div {
        width: 100%;
        float: none;
        padding: 0;
    }
    .medicine-seeds-and-oils .left {
        display: none;
    }
    .medicine-seeds-and-oils .right {
        width: 100%;
        float: none;
        padding: 0;
    }
    .our-reviews-wrapper .our-reviews .reviews-sites {
        width: 100%;
        float: none;
        margin: 0;
        margin-bottom: 30px;
    }
    .our-reviews-wrapper .our-reviews .about-us-user-reviews-wrapper {
        width: 100%;
        float: none;
    }
    .our-reviews-wrapper .about-us-user-reviews {
        padding: 45px 20px;
        padding-right: 1000px;
        margin-left: -20px;
    }
    .about-us-we-are-cool .right {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }
    .about-us-we-are-cool .left {
        width: 100%;
        float: none;
    }
    .onepage-checkout-wrapper .popup-content {
        display: block;
        justify-content: unset;
    }
    .onepage-checkout-wrapper .popup-content>div {
        float: none;
        padding: 0 !important;
        border: none !important;
    }
    .popup-wrapper .page-width-margin {
        overflow-y: scroll;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 3000;
    }
    .popup-wrapper .popup {
        -webkit-transform: translate(0, 0%);
        -moz-transform: translate(0, 0%);
        -ms-transform: translate(0, 0%);
        transform: translate(0, 0%);
        top: 0;
        margin: 30px 0;
    }
    .panel-addresses .popup {
        width: 100%;
    }
    .header-top .search-wrapper {
        display: none;
    }
    .header-top {}
    .header-bot .search-wrapper {
        display: block;
        width: 100%;
        padding-right: 0;
        float: none;
    }
    .order-detail-wrapper .order-info:before {
        display: none;
    }
    .order-detail-wrapper .order-info table {
        display: block;
    }
    .order-detail-wrapper .order-info thead {
        display: none;
    }
    .order-detail-wrapper .order-info tr {
        display: block;
    }
    .order-detail-wrapper .order-info td {
        display: block;
        padding: 10px 0 !important;
    }
    .order-info .rwd {
        display: inline-block;
        width: 120px;
        color: #5d5d5d;
    }
    .order-detail-wrapper .order-info {
        margin-bottom: 20px;
    }
    .order-detail-wrapper .action-wrapper a {
        width: 100%;
        margin-right: 0;
        margin-bottom: 5px;
    }
    .ordered-product-list-wrapper .product-table {
        display: block;
    }
    .ordered-product-list-wrapper .product-table tbody {
        display: block;
    }
    .ordered-product-list-wrapper .product-table tr {
        display: block;
        padding: 30px 0;
        border-bottom: 1px solid #d7d7d7;
    }
    .ordered-product-list-wrapper .product-table td {
        display: block;
        border: none;
        padding: 0;
        text-align: left;
        clear: both;
        overflow: visible;
    }
    .order-detail-wrapper .product-table tbody tr:last-child td {
        border-bottom: none;
    }
    .ordered-product-list-wrapper .product-table .line {
        display: none;
    }
    .order-detail-wrapper .product-table td:last-child {
        width: 100%;
    }
    .product-table .return {
        float: none;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
    .product-table .rwd {
        display: inline-block;
        width: 120px;
    }
    .order-detail-wrapper .product-table td.teko {
        font-size: 20px;
    }
    .order-detail-wrapper .product-table td:first-child {
        margin-bottom: 20px;
    }
    .summary-details-wrapper>div {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .basket-table .product-table thead td:not(:first-child) {
        display: none;
    }
    .basket-table .product-table tbody tr {
        display: block;
        border-bottom: 1px solid #d7d7d7;
        padding: 30px 0;
        position: relative;
    }
    .basket-table .product-table tbody tr:last-child {
        border: none;
    }
    .basket-table .product-table tbody tr td {
        display: block;
        border-bottom: none;
        padding: 0;
    }
    .basket-table .product-table tbody tr td:nth-child(1) {
        margin-bottom: 20px;
    }
    .basket-table .product-table tbody tr td:nth-child(2) {
        float: left;
    }
    .basket-table .product-table tbody tr td:nth-child(3) {
        float: left;
        margin-left: 20px;
    }
    .basket-table .product-table tbody tr td:nth-child(4) {
        float: right;
    }
    .basket-table .product-table tbody tr td:nth-child(5) {
        position: absolute;
        top: 20px;
        right: 0;
    }
    .checkout-login-block-wrapper {
        display: block;
    }
    .checkout-login-block-wrapper>div {
        width: 100%;
    }
    .checkout-login-block {
        padding: 0;
        border: none;
        margin-bottom: 30px;
    }
    .checkout-without-login {
        padding: 0;
    }
    .checkout-without-login img.create-acc {
        display: none;
    }
    .social-login {
        clear: both;
        overflow: auto;
    }
    .social-login a {
        display: block;
        float: left;
        width: calc((100% - 10px)/2);
        text-align: center;
    }
    .social-login a:first-child {
        margin-right: 10px;
    }
    .checkout-register {
        padding-left: 0;
        width: 100%;
    }
    .filter-box {
        width: calc((100% - 1*9px)/2);
    }
    .filter-box:nth-child(3n) {
        margin-right: 9px;
    }
    .filter-box:nth-child(2n) {
        margin-right: 0px;
    }
    .blog-main .most-readed>div {
        width: 100%;
        margin-right: 0;
    }
    .latest-article .article-image-bg {
        width: 100%;
    }
    .latest-article .article-main-content {
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }
    .latest-article .article-main-content .btn {
        width: 100%;
        text-align: center;
    }
    .ban-1 .ban-right img {
        display: none;
    }
    .ban-1 .ban-title span {
        font-size: 60px;
        line-height: 50px;
    }
    .ban-2 .ban-right img {
        display: none;
    }
    .basket-gratis-option-wrapper .radio-wrapper {
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .grass-info-wrapper .grass-background {
        top: -50px
    }
    .grass-info {
        padding-top: 80px
    }
    .contact-location-wrapper>div:first-child {
        display: none;
    }
    .contact-title-wrapper .contact-title {
        float: none;
        border: none;
        margin: 0;
        padding: 0;
    }
    .contact-title-wrapper .contact-subtitle {
        float: none;
        padding: 0;
        margin-bottom: 30px;
    }
    .delivery-block .image-wrapper {
        width: 26px;
        height: 26px;
        background: none;
    }
    .delivery-block .image-wrapper img {
        display: none;
    }
    .delivery-block .image-wrapper .number {
        top: 0;
        left: 0;
    }
    .delivery-block .description-wrapper {
        padding-left: 20px;
        height: initial;
        width: calc(100% - 26px);
    }
    .delivery-block .description {
        top: 0%;
        -webkit-transform: translate(0, 0%);
        -moz-transform: translate(0, 0%);
        -ms-transform: translate(0, 0%);
        transform: translate(0, 0%);
    }
    .checkout-step-2 .delivery-checkbox-block {
        width: 100%;
        margin-right: 0 !important;
    }
    .checkout-step-1 .left {
        width: 100%;
    }
    .checkout-step-1>.right {
        display: none;
    }
    .onepage-checkout-wrapper .checkout-step-1 .checkout-data {
        width: 100%;
    }
    .checkout-step-1 .input-double .input-wrapper {
        width: 100% !important;
        float: none;
    }
    .checkout-step-1 .input-double .input-wrapper:last-child input {
        border: 1px solid #d7d7d7;
    }
    .basket-summary>div {
        width: 100%;
        float: none;
    }
    .basket-summary .btn {
        margin-bottom: 20px;
    }
    .buy-options-wrapper {
        width: 100%;
        float: none;
        margin-right: 0;
    }
    .buy-action-wrapper {
        width: 100%;
        float: none;
        margin-top: 30px;
    }
    .product-description-global-wrapper {
        display: block;
    }
    .product-description-global-wrapper>div {
        padding: 0 !important;
        border: none !important;
    }
    .product-description-global-wrapper>div:first-child>div {
        margin-bottom: 20px;
    }
    .product-description .snoop-description img {
        display: none;
    }
    .panel-address-block {
        width: initial;
        margin-right: 10px !important;
        float: none;
    }
    .panel-remove-account img.snoop {
        display: none;
    }
    .blog-category-list>div {
        width: 100%;
        float: none;
        margin-right: 0px !important;
    }
    .blog-category-list .article-box {
        width: 100%;
    }
    .ban-1 .ban-title img {
        display: none;
    }
    .ban-1 .ban-right {
        background: transparent;
    }
    .ban-1 .ban-right span {
        left: auto;
        right: 0;
    }
    .main-banner-wrapper {}
    .main-banner {
        height: 275px;
    }
    .main-banner.slick-initialized .slick-slide {
        height: 275px;
    }
    .main-banner .slick-arrow {
        display: none !important;
    }
}

@media only screen and (max-width: 545px) {
    .header-top .header-contact-wrapper {
        display: none;
    }
    .header-bot .header-contact-wrapper {
        display: block;
        float: none;
        margin-top: 10px;
    }
    .header-contact a {
        display: inline-block;
    }
    .header-top {
        margin-top: 25px;
        margin-bottom: 5px;
    }
    .header-actions-wrapper {
        border-bottom: none;
    }
}

@media only screen and (max-width: 540px) {
    .footer-pay-methods .footer-title {
        margin-right: 20px;
    }
    .footer-bottom .footer-pay-methods br {
        display: none;
    }
    .footer-bottom .footer-pay-methods img {
        margin-left: 0;
        margin-right: 20px;
    }
    .footer-top>div:nth-child(n + 3) {
        width: 100%;
        padding: 0;
        border: 0;
        border-top: 1px solid #363636;
        padding-top: 10px;
    }
    .footer-social {
        margin-top: 20px;
    }
    .grass-el {
        width: 100%;
    }
    .feminised-seeds-chart-wrapper {
        margin-right: 0px;
    }
    .seeds-quality-border-wrapper .text-block {
        margin-right: 0;
    }
    .product-attribute-information li {
        white-space: unset;
    }
    .product-attribute-information li span {
        width: 100%;
    }
    .product-attribute-information li span:after {
        display: none;
    }
    .product-attribute-information li label {
        padding-left: 45px;
    }
    .order-detail-wrapper .order-header .back {
        width: 26px;
        height: 26px;
        line-height: 26px;
        font-size: 10px;
    }
    .order-detail-wrapper .order-header .title {
        font-size: 20px;
    }
    .filter-box-trigger {
        display: block;
        border: 1px solid #cccccc;
        height: 46px;
        padding: 0 20px;
        text-align: center;
        line-height: 46px;
        color: #000;
        font-weight: 600;
    }
    .filter-box-trigger .burger-icon {
        display: block;
        width: 20px;
        margin-top: 13px;
    }
    .filter-box-trigger .burger-icon>div {
        height: 2px;
    }
    .filter-box-trigger .burger-icon .top {
        -webkit-transform: translate3d(0, -5px, 0);
        -moz-transform: translate3d(0, -5px, 0);
        -ms-transform: translate3d(0, -5px, 0);
        -o-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    .filter-box-trigger .burger-icon .bottom {
        -webkit-transform: translate3d(0, 5px, 0);
        -moz-transform: translate3d(0, 5px, 0);
        -ms-transform: translate3d(0, 5px, 0);
        -o-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    .filter-box {
        width: 100%;
        margin: 0 !important;
        border-top: none;
    }
    .filter-box-wrapper {
        display: none;
    }
}

@media only screen and (max-width: 485px) {
    /* 	
    .header-top .header-contact-wrapper {display: none;}
	.header-bot .header-contact-wrapper {display: block; float: none; margin-top: 10px;}
	.header-contact a {display: inline-block;}
	.header-top {margin-top: 25px; margin-bottom: 5px;}
    .header-actions-wrapper {border-bottom: none;} 
	*/
    .contact-location-wrapper {
        display: block;
    }
    .contact-location-wrapper>div {
        width: 100%;
        margin-bottom: 30px;
        padding: 0 !important;
        border: none !important;
    }
    .lang-currency-belt>span {
        display: none;
    }
    .panel-wrapper {
        display: block;
    }
    .panel-content-wrapper {
        padding-left: 0;
        width: 100%;
        margin-top: 20px;
    }
    .panel-sidebar-wrapper {
        width: 100%;
    }
    .panel-sidebar-wrapper a {
        width: 100%;
    }
    .panel-sidebar-wrapper a .icon-wrapper {
        float: left;
        margin-left: 10px;
    }
    .panel-sidebar-trigger {
        display: block;
    }
    .panel-sidebar-wrapper {
        display: none;
    }
    body.header-checkout .header-top .header-contact-wrapper {
        display: none;
    }
    body.header-checkout .header-bot .header-contact-wrapper {
        display: block;
    }
    .sorter:before {
        display: none;
    }
    .sorter .product-count {
        display: none;
    }
    .sorter .select-wrapper {
        width: 100%;
        padding-right: 0;
    }
    .blog-category-sort .sort-wrapper {
        float: none;
        margin-top: 20px;
        padding-left: 0;
    }
    .blog-category-sort .title-line:after {
        bottom: unset;
        top: 14px;
    }
    .blog-category-wrapper .blog-sidebar-text {
        padding: 20px;
    }
    .article-box .article-box-image .btn {
        right: -15px;
    }
}

@media only screen and (max-width: 440px) {
    .delivery-block .description .text .price {
        position: static;
        display: block;
        padding-left: 0;
        margin-top: 5px;
    }
    .delivery-block .description .text p:before {
        display: none;
    }
    .delivery-block .description .text p {
        margin-bottom: 10px;
    }
    .data-summary .summary-block {
        margin-bottom: 20px;
    }
    .data-summary .summary-label {
        display: block;
        float: none;
    }
    .comment-list-wrapper .comment.response {
        padding-left: 20px;
    }
    .product-box-wrapper {
        width: 100%;
    }
}

@media only screen and (max-width: 340px) {
    .article-box .article-box-image .btn {
        right: -15px;
    }
}

.basket .container-wrapper {
    min-height: 100%;
    position: relative;
}

.basket .main-wrapper {
    padding-bottom: 44px;
}

.basket .copyright-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.merge-basket-wrapper table {
    width: calc(100% / 3);
    border-collapse: collapse;
    border-spacing: 0px;
}

.merge-basket-wrapper table tr:first-child {
    font-weight: 600;
}

.merge-basket-wrapper table td {
    padding: 4px 10px;
    border: 1px solid #c5c5c5;
}

@media only screen and (max-width: 1279px) {
    .main-banner-wrapper {
        position: relative;
        padding-top: 30%;
    }
    .main-banner {
        position: absolute;
        top: 0px;
        left: 0px;
        max-width: 100%;
    }
    /*.slick-track{max-width: 100% !important; width: 100% !important; }*/
    /*.slick-slide{max-width: 100% !important; width: 100% !important;}*/
}

.search-wrapper-mobile {
    display: none
}

@media only screen and (max-width: 759px) {
    .search-wrapper-mobile {
        display: block;
        width: 100%;
        padding: 0px 20px;
        margin-bottom: 20px;
    }
}