﻿@charset "UTF-8";
/* ==========================================================================
  CSS Reset
  ========================================================================== */
@font-face {
  font-family: "TikTokSans";
  src: url("/Resources/fonts/TikTokSans-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "TikTokSans";
  src: url("/Resources/fonts/TikTokSans-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "TikTokSans";
  src: url("/Resources/fonts/TikTokSans-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "TikTokSans";
  src: url("/Resources/fonts/TikTokSans-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "TikTokSans";
  src: url("/Resources/fonts/TikTokSans-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "TikTokSans";
  src: url("/Resources/fonts/TikTokSans-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
}
@font-face {
  font-family: "Abuget";
  src: url("/Resources/fonts/Abuget.ttf") format("truetype");
  font-weight: 400;
}
.checkbox {
  padding: 0px !important;
  margin: 0;
}
.checkbox input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.checkbox input:checked + label:before {
  background-image: url(/Resources/img/check.svg);
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.checkbox.mrg-bottom label {
  margin-bottom: 10px !important;
}
.checkbox label {
  position: relative;
  padding-left: 31px;
  margin: 0 !important;
  cursor: pointer;
}
.checkbox label a {
  font-weight: 500;
  color: #000;
  text-decoration: underline;
}
.checkbox label:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 21px;
  height: 21px;
  left: 0;
  top: 4px;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  border: 1px solid #fff;
  color: #fff;
}

.radio {
  padding: 0px !important;
  margin: 0;
}
.radio input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.radio input:checked + label:after {
  opacity: 1 !important;
  visibility: visible !important;
}
.radio.mrg-bottom label {
  margin-bottom: 10px !important;
}
.radio label {
  position: relative;
  padding-left: 31px;
  margin: 0 !important;
  cursor: pointer;
}
.radio label a {
  font-weight: 500;
  color: #000;
  text-decoration: underline;
}
.radio label:after {
  content: "";
  position: absolute;
  left: 15px;
  font-size: 15px;
  width: 13px;
  transform: translateY(-50%);
  top: 50%;
  opacity: 0 !important;
  visibility: hidden !important;
  background: #22C262;
  height: 13px;
  border-radius: 50%;
}
.radio label:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 22px;
  height: 22px;
  left: 10px;
  transform: translateY(-50%);
  top: 50%;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  border: 1px solid #ddd;
}

/*.checkbox {
    padding-left: 20px;

    label {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        padding-left: 5px;

        &::before {
            content: "";
            display: inline-block;
            position: absolute;
            width: 20px;
            height: 20px;
            left: 0;
            margin-left: -20px;
            border: 1px solid #000;
            border-radius: 0;
            background-color: #fff;
            -webkit-transition: border .15s ease-in-out,color .15s ease-in-out;
            -o-transition: border .15s ease-in-out,color .15s ease-in-out;
            transition: border .15s ease-in-out,color .15s ease-in-out;
        }

        &::after {
            display: inline-block;
            position: absolute;
            width: 16px;
            height: 16px;
            left: 0;
            top: 0;
            margin-left: -20px;
            padding-left: 3px;
            padding-top: 1px;
            font-size: 13px;
            color: #e6265e;
        }
    }

    &.has-success label::after {
        display: inline-block;
        position: absolute;
        width: 16px;
        height: 16px;
        left: 0;
        top: 0;
        margin-left: -20px;
        padding-left: 3px;
        padding-top: 1px;
        font-size: 13px;
        color: #e6265e;
    }

    input {
        &[type=checkbox],
        &[type="radio"] {
            opacity: 0;
            z-index: 1;
        }

        &[type="checkbox"]:focus + label::before, &[type="radio"]:focus + label::before {
            outline: thin dotted;
            outline: 5px auto -webkit-focus-ring-color;
            outline-offset: -2px;
        }

        /*&[type="checkbox"]:checked + label::after {
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            content: "\f004";
        }
    }

    /*&.has-success label::after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f004";
    }

    input {
        &[type="radio"]:checked + label::after {
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            content: "\f004";
        }

        &[type="checkbox"]:disabled + label, &[type="radio"]:disabled + label {
            opacity: 0.65;
        }

        &[type="checkbox"]:disabled + label::before, &[type="radio"]:disabled + label::before {
            background-color: #eeeeee;
            cursor: not-allowed;
        }
    }

    &.checkbox-circle label::before {
        border-radius: 50%;
    }

    &.checkbox-inline {
        margin-top: 0;
    }
}

.checkbox-primary input {
    &[type="checkbox"]:checked + label::before, &[type="radio"]:checked + label::before {
        background-color: #fff;
        border-color: #fff;
    }

    &[type="checkbox"]:checked + label::after, &[type="radio"]:checked + label::after {
        color: #fff;
    }
}

.checkbox-danger input {
    &[type="checkbox"]:checked + label::before, &[type="radio"]:checked + label::before {
        background-color: #d9534f;
        border-color: #d9534f;
    }

    &[type="checkbox"]:checked + label::after, &[type="radio"]:checked + label::after {
        color: #fff;
    }
}

.checkbox-info input {
    &[type="checkbox"]:checked + label::before, &[type="radio"]:checked + label::before {
        background-color: #5bc0de;
        border-color: #5bc0de;
    }

    &[type="checkbox"]:checked + label::after, &[type="radio"]:checked + label::after {
        color: #fff;
    }
}

.checkbox-warning input {
    &[type="checkbox"]:checked + label::before, &[type="radio"]:checked + label::before {
        background-color: #f0ad4e;
        border-color: #f0ad4e;
    }

    &[type="checkbox"]:checked + label::after, &[type="radio"]:checked + label::after {
        color: #fff;
    }
}

.checkbox-success input {
    &[type="checkbox"]:checked + label::before, &[type="radio"]:checked + label::before {
        background-color: #5cb85c;
        border-color: #5cb85c;
    }

    &[type="checkbox"]:checked + label::after, &[type="radio"]:checked + label::after {
        color: #fff;
    }
}

.radio {
    padding-left: 20px;

    label {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        padding-left: 5px;

        &::before {
            content: "";
            display: inline-block;
            position: absolute;
            width: 17px;
            height: 17px;
            left: 0;
            margin-left: -20px;
            border: 1px solid #cccccc;
            border-radius: 50%;
            background-color: #fff;
            -webkit-transition: border 0.15s ease-in-out;
            -o-transition: border 0.15s ease-in-out;
            transition: border 0.15s ease-in-out;
        }

        &::after {
            display: inline-block;
            position: absolute;
            content: " ";
            width: 11px;
            height: 11px;
            left: 3px;
            top: 3px;
            margin-left: -20px;
            border-radius: 50%;
            background-color: #555555;
            -webkit-transform: scale(0, 0);
            -ms-transform: scale(0, 0);
            -o-transform: scale(0, 0);
            transform: scale(0, 0);
            -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
        }
    }

    input[type="radio"] {
        opacity: 0;
        z-index: 1;

        &:focus + label::before {
            outline: thin dotted;
            outline: 5px auto -webkit-focus-ring-color;
            outline-offset: -2px;
        }

        &:checked + label::after {
            -webkit-transform: scale(1, 1);
            -ms-transform: scale(1, 1);
            -o-transform: scale(1, 1);
            transform: scale(1, 1);
        }

        &:disabled + label {
            opacity: 0.65;

            &::before {
                cursor: not-allowed;
            }
        }
    }

    &.radio-inline {
        margin-top: 0;
    }
}

.radio-primary input[type="radio"] {
    + label::after {
        background-color: #337ab7;
    }

    &:checked + label {
        &::before {
            border-color: #337ab7;
        }

        &::after {
            background-color: #337ab7;
        }
    }
}

.radio-danger input[type="radio"] {
    + label::after {
        background-color: #d9534f;
    }

    &:checked + label {
        &::before {
            border-color: #d9534f;
        }

        &::after {
            background-color: #d9534f;
        }
    }
}

.radio-info input[type="radio"] {
    + label::after {
        background-color: #5bc0de;
    }

    &:checked + label {
        &::before {
            border-color: #5bc0de;
        }

        &::after {
            background-color: #5bc0de;
        }
    }
}

.radio-warning input[type="radio"] {
    + label::after {
        background-color: #f0ad4e;
    }

    &:checked + label {
        &::before {
            border-color: #f0ad4e;
        }

        &::after {
            background-color: #f0ad4e;
        }
    }
}

.radio-success input[type="radio"] {
    + label::after {
        background-color: #5cb85c;
    }

    &:checked + label {
        &::before {
            border-color: #5cb85c;
        }

        &::after {
            background-color: #5cb85c;
        }
    }
}

input {
    &[type="checkbox"].styled:checked + label:after, &[type="radio"].styled:checked + label:after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f00c";
    }

    &[type="checkbox"] .styled:checked + label::before, &[type="radio"] .styled:checked + label::before, &[type="checkbox"] .styled:checked + label::after, &[type="radio"] .styled:checked + label::after {
        color: #fff;
    }
}

.checkbox-size {
    position: relative;
    z-index: 1;
    padding-left: 0;
    display: inline-block;

    input {
        display: none;
    }

    label::before {
        background-color: #e53069;
        position: absolute;
        margin-left: 0;
        margin-top: -5px;
        left: 50%;
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: -1;
        color: #fff;
        border-radius: 50%;
        height: 40px;
        width: 40px;
        border: 2px solid #e53069;
        transition: border 0.2s ease-in-out;
    }

    input[type="radio"]:checked ~ .checkbox-size label::before {
        border: 1px solid #fff;
    }
}

.Checkbox .form-control-feedback {
    display: none !important;
}*/
.search-wrapper {
  position: absolute;
  top: calc(100% + 15px);
  right: 15px;
  width: 100%;
  max-width: 550px;
  background: #FAF8F5;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
}
.search-wrapper.active {
  visibility: visible;
  opacity: 1;
}
.search-wrapper .wrapper {
  display: block;
  padding: 15px;
}
.search-wrapper h2 {
  font-size: inherit;
  text-align: center;
  display: block;
  margin-bottom: 50px;
  color: #fff;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.33);
}
.search-wrapper .form-group {
  position: relative;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.search-wrapper .form-group .help-block {
  position: absolute;
  top: 49px;
  width: 100%;
}
.search-wrapper .form-group .form-control {
  background: #fff;
  color: #000;
  font-size: inherit;
  position: relative;
  border: 1px solid #eee;
  padding: 12px 15px;
  width: calc(100% - 100px);
}
.search-wrapper .form-group .btn-search {
  position: relative;
  font-size: 20px;
  top: 0;
  right: 0;
  color: #141414;
  margin-left: auto;
}

/**/
.dropdown-account {
  position: absolute;
  top: calc(100% + 15px);
  min-width: 225px;
  left: -1px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}
.dropdown-account ul li a {
  padding: 10px 15px;
  display: block;
  font-size: 15px;
  border-bottom: 1px solid #eee;
  background: #fff;
  transition: all 0.3s ease-in-out;
  color: #727272;
}
.dropdown-account ul li a:before {
  display: inline-block;
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 5px;
  vertical-align: middle;
  top: -2px;
}
.dropdown-account ul li a:hover {
  background: #edeae3;
}
.dropdown-account ul li:nth-child(1) a:before {
  background-image: url(/Resources/img/account/account.svg);
}
.dropdown-account ul li:nth-child(2) a:before {
  background-image: url(/Resources/img/account/history.svg);
}
.dropdown-account ul li:nth-child(3) a:before {
  background-image: url(/Resources/img/account/password.svg);
}
.dropdown-account ul li:nth-child(4) a:before {
  background-image: url(/Resources/img/account/logout.svg);
}

.wrapper-menu {
  width: calc(100vw - 290px);
  overflow: hidden;
  position: fixed;
  top: 83px;
  left: 139px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  background: #EEEAE0;
  display: flex;
}
.wrapper-menu ul b {
  display: block;
  margin-bottom: 10px;
}
.wrapper-menu ul li a {
  color: #141414;
}
.wrapper-menu .pop-products {
  width: 20%;
  max-width: 20%;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.wrapper-menu .pop-products .bottom {
  color: #141414;
  margin-top: auto;
  text-decoration: underline;
}
.wrapper-menu .pop-products li {
  display: block;
}
.wrapper-menu .brands {
  width: 80%;
  max-width: 80%;
  padding: 25px;
  border-left: 1px solid #141414;
}
.wrapper-menu .brands li {
  width: 33%;
}
.wrapper-menu .drop-desk {
  width: 100%;
  padding: 0 0;
  position: relative;
}

.hamburger {
  position: absolute;
  z-index: 3;
  width: 40px;
  height: 25px;
  right: 10px;
  top: 13px;
  display: none;
}
.hamburger .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
}
.hamburger #nav-icon2 {
  width: 60px;
  height: 45px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.hamburger #nav-icon2 span {
  display: block;
  position: absolute;
  height: 6px;
  width: 50%;
  background: #22C262;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.hamburger #nav-icon2 span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}
.hamburger #nav-icon2 span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}
.hamburger #nav-icon2 span:nth-child(1), .hamburger #nav-icon2 span:nth-child(2) {
  top: 0px;
}
.hamburger #nav-icon2 span:nth-child(3), .hamburger #nav-icon2 span:nth-child(4) {
  top: 18px;
}
.hamburger #nav-icon2 span:nth-child(5), .hamburger #nav-icon2 span:nth-child(6) {
  top: 36px;
}
.hamburger #nav-icon2.open span {
  background: #22C262;
}
.hamburger #nav-icon2.open span:nth-child(1) {
  left: 5px;
  top: 7px;
}
.hamburger #nav-icon2.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}
.hamburger #nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
.hamburger #nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
.hamburger #nav-icon2.open span:nth-child(5) {
  left: 5px;
  top: 29px;
}
.hamburger #nav-icon2.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 29px;
}
.hamburger #nav-icon2.open span:nth-child(1), .hamburger #nav-icon2.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hamburger #nav-icon2.open span:nth-child(2), .hamburger #nav-icon2.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.search-results {
  position: relative;
  left: 0;
  background: #FAF8F5;
  transition: all 0.3s ease-in-out;
  overflow-y: auto;
  width: 100%;
  top: 0;
}
.search-results .inner {
  padding: 15px;
  border-top: 2px solid #f0f0f0;
  position: relative;
  background: #fff;
}
.search-results .inner .close-search {
  position: absolute;
  top: 20px;
  right: 0px;
  font-size: 30px;
  color: #bbb;
  padding: 13px;
  z-index: 1;
  cursor: pointer;
}
.search-results .inner .close-search.hidden {
  display: none;
}
.search-results .inner b {
  display: block;
  font-size: 24px;
  margin-bottom: 30px;
}
.search-results .inner .products .item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  color: #000;
  text-decoration: none !important;
  align-items: center;
  border-bottom: 1px solid #ececec;
  justify-content: space-between;
  padding: 15px 0;
  transition: all 0.3s ease-in-out;
}
.search-results .inner .products .item:hover {
  background-color: #fafafa;
}
.search-results .inner .products .item .img {
  max-width: 80px;
}
.search-results .inner .products .item .img img {
  max-width: 100%;
}
.search-results .inner .products .item h6 {
  font-weight: bold;
  margin-bottom: 15px;
}
.search-results .inner .products .item .btn-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  width: 30%;
}
.search-results .inner .products .item .btn-list .delivery {
  text-align: right;
  display: block;
}
.search-results .inner .products .item .btn-list .stock {
  width: 100%;
  text-align: right;
  position: relative;
  padding: 0 0.5rem;
}
.search-results .inner .products .item .btn-list .stock b {
  font-size: 12px;
  color: #01982b;
  margin: 10px 0;
}
.search-results .inner .products .item .btn-list .stock.not b {
  color: red;
}
.search-results .inner .products .item .btn-list input {
  padding: 9px 5px;
  width: 60px;
  height: inherit;
  border-radius: 4px;
  color: #000;
  font-weight: 500;
  text-align: center;
  background: #f8f8f8;
  -webkit-appearance: none;
  border: 2px solid #eee;
  margin-right: 15px;
}
.search-results .inner .products .item .right-side {
  padding-left: 20px;
  flex: 0 0 80%;
  max-width: 80%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.search-results .inner .products .item .right-side .sku {
  font-weight: 600;
}
.search-results .inner .products .item .right-side .price {
  margin: 0 0 0 25px;
  font-weight: bold;
  font-size: 16px;
  width: 20%;
  text-align: right;
}
.search-results .inner .products .item .right-side a {
  text-decoration: none;
}
.search-results .inner .products .item .right-side b {
  font-size: 16px;
  color: #000;
  margin-bottom: 15px;
}
.search-results .inner .products .item .right-side .info {
  margin-right: auto;
  max-width: 70%;
  width: 100%;
}
.search-results .inner .cats {
  max-width: 100%;
  margin-bottom: 10px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}
.search-results .inner .cats a {
  display: table;
  color: #000;
  padding: 5px 0px;
  font-weight: 600;
}
.search-results .inner .cats a span {
  font-weight: 400;
}
.search-results .inner .cats a:nth-of-type(even) {
  background: #f7f7f7;
}

.twitter-typeahead {
  width: 100%;
}
.twitter-typeahead .tt-menu {
  padding: 15px 0px;
  background: #fff;
  width: 100%;
}
.twitter-typeahead .tt-menu .tt-selectable {
  color: #014023;
  cursor: pointer;
  font-size: 14px;
  padding: 5px 15px;
  transition: all 0.3s ease-in-out;
}
.twitter-typeahead .tt-menu .tt-selectable:hover {
  background: #eee;
}

.search {
  /*z-index: 201;*/
  margin: 0 auto;
  width: 100%;
  max-width: 650px;
  position: relative;
}
.search .help-block {
  display: none !important;
  visibility: hidden;
}
.search .form-group {
  margin-bottom: 0;
  position: relative;
}
.search .form-group .close-search {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 45px;
  font-size: 22px;
  color: #bbb;
  padding: 13px;
  z-index: 1;
  cursor: pointer;
}
.search .form-group .form-control {
  min-width: 265px;
  background: #fff !important;
  padding-right: 90px !important;
  color: #014023;
  width: 100%;
  padding: 12px 15px;
  height: inherit;
  border: none;
  border-radius: 4px;
  background: none;
  color: #000;
  font-weight: 500;
  background: #f8f8f8;
  -webkit-appearance: none;
  outline: none !important;
}
.search .form-group .btn-search {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 20px;
  padding: 5px;
  z-index: 11;
  color: #014023;
}

.menu-items {
  background: #f6f6f6;
  position: relative;
}

body.filled-menu {
  /*margin-top: 115px;*/
}
body.filled-menu header {
  background: #EEEAE0;
}

@media only screen and (max-width: 1240px) and (min-width: 991.5px) {
  /*.menu-middle {
      .search {
          .form-group {
              .form-control {
                  min-width: 175px;
              }
          }
      }
  }*/
  .topheader ul li {
    margin-right: 10px;
  }
}
@media only screen and (min-width: 1200px) {
  .mobile-products {
    display: none;
  }
  main {
    position: relative;
  }
  .right-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 0 0 15px;
    position: relative;
  }
  .right-menu a {
    color: #044024;
  }
  .right-menu .menu-icon {
    position: relative;
  }
  .right-menu .menu-icon > a {
    display: block;
  }
  .right-menu .menu-icon:hover .dropdown-account {
    opacity: 1;
    max-height: 999px;
  }
  .right-menu .menu-icon.active {
    /* background: $secondary-color;*/
    color: #fff;
  }
  .right-menu .menu-icon .shopping-cart-icon {
    margin: 7px 0 0 15px;
    cursor: pointer;
  }
  .right-menu .menu-icon .shopping-cart-icon svg {
    position: relative;
    top: 5px;
  }
  .right-menu .menu-icon svg {
    max-width: 20px;
    width: 100%;
  }
  .right-menu .menu-icon b.qty {
    display: inline-block;
    position: absolute;
    top: 0px;
    right: -10px;
    width: 17px;
    line-height: 17px;
    background: #fff;
    color: #044024;
    border-radius: 50%;
    text-align: center;
  }
  .right-menu .menu-icon b.qty span {
    font-size: 13px;
  }
  .right-menu .menu-icon:last-of-type {
    margin-right: 0;
  }
  .right-menu .btn-default {
    padding: 10px 20px;
    text-align: center;
    font-weight: normal;
    display: table;
    border: none;
    cursor: pointer;
    outline: none !important;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    background: #22C262;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    min-width: 200px;
    margin-left: 10px;
  }
  .right-menu .btn-default.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
  }
  .right-menu .btn-default.loading:before {
    content: "" !important;
    -webkit-animation: rotating 2s linear infinite;
    -moz-animation: rotating 2s linear infinite;
    -ms-animation: rotating 2s linear infinite;
    -o-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
    position: absolute;
    left: 18px;
    top: 14px;
    width: 18px;
    height: 18px;
    background-image: url(/Resources/img/loading.svg);
  }
}
@media only screen and (min-width: 1200px) and (min-width: 768px) {
  .right-menu .btn-default:hover {
    background: #000;
    color: #fff;
  }
}
@media only screen and (min-width: 1200px) {
  .right-menu .btn-default i {
    margin-right: 10px;
  }
}
@media only screen and (min-width: 1200px) {
  .language-switch {
    padding: 5px;
    margin: 0 0 0 10px;
    /*        position: absolute;
    padding: 5px;
    cursor: pointer;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);*/
  }
  .language-switch:hover ul {
    max-height: 400px;
  }
  .language-switch ul {
    position: absolute;
    top: 35px;
    left: -15px;
    background-color: #ececec;
    min-width: 120px;
    padding: 0 20px;
    overflow: hidden;
    max-height: 0;
    transition: all 0.3s ease-in-out;
  }
  .language-switch ul li {
    margin-bottom: 5px;
  }
  .language-switch ul li:first-child {
    padding-top: 10px;
  }
  .language-switch ul li:last-child {
    padding-bottom: 10px;
  }
  .language-switch ul li a {
    color: #000;
    text-decoration: none;
  }
  .language-switch img {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    object-fit: cover;
    border: 1px solid #ccc;
    margin-right: 5px;
    display: inline-block;
    vertical-align: text-bottom;
  }
}
@media only screen and (min-width: 1200px) {
  .back-btn, .login-mobile {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) {
  .custom-nav {
    margin-left: auto;
  }
  .custom-nav .dropdown-desktop {
    /*
    &:after {
        content: "\f078";
        font-weight: 900;
        font-family: "font awesome 5 free";
        font-size: 14px;
        top: 50%;
        right: 5px;
        position: absolute;
        transform: translateY(-50%);
        color: $primary-pink;
    }*/
  }
  .custom-nav .dropdown-desktop .container {
    flex-wrap: wrap;
    flex-direction: row;
    display: flex;
  }
  .custom-nav .dropdown-desktop .offcanvas-submenu {
    padding: 30px 0px;
  }
  .custom-nav .dropdown-desktop .offcanvas-submenu.first-column {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .custom-nav .dropdown-desktop .offcanvas-submenu.last-column {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .custom-nav .dropdown-desktop .offcanvas-submenu a {
    color: #000;
    text-decoration: none;
    font-size: 12px;
  }
  .custom-nav .dropdown-desktop:hover .drop-desk {
    max-height: 999px;
    visibility: visible;
  }
  .custom-nav .dropdown-desktop .drop-desk {
    /*          position: absolute;
    left: 0;
    right: 0;
    background-color: #f8f8f8;
    top: 100%;
    max-height: 0;
    visibility: hidden;
    box-shadow: 0 3px 5px rgba(0,0,0,.12);
    overflow: hidden;
     min-width: 175px;
    max-width: 100%;
    width: 750px;
    padding: 0 0;
    transition: all .7s ease-in-out;
    padding: 0 0;*/
  }
  .custom-nav .dropdown-desktop .drop-desk li {
    width: 33%;
    display: inline-block !important;
  }
  .custom-nav .dropdown-desktop .drop-desk li:last-of-type {
    margin-bottom: 10px;
  }
  .custom-nav .dropdown-desktop .drop-desk li.popular {
    display: block !important;
  }
  .custom-nav .dropdown-desktop .drop-desk li a {
    font-size: 14px;
    padding: 10px;
  }
  .custom-nav .dropdown-desktop .drop-desk .title-drop {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
  }
  .custom-nav .dropdown-desktop .drop-desk .child-desktop {
    display: block;
  }
  .custom-nav .dropdown-desktop .drop-desk .child-desktop li {
    padding: 0;
    display: block;
    width: 100%;
    vertical-align: top;
    margin-bottom: 5px;
  }
  .custom-nav .dropdown-desktop .drop-desk .child-desktop #aTitle1 {
    font-size: 15px;
    color: #EEEAE0;
    text-decoration: underline;
    padding: 5px 0px;
    display: block;
    font-weight: 500;
  }
}
@media only screen and (min-width: 1200px) {
  header {
    left: 0;
    padding: 20px 0;
    z-index: 99;
    transition: all 0.3s ease-in-out;
    position: fixed;
    display: table;
    top: 0;
    right: 0;
    margin: 0 auto;
    /*border-radius: 0 0 10px 10px;*/
    /*max-width: 1450px;*/
    width: 100%;
  }
  header.scroll, header.static {
    background: #EEEAE0;
  }
  header .product-links ul {
    display: block;
  }
  header .product-links ul li {
    display: inline-block;
  }
  header .product-links ul li:not(:last-child) {
    margin: 0 15px 0 0;
  }
  header .product-links ul li a {
    color: #044024;
    font-weight: 600;
    transition: 0.3s ease-in-out;
  }
  header .product-links ul li a:hover {
    color: #22C262;
  }
  header .holder {
    display: flex;
    align-items: center;
  }
  header .mobile-show {
    display: none;
  }
  header .logo {
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    max-width: 65px;
    left: 50%;
    transform: translateX(-50%);
  }
  header .logo img {
    max-width: 100%;
    display: block;
  }
  header .offcanvas-menu {
    display: inline-block;
  }
  header .offcanvas-menu .menu {
    display: inline-block;
    vertical-align: middle;
  }
  header .offcanvas-menu .dropdown-custom:hover ul {
    max-height: 500px;
  }
  header .offcanvas-menu .dropdown-custom ul {
    position: absolute;
    min-width: 175px;
    background: #fff;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    max-height: 0px;
    overflow: hidden;
  }
  header .offcanvas-menu .dropdown-custom ul li {
    display: block;
  }
  header .offcanvas-menu .dropdown-custom ul li span {
    margin: 5px 0px;
  }
  header .offcanvas-menu .dropdown-custom ul li span a {
    padding: 10px 15px;
    display: block;
  }
  header .offcanvas-menu ul li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
  }
  header .offcanvas-menu ul li:hover a#aFirst, header .offcanvas-menu ul li.active a#aFirst {
    color: #22C262;
  }
  header .offcanvas-menu ul li:hover a#aFirst:after, header .offcanvas-menu ul li.active a#aFirst:after {
    width: calc(100% - 40px);
  }
  header .offcanvas-menu ul li:hover .wrapper-menu, header .offcanvas-menu ul li.active .wrapper-menu {
    opacity: 1;
    visibility: visible;
  }
  header .offcanvas-menu ul li a#aFirst {
    display: block;
    padding: 10px 15px;
    transition: all 0.2s ease-in-out;
    background: transparent;
    position: relative;
    color: #044024;
    text-decoration: none !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  header .offcanvas-menu ul li a#aFirst {
    padding: 10px 15px;
  }
}
@media only screen and (max-width: 1200px) {
  .mobile-products {
    display: block;
  }
  .search-wrapper {
    top: calc(100% + 10px);
    width: calc(100% - 20px);
    right: 10px;
  }
  .right-menu {
    position: relative;
    display: flex;
    margin-left: auto;
    padding-right: 55px;
    flex-wrap: wrap;
    flex-direction: row;
    z-index: 1;
    align-items: center;
  }
  .right-menu #aLogin {
    color: #014023;
    display: inline-block;
    margin: 0 5px 0 0;
  }
  .right-menu .shopping-cart-icon {
    display: table;
    position: relative;
  }
  .right-menu .shopping-cart-icon svg {
    max-width: 22px;
    margin: 7px 0 0 5px;
  }
  .right-menu .menu-icon .dropdown-account {
    left: -100px;
    text-align: left;
  }
  .right-menu .menu-icon .dropdown-account object {
    position: relative;
    z-index: 5;
  }
  .right-menu .menu-icon:hover .dropdown-account {
    opacity: 1;
    max-height: 999px;
  }
  .right-menu .menu-icon b.qty, .right-menu .btn-default b.qty {
    display: inline-block;
    position: absolute;
    top: -5px;
    right: -15px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    text-align: center;
  }
  .right-menu .menu-icon b.qty span, .right-menu .btn-default b.qty span {
    font-size: 14px;
  }
  .right-menu .menu-icon i, .right-menu .btn-default i {
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
  }
  .language-switch .inner {
    font-size: 0;
    padding: 5px;
    text-align: center;
  }
  .language-switch .inner img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    padding: 4px;
    margin: 0px 0 0 10px;
    border-radius: 50%;
  }
  .language-switch .inner .active-lan {
    display: inline-block;
  }
  .language-switch .inner .active-lan img {
    background: #EEEAE0;
  }
  .language-switch .inner ul {
    display: inline-block;
  }
  .language-switch .inner ul li {
    display: inline-block;
  }
  .language-switch .inner ul li a {
    padding: 0px;
  }
  .menu-middle .container-fluid {
    padding: 0 !important;
  }
  .menu-middle .right .menu-icon {
    height: 35px;
    width: 35px;
    margin: 0 4px;
  }
  .menu-middle .right .menu-icon.show-desktop {
    display: none;
  }
  .menu-middle .right .menu-icon.hide-desktop {
    display: block;
  }
  .menu-middle .right .menu-icon i {
    font-size: 16px;
  }
  footer, .copy, .menu-middle {
    left: 0%;
    transition: all 0.3s ease-in-out;
  }
  /* main {
      margin-top: 75px;
      position: relative;
      left: 0%;
      transition: left 0.3s ease-in-out;

      &.main-scroll {
          margin-top: 135px;
      }
  }*/
  html.active {
    /*      main, .topheader, footer, .copy, .menu-middle {
        left: -45%;
    }*/
    /*        .overlay-search {
        opacity: 1;
        left: -45%;
        visibility: visible;
    }*/
  }
  html.active header .custom-nav {
    right: 0% !important;
    visibility: visible;
  }
  .hamburger, .login-mobile {
    display: block;
  }
  .offcanvas-menu {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0px 0px 20px;
    z-index: 4;
  }
  .offcanvas-menu .container {
    padding: 0;
  }
  .offcanvas-menu .title-drop {
    font-weight: 600;
    font-size: 20px;
    padding-left: 20px;
    margin: 25px 0px 5px;
  }
  .offcanvas-menu .menu.off-view {
    transform: translate3d(-100%, 0, 0);
  }
  .offcanvas-menu ul li {
    display: block;
    border-bottom: 1px solid rgba(1, 64, 35, 0.2);
  }
  .offcanvas-menu ul li.back-btn a:before {
    content: "\f053";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    position: relative;
    margin-right: 10px;
  }
  .offcanvas-menu ul li a {
    display: block;
    padding: 15px 20px;
    transition: color 0.3s;
    font-size: 18px;
    color: #014023 !important;
    text-decoration: none;
  }
  .offcanvas-menu ul li a.btnRegistreren {
    color: #fff !important;
    margin: 0px 15px;
  }
  .offcanvas-menu ul li.has-children > .offcanvas-submenu {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: auto;
    transform: translate3d(100%, 0, 0);
    transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  }
  .offcanvas-menu ul li.has-children > .offcanvas-submenu.in-view {
    transform: translate3d(0, 0, 0);
  }
  .offcanvas-menu ul li.has-children > .offcanvas-submenu.in-view.off-view {
    transform: translate3d(-100%, 0, 0);
  }
  .offcanvas-menu ul li.has-children > span {
    display: block;
    position: relative;
    width: 100%;
  }
  .offcanvas-menu ul li.has-children > span .sub-menu-toggle {
    display: block;
  }
  .offcanvas-menu ul li.has-children > span a {
    padding-right: 65px;
  }
  .offcanvas-menu ul li.has-children.not-child .sub-menu-toggle {
    display: none !important;
  }
  .offcanvas-menu ul li .sub-menu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: calc(100% - 1px);
    transition: background-color 0.3s;
    z-index: 1;
    display: none;
  }
  .offcanvas-menu ul li .sub-menu-toggle:after {
    content: "\f054";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 27px;
    height: 27px;
    background: #EEEAE0;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 27px;
  }
  .offcanvas-menu .menu {
    position: relative;
    transform: translate3d(0, 0, 0);
    transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  }
  header {
    left: 0;
    top: 0;
    z-index: 3;
    position: fixed;
    background: transparent;
    display: flex;
    padding: 10px 0;
    z-index: 999;
    transition: all 0.4s ease-in-out;
    width: 100%;
    background: #EEEAE0;
  }
  header .holder {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
  }
  header .product-links {
    display: none;
  }
  header.scroll, header.static {
    background: #EEEAE0;
  }
  header .dropdown-custom .back-btn:not(:first-child) {
    display: none;
  }
  header .dropdown-custom li .sub-menu-toggle {
    display: none !important;
  }
  header .logo {
    padding: 0;
    display: table;
  }
  header .logo img {
    max-width: 150px;
    display: block;
    height: 46px;
  }
  header.active .custom-nav {
    right: 0;
  }
  header.active .custom-nav .nav-items {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  header .custom-nav {
    position: fixed;
    top: 66px;
    width: 45%;
    z-index: 2;
    bottom: 0;
    background-color: #FEFCF7;
    transition: right 0.4s ease-in-out;
    padding: 30px 0;
    height: calc(100% - 66px);
    overflow-y: scroll;
    right: -45%;
    -ms-overflow-style: none;
    transition: all 0.3s ease-in-out !important;
  }
  header .custom-nav:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url(/Resources/img/logo.svg);
    background-size: 150px;
    background-repeat: no-repeat;
    background-position: 98% 98%;
  }
  header .custom-nav::-webkit-scrollbar {
    display: none;
  }
  header .custom-nav .off-canvas {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: auto;
    transform: translate3d(100%, 0, 0);
    transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  }
  header .custom-nav .off-canvas.in-view {
    transform: translate3d(0, 0, 0);
  }
  header .custom-nav .nav-items {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 20px;
    letter-spacing: 2px;
    position: relative;
    transform: translate3d(0, 0, 0);
    transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  }
  header .custom-nav .nav-items.off-view {
    transform: translate3d(-100%, 0, 0);
  }
  header .custom-nav .nav-items .dropdown-test .nav-big-down {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: auto;
    transform: translate3d(100%, 0, 0);
    transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  }
  header .custom-nav .nav-items li {
    margin-bottom: 20px;
  }
  header .custom-nav .close-mobile {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
  }
  header .custom-nav .title {
    display: block;
    font-size: 30px;
    color: #fff;
    font-family: "TikTokSans", sans-serif;
    position: relative;
    font-weight: 400;
  }
  header .custom-nav .social {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 30px;
  }
  header .custom-nav .social li {
    display: inline-block;
    margin-right: 20px;
  }
  header .custom-nav .social li:last-child {
    margin-right: 0px;
  }
  header .custom-nav .social li a {
    color: #014023;
  }
  header .custom-nav .mobile-copyright {
    margin: 0;
    display: inline-block;
    width: 100%;
    margin-top: 50px;
    color: #014023;
  }
  header .custom-nav .mobile-show {
    display: block;
    padding-left: 20px;
  }
  header .custom-nav .mobile-show img {
    max-width: 200px;
    display: block;
    height: auto;
    margin-bottom: 75px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 767.5px) {
  header .custom-nav {
    width: 100%;
    right: -100%;
  }
  html.active main, html.active .topheader, html.active footer, html.active .copy, html.active .menu-middle {
    left: -75%;
  }
  html.active .overlay-search {
    left: -75%;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 360px) {
  .right-menu .search {
    padding: 14px 12px;
  }
  .right-menu .menu-icon.login {
    padding: 15px 12px;
  }
  /*      .right-menu .menu-icon:last-of-type {
      margin-left: 0;
  }*/
}
@media only screen and (max-width: 1200px) {
  .topheader {
    width: 100%;
    z-index: 3;
    left: 0%;
    transition: all 0.3s ease-in-out;
  }
  .topheader ul {
    text-align: center;
    position: relative;
  }
  .topheader ul li {
    margin-right: 15px;
  }
  .topheader ul li i {
    margin-right: 5px;
    font-size: 15px;
    vertical-align: middle;
  }
  .topheader ul li:last-child {
    margin-right: 0px;
  }
}
@media only screen and (max-width: 1200px) {
  .menu-middle {
    width: 100%;
    left: 0;
    padding: 10px 0;
  }
  .menu-middle .shopping-bag .drop {
    position: fixed;
    top: 55px;
    z-index: 999;
    right: initial;
    left: 15px;
    width: calc(100% - 30px);
    min-width: inherit;
    max-height: calc(100vh - 150px);
    height: 100%;
  }
  .menu-middle .shopping-bag .drop .list::-webkit-scrollbar {
    display: none;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .menu-middle .search {
    position: absolute;
    left: 0px;
    top: 60px;
    padding: 10px 15px;
    background: #014023;
    width: 100%;
    order: 3;
    margin-left: auto;
    max-width: inherit;
  }
  .menu-middle .search .form-group .form-control {
    padding: 8px 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .topheader ul {
    width: 100%;
    display: block;
    white-space: nowrap;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .menu-middle .search .form-group .btn-search {
    top: 0px;
  }
}
@media only screen and (max-width: 767.5px) {
  .search-results .inner {
    max-height: 70vh;
    overflow-y: scroll;
    margin: 0;
    padding: 20px 15px;
    -webkit-overflow-scrolling: touch;
  }
  .search-results .inner .close-search {
    padding: 0;
    right: 20px;
    font-size: 26px;
    top: 25px;
  }
  .search-results .inner b {
    display: block;
    margin-bottom: 10px;
  }
  .search-results .inner .products {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0px;
  }
  .search-results .inner .products .item {
    align-items: flex-start;
  }
  .search-results .inner .products .item .right-side {
    padding-left: 0;
    max-width: calc(100% - 120px);
    flex: 0 0 calc(100% - 120px);
    align-items: start;
  }
  .search-results .inner .products .item .right-side .price {
    margin: 10px auto 10px 0;
  }
  .search-results .inner .products .item .right-side .btn-list .stock, .search-results .inner .products .item .right-side .btn-list .delivery {
    text-align: left;
  }
  .search-results .inner .products .item .right-side .info, .search-results .inner .products .item .right-side .price, .search-results .inner .products .item .right-side .btn-list {
    max-width: 100%;
    text-align: left;
    width: 100%;
    justify-content: start;
  }
  .search-results .inner .products .item h6 {
    margin-bottom: 5px;
  }
  .search-results .inner .products .item img {
    flex: 0 0 20%;
    max-width: 20%;
    object-fit: contain;
  }
  .search-results .inner .cats {
    flex: 0 0 100%;
    max-width: 100%;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    border-right: 0;
    margin-bottom: 30px;
  }
  .topheader {
    padding: 15px 0px;
  }
  .topheader ul li {
    margin-bottom: 3px;
  }
}
@media only screen and (max-width: 360px) {
  .hamburger {
    top: 8px;
  }
  header .logo img {
    max-width: 115px;
    height: 40px;
  }
  .right-menu .menu-icon, .right-menu .btn-default {
    width: 35px;
    height: 35px;
  }
  .right-menu .menu-icon i, .right-menu .btn-default i {
    font-size: 14px;
  }
}
.head {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 0 0;
  color: #014023;
  /*
  img {
      max-width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      background: #fff;
      width: 100%;
      object-fit: cover;
      z-index: -1;
  }*/
}
.head .slider-home {
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #fff;
  width: 100%;
  object-fit: cover;
}
.head .slider-home .slick-list {
  height: 100% !important;
}
.head .slider-home .slick-track {
  height: 100%;
}
.head .slider-home .slick-track .slick-slide > div {
  height: 100%;
}
.head .slider-home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.head .reviews {
  background: rgba(0, 0, 0, 0.6980392157);
  padding: 5px 5px 5px 15px;
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  max-width: 400px;
  margin: 0 0 0 auto;
}
.head .reviews .trustpilot-stars {
  display: inline-block;
  max-width: 115px;
  margin: 0 15px;
}
.head .reviews .rating-number {
  background: #22C262;
  padding: 5px 15px;
  border-radius: 100px;
}
.head .bottom-container {
  position: absolute !important;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}
.head .bottom-container .pagingInfo {
  color: #000;
}
.head .bottom-container .pagingInfo .current {
  font-size: 18px;
}
.head .bottom-container .pagingInfo .total {
  font-size: 12px;
}
.head b {
  position: relative;
  padding: 10px 25px 10px 45px;
  border-radius: 100px;
  font-weight: normal;
  display: table;
  margin: 0 0 5px;
  color: #014023;
  font-size: 14px;
}
.head b:before {
  content: "";
  position: absolute;
  background-image: url("/Resources/img/icon-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 15px;
  top: 13px;
}
.head b:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  inset: 0;
  border-radius: 100px;
  padding: 3px;
  background: linear-gradient(108.74deg, rgba(34, 194, 98, 0.6) 0%, rgba(166, 166, 166, 0.54) 36.46%, rgba(166, 166, 166, 0.3) 73.96%, rgba(34, 194, 98, 0.6) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.head h1 {
  font-size: 55px;
  font-weight: 600;
  line-height: 60px;
}
.head h1 strong {
  font-weight: 600;
  color: #22C262;
}
.head .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  margin: 15px 0 0 0;
}
.head .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.head .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .head .btn-default:hover {
    background: #000;
    color: #fff;
  }
}

.products {
  padding: 100px 0;
}
.products .title-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 50px 0;
}
.products .title-wrapper h2, .products .title-wrapper h3, .products .title-wrapper h4, .products .title-wrapper h5, .products .title-wrapper h6 {
  font-size: 40px;
  font-weight: 500;
  line-height: 44px;
}
.products .title-wrapper h2 strong, .products .title-wrapper h3 strong, .products .title-wrapper h4 strong, .products .title-wrapper h5 strong, .products .title-wrapper h6 strong {
  font-weight: 500;
  color: #22C262;
}
.products .title-wrapper .usps {
  margin: 0 0 0 auto;
}
.products .title-wrapper .usps ul {
  display: block;
}
.products .title-wrapper .usps ul li {
  position: relative;
  padding: 10px 25px 10px 40px;
  border-radius: 100px;
  font-weight: normal;
  display: table;
  color: #014023;
  font-size: 16px;
  display: inline-block;
  backdrop-filter: blur(100px);
  box-shadow: 0px 0px 50px -25px rgba(0, 0, 0, 0.5019607843);
}
.products .title-wrapper .usps ul li:nth-of-type(2) {
  margin: 0 10px;
}
.products .title-wrapper .usps ul li:before {
  content: "";
  position: absolute;
  background-image: url("/Resources/img/icon-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 15px;
  top: 15px;
}
.products .title-wrapper .usps ul li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  inset: 0;
  border-radius: 100px;
  padding: 3px;
  background: linear-gradient(108.74deg, rgba(34, 194, 98, 0.6) 0%, rgba(166, 166, 166, 0.54) 36.46%, rgba(166, 166, 166, 0.3) 73.96%, rgba(34, 194, 98, 0.6) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.products .item {
  color: #014023;
  margin: 0 0 50px;
  display: block;
  height: calc(100% - 50px);
  position: relative;
}
.products .item:has(.btn-default) {
  padding-bottom: 60px;
}
.products .item:hover .img-wrapper {
  border-color: #22C262;
}
.products .item .img-wrapper {
  background: rgba(255, 255, 255, 0.231372549);
  border-radius: 16px;
  margin: 0 0 10px;
  padding: 15px;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}
.products .item .img-wrapper .discount {
  position: absolute;
  width: 60px;
  height: 70px;
  right: 15px;
  top: 15px;
  -webkit-mask-image: url(/Resources/img/bg-discount.svg);
  mask-image: url(/Resources/img/bg-discount.svg);
  mask-size: 100%;
  mask-repeat: no-repeat;
  background: #22C262;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.products .item .img-wrapper .discount b {
  font-size: 16px;
}
.products .item .img-wrapper img {
  width: 100%;
}
.products .item .content .title {
  font-weight: 600;
  display: block;
  margin: 0 0 5px;
  font-size: 22px;
}
.products .item .content .title span {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 0 10px;
  display: inline-block;
}
.products .item .content .sales {
  font-weight: bold;
  color: #22C262;
}
.products .item .content .old-price {
  margin-left: 10px;
  position: relative;
  font-size: 15px;
}
.products .item .content .old-price:before {
  content: "";
  height: 1px;
  width: 120%;
  transform: rotate(-6deg) translateX(-50%);
  background: #000;
  position: absolute;
  top: 7px;
  left: 50%;
}
.products .item .content .view-product {
  color: #22C262;
  display: block;
  margin: 5px 0 0;
}
.products .item .content .view-product img {
  max-width: 7px;
  width: 100%;
}
.products .item .content .btn-default {
  margin: 15px auto 0 0;
  min-width: initial;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.products .item .content .btn-default svg {
  max-width: 18px;
  position: relative;
  height: auto;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  top: -2px;
}
.products .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  margin: 25px auto 0;
}
.products .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.products .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .products .btn-default:hover {
    background: #000;
    color: #fff;
  }
}

.usp-blocks {
  padding: 75px 0;
  background: #FEFCF7;
}
.usp-blocks .top-title {
  text-align: center;
  margin: 0 0 50px;
}
.usp-blocks .top-title h2 strong, .usp-blocks .top-title h3 strong, .usp-blocks .top-title h4 strong, .usp-blocks .top-title h5 strong, .usp-blocks .top-title h6 strong {
  color: #22C263;
}
.usp-blocks .item {
  background: linear-gradient(180deg, #22C262 0%, #FEFCF7 100%);
  border-radius: 26px;
  padding: 25px;
  color: #fff;
  height: calc(100% - 25px);
  margin: 0 0 25px;
  display: flex;
  flex-direction: column;
}
.usp-blocks .item .text {
  margin: 0 0 75px;
}
.usp-blocks .item img {
  display: block;
  margin: auto 0 0 auto;
  max-width: 200px;
  width: 100%;
}
.usp-blocks .item h2, .usp-blocks .item h3, .usp-blocks .item h4, .usp-blocks .item h5, .usp-blocks .item h6 {
  font-size: 30px;
  line-height: 34px;
  margin: 0 0 5px;
  text-align: left;
  font-weight: 500;
  color: #fff;
}
.usp-blocks .normal-link {
  text-align: center;
}
.usp-blocks .normal-link a {
  color: #22C262;
  position: relative;
  display: table;
  text-align: center;
  margin: 25px auto 0;
  transition: all 0.3s ease-in-out;
}
.usp-blocks .normal-link a:hover {
  color: #014023;
}
.usp-blocks .normal-link a:hover:after {
  background-image: url("/Resources/img/arrow-right-dark-green.svg");
}
.usp-blocks .normal-link a:after {
  content: "";
  position: absolute;
  top: 10px;
  right: -15px;
  background-image: url("/Resources/img/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease-in-out;
}

.text-img {
  position: relative;
  padding: 50px 0;
}
.text-img img {
  width: 100%;
  border-radius: 16px;
}
.text-img h2, .text-img h3, .text-img h4, .text-img h5, .text-img h6 {
  font-size: 34px;
  font-weight: 500;
  margin: 0 0 5px;
}
.text-img .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
}
.text-img .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.text-img .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .text-img .btn-default:hover {
    background: #000;
    color: #fff;
  }
}
.text-img ul {
  padding: 0 0 0 20px;
}
.text-img ul li {
  list-style: disc;
  margin: 0 0 7px;
}
.text-img .text-pd-left {
  padding: 0 0 0 50px;
}

.img-bottom {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: start;
  color: #000;
  padding: 100px 0 0;
}
.img-bottom h2, .img-bottom h3, .img-bottom h4, .img-bottom h5, .img-bottom h6 {
  font-family: "Abuget";
  font-size: 175px;
  text-align: center;
}
.img-bottom h2 strong, .img-bottom h3 strong, .img-bottom h4 strong, .img-bottom h5 strong, .img-bottom h6 strong {
  color: #22C262;
}
.img-bottom img {
  max-width: 100%;
  position: absolute !important;
  top: 0;
  left: 0;
  height: 100%;
  background: #fff;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}
.img-bottom .btn-bottom {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}
.img-bottom .btn-bottom .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  margin: 0 auto;
}
.img-bottom .btn-bottom .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.img-bottom .btn-bottom .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .img-bottom .btn-bottom .btn-default:hover {
    background: #000;
    color: #fff;
  }
}

@media only screen and (max-width: 1300px) {
  .img-bottom {
    padding: 75px 0 0;
  }
  .img-bottom h2, .img-bottom h3, .img-bottom h4, .img-bottom h5, .img-bottom h6 {
    font-size: 175px;
  }
}
@media only screen and (max-width: 991.5px) {
  .img-bottom {
    padding: 125px 0 0;
  }
  .img-bottom h2, .img-bottom h3, .img-bottom h4, .img-bottom h5, .img-bottom h6 {
    font-size: 175px;
  }
  .text-img .text-pd-left {
    padding: 0 0 0 25px;
  }
}
@media only screen and (max-width: 767.5px) {
  .head {
    padding: 66px 0 25px 0;
    min-height: initial;
    /*    .hid-mobile {
        display: none;
    }*/
  }
  .head .bottom-container .pagingInfo {
    font-size: 14px;
  }
  .head .bottom-container .pagingInfo .current {
    font-size: 14px;
  }
  .head .bottom-container .pagingInfo .total {
    font-size: 10px;
  }
  .head b {
    display: none;
  }
  .head h1 {
    font-size: 38px;
    line-height: 44px;
  }
  .head .slider-home {
    position: relative;
    margin: 0 0 25px;
  }
  .head .slider-home .slick-track {
    height: initial;
  }
  .head .slider-home .slick-track .slick-slide > div {
    height: initial;
  }
  .head .reviews {
    flex-wrap: wrap;
    font-size: 14px;
    justify-content: space-between;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    margin: 25px 0 0 0;
    position: relative;
  }
  .head .reviews .trustpilot-stars {
    max-width: 85px;
    margin: 0 10px;
  }
  .head .reviews .rating-number {
    padding: 3px 10px;
  }
  .head .container-fluid.bottom-container {
    position: absolute !important;
    bottom: initial;
    top: 49%;
  }
  .head .container-fluid.bottom-container .col-sm-5.offset-sm-3 {
    display: none;
  }
  .products {
    padding: 50px 0;
  }
  .products.home {
    padding: 15px 0 50px;
  }
  .products.overview {
    padding: 25px 0 50px;
  }
  .products.overview .item .right .btn-default {
    padding: 5px 20px 7px !important;
  }
  .products.overview .item .right .btn-default svg {
    max-width: 15px;
  }
  .products .title-wrapper h2, .products .title-wrapper h3, .products .title-wrapper h4, .products .title-wrapper h5, .products .title-wrapper h6 {
    font-size: 28px;
    line-height: 32px;
  }
  .products .title-wrapper .usps {
    margin: 15px 0 0 0;
  }
  .products .title-wrapper .usps ul li {
    font-size: 14px;
    padding: 7px 25px 7px 40px;
  }
  .products .title-wrapper .usps ul li:nth-of-type(2) {
    margin: 10px 0;
  }
  .products .title-wrapper .usps ul li:before {
    width: 17px;
    height: 17px;
    top: 13px;
  }
  .products .item {
    margin: 0 0 25px;
    height: calc(100% - 25px);
  }
  .products .item .left .discount {
    width: 40px;
    height: 45px;
    top: 5px;
    right: 5px;
  }
  .products .item .left .discount b {
    font-size: 12px;
    position: relative;
    z-index: -2;
  }
  .products .item .right .title {
    font-size: 17px;
    line-height: 22px;
    margin: 0;
  }
  .products .item .right .title span {
    display: block;
    font-size: 13px;
    margin: 0;
  }
  .products .item .right .sales, .products .item .right .current-price, .products .item .right .old-price {
    font-size: 13px;
  }
  .products .item .right .old-price:before {
    width: 105%;
  }
  .products .item .right .view-product {
    font-size: 15px;
    margin: -3px 0 0 0;
  }
  .products .item .right .view-product img {
    max-width: 6px;
  }
  .usp-blocks {
    padding: 50px 0;
  }
  .usp-blocks .top-title {
    margin: 0 0 25px;
  }
  .usp-blocks .item .text {
    margin: 0 0 25px;
  }
  .usp-blocks .item h2, .usp-blocks .item h3, .usp-blocks .item h4, .usp-blocks .item h5, .usp-blocks .item h6 {
    font-size: 26px;
    line-height: 30px;
  }
  .usp-blocks .item img {
    position: absolute;
    top: 5px !important;
    right: 25px;
    max-width: 100px;
  }
  .text-img {
    padding: 50px 0 0;
  }
  .text-img h2, .text-img h3, .text-img h4, .text-img h5, .text-img h6 {
    font-size: 28px;
    line-height: 32px;
  }
  .text-img img {
    margin: 25px 0 0 0;
  }
  .text-img .text-pd-left {
    padding: 0;
  }
  .img-bottom {
    margin: 50px 0 0;
    min-height: 50vh;
    padding: 50px 0 0;
  }
  .img-bottom h2, .img-bottom h3, .img-bottom h4, .img-bottom h5, .img-bottom h6 {
    font-size: 85px;
  }
  .img-bottom .btn-bottom {
    bottom: 25px;
    width: calc(100% - 50px);
  }
}
.products-home {
  position: relative;
  padding: 75px 0;
}
.products-home h2, .products-home h3, .products-home h4, .products-home h5, .products-home h6 {
  display: block;
  font-size: 24px;
  color: #014023;
  font-weight: 600;
  margin-bottom: 0px;
  font-family: inherit;
  font-family: "TikTokSans", sans-serif;
  margin: 0 0 25px;
}
.products-home .shop-item {
  margin: 0 0 25px;
}
.products-home .item {
  color: #000;
  display: block;
}
.products-home .item img {
  width: 100%;
  max-width: 275px;
  display: block;
  margin: 0 0 15px;
}
.products-home .item .title {
  font-family: "TikTokSans", sans-serif;
  margin: 0 0 5px;
  font-weight: bold;
  font-size: 20px;
}

.product-head {
  padding: 90px 0 25px;
  /*.photo-selector {
      position: relative;

      b {
          font-weight: 500;
          font-size: 16px;
          color: #000;
          margin-bottom: 10px;
          display: block;
      }

      ul {
          display: flex;
          flex-wrap: wrap;
          flex-direction: row;*/
  /*align-items: center;*/
  /*margin-bottom: 30px;

          &.js_upsells {
              li {
                  height: initial;

                  .info {
                      margin-top: 10px;

                      strong {
                          display: table;
                          hyphens: auto;
                          font-weight: normal;
                      }
                  }
              }
          }

          li {
              width: 90px;
              margin-right: 5px;
              height: 90px;
              padding: 5px;
              border: 1px solid transparent;
              cursor: pointer;
              position: relative;
              font-size: 12px;

              &:hover {
                  .text {
                      display: block;
                  }
              }

              &.selected {
                  border-color: #e6e7eb;

                  &:after {
                      content: "\f00c";
                      font-family: "font awesome 5 free";
                      font-weight: 900;
                      position: absolute;
                      top: -10px;
                      right: -10px;
                      height: 23px;
                      width: 23px;
                      background: #b5d0c1;
                      border-radius: 50%;
                      text-align: center;
                      line-height: 24px;
                      font-size: 12px;
                      color: #fff;
                      z-index: 1;
                  }
              }

              .text {
                  display: none;
                  position: absolute;
                  background: #000;
                  padding: 15px;
                  border-radius: 10px;
                  color: #fff;
                  top: 75%;
                  left: 50%;
                  transform: translateX(-50%);
                  z-index: 4;
                  min-width: 150px;
                  font-size: 12px;
              }

              img {
                  max-width: 100%;
              }
          }
      }
  }*/
}
.product-head .breadcrumb-wrapper .breadcrumbs {
  font-size: 12px;
}
.product-head .breadcrumb-wrapper .breadcrumbs li:after {
  margin: 0 5px;
  width: 3px;
  height: 3px;
}
.product-head .product-wrapper .product-image {
  border-radius: 16px;
}
.product-head .inner.hidden {
  display: none;
}
.product-head .inner .alert-box {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  position: relative;
  padding: 0.75rem 1.25rem;
  margin: 1rem 0;
  font-size: 14px;
}
.product-head .inner .reviews {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 15px;
  font-size: 17px;
}
.product-head .inner .reviews .trustpilot-stars {
  display: inline-block;
  max-width: 110px;
}
.product-head .inner .reviews .rating {
  background: #00B67A;
  padding: 2px 12px;
  border-radius: 100px;
  color: #fff;
  margin: 0 10px;
  font-size: 16px;
}
.product-head .inner .title-wrap {
  display: block;
}
.product-head .inner .title-wrap .title-wrapper {
  display: flex;
  flex-direction: row;
}
.product-head .inner .title-wrap .title-wrapper .prices-list {
  margin: 0 0 0 auto;
}
.product-head .inner .title-wrap .title {
  display: flex;
  font-size: 34px;
  color: #014023;
  font-weight: 600;
  margin-bottom: 0px;
  font-family: inherit;
  margin: 0 0 5px;
}
.product-head .inner .title-wrap .subtitle {
  font-weight: 600;
  font-size: 18px;
  color: #014023;
  display: block;
  margin: 0 0 5px;
}
.product-head .inner .divOptional .ddlColorOption {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: transparent;
  padding: 0;
  border: 0;
}
.product-head .inner .divOptional .ddlColorOption li {
  max-width: 150px;
  font-size: 0px;
  cursor: pointer;
}
.product-head .inner .divOptional .ddlColorOption li:hover img {
  border-color: #22C262;
}
.product-head .inner .divOptional .ddlColorOption li:not(:last-child) {
  margin: 0 10px 0 0;
}
.product-head .inner .divOptional .ddlColorOption li label {
  border-radius: 7px;
  font-size: 0;
  cursor: pointer;
}
.product-head .inner .divOptional .ddlColorOption li input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.product-head .inner .divOptional .ddlColorOption li input[type=radio]:checked + label {
  border: 2px solid #22C262;
}
.product-head .inner .divOptional .ddlColorOption li img {
  width: 85px;
  border-radius: 7px;
  padding: 7px;
  background: #fff;
  border: 2px solid transparent;
}
.product-head .inner .usps {
  margin: 0 0 15px;
}
.product-head .inner .usps ul li {
  padding: 0 0 0 30px;
  margin: 0;
  position: relative;
  color: #014023;
}
.product-head .inner .usps ul li:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 22px;
  height: 22px;
  background-image: url("/Resources/img/icon-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.product-head .inner .total-price {
  display: flex;
  align-items: center;
  flex-direction: row;
  font-weight: 700;
  color: #014023;
}
.product-head .inner .total-price .prices-list {
  margin: 0 0 0 auto;
}
.product-head .inner .btn-product {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  background: #22C262;
  width: 100%;
  margin: 15px 0 0 0;
}
.product-head .inner .btn-product.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.product-head .inner .btn-product.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .product-head .inner .btn-product:hover {
    background: #000;
    color: #fff;
  }
}
.product-head .inner .send-items {
  text-align: center;
  margin: 15px 0 0;
  font-weight: 400;
}
.product-head .inner .payments {
  margin-top: 15px;
}
.product-head .inner .payments b {
  font-size: 15px;
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
}
.product-head .inner .payments ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}
.product-head .inner .payments ul li img {
  max-height: 30px;
  width: 50px;
  object-fit: contain;
  position: relative;
  left: 0;
  vertical-align: middle;
  top: 50%;
  transform: translateY(-50%);
}
.product-head .custom-label {
  position: relative;
}
.product-head .custom-label i {
  color: #f69986;
  cursor: pointer;
}
.product-head .modal-label {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
}
.product-head .modal-label.active {
  opacity: 1;
  visibility: visible;
}
.product-head .modal-label .content {
  position: relative;
  width: calc(100% - 30px) !important;
  max-width: 1200px;
  padding: 100px;
  background: #F6F8FC;
  border: 2px solid #f69986;
  margin: 50px auto;
}
.product-head .modal-label .content .JS-CloseInfo {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #000;
  z-index: 5;
  font-size: 26px;
  cursor: pointer;
  color: #f69986;
}
.product-head .checkbox label:before {
  width: 17px;
  height: 17px;
}
.product-head .try-buy-option {
  padding-top: 15px;
}
.product-head .try-buy-option a {
  color: #000;
  text-decoration: underline !important;
}
.product-head .try-buy-option ul {
  padding: 5px 0;
}
.product-head .try-buy-option ul li {
  position: relative;
  padding-left: 25px;
}
.product-head .try-buy-option ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}
.product-head .label {
  padding: 5px;
  font-size: 11px;
  background: #28bbb0;
  text-align: center;
  font-weight: bold;
  border-radius: 3px;
  color: #fff;
  position: relative;
  cursor: pointer;
  z-index: 1;
  display: inline-block;
}
.product-head .label:hover + .overlayer, .product-head .label:focus + .overlayer, .product-head .label:active + .overlayer {
  opacity: 1;
  visibility: visible;
}
.product-head .label:hover .popover-custom, .product-head .label:focus .popover-custom, .product-head .label:active .popover-custom {
  opacity: 1;
  visibility: visible;
}
.product-head .label .popover-custom {
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 150%;
  background: #fff;
  border: 2px solid #d1d1d1;
  padding: 10px;
  min-width: 255px;
  text-align: left;
  color: #000;
  border-radius: 10px;
  left: 0;
  font-weight: normal;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
}
.product-head .label .popover-custom b {
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
.product-head .price-table {
  margin-bottom: 0;
  position: relative;
}
.product-head .price-table .loading-div {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 100px;
  top: 5px;
}
.product-head .price-table .loading-div .inner {
  padding: 0;
  color: #014023;
  font-size: 18px;
}
.product-head .price-table .loading-div .circle {
  font-size: 16px;
  margin: 5px 0;
}
.product-head .price-table .loading-div:after {
  background: #fff;
  opacity: 1;
}
.product-head .price-table.loading .loading-div {
  opacity: 1;
  visibility: visible;
}
.product-head .price-table ul li {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  /*                padding: 17px 0;
  border-bottom: 2px solid rgba(1,64, 35,0.5);*/
}
.product-head .price-table ul li b {
  font-weight: normal;
  margin-left: auto;
}
.product-head .price-table ul li:last-child {
  /* border-color: rgba(1,64, 35,0.5);*/
  justify-content: flex-end;
}
.product-head .price-table ul li:last-child b {
  margin-left: 10px;
  font-weight: 600;
  margin-right: 5px;
}
.product-head .merk-image {
  max-height: 27px;
}
.product-head .btn-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  margin-top: 30px;
}
.product-head .btn-row .favorite-button {
  margin-left: 15px;
}
.product-head .btn-row .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  /*     &:before {
      content: "\f291";
      font-family: 'Font Awesome 5 Free';
      margin-right: 5px;
  }*/
}
.product-head .btn-row .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.product-head .btn-row .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .product-head .btn-row .btn-default:hover {
    background: #000;
    color: #fff;
  }
}
.product-head .btn-row .btn-default.btn-product {
  background: #985244;
}
.product-head .btn-row .btn-default:after {
  left: -15px;
  width: 55px;
}
.product-head .stock {
  font-size: 14px;
  color: #83AD86;
  position: relative;
  display: block;
  font-weight: 300;
  margin: 5px 0 10px;
}
.product-head .stock b {
  font-weight: normal;
}
.product-head .stock.not {
  color: #CD5C73;
}
.product-head .favorite-button input {
  position: absolute;
  top: 0px;
  opacity: 0;
}
.product-head .favorite-button input:checked + label .fas {
  opacity: 1;
}
.product-head .favorite-button input:checked + label .far {
  opacity: 0;
}
.product-head .favorite-button label {
  margin: 0;
  cursor: pointer;
  height: 47px;
  width: 47px;
  background: #fff;
  display: block;
  border-radius: 5px;
  position: relative;
  color: #014023;
}
.product-head .favorite-button label i {
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 50%;
  font-size: 17px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.product-head .favorite-button label .far {
  opacity: 1;
}
.product-head .favorite-button label .fas {
  opacity: 0;
}
.product-head .size .select {
  display: inline-block;
}
.product-head .size .form-control {
  background-color: #fafafa;
  padding: 7px 10px;
  padding-right: 25px;
  min-width: 120px;
  border: 1px solid #f3f2f2;
}
.product-head label {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  margin-bottom: 10px;
  display: block;
}
.product-head .form-group .form-control {
  border: 2px solid #ecedf0;
}
.product-head hr {
  border: 1px solid #DEDEDE;
  margin: 30px 0;
  opacity: 1;
}
.product-head .quantity {
  /*display: -webkit-flex;*/ /* Safari 6.1+ */
  /*display: flex;*/
  display: table;
  margin: 0;
  /*  width: 100px;*/
  width: 200px;
}
.product-head .quantity input {
  max-width: 35px;
  display: inline-block;
  text-align: center;
  font-size: 20px;
  border-radius: 0;
  border: none;
  width: 100%;
}
.product-head .quantity .min, .product-head .quantity .max {
  background: #22C262;
  color: #fff;
  cursor: pointer;
  padding: 10px 11px;
}
.product-head .quantity .max {
  border-radius: 100px 0 0 100px;
}
.product-head .quantity .min {
  border-radius: 0 100px 100px 0;
}
.product-head .quantity .current {
  background: #fff;
  padding: 10px;
  font-size: 16px;
  display: inline-block;
  height: 44px;
  text-align: center;
  font-family: "TikTokSans", sans-serif;
  font-weight: bold;
}
.product-head .sliders {
  position: relative;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  margin: 0 50px 0 0;
}
.product-head .sliders.show-slider {
  opacity: 1;
}
.product-head .sliders .thumbs .slick-track {
  margin: 0 !important;
  width: 100% !important;
  transform: translate3d(0px, 0px, 0px) !important;
}
.product-head .sliders .thumbs .slick-list {
  padding: 10px 0;
}
.product-head .sliders .thumbs .slick-slide {
  display: block;
  cursor: pointer;
  width: 80px !important;
  margin-right: 5px;
}
.product-head .sliders .thumbs .slick-slide img {
  object-fit: cover;
  height: 80px;
  border-radius: 8px;
}
.product-head .sliders .product-wrapper {
  position: relative;
  /* background: white;*/
}
.product-head .sliders .product-slider .product-image img {
  height: auto;
  width: 100%;
  border-radius: 16px;
}
.product-head .sliders .product-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 35px;
  width: calc(100% - 70px);
  z-index: 1;
}
.product-head .sliders .product-controls .slick-arrow {
  color: #E2DFD9;
  font-size: 30px;
  position: absolute;
  top: 0;
  cursor: pointer;
  /*                width: 50px;
  height: 50px;
  border-radius: 50%;*/
}
.product-head .sliders .product-controls .slick-arrow i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product-head .sliders .product-controls .slick-arrow.product-prev {
  left: 0;
}
.product-head .sliders .product-controls .slick-arrow.product-next {
  right: 0;
}
.product-head .sliders .discount-slider {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 5px;
  top: 5px;
  background: #985244;
  border-radius: 50%;
  z-index: 2;
}
.product-head .sliders .discount-slider b {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product-head .info-text {
  color: #141414;
  font-size: 12px;
}
.product-head .info-text .intro-text {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}
.product-head .info-text .notifyMe {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  position: relative;
  padding: 11px 10px;
  min-width: initial;
}
.product-head .info-text .notifyMe.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.product-head .info-text .notifyMe.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .product-head .info-text .notifyMe:hover {
    background: #000;
    color: #fff;
  }
}
.product-head .info-text .notifyMe i {
  color: #fff;
  margin: 0;
  position: absolute;
  font-weight: 900;
  right: 15px;
  min-height: initial;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}
.product-head .info-text .inline-div {
  margin: 0;
}
.product-head .info-text .inline-div .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
}
.product-head .info-text .inline-div .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.product-head .info-text .inline-div .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .product-head .info-text .inline-div .btn-default:hover {
    background: #000;
    color: #fff;
  }
}
.product-head .info-text .inline-div .btn-default.btn-product {
  min-width: 200px;
  padding: 11px 10px;
  margin-left: auto;
}
.product-head .info-text .inline-div .btn-default.btn-product i {
  margin-right: 10px;
}
.product-head .info-text .delivery {
  color: #01982b;
  font-size: 14px;
  margin: 5px 0px 15px;
}
.product-head .text {
  margin: 20px 0;
}
.product-head .prices-list .old-price {
  color: #22C262;
  position: relative;
  font-size: 20px;
  margin-right: 5px;
}
.product-head .prices-list .old-price:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  background-color: #22C262;
  width: 100%;
  transform: rotate(3deg) translateY(-50%);
}
.product-head .prices-list .current-price {
  font-size: 22px;
}
.product-head .usp-product {
  font-size: 12px;
  margin-top: 10px;
  color: #8B877F;
  margin-bottom: 5px;
}
.product-head .usp-product li {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  font-size: 17px;
  line-height: 27px;
  font-weight: bold;
  margin-left: 5px;
}
.product-head .usp-product li:nth-child(1) {
  margin-left: 0;
}
.product-head .usp-product li b {
  color: #014023;
}
.product-head .usp-product li:before {
  content: "\f005";
  font-size: 14px;
  color: #8B877F;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}
.product-head .usp-pdp {
  margin: 20px 0;
}
.product-head .usp-pdp ul {
  padding: 0;
}
.product-head .usp-pdp li {
  margin: 7px 0;
  position: relative;
  padding: 0 10px 0 20px;
  font-weight: normal;
  display: inline-block;
  width: 32%;
  vertical-align: text-top;
  font-size: 16px;
}
.product-head .usp-pdp li b {
  display: block;
}
.product-head .usp-pdp li:nth-child(1) {
  margin-left: 0;
}
.product-head .usp-pdp li:before {
  content: "\f00c";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  font-size: 14px;
  left: 0;
  color: #8b877f;
  top: 3px;
}
.product-head .btn-winkelmand {
  margin-top: 10px;
  transform: scale(0);
  visibility: hidden;
  background: #014023 !important;
}
.product-head .btn-winkelmand.active {
  transform: scale(1);
  visibility: visible;
}

.usps-center {
  padding: 0 0 50px;
}
.usps-center ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 16px;
}
.usps-center ul li {
  position: relative;
  background: linear-gradient(108.74deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.06) 100%);
  border-radius: 100px;
  padding: 10px 15px 10px 45px;
  backdrop-filter: blur(100px);
  box-shadow: 0px 0px 50px -20px rgba(0, 0, 0, 0.5019607843);
}
.usps-center ul li:not(:last-child) {
  margin: 10px 10px 5px 0;
}
.usps-center ul li:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 3px;
  background: linear-gradient(108.74deg, rgba(34, 194, 98, 0.6) 0%, rgba(166, 166, 166, 0.54) 36.46%, rgba(166, 166, 166, 0.3) 73.96%, rgba(34, 194, 98, 0.6) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.usps-center ul li:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 15px;
  width: 22px;
  height: 22px;
  background-image: url("/Resources/img/icon-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*.product-description {
    ul {
        li {
            border-bottom: 1px solid #023800;
            margin: 0 0 30px;
            padding: 0 0 40px;
            max-height: 50px;
            overflow: hidden;
            cursor: pointer;
            transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
            position: relative;

            &:after {
                content: '';
                position: absolute;
                top: 4px;
                right: 0;
                background-image: url('/Resources/img/arrow-down.svg');
                background-repeat: no-repeat;
                background-size: contain;
                background-position: center;
                width: 17px;
                height: 17px;
                transition: all .3s ease-in-out;
            }

            &.active {
                max-height: 500px;

                &:after {
                    transform: rotate(180deg);
                }
            }

            &:last-child {
                border: none;
            }

            strong {
                font-size: 24px;
                display: block;
                padding: 0 0 20px;
                font-weight: 600;
                color: #023800;
            }
        }
    }
}*/
.package {
  background: #EEEAE0;
  padding: 25px 0 75px;
}
.package h2, .package h3, .package h4, .package h5, .package h6 {
  text-align: center;
  margin: 0 0 50px;
  color: #014023;
}
.package h2 strong, .package h2 b, .package h3 strong, .package h3 b, .package h4 strong, .package h4 b, .package h5 strong, .package h5 b, .package h6 strong, .package h6 b {
  color: #22C262;
  font-weight: normal;
}
.package .normal-link {
  text-align: center;
}
.package .normal-link a {
  color: #22C262;
  position: relative;
  display: table;
  text-align: center;
  margin: 25px auto 0;
}
.package .normal-link a:after {
  content: "";
  position: absolute;
  top: 10px;
  right: -15px;
  background-image: url("/Resources/img/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 10px;
  height: 10px;
}
.package .item {
  background: #fff;
  border-radius: 26px;
  padding: 25px;
  color: #014023;
  height: calc(100% - 25px);
  margin: 0 0 25px;
}
.package .item.horizontal {
  display: flex;
  flex-direction: row;
}
.package .item.horizontal .left {
  max-width: 70%;
  width: 100%;
}
.package .item.horizontal .right {
  max-width: 30%;
  width: 100%;
  margin: 50px 0 0;
}
.package .item.horizontal .right img {
  width: 100%;
}
.package .item.vertical {
  display: flex;
  flex-direction: column;
}
.package .item.vertical .text {
  margin: 0 0 75px;
}
.package .item.vertical img {
  display: block;
  margin: auto 0 0 auto;
  max-width: 200px;
  width: 100%;
}
.package .item h2, .package .item h3, .package .item h4, .package .item h5, .package .item h6 {
  font-size: 30px;
  margin: 0 0 5px;
  text-align: left;
  font-weight: 500;
}

.extra-products {
  background: #FEFCF7;
  padding: 50px 0;
}
.extra-products h2, .extra-products h3, .extra-products h4, .extra-products h5, .extra-products h6 {
  text-align: center;
  margin: 0 0 50px;
  color: #014023;
}
.extra-products .item {
  color: #014023;
}
.extra-products .item img {
  width: 100%;
}
.extra-products .item .title {
  font-weight: 600;
  display: block;
  margin: 0 0 5px;
  font-size: 22px;
}

.join-community {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  color: #000;
}
.join-community.home:before {
  display: none;
}
.join-community.home img:not(.trustpilot-stars) {
  background: #EEEAE0;
}
.join-community.bg-color {
  margin: 50px 0 0;
}
.join-community.bg-color img:not(.trustpilot-stars) {
  background: #EEEAE0 !important;
}
.join-community:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(85.35deg, #EEEAE0 34.71%, rgba(238, 234, 224, 0) 65.63%);
}
.join-community h2, .join-community h3, .join-community h5, .join-community h6 {
  margin: 0 0 15px;
}
.join-community h2 strong, .join-community h3 strong, .join-community h5 strong, .join-community h6 strong {
  color: #22C262;
}
.join-community .socials {
  margin: 0 0 35px;
}
.join-community .socials ul {
  display: flex;
  flex-direction: row;
}
.join-community .socials ul li {
  position: relative;
}
.join-community .socials ul li:nth-of-type(2) {
  margin: 0 35px;
}
.join-community .socials ul li a:before {
  content: "";
  background-image: url("/Resources/img/socials/social-bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
}
.join-community .socials ul li a img {
  position: relative;
  top: 15px;
  left: 17px;
  z-index: 1;
  max-width: 25px;
  background: transparent;
}
.join-community img:not(.trustpilot-stars) {
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #fff;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}
.join-community .container-fluid.custom {
  position: relative;
  z-index: 2;
}
.join-community .reviews {
  background: rgba(0, 0, 0, 0.6980392157);
  padding: 5px 5px 5px 15px;
  border-radius: 100px;
  position: absolute;
  bottom: 50px;
  right: 15px;
  color: #fff;
  font-size: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
}
.join-community .reviews .trustpilot-stars {
  display: inline-block;
  max-width: 115px;
  margin: 0 15px;
}
.join-community .reviews .rating-number {
  background: #22C262;
  padding: 5px 15px;
  border-radius: 100px;
}

.how-it-works {
  padding: 75px 0;
  /* the slides */
  /* the parent */
}
.how-it-works .top-text {
  text-align: center;
  margin: 0 0 50px;
}
.how-it-works .top-text h2, .how-it-works .top-text h3, .how-it-works .top-text h4, .how-it-works .top-text h5, .how-it-works .top-text h6 {
  margin: 0 0 20px;
}
.how-it-works .top-text h2 strong, .how-it-works .top-text h3 strong, .how-it-works .top-text h4 strong, .how-it-works .top-text h5 strong, .how-it-works .top-text h6 strong {
  color: #22C262;
}
.how-it-works .item {
  position: relative;
}
.how-it-works .item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 15.56%, rgba(0, 0, 0, 0) 50%);
  border-radius: 16px;
}
.how-it-works .item img {
  width: 100%;
  border-radius: 16px;
}
.how-it-works .item .text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: #fff;
}
.how-it-works .item .text b, .how-it-works .item .text strong {
  display: block;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  font-weight: 600;
  margin: 0 0 5px;
}
.how-it-works .slick-slide {
  margin: 0 15px;
}
.how-it-works .slick-list {
  margin: 0 -15px;
}
.how-it-works .nav-slider {
  position: absolute;
  right: 25px;
  bottom: -25px;
}
.how-it-works .nav-slider .slick-arrow {
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  cursor: pointer;
  background: url(/Resources/img/arrow-slider.svg) #014023;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
}
.how-it-works .nav-slider .slick-arrow.jsSliderPrev {
  right: 50px;
}
.how-it-works .nav-slider .slick-arrow.jsSliderNext {
  right: 0;
  transform: translateY(-50%) rotate(270deg);
}

.support-team {
  overflow: hidden;
}
.support-team .outer {
  border-radius: 16px;
  color: #014023;
  padding: 50px 0;
}
.support-team .outer:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(90.16deg, #FFFFFF 25.2%, rgba(255, 255, 255, 0) 59.96%);
  z-index: 1;
}
.support-team .outer .text {
  padding: 0 50px;
  position: relative;
  z-index: 2;
}
.support-team .outer .text h2, .support-team .outer .text h3, .support-team .outer .text h4, .support-team .outer .text h5, .support-team .outer .text h6 {
  color: #014023;
  margin: 0 0 15px;
}
.support-team .outer .text h2 strong, .support-team .outer .text h3 strong, .support-team .outer .text h4 strong, .support-team .outer .text h5 strong, .support-team .outer .text h6 strong {
  color: #22C262;
}
.support-team .outer .text .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  color: #fff;
  background: #22C262;
  margin: 15px 0 0;
}
.support-team .outer .text .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.support-team .outer .text .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .support-team .outer .text .btn-default:hover {
    background: #000;
    color: #fff;
  }
}
.support-team .outer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  display: block;
  margin: 0 auto;
  position: absolute;
  border-radius: 16px;
}

.faq-articles {
  padding: 50px 0;
}
.faq-articles h2, .faq-articles h3, .faq-articles h4, .faq-articles h5, .faq-articles h6 {
  text-align: center;
  margin: 0 0 25px;
}
.faq-articles h2 strong, .faq-articles h3 strong, .faq-articles h4 strong, .faq-articles h5 strong, .faq-articles h6 strong {
  color: #22C262;
}
.faq-articles .item {
  margin-bottom: 15px;
  list-style: none;
  position: relative;
  cursor: pointer;
  background: #fff;
  border-radius: 16px;
}
.faq-articles .item h3 {
  font-size: 16px;
}
.faq-articles .item.active .desc {
  max-height: 999px;
  padding: 0 15px 15px;
}
.faq-articles .item.active:before {
  transform: rotate(180deg);
}
.faq-articles .item:before {
  content: "";
  position: absolute;
  top: 25px;
  right: 15px;
  background-image: url(/Resources/img/arrow-down.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 17px;
  height: 17px;
  transition: all 0.3s ease-in-out;
}
.faq-articles .item .JSToggle {
  color: #014023;
  font-size: 20px;
  padding: 20px 15px;
  font-weight: 600;
}
.faq-articles .item .desc {
  max-height: 0;
  overflow: hidden;
  position: relative;
  padding: 0 15px;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.toolbar {
  position: fixed;
  left: 0;
  bottom: 15px;
  /*    padding: 10px 20px;
  border-top: 1px solid #ddd;*/
  width: 100%;
  z-index: 999;
  /*    background: #F5F5F5;*/
  color: #000;
  opacity: 0;
  visibility: hidden;
  /*    -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  box-shadow: 0px -3px 12px #00000029;*/
}
.toolbar .outer {
  border-radius: 100px;
  position: relative;
  padding: 10px;
  background: #EEEAE0;
  box-shadow: 0px 0px 50px -20px rgba(0, 0, 0, 0.5019607843);
}
.toolbar .outer:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 3px;
  background: linear-gradient(108.74deg, rgba(34, 194, 98, 0.6) 0%, rgba(166, 166, 166, 0.54) 36.46%, rgba(166, 166, 166, 0.3) 73.96%, rgba(34, 194, 98, 0.6) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.toolbar img {
  max-width: 100px;
  display: inline-block;
}
.toolbar .content {
  display: inline-block;
  margin-left: 25px;
  vertical-align: middle;
}
.toolbar.active {
  opacity: 1;
  visibility: visible;
}
.toolbar .title {
  font-weight: 600;
  color: #014023;
  font-size: 22px;
}
.toolbar .btn-default {
  background: #34AC51;
  text-align: center;
  color: #fff;
  border-radius: 100px;
  padding: 12px 25px;
  display: table;
  margin: 0 0 0 auto;
  width: 100%;
}
.toolbar .price {
  text-align: right;
  position: relative;
  display: inline-block;
  font-weight: 600;
  color: #014023;
  font-size: 18px;
  margin: 0 0 0 25px;
}

.related-products {
  background: #FEFCF7;
  padding: 75px 0;
}
.related-products.products .item {
  margin: 0;
  padding-bottom: 75px;
  position: relative;
  /*display: flex;
              flex-wrap: wrap;
              flex-direction: row;
              align-items: start;
              align-content: flex-start;
  */
}
.related-products.products .item span:empty {
  display: none;
}
.related-products.products .item .btn-default {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.related-products.products .item .img-wrapper {
  padding: 0;
}
.related-products.products .item .content {
  width: 100%;
}
.related-products .text {
  text-align: center;
  margin: 0 0 50px;
}
.related-products .slick-slide {
  margin: 0 15px;
}
.related-products .slick-list {
  margin: 0 -15px;
}

.photo-product {
  padding: 35px 0;
}
.photo-product img {
  border-radius: 5px;
}

.description img {
  width: 100%;
  max-width: 450px;
  display: block;
  margin: 0 auto;
}
.description h3 {
  margin-bottom: 5px;
  font-size: 26px;
  text-transform: uppercase;
}
.description .text {
  margin-bottom: 25px;
}
.description .text ul {
  margin: 15px 0;
  padding-left: 20px;
}
.description .text ul li {
  list-style: initial;
}

.product-nav {
  position: relative;
}
.product-nav .inner {
  margin-bottom: 30px;
  border-bottom: 1px solid #DEDEDE;
  background: #fff;
}
.product-nav .inner ul {
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
}
.product-nav .inner li {
  display: inline-block;
}
.product-nav .inner li a {
  padding: 40px 10px;
  display: block;
  color: #000;
  text-decoration: none;
}
.product-nav .inner li a:hover {
  color: #014023;
}

.combination {
  padding: 50px 0 !important;
}
.combination.shop-cart .inner {
  padding: 20px;
  color: #000;
  text-decoration: none;
  margin-top: 30px;
  margin-bottom: 0;
}
.combination.shop-cart .inner .button-div .price {
  margin-left: 0;
}
.combination .title h5 {
  color: #000;
  font-size: 25px;
  font-weight: 900;
  font-family: "TikTokSans", sans-serif;
  text-transform: uppercase;
}
.combination a {
  text-decoration: none !important;
  color: #000;
}
.combination a:hover .inner {
  box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.08);
}
.combination .inner {
  background: transparent;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  height: calc(100% - 30px);
  align-items: center;
  position: relative;
  padding: 20px;
  transition: all 0.4s ease-in-out;
  border: 2px solid #f1f1f1;
  border-radius: 5px;
}
.combination .inner .percentage {
  position: absolute;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 10px;
  background: #014023;
}
.combination .inner .percentage b {
  position: absolute;
  left: 50%;
  font-size: 12px;
  top: 50%;
  font-weight: bold;
  color: #fff;
  transform: translate(-50%, -50%);
}
.combination .inner .left {
  position: relative;
  width: 100%;
}
.combination .inner .left b {
  font-family: "TikTokSans", sans-serif;
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}
.combination .inner .left .size .form-control {
  background-color: #fafafa;
  padding: 7px 10px;
  min-width: 120px;
  padding-right: 25px;
  width: 100%;
  border: 1px solid #f3f2f2;
}
.combination .inner .button-div {
  margin: 10px 0;
  position: relative;
  flex: 0 0 60%;
  max-width: 60%;
}
.combination .inner .button-div .price {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  color: #014023;
  margin-left: 15px;
  font-weight: bold;
}
.combination .inner .button-div .price.old-price {
  display: block;
  position: relative;
  font-size: 16px;
}
.combination .inner .button-div .price.old-price:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  background-color: #014023;
  width: 100%;
  transform: rotate(3deg) translateY(-50%);
}
.combination .inner .button-div .form-group {
  margin-bottom: 0px;
}
.combination .inner .button-div a {
  width: 60px;
  height: 40px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  background: #fd4500;
  border-radius: 5px;
}
.combination .inner .button-div a i {
  font-size: 20px;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.combination .inner .img-wrapper {
  margin-left: auto;
  flex: 0 0 40%;
  max-width: 40%;
}
.combination .inner .img-wrapper img {
  max-width: 100%;
}

.product-info {
  color: #4e4e4e;
  position: relative;
  padding: 25px 0 50px;
}
.product-info .nav-tabs {
  border-bottom: 2px solid #e8e8e8;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 20px;
}
.product-info .nav-tabs li {
  padding: 10px 15px;
  cursor: pointer;
  background: transparent;
}
.product-info .nav-tabs li.active {
  background: #e8e8e8;
}
.product-info .divTabs .title {
  font-size: 21px;
}
.product-info .divTabs ul {
  margin: 10px 0;
  padding-left: 20px;
}
.product-info .divTabs ul li {
  list-style: inherit;
  margin-bottom: 5px;
}
.product-info .divTabs .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
}
.product-info .divTabs .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.product-info .divTabs .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .product-info .divTabs .btn-default:hover {
    background: #000;
    color: #fff;
  }
}
.product-info .title {
  color: #000;
  margin-bottom: 10px;
  font-size: 25px;
  font-family: "TikTokSans", sans-serif;
  font-weight: 900;
}
.product-info h5 {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.product-info .specs-list ul {
  margin-bottom: 5px;
  padding-left: 25px;
  position: relative;
}
.product-info .specs-list ul:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #014023;
  left: 0px;
}
.product-info .specs-list ul li {
  display: inline-block;
}
.product-info .specs-list ul li:first-child {
  width: 145px;
}
.product-info .spec.plus-spec li:before {
  background: #014023;
}
.product-info .spec.plus-spec li:after {
  content: "\f067";
}
.product-info .spec.minus-spec li:before {
  background: #BFBFBF;
}
.product-info .spec.minus-spec li:after {
  content: "\f068";
}
.product-info .spec li {
  display: block;
  margin-bottom: 20px;
  position: relative;
  padding-left: 45px;
}
.product-info .spec li:before {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  left: 0;
  top: 0;
}
.product-info .spec li:after {
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 9px;
  font-size: 14px;
  color: #fff;
  top: 8px;
}

.maps-product {
  padding: 100px 0px;
}
.maps-product #map {
  height: 300px;
  width: 100%;
  margin-top: 20px;
}
.maps-product h5 {
  font-size: 20px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 20px;
}
.maps-product .head {
  display: flex;
  flex-wrap: wrap;
}
.maps-product .head ul li {
  display: inline-block;
  margin-right: 30px;
  color: #014023;
  position: relative;
  padding-left: 30px;
}
.maps-product .head ul li:before {
  content: "\f058";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #014023;
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 17px;
}
.maps-product .head .btn-default {
  margin-left: auto;
}

@media only screen and (max-width: 1024px) {
  .product-head .sliders .product-controls {
    left: 0%;
    width: 100%;
  }
}
@media only screen and (max-width: 991.5px) {
  .product-head .sliders {
    margin: 0;
  }
}
@media only screen and (max-width: 767.5px) {
  .product-head {
    padding: 70px 0 35px;
  }
  .product-head .col-no-pd {
    padding: 0;
  }
  .product-head .product-wrapper .product-image {
    border-radius: 0;
  }
  .product-head .product-wrapper .slick-dots {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    z-index: 4;
  }
  .product-head .product-wrapper .slick-dots li {
    margin: 0px 3px;
  }
  .product-head .product-wrapper .slick-dots li.slick-active button {
    background: #fff;
  }
  .product-head .product-wrapper .slick-dots li button {
    padding: 0;
    font-size: 0;
    height: 15px;
    width: 15px;
    cursor: pointer;
    border-radius: 50%;
    border: none;
    background: #E6E3DE;
  }
  .product-head #divThumbs {
    display: none;
  }
  .product-head .breadcrumb-wrapper {
    margin: 3px 0 0 0;
  }
  .product-head .breadcrumb-wrapper .breadcrumbs {
    margin: 0;
  }
  .product-head .inner .title-wrap .title-wrapper {
    align-items: center;
  }
  .product-head .inner .title-wrap .title {
    font-size: 28px;
    line-height: 32px;
    margin: 0;
    flex: 0 0 calc(100% - 90px);
  }
  .product-head .inner .title-wrap .prices-list {
    flex: 0 0 90px;
    text-align: right;
  }
  .product-head .inner .title-wrap .subtitle {
    font-size: 16px;
  }
  .product-head .inner .reviews {
    font-size: 16px;
  }
  .product-head .inner .reviews .trustpilot-stars {
    max-width: 100px;
  }
  .product-head .inner .reviews .rating {
    font-size: 15px;
    padding: 0 10px;
  }
  .product-head .prices-list .current-price, .product-head .prices-list .old-price {
    font-size: 18px;
  }
  .usps-center ul {
    justify-content: start;
  }
  .usps-center ul li {
    font-size: 14px;
    padding: 7px 25px 7px 40px;
  }
  .usps-center ul li:nth-of-type(2) {
    margin: 10px 0;
  }
  .usps-center ul li:before {
    width: 17px;
    height: 17px;
    top: 13px;
  }
  .faq-articles .item:before {
    top: 22px;
    width: 17px;
    height: 17px;
  }
  .faq-articles .item .JSToggle {
    font-size: 17px;
    padding: 15px 50px 15px 15px;
  }
  .product-description {
    padding: 0 0 25px;
    /*  ul li {
          margin: 0 0 20px;
          padding: 0 0 30px;
          max-height: 40px;
          font-size: 16px;

          strong {
              font-size: 18px;
              padding: 0 0 10px;
          }
      }*/
  }
  .package {
    padding: 0 0 25px 0;
  }
  .package h2, .package h3, .package h4, .package h5, .package h6 {
    margin: 0 0 25px;
  }
  .package .item {
    padding: 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .package .item.horizontal .left {
    padding: 0 5px 0 0;
  }
  .package .item.horizontal .right {
    margin: 0;
  }
  .package .item.vertical {
    display: flex;
    flex-direction: row;
  }
  .package .item.vertical .text {
    max-width: 70%;
    width: 100%;
    padding: 0 5px 0 0;
    margin: 0;
  }
  .package .item.vertical img {
    max-width: 30%;
    width: 100%;
    margin: 0;
    object-fit: contain;
  }
  .package .item h2, .package .item h3, .package .item h4, .package .item h5, .package .item h6 {
    font-size: 18px;
    line-height: 24px;
  }
  .support-team .col-sm-12 {
    padding: 0;
  }
  .support-team .outer:before {
    background: #fff;
    opacity: 0.5;
    border-radius: 0;
  }
  .support-team .outer .text {
    padding: 0 15px;
  }
  .support-team .outer img {
    object-position: right;
    border-radius: 0;
  }
  .join-community {
    align-items: start;
    padding: 50px 0 0 0;
  }
  .join-community:before {
    background: linear-gradient(180deg, #EEEAE0 34.71%, rgba(238, 234, 224, 0) 65.63%);
  }
  .join-community.home {
    min-height: 250px;
  }
  .join-community.product {
    min-height: 300px;
  }
  .join-community.product:before {
    background: #EEEAE0;
    opacity: 0.8;
  }
  .join-community.product-overview {
    min-height: 350px;
  }
  .join-community.product-overview:before {
    background: #EEEAE0;
    opacity: 0.8;
  }
  .join-community .reviews {
    flex-wrap: wrap;
    font-size: 14px;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: calc(100% - 50px);
    margin: 0 0 10px;
    justify-content: space-between;
  }
  .join-community .reviews .trustpilot-stars {
    max-width: 85px;
  }
  .join-community .reviews .rating-number {
    padding: 3px 10px;
  }
  .related-products {
    padding: 50px 15px;
  }
  .related-products .text {
    margin: 0 0 25px;
  }
  .related-products .item {
    margin: 0 0 25px;
  }
  .related-products .item .right .btn-default svg {
    max-width: 15px;
  }
  .related-products .item .btn-default {
    padding: 7px 20px !important;
  }
  .related-products .slick-dots {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 4;
  }
  .related-products .slick-dots li {
    margin: 0px 3px;
  }
  .related-products .slick-dots li.slick-active button {
    background: #22C262;
  }
  .related-products .slick-dots li button {
    padding: 0;
    font-size: 0;
    height: 15px;
    width: 15px;
    cursor: pointer;
    border-radius: 50%;
    border: none;
    background: #E6E3DE;
  }
  .products-home .shop-item {
    margin: 0 0 25px;
  }
  .product-head .modal-label .content {
    padding: 25px 50px 25px 25px;
  }
  .product-head {
    /* .info-text .inline-div .btn-default.btn-product {
        min-width: 150px;
    }*/
  }
  .product-head .inner {
    padding: 0 0 15px;
  }
  .product-head .photo-selector ul li {
    width: calc(25% - 5px);
  }
  .product-head .photo-selector ul li:hover .text {
    display: none;
  }
  .product-head .sliders .thumbs .slick-slide {
    margin-bottom: 10px;
  }
  .product-head .sliders .product-controls .slick-arrow.product-prev {
    left: 15px;
  }
  .product-head .sliders .product-controls .slick-arrow.product-next {
    right: 15px;
  }
  .product-nav .inner {
    margin-bottom: 15px;
  }
  .product-nav .inner li a {
    padding: 10px;
  }
  .toolbar .title {
    font-size: 16px;
  }
  .toolbar .title span {
    display: block;
    margin: 0 0 -5px;
  }
  .toolbar .price {
    font-size: 13px;
  }
  .toolbar .btn-default {
    padding: 7px 15px !important;
  }
  .toolbar .outer {
    border-radius: 16px;
    padding: 10px 15px;
  }
  .toolbar .outer:before {
    border-radius: 16px;
  }
  .toolbar .col-sm-4 {
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
    max-width: 55%;
  }
  .toolbar .col-lg-2 {
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
  }
  .toolbar .content {
    margin: 0;
  }
  .toolbar .price {
    text-align: left;
    display: block;
    margin: 0;
  }
}
@media only screen and (max-width: 395px) {
  .product-head .info-text .inline-div {
    align-items: baseline;
  }
  .product-head .info-text .inline-div .quantity {
    margin: 0 0 25px;
  }
}
.checkout {
  background: #fff;
}
.checkout .top-head {
  border-bottom: 1px solid #dfdfdf;
  padding: 15px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  position: relative;
}
.checkout .top-head a {
  display: table;
}
.checkout .top-head a:last-of-type {
  position: absolute;
  right: 100px;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}
.checkout .top-head img {
  max-width: 65px;
}
.checkout a:not(.btn-default) {
  color: #22C262;
  display: inline-block;
  text-decoration: underline;
}
.checkout .discount-form {
  margin-bottom: 30px;
}
.checkout .discount-form .alert {
  background: rgba(34, 194, 98, 0.3);
  border-color: #22C262;
  border-radius: 10px;
}
.checkout .discount-form .row {
  margin: 0px -5px;
}
.checkout .discount-form .col-sm-8, .checkout .discount-form .col-sm-4 {
  padding: 0px 5px;
}
.checkout .discount-form .btn-default {
  min-width: initial;
}
.checkout .shop-hide-desktop {
  display: none;
}
.checkout .column-custom:not(.mrg-left) {
  max-width: 45%;
  flex: 0 0 45%;
}
.checkout .column-custom .inner {
  padding-right: 100px;
}
.checkout .column-custom.mrg-left {
  flex: 0 0 55%;
  max-width: 55%;
}
.checkout .column-custom.mrg-left .inner {
  padding-left: 100px;
}
.checkout .container-fluid {
  max-width: 100%;
  padding: 0;
}
.checkout .shop-head {
  padding: 0 0 10px;
  font-size: 18px;
}
.checkout .shop-item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  margin-bottom: 30px;
}
.checkout .shop-item .description {
  flex: 0 0 calc(100% - 190px);
  max-width: calc(100% - 190px);
}
.checkout .shop-item .description b {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 500;
}
.checkout .shop-item .price-wrap {
  display: block;
  margin-left: auto;
}
.checkout .shop-item .price-wrap .old-price {
  position: relative;
  color: #808080;
  margin: 0 15px;
  font-size: 12px;
}
.checkout .shop-item .price-wrap .old-price:before {
  content: "";
  height: 1px;
  width: 105%;
  transform: rotate(-6deg) translateX(-50%);
  background: #808080;
  position: absolute;
  top: 10px;
  left: 50%;
}
.checkout .shop-item .price-wrap .price {
  color: #22C262;
  font-weight: bold;
  font-size: 16px;
}
.checkout .shop-item .img-wrapper {
  max-width: 90px;
  margin-right: 15px;
  position: relative;
}
.checkout .shop-item .img-wrapper .count {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  background: #6a6a6a;
  border-radius: 50%;
  text-align: center;
}
.checkout .shop-item .img-wrapper img {
  max-width: 100%;
  padding: 5px;
  background: #e9e9e9;
  border-radius: 2px;
  border: 1px solid #d2d2d2;
}
.checkout .total-view li {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 5px 0;
}
.checkout .total-view li strong {
  color: #22c262;
}
.checkout .total-view li:last-child {
  padding: 10px 0 0px;
  margin-top: 10px;
}
.checkout .total-view li:last-child span {
  font-size: 20px;
  font-weight: bold;
  margin-left: 5px;
  color: #000;
}
.checkout .total-view li:last-child b {
  font-weight: bold;
  font-size: 20px;
  color: #000;
}
.checkout .total-view li:last-child b small {
  font-weight: 400;
  font-size: 16px;
  margin-top: 10px;
  color: #9e9e9e;
  display: block;
}
.checkout .total-view li b {
  font-weight: normal;
  margin-right: auto;
  margin-bottom: 0;
}
.checkout .shop-bar {
  padding: 15px;
  display: none;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  background: #FAF8F5;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.checkout .shop-bar span {
  text-transform: uppercase;
  font-weight: bold;
}
.checkout .shop-bar b {
  font-weight: 400;
  margin-left: 15px;
}
.checkout .shop-bar.bar-open img {
  transform: rotate(180deg);
}
.checkout .shop-bar img {
  max-width: 15px;
  transform: rotate(0deg);
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.checkout .shop-bar .total {
  font-weight: bold;
  margin-left: auto;
}
.checkout .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  min-width: 175px;
  margin-left: auto;
  display: table;
  width: 100%;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
}
.checkout .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.checkout .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .checkout .btn-default:hover {
    background: #000;
    color: #fff;
  }
}
.checkout .inner {
  padding: 25px 55px;
  background: #fff;
}
.checkout .inner.shop-cart {
  background: rgb(242, 242, 242);
  border-left: 1px solid #dfdfdf;
  height: 100vh;
  position: sticky;
  top: 0;
  right: 0;
}
.checkout .inner.shop-cart .align-right {
  text-align: right;
}
.checkout .inner.shop-cart .item {
  color: #141414;
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
}
.checkout .inner.shop-cart .item:before {
  content: "";
  position: absolute;
  left: 0;
  height: 5px;
  width: 5px;
  background: #141414;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.checkout .inner.shop-cart .item b {
  margin-bottom: 0px;
}
.checkout .inner.shop-cart b {
  display: block;
  margin-bottom: 5px;
}
.checkout .inner.shop-cart .total-article {
  margin: 20px 0px;
}
.checkout .inner.shop-cart .total-article a {
  position: relative;
  color: #141414;
  text-decoration: underline;
}
.checkout .inner.shop-cart .total-article a:before {
  content: "";
  position: relative;
  display: inline-block;
  margin: 0 5px 0px 0px;
  vertical-align: middle;
  background: #141414;
  width: 5px;
  height: 2px;
}
.checkout .inner .title {
  display: block;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #000;
  margin-top: 35px;
}
.checkout .inner .title:has(a) {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.checkout .inner .title a {
  font-size: 16px;
  font-weight: normal;
  margin-left: auto;
}
.checkout .inner .title small {
  color: #959595;
  font-size: 16px;
  font-weight: normal;
  display: block;
}
.checkout .inner .form-group {
  position: relative;
}
.checkout .inner .form-group.has-success .form-control {
  border-color: green;
}
.checkout .inner .form-group.has-error .form-control {
  border-color: red;
}
.checkout .inner .form-group .form-control {
  padding-top: 25px;
  border: 1.5px solid #dedede;
  border-radius: 10px;
}
.checkout .inner .form-group .form-control:focus {
  border-color: #22C262;
}
.checkout .inner .form-group .form-control::-webkit-input-placeholder { /* WebKit browsers */
  color: transparent;
  opacity: 0;
}
.checkout .inner .form-group .form-control:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: transparent;
  opacity: 0;
}
.checkout .inner .form-group .form-control::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: transparent;
  opacity: 0;
}
.checkout .inner .form-group .form-control:-ms-input-placeholder { /* Internet Explorer 10+ */
  color: transparent;
  opacity: 0;
}
.checkout .inner .form-group:not(.checkbox, .radio) label {
  position: absolute;
  color: #9d9d9d;
  top: 5px;
  left: 15px;
  font-size: 14px;
  margin-bottom: 0 !important;
}
.checkout .inner .form-group:not(.checkbox, .radio) label .transport-info {
  font-size: 20px;
  margin-left: 10px;
  color: #014023;
}
.checkout .inner .billing-adres {
  margin-bottom: 20px;
}
.checkout .inner .billing-adres .different-adress {
  padding: 20px;
  background: #f2f2f2;
}
.checkout .inner .billing-adres .radio {
  margin-bottom: 0px;
}
.checkout .inner .billing-adres .radio input:checked + label {
  background: rgba(34, 194, 98, 0.3);
  border-color: #22C262;
}
.checkout .inner .billing-adres .radio li:first-child label {
  border-radius: 10px 10px 0 0;
}
.checkout .inner .billing-adres .radio li:last-child label {
  border-radius: 0px 0px 10px 10px;
}
.checkout .inner .billing-adres .radio label {
  background: #fff;
  padding: 15px 25px 15px 50px !important;
  cursor: pointer;
  position: relative;
  width: 100%;
  border: 1.5px solid #dedede;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.checkout .inner .billing-adres .radio label span {
  display: block;
  font-weight: 300;
  color: #9a9a9a;
}
.checkout .inner .billing-adres .radio label img {
  max-height: 30px;
  width: 50px;
  object-fit: contain;
  position: absolute;
  right: 5px;
  vertical-align: middle;
  top: 50%;
  transform: translateY(-50%);
}
.checkout .inner .delivery-block {
  margin-bottom: 20px;
}
.checkout .inner .delivery-block .form-group {
  margin-bottom: 10px;
}
.checkout .inner .delivery-block .form-group input:checked + label {
  background: rgba(34, 194, 98, 0.3);
  border-color: #22C262;
}
.checkout .inner .delivery-block .form-group label {
  background: #fff;
  padding: 15px 25px 15px 50px !important;
  cursor: pointer;
  position: relative;
  width: 100%;
  border: 1.5px solid #dedede;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.checkout .inner .delivery-block .form-group label span {
  display: block;
  font-weight: 300;
  color: #9a9a9a;
}
.checkout .inner .delivery-block .form-group label img {
  max-height: 30px;
  width: 50px;
  object-fit: contain;
  position: absolute;
  right: 5px;
  vertical-align: middle;
  top: 50%;
  transform: translateY(-50%);
}
.checkout .inner .payment {
  margin-bottom: 20px;
}
.checkout .inner .payment table {
  width: 100%;
  border-collapse: collapse;
}
.checkout .inner .payment .form-group {
  margin-bottom: 10px;
}
.checkout .inner .payment .form-group input:checked + label {
  background: rgba(34, 194, 98, 0.3);
  border-color: #22C262;
}
.checkout .inner .payment .form-group li {
  position: relative;
}
.checkout .inner .payment .form-group li:first-child label {
  border-radius: 10px 10px 0 0;
}
.checkout .inner .payment .form-group li:last-child label {
  border-radius: 0px 0px 10px 10px;
}
.checkout .inner .payment .form-group li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  height: 40px;
  width: 50px;
  background-size: 35px;
  background-repeat: no-repeat;
  background-color: #fff;
  z-index: 2;
  background-position: center;
  border-radius: 5px;
}
.checkout .inner .payment .form-group li:has(input[value=ideal])::before {
  background-image: url("/Resources/img/payments/ideal-2.png");
}
.checkout .inner .payment .form-group li:has(input[value=creditcard])::before {
  background-image: url("/Resources/img/payments/credit-card.png");
}
.checkout .inner .payment .form-group li:has(input[value=paypal])::before {
  background-image: url("/Resources/img/payments/PayPal.svg");
}
.checkout .inner .payment .form-group li:has(input[value=sofort])::before {
  background-image: url("/Resources/img/payments/sofort.png");
}
.checkout .inner .payment .form-group li:has(input[value=bancontact])::before {
  background-image: url("/Resources/img/payments/bancontact.png");
}
.checkout .inner .payment .form-group li:has(input[value=kbc])::before {
  background-image: url("/Resources/img/payments/kbc.png");
}
.checkout .inner .payment .form-group li:has(input[value=giropay])::before {
  background-image: url("/Resources/img/payments/giropay.png");
}
.checkout .inner .payment .form-group label {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  background: #fff;
  padding: 8px 45px !important;
  min-height: 59px;
  line-height: 14px;
  cursor: pointer;
  margin-bottom: 0;
  position: relative;
  border: 1px solid #eee;
  transition: all 0.3s ease-in-out;
}
.checkout .inner .payment .form-group label span {
  display: block;
  font-size: 14px;
  margin-top: 10px;
  font-weight: 300;
  color: #9a9a9a;
}
.checkout .inner .payment .form-group label img {
  max-height: 30px;
  width: 50px;
  object-fit: contain;
  position: absolute;
  right: 5px;
  vertical-align: middle;
  top: 50%;
  transform: translateY(-50%);
}
.checkout hr {
  margin: 75px 0 15px;
}

@media only screen and (max-width: 1024px) {
  .checkout {
    padding: 0px 0 30px;
  }
  .checkout hr {
    margin: 45px 0 15px;
    left: -20px;
    position: relative;
    width: calc(100% + 40px);
    height: 0;
    border: 1px solid #ddd;
  }
  .checkout .discount-form {
    margin-bottom: 15px;
  }
  .checkout .discount-form .btn-default {
    font-size: 14px;
    margin-left: 0;
    padding: 15px 10px;
    height: calc(100% - 15px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .checkout .discount-form .col-7 {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .checkout .discount-form .col-5 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .checkout .inner {
    padding: 0px 20px !important;
  }
  .checkout .column-custom {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .checkout .column-custom.mrg-left {
    order: 2;
  }
  .checkout .shop-hide-desktop {
    display: block;
  }
  .checkout .col-sm-6.order-sm-1 {
    margin-top: 20px;
  }
  .checkout .shop-cart {
    display: none;
    margin: 0;
    background: #fff;
    height: initial !important;
    position: relative !important;
    padding-bottom: 15px !important;
    padding-top: 15px !important;
  }
  .checkout .shop-cart .inner {
    padding: 0 15px 0;
    margin-bottom: 0;
    margin-top: 15px;
  }
  .checkout .shop-cart .inner:last-of-type {
    margin-bottom: 15px;
  }
  .checkout .shop-cart.active {
    display: block;
  }
  .checkout #stickThis {
    background: #fff;
  }
  .checkout .shop-bar {
    display: flex;
    margin-left: 0px;
    width: 100%;
    background: #f6f6f6;
    padding: 15px;
    border-top: 0;
    border-bottom: 2px solid #ebebeb;
  }
  .checkout .total-view {
    margin-top: 15px;
  }
  .checkout .btn-row {
    margin-top: 30px;
  }
  .checkout .inner .title, .checkout .inner label {
    text-align: left;
  }
}
.shopping-cart {
  padding: 90px 0 50px;
  min-height: 100vh;
}
.shopping-cart .breadcrumbs {
  margin: 0 0 25px;
}
.shopping-cart .btn-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  margin-top: 10px;
}
.shopping-cart .btn-row img {
  width: 18px;
  height: auto;
}
.shopping-cart .JSDiscountToggle {
  font-style: normal;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 30px;
  display: table;
}
.shopping-cart:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 25%;
}
.shopping-cart .alert-box {
  position: relative;
  display: flex;
  align-items: center;
  border-left: 7px solid transparent;
  color: #000;
  padding: 10px 50px 10px 30px;
  min-height: 50px;
  margin: 15px 0;
}
.shopping-cart .alert-box.yellow {
  border-color: #598392;
  background-color: #e8edf0;
}
.shopping-cart .alert-box.green {
  border-color: #90ac90;
  background-color: #eff3ef;
}
.shopping-cart .alert-box:empty {
  display: none;
}
.shopping-cart .btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.shopping-cart .btn-wrapper .btn-default {
  margin-left: 20px;
}
.shopping-cart .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  margin-left: auto;
}
.shopping-cart .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.shopping-cart .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .shopping-cart .btn-default:hover {
    background: #000;
    color: #fff;
  }
}
.shopping-cart .btn-default.full-width {
  display: table;
}
.shopping-cart .empty-shopping .inner {
  text-align: center;
  font-weight: 500;
  color: #014023;
  width: 100%;
  border-radius: 10px;
  padding: 20px;
}
.shopping-cart .empty-shopping .inner .btn-default {
  max-width: 250px;
  margin: 20px auto 0;
}
.shopping-cart .empty-shopping .inner b {
  color: #22C262;
}
.shopping-cart .empty-shopping .inner img {
  max-width: 70px;
  display: block;
  margin: 0 auto 20px;
}
.shopping-cart .btn-naked {
  cursor: pointer;
  text-decoration: underline !important;
  color: #000;
}
.shopping-cart .discount-msg {
  font-size: 14px;
  margin-top: 5px;
  color: #014023;
}
.shopping-cart .form-group {
  position: relative;
}
.shopping-cart .middle-line {
  width: calc(100% - 50px);
}
.shopping-cart .spacer {
  height: 15px;
}
.shopping-cart .discount-form {
  padding: 25px;
  margin-bottom: 15px;
}
.shopping-cart .discount-form .title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  display: block;
}
.shopping-cart .discount-form .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  margin: 25px 0 0;
}
.shopping-cart .discount-form .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.shopping-cart .discount-form .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .shopping-cart .discount-form .btn-default:hover {
    background: #000;
    color: #fff;
  }
}
.shopping-cart .discount-form .form-group label {
  color: #fff;
  font-weight: 500;
}
.shopping-cart .text-main {
  margin-bottom: 30px;
}
.shopping-cart .text-main b {
  font-weight: 300;
}
.shopping-cart .text-main h2 {
  font-size: 34px;
  color: #014023;
  font-weight: 600;
  margin-bottom: 0px;
  margin: 0 0 5px;
}
.shopping-cart .line {
  border-bottom: 1px solid rgba(20, 20, 20, 0.32);
  margin: 10px 0 20px;
}
.shopping-cart .inner {
  background: #F5F5F5;
  margin-bottom: 20px;
}
.shopping-cart .inner .comment {
  padding-bottom: 15px;
}
.shopping-cart .inner .comment b {
  margin-bottom: 5px;
  color: #000;
  font-weight: bold;
  display: block;
}
.shopping-cart .inner .send-box {
  padding: 20px 20px 10px;
  position: relative;
}
.shopping-cart .inner .send-box h5 {
  font-family: inherit;
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 20px;
}
.shopping-cart .inner .send-box .table-wrapper table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}
.shopping-cart .inner .send-box .table-wrapper table td {
  padding: 10px 15px;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.shopping-cart .inner .send-box:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.32);
  width: calc(100% - 40px);
  left: 20px;
  height: 1px;
}
.shopping-cart .inner .shop-item {
  padding: 20px;
  position: relative;
  margin-bottom: 5px;
}
.shopping-cart .inner .shop-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.32);
  width: calc(100% - 40px);
  left: 20px;
  height: 1px;
}
.shopping-cart .inner .shop-item label {
  display: block;
  margin-bottom: 10px;
}
.shopping-cart .inner .shop-item .discount-block {
  text-align: center;
  display: table;
  padding: 5px 15px;
  background: #F0F0F0;
  font-size: 14px;
  margin-top: 5px;
}
.shopping-cart .inner .shop-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
.shopping-cart .inner .shop-item:last-of-type:before {
  display: none;
}
.shopping-cart .inner .shop-item .remove {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  padding: 5px;
  margin: -5px;
  cursor: pointer;
  color: #000;
}
.shopping-cart .inner .shop-item .old-price {
  display: inline-block;
  margin-right: 5px;
  text-decoration: line-through;
  text-decoration-color: #e00;
}
.shopping-cart .inner .shop-item .price {
  color: #22C262;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
}
.shopping-cart .inner .shop-item .Qty {
  display: inline-block;
  margin: 0;
}
.shopping-cart .inner .shop-item .Qty input {
  max-width: 35px;
  display: inline-block;
  text-align: center;
  font-size: 18px;
  border: none;
}
.shopping-cart .inner .shop-item .Qty .txtqtymin, .shopping-cart .inner .shop-item .Qty .txtQtyPlus {
  background: #22C262;
  color: #fff;
  cursor: pointer;
  padding: 10px 11px;
}
.shopping-cart .inner .shop-item .Qty .txtqtymin {
  border-radius: 100px 0 0 100px;
}
.shopping-cart .inner .shop-item .Qty .txtQtyPlus {
  border-radius: 0 100px 100px 0;
}
.shopping-cart .inner .shop-item .Qty .current {
  background: #fff;
  padding: 10px;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  font-family: "TikTokSans", sans-serif;
  font-weight: bold;
}
.shopping-cart .inner .shop-item label {
  margin-bottom: 10px;
  font-weight: 300;
}
.shopping-cart .inner .shop-item .form-group {
  margin-bottom: 0px;
  display: table;
}
.shopping-cart .inner .shop-item .ww-product-img img {
  display: table;
  margin: 0 auto;
  max-height: 100px;
}
.shopping-cart .inner .shop-item .btn-naked {
  margin-left: 15px;
}
.shopping-cart .inner .shop-item .ww-title {
  font-size: 14px;
}
.shopping-cart .inner .shop-item .ww-title i {
  font-size: 18px;
  display: block;
  margin: 5px 0 0;
  font-weight: 600;
  overflow: hidden;
  font-style: inherit;
  color: #014023;
}
.shopping-cart .inner .shop-item .ww-title .checkbox {
  margin-top: 5px;
}
.shopping-cart .inner .shop-item .ww-title .checkbox label {
  font-weight: normal;
  padding-left: 22px !important;
}
.shopping-cart .inner .shop-item .ww-title .checkbox label:before {
  width: 15px;
  height: 15px;
  top: 2px;
}
.shopping-cart .inner .shop-item .ww-title .checkbox label:after {
  left: 2px;
  font-size: 11px;
  top: 3px;
}
.shopping-cart .inner .costs {
  color: #141414;
  padding: 20px;
  position: relative;
  /*.total, .total-color {
      color: $primary-pink;

      b {
          margin-bottom: 0px;
      }
  }*/
}
.shopping-cart .inner .costs .align-right {
  text-align: right;
  margin-bottom: 15px;
}
.shopping-cart .inner .costs hr {
  border: 1px solid #e3e3e3;
  margin: 12px 0;
  display: block;
}
.shopping-cart .inner .costs h2 {
  font-family: "TikTokSans", sans-serif;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 20px;
}
.shopping-cart .inner .costs ul {
  display: block;
  margin: 5px 0 0;
}
.shopping-cart .inner .costs ul img {
  width: 40px;
  margin-right: 5px;
  display: inline-block;
}
.shopping-cart .inner .costs b {
  color: #000;
  display: inline-block;
}
.shopping-cart .inner .costs .green {
  color: #48D162;
}

@media only screen and (max-width: 1400px) {
  .shopping-cart .discount-form .btn-default {
    width: 100%;
    padding: 10px 25px;
  }
}
@media only screen and (max-width: 1024px) {
  .shopping-cart .container-fluid {
    padding: 0 15px;
  }
  .shopping-cart .discount-form {
    margin: 15px 0;
  }
}
@media only screen and (max-width: 767.5px) {
  .shopping-cart {
    padding: 75px 0;
  }
  .shopping-cart:after {
    display: none;
  }
  .shopping-cart .btn-row, .shopping-cart .col-sm-1 {
    position: absolute;
    top: 0;
    right: 5px;
  }
  .shopping-cart .btn-wrapper {
    margin-top: 20px;
  }
  .shopping-cart .btn-wrapper .btn-default {
    margin-left: auto;
  }
  .shopping-cart .hide-mobile {
    display: none;
  }
  .shopping-cart .align-right {
    margin-bottom: 15px;
  }
  .shopping-cart .inner .shop-item .form-group.Qty {
    margin: 10px 0;
  }
  .shopping-cart .inner .shop-item .discount-block {
    text-align: left;
    line-height: 18px;
    font-size: 12px;
  }
  .shopping-cart .inner .costs {
    margin-top: 0;
    padding: 15px 20px;
  }
  .shopping-cart .JSDiscountToggle {
    margin: 10px 0;
  }
}
.login-temp {
  padding: 125px 0 50px;
  background: #FEFCF7;
}
.login-temp .form-group .form-control {
  border-radius: 10px;
}
.login-temp .account-pages {
  background: #EEEAE0;
  padding: 15px;
  border-radius: 10px;
}
.login-temp .account-pages li:not(:last-child) {
  margin: 0 0 10px;
  border-bottom: 1px solid rgba(4, 64, 36, 0.5);
  padding: 0 0 5px;
}
.login-temp .account-pages li a {
  color: #044024;
  transition: all 0.3s ease-in-out;
}
.login-temp .account-pages li a:hover {
  color: #22C262;
}
.login-temp .mobile-navtab {
  display: none;
}
.login-temp.thanks {
  padding-top: 150px;
}
.login-temp.thanks .inner {
  -webkit-mask-image: url(/resources/img/bg-figure.svg);
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  padding: 65px 45px;
  -webkit-mask-repeat: no-repeat;
}
.login-temp .custom-checkbox input {
  -webkit-appearance: auto;
}
.login-temp .main-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 32px;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #014023;
}
.login-temp .main-title i {
  font-size: 22px;
  margin-right: 10px;
  color: #7ac95e;
}
.login-temp .payment {
  margin-bottom: 20px;
}
.login-temp .payment .form-group {
  margin-bottom: 10px;
}
.login-temp .payment .form-group input:checked + label {
  border-color: #000;
}
.login-temp .payment .form-group label {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  background: #fff;
  padding: 5px 45px !important;
  min-height: 50px;
  line-height: 14px;
  cursor: pointer;
  position: relative;
  border: 1px solid #eee;
  transition: all 0.3s ease-in-out;
}
.login-temp .payment .form-group label:hover {
  background: #b5d0c1;
  color: #fff;
}
.login-temp .payment .form-group label:before {
  left: 10px;
  background: #F5F5F5;
}
.login-temp .payment .form-group label:after {
  top: 17px;
  left: 13px;
}
.login-temp .payment .form-group label img {
  max-height: 30px;
  width: 50px;
  object-fit: contain;
  position: absolute;
  right: 5px;
  vertical-align: middle;
  top: 50%;
  transform: translateY(-50%);
}
.login-temp .orders-list .table {
  width: 100%;
  margin-bottom: 1rem;
  color: #141414;
  border-collapse: collapse;
}
.login-temp .orders-list .table thead th {
  vertical-align: bottom;
  font-size: 14px;
  text-align: left;
}
.login-temp .orders-list .table a {
  color: #22c262;
  text-decoration: underline;
  display: table;
}
.login-temp .orders-list .table a svg {
  width: 20px;
  height: auto;
}
.login-temp .orders-list .table th {
  padding: 5px 5px 10px 0;
  vertical-align: top;
  border-bottom: 1px solid #141414;
}
.login-temp .orders-list .table tr {
  border-bottom: 1px solid #141414;
}
.login-temp .orders-list .table tr td {
  padding: 15px 0;
}
.login-temp .orders-list .table tr b {
  display: none;
}
.login-temp.rma-form input[type=number]::-webkit-outer-spin-button, .login-temp.rma-form input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.login-temp.rma-form .JS-Opmerking .JS-validation:not(:first-of-type) {
  display: none !important;
}
.login-temp.rma-form label.required {
  position: relative;
  font-weight: bold;
}
.login-temp.rma-form label.required:after {
  content: "*";
  color: #f00;
  display: inline-block;
  margin-left: 5px;
}
.login-temp.rma-form .item-head {
  font-size: 14px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
.login-temp.rma-form .item-head .txt-right {
  text-align: right;
}
.login-temp.rma-form .top-head .title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
}
.login-temp.rma-form .top-head .form-control {
  background-color: #fff;
}
.login-temp.rma-form .inner .content {
  color: #000;
  font-size: 16px;
}
.login-temp.rma-form .inner .content .item {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.login-temp.rma-form .inner .content .item img {
  max-width: 150px;
  max-height: 75px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
.login-temp.rma-form .inner .content .item .hidden-desc {
  display: none;
}
.login-temp.rma-form .inner .content .quantity {
  display: table;
  border: 1px solid #ddd;
}
.login-temp.rma-form .inner .content .quantity input {
  max-width: 50px;
  display: inline-block;
  text-align: center;
  font-size: 18px;
  border: none;
}
.login-temp.rma-form .inner .content .quantity .min, .login-temp.rma-form .inner .content .quantity .max {
  background: #fff;
  cursor: pointer;
  padding: 5px 15px;
}
.login-temp.rma-form .inner .content .quantity .current {
  background: #fafafa;
  padding: 5px;
  display: inline-block;
  text-align: center;
  border-left: 1px solid #f3f2f2;
  border-right: 1px solid #f3f2f2;
}
.login-temp .error-message {
  background: #fff;
  color: #f00;
  border: 1px solid #f00;
  padding: 10px 15px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}
.login-temp .error-message.success {
  color: green;
  border: 1px solid green;
}
.login-temp .desc {
  background: #FCF9F2;
  color: #014023;
  padding: 30px 25px;
  margin-bottom: 30px;
}
.login-temp .desc .title {
  margin-bottom: 15px;
  font-size: 22px;
  display: block;
  font-family: "TikTokSans", sans-serif;
  font-weight: 500;
}
.login-temp .desc ul li {
  display: block;
  margin-bottom: 5px;
}
.login-temp .desc ul li a {
  color: #141414;
}
.login-temp .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  margin: 0 0 0 auto;
}
.login-temp .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.login-temp .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .login-temp .btn-default:hover {
    background: #000;
    color: #fff;
  }
}
.login-temp .btn-naked {
  display: inline-block;
  font-weight: 900;
  position: relative;
  text-decoration: underline !important;
}
.login-temp .btn-naked:first-of-type {
  margin-right: 25px;
}
.login-temp .btn-naked.pink {
  color: #22C262;
}
.login-temp .btn-naked.green {
  color: #044024;
}
.login-temp .inner {
  background: #EEEAE0;
  border-radius: 10px;
  padding: 25px;
  margin: 0 0 25px;
}
.login-temp .inner .uspbar {
  margin-top: 20px;
}
.login-temp .inner .uspbar a {
  color: #f69986;
  text-decoration: underline;
}
.login-temp .inner .uspbar ul {
  background: #b5d0c1;
  margin-top: 20px;
  padding: 10px 15px;
  color: #fff;
}
.login-temp .inner .uspbar ul li {
  position: relative;
  padding: 2px 0 2px 25px;
}
.login-temp .inner .uspbar ul li:before {
  content: "\f00c";
  position: absolute;
  top: 50%;
  left: 0;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  transform: translateY(-50%);
}
.login-temp .inner .btn-default {
  color: #fff;
}
.login-temp .inner .title, .login-temp .inner h1 {
  margin-bottom: 15px;
  font-size: 22px;
  display: block;
  font-family: "TikTokSans", sans-serif;
  font-weight: bold;
  color: #044024;
}
.login-temp .inner label {
  display: inline-block;
  margin: 0;
  margin-bottom: 5px;
}
.login-temp .inner label.required {
  position: relative;
}
.login-temp .inner label.required:after {
  content: "*";
  display: inline-block;
  /* margin-left: 5px;*/
}

.maincontent {
  padding: 60px 0;
}

@media only screen and (max-width: 767.5px) {
  .login-temp {
    padding: 100px 0 35px;
  }
  .login-temp .account-pages {
    margin: 0 0 25px;
  }
  .login-temp .main-title {
    font-size: 24px;
  }
  .login-temp .main-title i {
    margin-bottom: 10px;
  }
  .login-temp .mobile-navtab {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .login-temp .mobile-navtab li {
    padding: 15px 20px;
    width: 50%;
    font-weight: bold;
    text-align: center;
  }
  .login-temp .mobile-navtab li.active {
    background: #eee;
  }
  .login-temp .inner {
    padding: 30px 20px;
  }
  .login-temp .inner.hidden-mobile {
    display: none;
  }
  .login-temp.rma-form .btn-green {
    margin-top: 15px;
  }
  .login-temp.rma-form .top-head .form-control {
    margin-top: 15px;
  }
  .login-temp.rma-form .inner .content .item .col-sm-4 {
    margin: 15px 0;
  }
}
.confirm {
  padding: 150px 0 50px;
  position: relative;
  background: #FEFCF7;
}
.confirm .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  margin: 15px 0 0;
}
.confirm .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.confirm .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .confirm .btn-default:hover {
    background: #000;
    color: #fff;
  }
}
.confirm h1 {
  font-size: 40px;
  line-height: initial;
  font-weight: bold;
}
.confirm .ordernumber {
  font-size: 20px;
  margin-bottom: 30px;
  color: #22c262;
}
.confirm .ordernumber span {
  margin-left: 5px;
  font-weight: bold;
}
.confirm .info {
  font-size: 16px;
  color: #000;
  line-height: 24px;
  margin-bottom: 30px;
}
.confirm .shopping-cart {
  background: transparent;
  margin-top: 50px;
}
.confirm .shopping-cart .comment {
  padding: 0 20px;
}
.confirm .inner {
  background: #EEEAE0;
  border-radius: 16px;
  padding: 25px;
  color: #014023;
  height: calc(100% - 25px);
  margin: 10px 0;
}
.confirm .inner .heading {
  font-size: 18px;
  padding: 0;
  margin-bottom: 10px;
  font-weight: bold;
}

@media only screen and (max-width: 767.5px) {
  .confirm {
    padding: 100px 0 50px;
  }
  .confirm:after {
    display: none;
  }
}
.popup {
  position: fixed;
  z-index: 12;
  left: 50px;
  bottom: 20px;
  width: calc(100% - 100px);
  background: #fff;
  border-radius: 5px;
  border: 2px solid #e5e5e5;
  padding: 15px 35px;
}
.popup .accept {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  margin: 0 0 0 auto;
}
.popup .accept.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.popup .accept.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .popup .accept:hover {
    background: #000;
    color: #fff;
  }
}
.popup p {
  margin: 0;
  font-size: 14px;
}
.popup p a {
  color: #fff;
}
.popup .link {
  color: #FFFFFF;
  margin-right: 15px;
}
.popup .cookies-img {
  margin-right: 30px;
  font-size: 25px;
  float: left;
  color: #141414;
}

.link-pref {
  color: #fff;
  margin-right: 50px;
}
.link-pref:hover {
  text-decoration: underline;
}

.cookies {
  padding: 45px 0;
}
.cookies .title {
  display: block;
  font-weight: 500;
  text-align: center;
  font-size: 30px;
  padding: 0 60px;
}
.cookies .text {
  font-size: 16px;
  margin-top: 30px;
}
.cookies .text b {
  font-size: 24px;
  color: #014023;
  display: block;
  margin-bottom: 15px;
}
.cookies .banner {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  overflow: hidden;
  color: #014023;
  margin-bottom: 60px;
}
.cookies .banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin-top: -20px;
}
.cookies .info {
  margin-top: 30px;
}
.cookies .info ul {
  list-style: none;
  padding: 0;
}
.cookies .info li {
  transition: max-height 0.4s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.cookies .info h4 {
  background: #014023;
  font-size: 18px;
  letter-spacing: 3px !important;
  color: #fff;
  cursor: pointer;
  height: 60px;
  padding: 20px 15px 0 45px;
  position: relative;
  border-radius: 5px;
  width: 100%;
  margin: auto;
  text-transform: none;
}
.cookies .info h4:after {
  display: block;
  content: "";
  height: 100%;
  width: 100%;
  background: transparent;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: -1;
  transition: background 0.2s ease-in-out;
}
.cookies .info h4:before {
  display: block !important;
  content: "";
  height: 30px;
  width: 100%;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: background 0.2s ease-in-out;
}
.cookies .info li.next h4:before, .cookies .info li.active h4:after {
  background: transparent;
}
.cookies .info .content {
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}
.cookies .info .table {
  width: 1110px;
  max-width: 1110px;
  margin-top: 30px;
  color: #394452;
  text-transform: none;
}
.cookies .info .head {
  font-weight: 700;
  font-size: 18px;
}
.cookies .info .head .col {
  padding-top: 0 !important;
}
.cookies .info .content .row {
  display: flex;
}
.cookies .info .row .col {
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
}
.cookies .info .border {
  position: absolute;
  height: 2px;
  width: calc(100% - 15px);
  background: #000;
  left: 15px;
  bottom: 0;
}

.preference {
  margin: 50px 0;
  float: left;
  width: 100%;
}
.preference .disable {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}
.preference .checkbox-cookies input {
  opacity: 0;
  z-index: 1;
  position: absolute;
}
.preference .checkbox-cookies input:checked + label:before {
  background: #014023;
}
.preference .checkbox-cookies input:checked + label:after {
  left: 20px !important;
}
.preference .checkbox-cookies label {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}
.preference .checkbox-cookies label:before {
  content: "";
  height: 30px;
  width: 45px;
  border: none;
  background: #b1b1b1;
  outline: none !important;
  border-radius: 100px;
  right: 0;
  margin: 0 auto;
  display: inline-block;
  position: absolute;
  left: 0;
  transition: all 0.2s ease-in-out;
}
.preference .checkbox-cookies label:after {
  content: "" !important;
  display: block;
  position: absolute;
  left: 5px;
  top: 5px;
  height: 20px;
  width: 20px;
  margin-left: 0;
  border-radius: 50%;
  background: #fff;
  transition: all 0.2s ease-in-out;
}
.preference .item {
  position: relative;
  margin-bottom: 30px;
}
.preference .btn {
  float: right;
}

.btn-cancel {
  text-decoration: none;
  font-weight: bold;
}

.btn-accept {
  float: right;
}
.btn-accept:hover {
  background: #394452;
  color: #fff;
}

.radio {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (max-width: 1440px) {
  .popup .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .popup {
    left: 25px;
    width: calc(100% - 50px);
    padding: 10px 15px;
  }
  .cookies .title {
    padding: 0 120px;
  }
  .checkbox-mobile {
    position: absolute;
    right: 30px;
    top: -10px;
    text-align: right;
  }
  .preference .checkbox {
    margin-right: 0px;
  }
}
@media (max-width: 767.5px) {
  .cookies .title {
    padding: 0 30px;
  }
  .cookies .info h4 {
    text-align: center;
    padding: 10px;
    font-size: 16px;
  }
  .popup {
    padding: 15px 0;
    line-height: inherit;
    left: 15px;
    width: calc(100% - 30px);
    bottom: 15px;
  }
  .popup .link {
    display: inline-block;
    vertical-align: -webkit-baseline-middle;
  }
  .popup p {
    padding: 0;
    padding-left: 0px;
  }
  .popup .cookies-img {
    margin-bottom: 15px;
    margin-right: 0px;
    display: none;
  }
  .popup .container-fluid {
    padding: 0 15px;
  }
  .popup .accept {
    margin-top: 15px;
    line-height: inherit;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    width: 70%;
    text-align: center;
    display: block;
  }
}
.shop-banner {
  position: relative;
  min-height: 50vh;
  padding: 125px 0 25px 0;
  color: #014023;
}
.shop-banner.faq-banner {
  min-height: 40vh;
}
.shop-banner img {
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #fff;
  width: 100%;
  object-fit: cover;
  object-position: right;
  z-index: -1;
}
.shop-banner h1 {
  font-size: 55px;
  font-weight: 600;
  line-height: 60px;
  margin: 0 0 10px;
}
.shop-banner h1 strong {
  font-weight: 600;
  color: #22C262;
}
.shop-banner .w-100 {
  width: 100%;
}
.shop-banner .usps {
  padding: 125px 0 0 0;
}
.shop-banner .usps ul {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 16px;
}
.shop-banner .usps ul li {
  position: relative;
  background: linear-gradient(108.74deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.06) 100%);
  border-radius: 100px;
  padding: 10px 15px 10px 45px;
  backdrop-filter: blur(100px);
  box-shadow: 0px 0px 50px -20px rgba(0, 0, 0, 0.5019607843);
}
.shop-banner .usps ul li:not(:last-child) {
  margin: 0 10px 0 0;
}
.shop-banner .usps ul li:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 3px;
  background: linear-gradient(108.74deg, rgba(34, 194, 98, 0.6) 0%, rgba(166, 166, 166, 0.54) 36.46%, rgba(166, 166, 166, 0.3) 73.96%, rgba(34, 194, 98, 0.6) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.shop-banner .usps ul li:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 15px;
  width: 22px;
  height: 22px;
  background-image: url("/Resources/img/icon-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

html.overflow, body.overflow {
  overflow: hidden;
}

.banner-shop.parfums-banner {
  display: none;
}

.breadcrumbs-shop {
  position: absolute;
  top: 0;
}
.breadcrumbs-shop .breadcrumbs li:after {
  color: #FCF9F2 !important;
}
.breadcrumbs-shop .breadcrumbs li:last-child {
  color: #FCF9F2 !important;
}
.breadcrumbs-shop .breadcrumbs li a {
  color: #FCF9F2 !important;
}

.bg-image-shop {
  position: relative;
}
.bg-image-shop:not(.img-right) .bg-img {
  max-width: 500px;
  bottom: -45px;
  left: -150px;
}
.bg-image-shop .bg-img {
  position: absolute;
}
.bg-image-shop.img-right .bg-img {
  bottom: initial;
  top: -50%;
  left: initial;
  right: 0;
  max-width: 550px;
  -webkit-transform-origin-y: top;
  transform: rotate(-40deg);
}
.bg-image-shop img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.text-seo-full-width {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.text-seo-full-width .bg-img {
  position: absolute;
  top: 25px;
  max-width: 500px;
  z-index: -1;
  opacity: 0.15;
  left: -125px;
}
.text-seo-full-width h1, .text-seo-full-width h2, .text-seo-full-width h3, .text-seo-full-width h4, .text-seo-full-width h5 {
  font-size: 40px;
  display: block;
  font-weight: 400;
}
.text-seo-full-width .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  margin-top: 20px;
}
.text-seo-full-width .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.text-seo-full-width .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .text-seo-full-width .btn-default:hover {
    background: #000;
    color: #fff;
  }
}

.sending-methodes {
  position: relative;
  padding: 100px 0;
  z-index: 3;
}
.sending-methodes .bg-img img {
  position: absolute;
}
.sending-methodes .bg-img img:first-of-type {
  left: -120px;
  max-width: 450px;
  bottom: -350px;
}
.sending-methodes h4 {
  font-size: 40px;
  display: block;
  font-weight: 400;
  margin: 30px 0 20px;
}
.sending-methodes .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  margin-top: 20px;
}
.sending-methodes .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.sending-methodes .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .sending-methodes .btn-default:hover {
    background: #000;
    color: #fff;
  }
}
.sending-methodes ul {
  margin: 0px -10px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.sending-methodes ul li {
  background: #B5D0C1;
  padding: 35px 20px;
  flex: 0 0 calc(33% - 20px);
  margin: 0px 10px;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
.sending-methodes ul li strong, .sending-methodes ul li b {
  margin: auto auto 0;
  display: table;
  padding-top: 20px;
}
.sending-methodes ul li h5 {
  color: #fff;
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.banner-shop {
  padding-bottom: 50px;
  background: #141414;
  position: relative;
  min-height: 300px;
}
.banner-shop img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  object-position: right;
}
.banner-shop .title-left {
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
}
.banner-shop .title-left h1 {
  color: #FCF9F2;
  font-size: 55px;
  text-transform: uppercase;
}
.banner-shop .sale {
  position: absolute;
  right: 75px;
  top: 75%;
  transform: translateY(-50%);
  color: #FCF9F2;
}
.banner-shop .sale h2 {
  color: #FCF9F2;
  text-transform: uppercase;
}

.seo-top {
  padding: 35px;
  background: #f8f8f8;
  margin-bottom: 25px;
}
.seo-top h1 {
  font-size: 24px;
  margin: 0px 0 10px;
  color: #1caeb0;
  display: block;
  font-weight: 900;
}

.seo-bottom {
  margin: 25px 0;
  background: #f8f8f8;
  padding: 35px;
}
.seo-bottom h2 {
  font-size: 22px;
  margin: 0px 0 10px;
  color: #1caeb0;
  display: block;
  font-weight: 900;
}
.seo-bottom a {
  color: #1caeb0;
  font-weight: bold;
}
.seo-bottom ul {
  padding: 0px 0px 0 20px;
  margin: 10px 0;
}
.seo-bottom ul li {
  list-style: initial;
}

.view-selector {
  display: inline-block;
  vertical-align: bottom;
  margin-left: 20px;
}
.view-selector li {
  display: inline-block;
  padding: 5px 10px;
  font-size: 26px;
  line-height: 26px;
  border-radius: 5px;
  margin: 0px 3px;
  cursor: pointer;
}
.view-selector li.active {
  background: #e9e9e9;
  border: 1px solid #e7e6e6;
}

.paging-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin-top: 35px;
}
.paging-wrapper .pagenation {
  flex-wrap: wrap;
  flex-direction: row;
  display: flex;
}
.paging-wrapper .pagenation li {
  width: 45px;
  height: 45px;
  display: inline-block;
  position: relative;
  border-radius: 0px;
  background: transparent;
  border: 2px solid #ddd;
  font-weight: normal;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  /*&:last-child {
      margin-right: 0;
  }*/
}
.paging-wrapper .pagenation li.active {
  color: #014023;
  border-color: #014023;
  font-weight: bold;
}
.paging-wrapper .pagenation li span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.paging-wrapper .page-controls div {
  height: 45px;
  position: relative;
  /*   background: #f8f8f8;*/
  border: 2px solid #ddd;
  font-weight: normal;
  cursor: pointer;
  padding: 0 15px;
  line-height: 42px;
}
.paging-wrapper .page-controls div.left-side {
  margin-right: 10px;
}
.paging-wrapper .page-controls div.left-side i {
  color: #CAC8C5;
  margin-right: 10px;
}
.paging-wrapper .page-controls div.right-side {
  /*margin-left: 10px;*/
}
.paging-wrapper .page-controls div.right-side i {
  margin-left: 20px;
  color: #CAC8C5;
}

.shop {
  padding: 125px 0px 50px;
  position: relative;
}
.shop .filter-top {
  width: 275px;
  margin-left: auto;
}
.shop .filter-top b {
  display: block;
}
.shop .filter-top .form-control {
  border: 2px solid #eeeeee;
  background: #fff;
}
.shop#div_upsells {
  padding: 30px 0;
  background: no-repeat;
  margin: 30px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.shop#div_upsells .product-list .item {
  background: transparent !important;
}
.shop#div_upsells .product-list .right {
  padding: 10px !important;
}
.shop#div_upsells .col-sm-4 {
  padding: 0px 10px;
}
.shop#div_upsells .item .btn-default {
  margin-top: 15px;
}
.shop#div_upsells .item .btn-default.disabled {
  pointer-events: none;
}
.shop#div_upsells .item .btn-default em {
  margin-right: 10px;
}
.shop#div_upsells .title {
  hyphens: auto;
}
.shop#div_upsells .title h5 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 10px;
}
.shop .custom-control {
  width: 75px;
  margin-left: auto;
  margin-top: 25px;
}
.shop .custom-control .form-control {
  border: 2px solid #eeeeee;
  background: #fff;
}
.shop .img-bg img {
  position: absolute;
}
.shop .img-bg img:nth-child(1) {
  z-index: -1;
  opacity: 0.15;
  max-width: 550px;
  left: -100px;
  top: 150px;
}
.shop .img-bg img:nth-child(2) {
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 570px;
  z-index: 1;
}
.shop h1 {
  font-size: 24px;
  font-family: inherit;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
.shop .text-seo {
  margin-bottom: 25px;
}
.shop .checkbox label {
  margin-bottom: 5px !important;
}
.shop hr {
  border-top: 3px solid #f1f1f1;
  display: block;
  margin: 20px 0;
}
.shop .price-filter .input-list {
  display: flex;
}
.shop .price-filter h6 {
  color: #141414;
  font-size: 16px;
  position: relative;
  cursor: pointer;
  font-family: "Crimson Pro", serif;
}
.shop .price-filter input {
  border: 1px solid #141414;
  background: transparent;
  display: inline-block;
  width: calc(50% - 25px);
  padding: 7px;
}
.shop .price-filter input:nth-child(2) {
  margin-left: 25px;
}
.shop .list {
  margin: 3px 0;
}
.shop .list label {
  padding-left: 25px !important;
  display: block;
  /* &:hover {
      &:before {
          border-color: $secondary-color;
      }
  }*/
}
.shop .list label:after {
  left: 3px;
  font-size: 12px;
  top: 3px;
}
.shop .list label:before {
  border-radius: 2px;
  background-color: transparent;
  border: 1px solid #141414;
  width: 17px;
  height: 17px;
  top: 1px;
}
.shop .list.checked .types {
  display: block;
}
.shop .list .models .submodels {
  display: none;
  padding: 5px 15px 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #dedede;
}
.shop .list .models .submodels.empty {
  display: none !important;
}
.shop .list .models.checked .submodels {
  display: block;
}
.shop .list .types {
  display: none;
  padding: 5px 15px 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #dedede;
}
.shop a {
  color: #141414;
}
.shop .cats .cat-title {
  font-size: 17px;
  color: #000;
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.shop .cats .cat-title.active {
  color: #014023;
  font-size: 18px;
  display: block;
  font-weight: 900;
}
.shop .cats .sub {
  margin-bottom: 10px;
  padding-left: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
}
.shop .cats .sub .div-title {
  font-size: 14px;
  color: #014023;
  display: block;
  margin-bottom: 5px;
}
.shop .cats .sub.open-main {
  max-height: 999px;
}
.shop .cats .sub.open-main .div-title i {
  transform: rotate(-180deg);
}
.shop .cats .sub .div-title {
  position: relative;
}
.shop .cats .sub .div-title i {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  transform: rotate(0deg);
  color: #014023;
  border-left: 1px solid #ededed;
  padding: 5px;
  margin: -5px;
  padding-left: 10px;
  transition: all 0.3s ease-in-out;
}
.shop .cats .sub.open .show-all:after {
  transform: rotate(-180deg);
}
.shop .cats .sub .show-all {
  color: #014023;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin-left: 15px;
}
.shop .cats .sub .show-all:after {
  content: "\f078";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(0deg);
  border-left: 1px solid #ededed;
  padding: 5px 10px;
  margin: -5px -10px;
}
.shop .cats .sub .sub-title {
  color: #014023;
}
.shop .cats .sub .subsub {
  margin-left: 15px;
  max-height: 95px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.shop .cats .sub .subsub a {
  color: #939393;
  padding: 5px 0;
  display: table;
}
.shop .select2-results__option--highlighted[aria-selected] {
  background-color: #014023 !important;
  color: #fff !important;
}
.shop .select2-selection__choice {
  background-color: #014023 !important;
  border: 1px solid #014023 !important;
  color: #fff;
}
.shop .select2-selection__choice__remove {
  color: #fff !important;
}
.shop .container-fluid {
  padding: 0px 150px;
}
.shop .select2-container {
  width: 100% !important;
}
.shop .range-slider .input-list {
  margin-bottom: 15px;
  width: 100%;
  white-space: nowrap;
}
.shop .range-slider .input-list input {
  border: none;
  width: calc(50% - 2px);
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
}
.shop .range-slider .input-list input.max-custom {
  margin-left: auto;
  text-align: right;
}
.shop .range-slider .ui-widget-content {
  height: 5px;
  background: #27BBB1;
  position: relative;
  border-radius: 5px;
}
.shop .range-slider .ui-widget-content .ui-slider-range {
  position: absolute;
  background: #014023;
  height: 100%;
}
.shop .range-slider .ui-widget-content .ui-slider-handle {
  height: 20px;
  width: 20px;
  background: rgb(255, 255, 255);
  border: 2px solid rgb(206, 206, 206);
  display: block;
  border-radius: 50%;
  top: 2px;
  position: absolute;
  transform: translateY(-50%);
  cursor: pointer;
  margin-left: -10px;
}
.shop .select2-container--default .select2-selection--multiple {
  background: #F8F8F8;
  border: 1px solid #CECECE;
}
.shop .select2-container--default .select2-selection--multiple:after {
  content: "\f078";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #939393;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 17px;
}
.shop .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  color: #939393;
  padding: 0px 15px;
}
.shop .usp-shop {
  position: relative;
  color: #014023;
  text-align: center;
  font-size: 12px;
  margin: 25px 0px;
  /*&:after {
      content: "";
      position: absolute;
      top: 50%;
      left: 0px;
      height: 2px;
      width: 100%;
      background: $primary-pink;
      transform: translateY(-50%);
  }*/
}
.shop .usp-shop li {
  display: inline-block;
  z-index: 1;
  position: relative;
  padding: 10px;
  font-size: 14px;
  color: #777;
}
.shop .usp-shop li:first-child {
  padding-left: 0;
}
.shop .usp-shop li:last-child {
  padding-right: 0;
}
.shop .usp-shop li i {
  margin-right: 5px;
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
  color: #014023;
}
.shop .checkbox-color input {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  visibility: hidden;
}
.shop .checkbox-color input:checked + label {
  opacity: 1;
}
.shop .checkbox-color label {
  position: relative;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #CECECE;
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
  margin-right: 5px;
}
.shop .filters .inner {
  padding: 20px;
  border: 2px solid #eeeeee;
  background: #fff;
  /*    h6 {
      color: #939393;
      font-size: 14px;
  }*/
}
.shop .filters .inner .options .height-collapser {
  padding-left: 20px;
}
.shop .filters .inner .btn-default {
  padding: 0;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  margin-left: auto;
}
.shop .filters .inner h3 {
  color: #202326;
  font-size: 16px;
  position: relative;
  cursor: default;
  font-family: inherit;
  padding-left: 0;
  padding: 0 0 5px;
  font-weight: 300;
  /*    &:before {
      content: "";
      font-family: "Font Awesome 5 Free";
      position: absolute;
      top: 0;
      left: 0;
      font-weight: 900;
      transition: all 0.3s ease-in-out;
      width: 21px;
      height: 21px;
      border: 1px solid #dddddd;
      border-radius: 5px;
  }

  &:after {
      content: "\f00c" !important;
      font-weight: 900;
      font-family: "Font Awesome 5 Free";
      position: absolute;
      left: 6px;
      font-size: 10px;
      top: 5px;
      margin-left: 0;
      opacity: 0;
      visibility: hidden;
      color: #fff;
  }*/
}
.shop .filters .inner h3.open {
  color: #000;
}
.shop .filters .inner h3.open:after {
  opacity: 1;
  visibility: visible;
}
.shop .filters .inner h3.open:before {
  background: #000;
}
.shop .filters .inner .title {
  font-size: 18px;
  margin: 0 0 10px;
  font-weight: 900;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.shop .shop-header {
  position: relative;
}
.shop .shop-header img {
  max-width: 100%;
}
.shop .shop-header .img-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 30px);
  text-align: center;
}
.shop .shop-header .img-text h1 {
  font-weight: bold;
  color: #fff;
  margin: 0;
  font-size: 30px;
}
.shop .results {
  color: #014023;
  margin-bottom: 35px;
}
.shop .results b {
  display: inline-block;
  margin-right: 5px;
}
.shop .results .mrg-right {
  text-align: right;
}
.shop .results .mrg-right .form-group {
  margin-bottom: 0px;
  margin-left: 15px;
  display: inline-block;
}
.shop .results .mrg-right .form-group select {
  background-position: 95% !important;
}
.shop .results .mrg-right .form-group .form-control {
  width: 150px;
  font-size: 15px;
  padding: 10px;
  padding-right: 35px;
  border-radius: 0;
  border: 1px solid #eeeae2;
  color: #000;
  background: #fff;
}
.shop .results .mrg-right .form-group .form-control option {
  background: #eee;
}
.shop .results .mrg-right .form-group .form-control option:checked {
  background: #014023;
  color: #fff;
}
.shop .product-list .right {
  width: 100%;
  padding: 10px 10px 0;
  background: #fff;
}
.shop .product-list .right .old-price {
  margin-left: 10px;
  position: relative;
}
.shop .product-list .right .old-price:before {
  content: "";
  height: 1px;
  width: 120%;
  transform: rotate(-6deg) translateX(-50%);
  background: #c90000;
  position: absolute;
  top: 7px;
  left: 50%;
}
.shop .product-list .row {
  margin: 0px -10px;
}
.shop .product-list .col-custom {
  -ms-flex: 0 0 33%;
  flex: 0 0 33%;
  max-width: 33%;
  padding: 0px 10px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}
.shop .product-list .item {
  position: relative;
}
.shop .product-list .item object {
  margin-top: auto;
}
.shop .product-list .item .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  background: #f69986;
  font-size: 16px;
  padding: 12px 10px;
  width: 100%;
  position: relative;
}
.shop .product-list .item .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.shop .product-list .item .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .shop .product-list .item .btn-default:hover {
    background: #000;
    color: #fff;
  }
}
.shop .product-list .item .btn-default.notifyMe i {
  color: #fff;
  margin: 0;
  position: absolute;
  font-weight: 900;
  right: 15px;
  min-height: initial;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}
.shop .product-list .item .quantity {
  display: table;
  border: 2px solid #e6e6e6;
  margin-bottom: 0;
  border-radius: 5px;
}
.shop .product-list .item .quantity input {
  max-width: 40px;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  border: none;
}
.shop .product-list .item .quantity .min, .shop .product-list .item .quantity .max {
  background: #fff;
  cursor: pointer;
  padding: 5px 10px;
}
.shop .product-list .item .quantity .current {
  background: #fafafa;
  padding: 5px;
  display: inline-block;
  text-align: center;
  border-left: 1px solid #f3f2f2;
  border-right: 1px solid #f3f2f2;
}
.shop .product-list .item .xtra-div .btn-shop {
  margin-left: auto;
}
.shop .product-list .item .xtra-div .btn-shop .btn-default {
  display: block;
  text-align: center;
  text-decoration: underline !important;
}
.shop .product-list .item .favorite-button {
  position: absolute;
  top: -2px;
  right: -2px;
  z-index: 1;
}
.shop .product-list .item .favorite-button input {
  position: absolute;
  top: 0px;
  opacity: 0;
}
.shop .product-list .item .favorite-button input:checked + label .fas {
  opacity: 1;
}
.shop .product-list .item .favorite-button input:checked + label .far {
  opacity: 0;
}
.shop .product-list .item .favorite-button label {
  margin: 0;
  cursor: pointer;
  height: 45px;
  width: 45px;
  position: relative;
  color: #1caeb0;
  display: block;
  border: 2px solid #e6e6e6;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.39);
}
.shop .product-list .item .favorite-button label i {
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 50%;
  font-size: 17px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.shop .product-list .item .favorite-button label .far {
  opacity: 1;
}
.shop .product-list .item .favorite-button label .fas {
  opacity: 0;
}
.shop .product-list .item .stock {
  font-size: 14px;
  color: #83AD86;
  position: relative;
  display: block;
  font-weight: 300;
  padding: 2px 0;
}
.shop .product-list .item .stock b {
  font-weight: 500;
}
.shop .product-list .item .stock.not {
  color: #CD5C73;
}
.shop .product-list .item .brand {
  width: 100%;
  padding: 0px 15px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.shop .product-list .item .brand .overlayer {
  content: "";
  position: absolute;
  top: -500px;
  left: -500px;
  height: 999px;
  background: rgba(255, 255, 255, 0.7);
  width: 999px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.shop .product-list .item .brand .label {
  padding: 5px;
  font-size: 11px;
  background: #28bbb0;
  text-align: center;
  font-weight: bold;
  border-radius: 3px;
  color: #fff;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
.shop .product-list .item .brand .label:hover + .overlayer, .shop .product-list .item .brand .label:focus + .overlayer, .shop .product-list .item .brand .label:active + .overlayer {
  opacity: 1;
  visibility: visible;
}
.shop .product-list .item .brand .label:hover .popover-custom, .shop .product-list .item .brand .label:focus .popover-custom, .shop .product-list .item .brand .label:active .popover-custom {
  opacity: 1;
  visibility: visible;
}
.shop .product-list .item .brand .label .popover-custom {
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 150%;
  background: #fff;
  border: 2px solid #d1d1d1;
  padding: 10px;
  min-width: 255px;
  z-index: 1;
  text-align: left;
  color: #000;
  border-radius: 10px;
  left: 0;
  font-weight: normal;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  max-height: 300px;
  overflow: hidden;
  overflow-y: scroll;
  /*&:after {
      content: "\f0da";
      font-family: "Font Awesome 5 Free";
      font-weight: bold;
      font-size: 70px;
      position: absolute;
      line-height: 30px;
      color: #fff;
      left: 30px;
      bottom: -19px;
      z-index: -1;
      text-shadow: -2px 0 #d1d1d1, 0 2px #d1d1d1, 2px 0 #d1d1d1, 0 -2px #d1d1d1;
  }*/
}
.shop .product-list .item .brand .label .popover-custom::-webkit-scrollbar {
  width: 10px;
}
.shop .product-list .item .brand .label .popover-custom::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.shop .product-list .item .brand .label .popover-custom::-webkit-scrollbar-thumb {
  background: #27b9af;
  border-radius: 10px;
}
.shop .product-list .item .brand .label .popover-custom::-webkit-scrollbar-thumb:hover {
  background: #555;
  border-radius: 10px;
}
.shop .product-list .item .brand .label .popover-custom b {
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
.shop .product-list .item .brand img {
  max-height: inherit;
  max-width: 115px;
  width: 50%;
  margin-right: 0;
}
.shop .product-list .item .new-product {
  min-width: 175px;
  background: #EEEAE0;
  text-align: center;
  padding: 5px;
  color: #014023;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: 28px;
  transform: rotate(-45deg);
  left: -40px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.11);
}
.shop .product-list .item img {
  width: 100%;
  object-fit: contain;
  margin: 0 auto 0;
  display: block;
}
.shop .product-list .item .text {
  font-size: 13px;
  margin-bottom: 7px;
  color: #4E4E4E;
}
.shop .product-list .item .text li {
  display: block;
  position: relative;
  padding-left: 10px;
}
.shop .product-list .item .text li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #4E4E4E;
}
.shop .product-list .item h5 {
  font-weight: 500;
  color: #000;
  font-family: inherit;
  font-size: 18px;
}
.shop .product-list .item i {
  font-size: 20px;
  display: block;
  margin: 5px 0;
  font-weight: 600;
  min-height: 50px;
  overflow: hidden;
}
.shop .product-list .item .discount {
  position: absolute;
  right: 10px;
  width: 75px;
  height: 75px;
  top: 10px;
  background: #b5d0c1;
  border-radius: 50%;
  transform: rotate(15deg);
  font-size: 14px;
  border: 1px solid #fff;
}
.shop .product-list .item .discount b {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  transform: translate(-50%, -50%);
  font-weight: 500;
  text-align: center;
}
.shop .product-list .item .delivery {
  color: #01982b;
  line-height: 15px;
  display: none;
  font-size: 13px;
  margin: 5px 0;
}
.shop .product-list .item .price {
  margin: 0;
  display: block;
  width: 100%;
  color: #014023;
  font-size: 14px;
}
.shop .product-list .item .price .old {
  display: inline-block;
  margin-left: 5px;
  font-size: 14px;
  position: relative;
  font-weight: 500;
  color: #919191;
}
.shop .product-list .item .price .old:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  background-color: #F69986;
  width: 100%;
  transform: rotate(-3deg) translateY(-50%);
}

.filter-button {
  display: none;
}

.close-filters {
  position: absolute;
  right: 35px;
  top: 75px;
  color: #014023;
  font-size: 25px;
  padding: 5px;
  margin: -5px;
  display: none;
}

@media only screen and (max-width: 1350px) {
  .shop .container-fluid {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 991.5px) {
  .close-filters {
    display: block;
  }
  .text-seo-full-width {
    padding: 50px 0;
  }
  .sending-methodes {
    padding: 50px 0;
  }
  .sending-methodes ul {
    margin: 15px 0 0;
  }
  .sending-methodes ul li {
    flex: 0 0 100%;
    margin: 0 0 10px;
  }
  .sending-methodes h4 {
    margin-top: 0;
  }
  .filter-button {
    background: #b8d0c2;
    display: block;
    position: fixed;
    z-index: 2;
    bottom: 10px;
    left: 0;
    border-radius: 5px;
    margin: 0 auto;
    right: 0;
    color: #fff;
    cursor: pointer;
    padding: 11px 25px;
    transition: background-color 0.2s linear;
    -webkit-tap-highlight-color: transparent;
    width: 50%;
    text-align: center;
  }
  .filter-button.button-static {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-top: 25px;
  }
  .filter-button i {
    font-size: 15px;
    margin-right: 10px;
  }
  .shop .usp-shop li {
    padding: 10px;
    display: table;
    margin: 0 auto;
  }
  .shop .filter-wrapper {
    position: fixed;
    top: 0px;
    z-index: 9;
    padding: 0;
    width: 80%;
    bottom: 0;
    left: -80%;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
  }
  .shop .filter-wrapper.open {
    left: 0px;
    visibility: visible;
  }
  .shop .filters {
    background: #fcf9f2;
    height: 100vh;
    overflow-y: scroll;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.17);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.17);
    padding: 125px 0 0;
  }
  .shop .filters .inner {
    padding: 50px 25px 25px;
    margin-bottom: 0;
  }
  .shop .filters .inner .option .height-collapser::-webkit-scrollbar {
    display: none;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .bg-image-shop.img-right .bg-img {
    max-width: 400px;
    top: -35%;
    right: -50px;
  }
}
@media only screen and (max-width: 767.5px) {
  .shop-banner {
    padding: 75px 0 25px 0;
  }
  .shop-banner img {
    position: relative;
    min-height: 200px;
    object-position: right;
    margin: 0 0 15px;
  }
  .shop-banner .breadcrumbs {
    margin: 0 0 10px;
  }
  .shop-banner h1 {
    font-size: 36px;
    line-height: 42px;
  }
  .shop-banner .usps {
    padding: 25px 0 0 0;
  }
  .shop-banner .usps ul li {
    font-size: 14px;
    padding: 7px 25px 7px 40px;
  }
  .shop-banner .usps ul li:nth-of-type(2) {
    margin: 10px 0;
  }
  .shop-banner .usps ul li:before {
    width: 17px;
    height: 17px;
    top: 13px;
  }
  .close-filters {
    right: 15px;
  }
  .banner-shop {
    padding-top: 0;
    background: #141414;
    min-height: 200px;
  }
  .banner-shop .shop-header {
    padding-top: 50px;
  }
  .banner-shop .title-left {
    top: 40%;
  }
  .banner-shop .title-left h1 {
    font-size: 35px;
  }
  .banner-shop .sale {
    transform: none;
    top: 25px;
    right: 25px;
  }
  .sending-methodes .bg-img img:first-of-type {
    left: -50px;
    max-width: 200px;
    bottom: -150px;
  }
  .text-seo-full-width .bg-img {
    max-width: 250px;
    left: 50px;
    top: initial;
    bottom: -25px;
  }
  .bg-image-shop.img-right .bg-img {
    display: none;
  }
  .bg-image-shop:not(.img-right) .bg-img {
    display: none;
  }
  .view-selector {
    margin: 15px auto 0;
  }
  .shop {
    padding: 80px 0 25px;
    background-size: 250px;
    background-position: 95% 100%;
  }
  .shop .filter-top .form-control {
    font-size: 16px;
  }
  .shop .img-bg img:nth-child(1) {
    max-width: 350px;
    left: 0px;
    top: 100px;
  }
  .shop .img-bg img:nth-child(2) {
    display: none;
  }
  .shop a {
    padding: 0;
  }
  .shop .product-list.list-view .item h5 {
    max-width: 65%;
  }
  .shop .product-list.list-view .item .left {
    max-width: 100px;
  }
  .shop .product-list.list-view .item .right {
    max-width: calc(100% - 125px);
    flex: 0 0 100%;
  }
  .shop .product-list .col-custom {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0px 5px;
    margin-bottom: 0;
  }
  .shop .product-list .item .height-adjuster {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .shop .product-list .item .btn-default {
    width: 100%;
  }
  .shop .product-list .left img {
    margin: auto;
  }
  .shop .product-list .right {
    border-top: none;
  }
  .shop .product-list .btn-shop {
    width: 100%;
  }
  .shop .brand .label {
    width: 100%;
  }
  .shop .brand .label .popover-custom {
    min-width: inherit !important;
    font-size: 12px !important;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    max-height: 250px !important;
  }
  .shop .brand .label .popover-custom::-webkit-scrollbar {
    width: 5px !important;
  }
  .shop .brand img {
    margin: 15px auto 0;
    max-width: 100px;
  }
  .shop .results {
    padding: 0;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 15px;
    align-items: flex-start;
  }
  .shop .results .mrg-right {
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .shop .results .mrg-right .form-group {
    margin-bottom: 0;
    margin-left: auto;
    display: inline-block;
    width: 100%;
  }
  .shop .results .mrg-right .form-group .form-control {
    width: 50%;
  }
  .shop .results .mrg-right .form-group:nth-of-type(1) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 425px) {
  .shop .product-list .row {
    margin: 0 -5px;
  }
  .shop .product-list .item {
    margin-bottom: 20px;
    height: calc(100% - 20px);
    display: block;
    background: #fff;
    /*
    .xtra-div {
        padding: 5px 10px;

        .btn-shop {
            width: 100%;
            margin-top: 10px;
        }
    }*/
  }
  .shop .product-list .item .price {
    margin: auto 10px 0 0;
    width: calc(100% - 10px);
    font-size: 16px;
  }
  .shop .product-list .item .brand {
    padding: 0 10px;
  }
  .shop .product-list .item .stock {
    /*margin: 5px 10px 10px 0;*/
  }
  .shop .product-list .item .delivery {
    margin: 5px 10px 0;
  }
  .shop .product-list .item h5 {
    font-size: 16px;
  }
}
.klantenservice {
  padding: 100px 0 75px 0;
  background: #FEFCF7;
}
.klantenservice .breadcrumbs {
  margin: 0 0 25px;
}
.klantenservice .quick-links h2, .klantenservice .quick-links h3, .klantenservice .quick-links h4, .klantenservice .quick-links h5, .klantenservice .quick-links h6 {
  text-align: center;
  margin: 0 0 50px;
}
.klantenservice .quick-links ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.klantenservice .quick-links ul li {
  display: inline-block;
  max-width: 25%;
  width: calc(100% - 10px);
  margin: 0 10px 15px;
}
.klantenservice .quick-links ul li:nth-of-type(1) a:before {
  background-image: url("/Resources/img/icons-klantenservice/account.svg");
}
.klantenservice .quick-links ul li:nth-of-type(2) a:before {
  background-image: url("/Resources/img/icons-klantenservice/truck.svg");
}
.klantenservice .quick-links ul li:nth-of-type(3) a:before {
  background-image: url("/Resources/img/icons-klantenservice/truck.svg");
}
.klantenservice .quick-links ul li:nth-of-type(4) a:before {
  background-image: url("/Resources/img/icons-klantenservice/payment.svg");
}
.klantenservice .quick-links ul li:nth-of-type(5) a:before {
  background-image: url("/Resources/img/icons-klantenservice/shop.svg");
}
.klantenservice .quick-links ul li:nth-of-type(6) a:before {
  background-image: url("/Resources/img/icons-klantenservice/vraag.svg");
}
.klantenservice .quick-links ul li a {
  background: #EEEAE0;
  border-radius: 10px;
  padding: 20px 15px 20px 45px;
  color: #014023;
  transition: 0.3s ease-in-out all;
  position: relative;
  width: 100%;
  display: block;
}
.klantenservice .quick-links ul li a:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out all;
}
.klantenservice .quick-links ul li a:hover {
  background: #014023;
  color: #fff;
}
.klantenservice .quick-links ul li a:hover:before {
  filter: brightness(0) invert(1);
}

@media only screen and (max-width: 991.5px) {
  .klantenservice .quick-links ul li {
    max-width: 45%;
  }
}
@media only screen and (max-width: 767.5px) {
  .klantenservice {
    padding: 75px 0 50px;
  }
  .klantenservice .quick-links h2, .klantenservice .quick-links h3, .klantenservice .quick-links h4, .klantenservice .quick-links h5, .klantenservice .quick-links h6 {
    margin: 0 0 25px;
  }
  .klantenservice .quick-links ul li {
    max-width: 100%;
  }
}
.shoppingcart-modal {
  position: fixed;
  background: #fff;
  margin: auto;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 35%;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease-in-out, visibility 0s linear 0.3s;
}
.shoppingcart-modal .scrollable-div {
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(100% - 98px);
}
.shoppingcart-modal .empty {
  background: #EEEAE0;
  width: 90%;
  border-radius: 10px;
  padding: 10px;
  display: table;
  margin: 0 auto;
  text-align: center;
  font-weight: 500;
  color: #014023;
}
.shoppingcart-modal .empty b {
  color: #22C262;
}
.shoppingcart-modal .empty img {
  max-width: 70px;
  display: block;
  margin: 0 auto 20px;
}
.shoppingcart-modal.active {
  transform: translateX(0); /* slide into view */
  visibility: visible;
  transition: transform 0.3s ease-in-out;
}
.shoppingcart-modal .cart-totals {
  padding: 0 15px 25px;
}
.shoppingcart-modal .cart-totals .total b {
  color: #22C262;
  font-weight: bold;
}
.shoppingcart-modal .cart-totals .subtotal, .shoppingcart-modal .cart-totals .total {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.shoppingcart-modal .cart-totals .subtotal b, .shoppingcart-modal .cart-totals .total b {
  margin-left: auto;
}
.shoppingcart-modal .title-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #cbcbcb;
  padding: 15px;
}
.shoppingcart-modal .title-wrap b {
  font-size: 22px;
}
.shoppingcart-modal .title-wrap .close-shopping {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.0470588235);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 auto;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.shoppingcart-modal .title-wrap .close-shopping:hover {
  background: #e5e5e5;
}
.shoppingcart-modal .title-wrap .close-shopping svg {
  max-width: 8px;
  width: 100%;
}
.shoppingcart-modal .products-cart {
  padding: 25px 0 50px 0;
  border-bottom: 1px solid #cbcbcb;
}
.shoppingcart-modal .products-cart .product {
  padding: 0 15px 25px;
  margin: 0 0 25px;
  border-bottom: 1px solid #ebebeb;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.shoppingcart-modal .products-cart .product img {
  max-width: 100px;
  margin: 0 15px 0 0;
  background: #EEEAE0;
  padding: 10px;
  border-radius: 10px;
  flex: 0 0 calc(100% - 10px);
}
.shoppingcart-modal .products-cart .product .product-info-cart {
  flex: 0 0 calc(100% - 120px);
}
.shoppingcart-modal .products-cart .product .product-info-cart .title {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.shoppingcart-modal .products-cart .product .product-info-cart .btn-naked {
  display: block;
  margin: 0 0 0 auto;
  width: 12px;
  height: auto;
  cursor: pointer;
}
.shoppingcart-modal .products-cart .product .product-info-cart .btn-naked:hover svg path {
  fill: red;
}
.shoppingcart-modal .products-cart .product .product-info-cart .btn-naked svg path {
  transition: all 0.3s ease-in-out;
  fill: grey;
}
.shoppingcart-modal .products-cart .product .product-prices {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.shoppingcart-modal .products-cart .product .product-prices .Qty {
  display: inline-block;
  background: #fff;
  margin: 0;
  min-width: 125px;
}
.shoppingcart-modal .products-cart .product .product-prices .Qty input {
  max-width: 35px;
  display: inline-block;
  text-align: center;
  font-size: 18px;
  border: none;
  width: 100%;
}
.shoppingcart-modal .products-cart .product .product-prices .Qty .txtqtymin {
  border: 1px solid #cbcbcb;
}
.shoppingcart-modal .products-cart .product .product-prices .Qty .txtQtyPlus {
  border: 1px solid #cbcbcb;
}
.shoppingcart-modal .products-cart .product .product-prices .Qty .txtqtymin, .shoppingcart-modal .products-cart .product .product-prices .Qty .txtQtyPlus {
  background: #fff;
  color: #8B877F;
  cursor: pointer;
  padding: 5px 0px;
  transition: all 0.3s ease-in-out;
  max-width: 30px;
}
.shoppingcart-modal .products-cart .product .product-prices .Qty .txtqtymin:hover, .shoppingcart-modal .products-cart .product .product-prices .Qty .txtQtyPlus:hover {
  background: #e9e8e8;
  color: #000;
}
.shoppingcart-modal .products-cart .product .product-prices .Qty .current {
  background: #fff;
  padding: 8px;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  font-family: "TikTokSans", sans-serif;
  font-weight: bold;
  max-width: 35px;
}
.shoppingcart-modal .products-cart .product .product-prices .prices {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: auto;
}
.shoppingcart-modal .products-cart .product .product-prices .prices .old-price {
  position: relative;
  color: #808080;
  margin: 0 15px;
  font-size: 12px;
}
.shoppingcart-modal .products-cart .product .product-prices .prices .old-price:before {
  content: "";
  height: 1px;
  width: 105%;
  transform: rotate(-6deg) translateX(-50%);
  background: #808080;
  position: absolute;
  top: 10px;
  left: 50%;
}
.shoppingcart-modal .products-cart .product .product-prices .prices .current-price {
  color: #22C262;
  font-weight: bold;
  font-size: 14px;
}
.shoppingcart-modal .product-cart-related {
  padding: 15px;
}
.shoppingcart-modal .product-cart-related .title-dflex {
  display: flex;
  align-items: center;
  position: relative;
  padding: 15px 0 25px;
}
.shoppingcart-modal .product-cart-related .title-dflex b.related-title {
  font-size: 20px;
}
.shoppingcart-modal .product-cart-related .title-dflex .right-nav {
  position: relative;
  width: 70px;
  margin-left: auto;
  background: #eeeae0;
  height: 45px;
  border-radius: 10px;
}
.shoppingcart-modal .product-cart-related .title-dflex .swiper-button-prev {
  left: 10px;
}
.shoppingcart-modal .product-cart-related .title-dflex .swiper-button-next {
  right: 10px;
}
.shoppingcart-modal .product-cart-related .title-dflex .swiper-button-prev, .shoppingcart-modal .product-cart-related .title-dflex .swiper-button-next {
  width: 10px;
  color: #000;
}
.shoppingcart-modal .product-cart-related .swiper-scrollbar {
  width: 100px;
  left: 50%;
  transform: translate(-50%);
}
.shoppingcart-modal .product-cart-related .swiper {
  padding-bottom: 5px;
}
.shoppingcart-modal .product-cart-related .item {
  background: #EEEAE0;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  color: #014023;
  margin: 0 0 15px;
}
.shoppingcart-modal .product-cart-related .item .img-wrapper {
  max-width: 100px;
}
.shoppingcart-modal .product-cart-related .item .img-wrapper img {
  width: 100%;
  margin: 0 15px 0 0;
}
.shoppingcart-modal .product-cart-related .item .content {
  margin-left: 15px;
  position: relative;
  line-height: initial;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.shoppingcart-modal .product-cart-related .item .content .title {
  font-weight: bold;
  margin-bottom: 10px;
  flex: 0 0 100%;
}
.shoppingcart-modal .product-cart-related .item .content b {
  font-size: 16px;
}
.shoppingcart-modal .product-cart-related .item .content .price {
  font-size: 14px;
}
.shoppingcart-modal .product-cart-related .item .content .size {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.shoppingcart-modal .product-cart-related .item .content .size .dropdown {
  border: 1px solid #cbcbcb;
  padding: 10px;
}
.shoppingcart-modal .product-cart-related .item .content object {
  margin-left: auto;
  display: inline-block;
}
.shoppingcart-modal .product-cart-related .item .content .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  font-size: 0 !important;
  max-width: initial;
  width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  line-height: 56px;
  border-radius: 10px;
  min-width: initial;
  margin-left: auto;
  display: inline-block;
}
.shoppingcart-modal .product-cart-related .item .content .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.shoppingcart-modal .product-cart-related .item .content .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .shoppingcart-modal .product-cart-related .item .content .btn-default:hover {
    background: #000;
    color: #fff;
  }
}
.shoppingcart-modal .product-cart-related .item .content .btn-default svg {
  max-width: 17px;
  position: relative;
  height: auto;
}
.shoppingcart-modal .btn-bottom {
  padding: 25px;
  margin-top: auto;
  background: #EEEAE0;
}
.shoppingcart-modal .btn-bottom .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.shoppingcart-modal .btn-bottom .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.shoppingcart-modal .btn-bottom .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .shoppingcart-modal .btn-bottom .btn-default:hover {
    background: #000;
    color: #fff;
  }
}
.shoppingcart-modal .btn-bottom .btn-default b {
  margin-left: auto;
}

@media only screen and (max-width: 767.5px) {
  .shoppingcart-modal {
    width: 90%;
    max-width: 90%;
  }
  .shoppingcart-modal .products-cart {
    padding-bottom: 0;
  }
  .shoppingcart-modal .products-cart .product {
    align-items: self-start;
    padding: 0px 10px 25px;
  }
  .shoppingcart-modal .products-cart .product .product-prices .prices .old-price {
    margin-left: 0;
  }
  .shoppingcart-modal .products-cart .product .product-info-cart {
    flex: 0 0 calc(100% - 65px);
    position: relative;
  }
  .shoppingcart-modal .products-cart .product .product-info-cart .btn-naked {
    position: absolute;
    top: 0;
    right: 0;
  }
  .shoppingcart-modal .products-cart .product .product-info-cart .title {
    margin-bottom: 0;
    padding-right: 15px;
  }
  .shoppingcart-modal .products-cart .product img {
    max-width: 50px;
    padding: 5px;
    margin-right: 10px;
  }
  .shoppingcart-modal .product-cart-related .product img {
    max-width: 50px;
    object-fit: contain;
  }
  .shoppingcart-modal .product-cart-related .product .size .btn-default {
    padding: 7px 10px !important;
    font-size: 14px !important;
  }
}
.textpage {
  padding: 125px 0 50px;
  background: #FEFCF7;
}
.textpage .breadcrumbs {
  margin-bottom: 35px;
}
.textpage .text h1 {
  font-size: 26px;
  line-height: 30px;
  margin: 0 0 10px;
}
.textpage .text h2, .textpage .text h3, .textpage .text h4, .textpage .text h5, .textpage .text h6 {
  font-size: 22px;
  line-height: 28px;
  margin: 0 0 10px;
}
.textpage .text a:not(.btn-default) {
  color: #014023;
  text-decoration: underline;
}
.textpage .text ul {
  margin: 10px 0;
}
.textpage .text ul li {
  list-style: disc;
  margin: 0 0 5px;
}
.textpage .text .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  display: inline-block;
}
.textpage .text .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.textpage .text .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .textpage .text .btn-default:hover {
    background: #000;
    color: #fff;
  }
}

.contact-page {
  padding: 100px 0 50px;
  background: #FEFCF7;
}
.contact-page .breadcrumbs {
  margin: 0 0 25px;
}
.contact-page .top-title h1 {
  text-align: center;
  color: #014023;
  font-size: 42px;
  margin: 0 0 25px;
}
.contact-page .contact-information {
  padding: 25px 25px 25px 65px;
  border-radius: 15px;
  background: #EEEAE0;
  margin: 0 0 50px;
  position: relative;
}
.contact-page .contact-information:before {
  content: "";
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.contact-page .contact-information.form:before {
  background-image: url("/Resources/img/icons-klantenservice/message.svg");
}
.contact-page .contact-information.phone:before {
  background-image: url("/Resources/img/icons-klantenservice/phone.svg");
  width: 30px;
  height: 30px;
}
.contact-page .contact-information.mail:before {
  background-image: url("/Resources/img/icons-klantenservice/mail.svg");
  width: 30px;
  height: 30px;
}
.contact-page .contact-information.whatsapp:before {
  background-image: url("/Resources/img/icons-klantenservice/whatsapp.svg");
}
.contact-page .contact-information b {
  font-size: 20px;
  display: block;
  color: #014023;
}
.contact-page .contact-information a {
  color: #014023;
  transition: all 0.3s ease-in-out;
}
.contact-page .contact-information a:hover {
  color: #22C262;
}
.contact-page .title {
  margin: 0 0 25px;
}
.contact-page .title h2, .contact-page .title h3, .contact-page .title h4, .contact-page .title h5, .contact-page .title h6 {
  font-size: 26px;
}
.contact-page .form-group label {
  display: block;
  margin: 0 0 5px;
}
.contact-page .form-group .form-control {
  border-radius: 10px;
  background: #EEEAE0;
}
.contact-page .form-group textarea {
  width: 100% !important;
  min-height: 125px;
}
.contact-page .form-group .checkbox label {
  font-size: 16px;
}
.contact-page .form-group .checkbox label:after {
  font-size: 13px;
  left: 5px;
}
.contact-page .form-group .checkbox label:before {
  top: 3px;
  background-color: #EEEAE0;
  width: 23px;
  height: 23px;
}
.contact-page .form-group .checkbox label a {
  font-weight: normal;
}
.contact-page .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
}
.contact-page .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.contact-page .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .contact-page .btn-default:hover {
    background: #000;
    color: #fff;
  }
}

@media only screen and (max-width: 767.5px) {
  .contact-page {
    padding: 80px 0 50px;
  }
  .contact-page .contact-information {
    margin: 0 0 25px;
  }
  .contact-page .top-title h1 {
    font-size: 32px;
    line-height: 36px;
  }
}
.widget-scrollspy .button {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 0px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  height: 50px;
  width: 50px;
  background-color: rgb(255, 255, 255);
  background-image: none;
  border: 1px solid #000;
  border-radius: 0;
  z-index: 999;
}
.widget-scrollspy .button .icon-bars {
  width: 100%;
  height: 3px;
  display: block;
  background: #014023;
  margin: 7px 0 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.widget-scrollspy .button .icon-bars:first-of-type {
  margin-top: 0;
}
.widget-scrollspy .button.open .icon-bars {
  margin: -2.5px 0 0;
}
.widget-scrollspy .button.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.widget-scrollspy .button.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.widget-scrollspy .button.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.widget-scrollspy .list {
  display: none;
  position: fixed;
  bottom: 83px;
  right: 15px;
  width: 250px;
  background: #fff;
  border: 1px solid #a1b1bc;
  max-height: 60vh;
  overflow-y: scroll;
  z-index: 999;
}
.widget-scrollspy .list .nav-tabs {
  border-bottom: 1px solid #ddd;
}
.widget-scrollspy .list .nav-tabs li {
  position: relative;
  width: 100%;
  display: block;
  float: left;
  margin-bottom: -1px;
}
.widget-scrollspy .list .nav-tabs li a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  position: relative;
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #014023;
}
.widget-scrollspy .list.open {
  animation: 0.25s cubic-bezier(0.1, 1.45, 0.35, 1) 0s normal none 1 running scale-drop-down;
  display: block;
  transform-origin: left bottom 0;
}

.list-group-item2.active a {
  text-decoration: underline;
}

.banner.normal.money svg {
  bottom: -15px;
}

.terms {
  padding: 125px 0 50px;
  background: #FEFCF7;
}
.terms .divScrollSpyList {
  position: relative;
  z-index: 1;
}
.terms table {
  width: 100%;
}
.terms table tr {
  background: #fff;
}
.terms table tr:hover {
  background: #eee;
}
.terms table tr td {
  padding: 10px;
}
.terms ul {
  /*padding-left: 40px;*/
  margin-bottom: 10px;
}
.terms ul li {
  list-style: inherit;
}
.terms h4, .terms b {
  color: #014023;
}
.terms h4 {
  color: #014023;
  font-size: 25px;
  display: block;
  margin-top: 25px;
  margin-bottom: 10px;
}
.terms .list-title {
  display: block;
  color: #014023;
  font-weight: 600;
}
.terms .list-group {
  max-width: 400px;
  max-height: 400px;
  margin-top: 10px;
  overflow-y: scroll;
  overflow-x: hidden;
  /*border-bottom: 1px solid rgba(0,0,0,.125);*/
  border-radius: 5px;
}
.terms .list-group li {
  list-style: none;
}
.terms .list-group a {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.terms .list-group .list-group-item:first-child {
  border-top: none;
}
.terms .list-group .list-group-item:last-child {
  border-bottom: none;
}
.terms .list-group::-webkit-scrollbar {
  width: 6px;
  margin: 20px 0;
}
.terms .list-group::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 6px;
}
.terms .list-group::-webkit-scrollbar-thumb {
  background: #014023;
  border-radius: 6px;
}
.terms .list-group::-webkit-scrollbar-thumb:hover {
  background: #014023;
}
.terms .bigger-bullets .bigger-bullet {
  font-size: 3em;
  content: "●";
}

@media only screen and (max-width: 1024px) {
  .terms table {
    border: none;
  }
  .terms table tr td {
    display: block;
    width: 100%;
  }
  .terms table tr td p {
    margin: 0 !important;
  }
  .terms .list .list-group {
    max-width: 100% !important;
  }
  .widget-scrollspy .button {
    display: block;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-terms {
  margin: 5px 0;
  font-size: 14px;
  margin-bottom: 10px !important;
}
.recaptcha-terms a {
  display: inline-block;
  color: inherit;
  text-decoration: underline !important;
}

html.modal-open {
  overflow: hidden;
}
html.modal-open body {
  overflow: hidden;
}

body {
  position: relative;
  font-family: "TikTokSans", sans-serif;
  background: #EEEAE0;
  font-weight: 400;
  margin: 0;
  font-size: 17px;
  line-height: 28px;
  color: #000;
}

p {
  margin: 0;
}

:focus {
  outline: none !important;
}

.container-fluid.custom {
  padding: 0px 15px;
  max-width: 1350px;
  position: relative;
  z-index: 9;
}

.img-fluid {
  max-width: 100%;
}

button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "TikTokSans", sans-serif;
  font-weight: 500;
  color: #014023;
}

h2, h3, h4, h5, h6 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 500;
}
h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
  font-weight: 500;
}

*, ::after, ::before {
  box-sizing: border-box;
}

img {
  vertical-align: middle;
}

input {
  -webkit-appearance: none;
}

.loading-div {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}
.loading-div:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.6;
}
.loading-div .circle {
  line-height: 20px;
  text-align: center;
  margin-top: 10px;
  color: #EEEAE0;
}
.loading-div .circle .fa {
  font-size: 16px;
  bottom: -10px;
  position: relative;
  margin-right: 8px;
  animation-name: blink;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}
.loading-div .circle .fa:nth-child(1) {
  animation-delay: 0.2s;
}
.loading-div .circle .fa:nth-child(2) {
  animation-delay: 0.4s;
}
.loading-div .circle .fa:nth-child(3) {
  animation-delay: 0.6s;
}
.loading-div .inner {
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  width: calc(100% - 30px);
  font-size: 25px;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 999;
}
.loading-div .inner b {
  font-weight: 500;
}
.loading-div.activeloader {
  opacity: 1;
  visibility: visible;
}

.w-100 {
  width: 100% !important;
}

.hidden {
  display: none !important;
  opacity: 0;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

.thanks {
  padding: 150px 0;
}
.thanks .inner {
  background: #fff;
  border-radius: 25px;
  padding: 25px;
}
.thanks .inner h1, .thanks .inner b {
  font-size: 28px;
  margin: 0 0 7px;
  color: #014023;
}
.thanks .inner .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  margin: 15px 0 0;
}
.thanks .inner .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.thanks .inner .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .thanks .inner .btn-default:hover {
    background: #000;
    color: #fff;
  }
}

.errors {
  height: 100vh;
  width: 100vw;
  position: relative;
}
.errors:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-image: url('/Resources/img/bg-home.svg');
  background-repeat: no-repeat;*/
  width: 100%;
  height: 100%;
  z-index: 0;
}
.errors .content {
  width: 800px;
  max-width: calc(100% - 30px);
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /*        background: rgba(255,255,255, 0.7%);
  border: 2px solid #e6e6e6;*/
  border-radius: 5px;
  padding: 35px 0;
}
.errors .content .inner {
  color: #232020;
}
.errors .content h4 {
  font-size: 35px;
  font-weight: bold;
  color: #232020;
  margin-bottom: 20px;
}
.errors .content .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  margin: 20px auto 0 !important;
}
.errors .content .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.errors .content .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .errors .content .btn-default:hover {
    background: #000;
    color: #fff;
  }
}
.errors .content p {
  margin: 0;
}

.overlay-search {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 22;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.overlay-search.active {
  opacity: 1;
  visibility: visible;
}

.breadcrumbs {
  position: relative;
  display: block;
  padding: 0 !important;
  list-style-type: none;
  z-index: 1;
  font-size: 14px;
}
.breadcrumbs li {
  position: relative;
  display: inline-block;
}
.breadcrumbs li a {
  text-decoration: none;
  color: #4a4a4a;
}
.breadcrumbs li:after {
  font-weight: 900;
  content: "";
  position: relative;
  display: inline-block;
  top: -1px;
  margin: 0 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #014023;
  vertical-align: middle;
}
.breadcrumbs li:last-child {
  color: #4a4a4a;
}
.breadcrumbs li:last-child:after {
  display: none;
}

.form-group {
  margin-bottom: 15px;
}
.form-group.has-error .form-control {
  border-color: red;
  background: #ffe3e3;
}
.form-group.has-success {
  border-color: green;
}
.form-group select {
  background-image: url(/Resources/img/arrow.svg) !important;
  background-repeat: no-repeat !important;
  background-size: 12px !important;
  background-position: 95% !important;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #202326;
}
.form-group .form-control {
  height: inherit;
  padding: 15px 15px;
  border: none;
  color: #000;
  width: 100%;
  font-size: 16px;
  -webkit-appearance: none;
  border-radius: 0;
  background: #fff;
  border-radius: 0;
  -webkit-appearance: none;
  font-family: "TikTokSans", sans-serif;
  border: 1px solid transparent;
}
.form-group .help-block {
  display: block;
  color: red;
  padding: 0;
  font-weight: 500;
  font-size: 13px;
  margin-top: 5px;
}

.banner-text {
  position: relative;
  height: 300px;
  background: #f0f0f0;
}
.banner-text:after {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: calc(50% + 100px);
  background: #fff;
  -webkit-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -o-transform: skew(-20deg);
}
.banner-text .text {
  font-size: 40px;
  position: absolute;
  left: 50%;
  line-height: 45px;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  z-index: 2;
  text-align: center;
  font-family: "TikTokSans", sans-serif;
}
.banner-text .text b {
  font-weight: 500;
  color: #014023;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 14px;
  border: 1px solid transparent;
}
.alert.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert.alert-succes {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert.alert-primary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

@keyframes blink {
  0% {
    bottom: -10px;
  }
  50% {
    bottom: 0px;
  }
  100% {
    bottom: -10px;
  }
}
.shopping-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 999;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  overflow-y: scroll;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.shopping-modal.active {
  opacity: 1;
  visibility: visible;
}
.shopping-modal .close-modal {
  color: #014023;
  position: absolute;
  right: 25px;
  font-size: 24px;
  cursor: pointer;
  top: 15px;
  z-index: 2;
}
.shopping-modal .btn-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  margin-top: 35px;
  justify-content: center;
}
.shopping-modal .btn-row .btn-naked {
  color: #014023;
}
.shopping-modal .btn-row .btn-order {
  padding: 10px 20px;
  background: #22C262;
  color: #fff;
  min-width: 150px;
  text-align: center;
  border-radius: 25px;
  margin-right: 25px;
}
.shopping-modal .inner {
  position: relative;
  width: calc(100% - 30px) !important;
  max-width: 750px;
  padding: 65px 30px 55px;
  background-color: #EEEAE0;
  color: #014023;
}
.shopping-modal .inner b {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
  text-align: center;
}

#notify_me {
  display: none !important;
}

.popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
}
.popup-modal.small .content {
  max-width: 700px;
  padding: 50px 100px 30px;
}
.popup-modal.active {
  opacity: 1;
  visibility: visible;
}
.popup-modal .form-control-feedback {
  display: none !important;
}
.popup-modal .help-block {
  width: 100%;
}
.popup-modal .content {
  position: relative;
  width: calc(100% - 30px) !important;
  max-width: 800px;
  padding: 50px;
  background: #fff;
  margin: 50px auto;
  border-radius: 16px;
}
.popup-modal .content .wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.popup-modal .content .wrapper .img-wrap {
  max-width: 35%;
  margin: 0 0 0 auto;
  width: 100%;
}
.popup-modal .content .wrapper .img-wrap .product {
  width: 100%;
}
.popup-modal .content .inners {
  position: relative;
  z-index: 1;
}
.popup-modal .content h2, .popup-modal .content h3, .popup-modal .content h4, .popup-modal .content h5, .popup-modal .content h6 {
  font-weight: 600;
  font-size: 32px;
}
.popup-modal .content h2 strong, .popup-modal .content h3 strong, .popup-modal .content h4 strong, .popup-modal .content h5 strong, .popup-modal .content h6 strong {
  font-weight: 600;
  color: #22C262;
}
.popup-modal .content .close-modal {
  position: absolute;
  right: 25px;
  cursor: pointer;
  top: 15px;
  z-index: 2;
  max-width: 20px;
}
.popup-modal .content .form-control {
  height: inherit;
  padding: 15px 15px;
  border: none;
  color: #000;
  width: 100%;
  font-size: 16px;
  -webkit-appearance: none;
  border-radius: 0;
  background: #EEEAE0;
  border-radius: 0;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 10px;
  margin: 0 0 15px;
}
.popup-modal .content .checkbox label {
  font-size: 16px;
}
.popup-modal .content .checkbox label:after {
  font-size: 13px;
  left: 5px;
}
.popup-modal .content .checkbox label:before {
  top: 3px;
  background-color: #EEEAE0;
  width: 23px;
  height: 23px;
}
.popup-modal .content .checkbox label a {
  font-weight: normal;
}
.popup-modal .content .btn-ripple {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
}
.popup-modal .content .btn-ripple.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.popup-modal .content .btn-ripple.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .popup-modal .content .btn-ripple:hover {
    background: #000;
    color: #fff;
  }
}
.popup-modal .content .btn-ripple.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.popup-modal .content .btn-ripple.loading:before {
  content: "\f110" !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 10px;
}

.promotion-banner {
  padding: 10px 15px;
  text-align: center;
  background: #eeeae2;
}
.promotion-banner b {
  font-weight: normal;
  display: block;
  text-transform: uppercase;
}
.promotion-banner i {
  font-style: normal;
  font-weight: bold;
}
.promotion-banner:empty {
  display: none;
}

@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.newsletter {
  padding: 50px 0 0;
}
.newsletter .top-text {
  text-align: center;
  margin: 0 0 20px;
}
.newsletter .top-text h2, .newsletter .top-text h3, .newsletter .top-text h4, .newsletter .top-text h5, .newsletter .top-text h6 {
  font-size: 40px;
  margin: 0 0 7px;
}
.newsletter .input-wrapper {
  position: relative;
}
.newsletter .input-wrapper .form-control {
  border-radius: 100px;
}
.newsletter .input-wrapper .form-button {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 7px 25px;
  min-width: initial;
  font-weight: 400;
}
.newsletter .input-wrapper .form-button.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.newsletter .input-wrapper .form-button.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .newsletter .input-wrapper .form-button:hover {
    background: #000;
    color: #fff;
  }
}
.newsletter .input-wrapper .form-button.loading {
  position: absolute;
  padding: 7px 25px 7px 40px;
}
.newsletter .input-wrapper .form-button.loading:before {
  top: 8px;
}

footer {
  color: #014023;
  padding: 0 0 50px;
}
footer .outer {
  padding: 75px 0 50px;
  margin: 50px 0 0;
  border-top: 1px solid rgba(1, 64, 35, 0.5);
}
footer .logo-footer {
  display: block;
  margin: 0 auto 25px;
  max-width: 100px;
}
footer b {
  color: #014023;
  font-weight: 600;
  display: block;
  font-size: 18px;
  margin: 0 0 10px;
}
footer .payments {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
}
footer .payments li {
  background: #fff;
  border-radius: 5px;
  padding: 10px;
  display: inline-block;
  margin: 0;
  max-height: 30px;
  display: flex;
  align-items: center;
}
footer .payments li:not(:last-child) {
  margin: 0 5px 0 0;
}
footer .payments li img {
  max-width: 22px;
  display: block;
  margin: 0 auto;
  height: auto;
  object-fit: contain;
}
footer ul li {
  margin: 0 0 5px;
}
footer a {
  color: #014023;
  transition: all 0.3s ease-in-out;
}
footer a:hover {
  color: #22C262;
}
footer .align-center {
  text-align: center;
}
footer .align-right {
  text-align: right;
}
footer .socials {
  margin: 0 0 35px;
}
footer .socials ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
footer .socials ul li {
  position: relative;
  width: 55px;
}
footer .socials ul li:nth-of-type(2) {
  margin: 0 5px;
}
footer .socials ul li a:before {
  content: "";
  background-image: url("/Resources/img/socials/social-bg-footer.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 55px;
  height: 55px;
  position: absolute;
  top: 0;
  left: 0;
}
footer .socials ul li a:hover img {
  transform: rotate(7deg);
}
footer .socials ul li a img {
  position: relative;
  top: 13px;
  left: 14px;
  z-index: 1;
  max-width: 25px;
  background: transparent;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
footer .copy {
  padding: 75px 0 0;
  font-size: 16px;
}

@media only screen and (max-width: 767.5px) {
  .newsletter .top-text h2, .newsletter .top-text h3, .newsletter .top-text h4, .newsletter .top-text h5, .newsletter .top-text h6 {
    font-size: 28px;
    line-height: 32px;
  }
  footer {
    text-align: center;
  }
  footer .outer {
    padding: 50px 0;
  }
  footer .copy {
    padding: 0;
    text-align: center;
  }
  footer .logo-footer {
    margin: 25px auto;
  }
  footer .socials ul li {
    text-align: left;
  }
  footer .align-right {
    text-align: center;
  }
  footer .payments {
    justify-content: center;
    margin: 10px 0 0 0;
  }
}
@media only screen and (max-width: 1450px) {
  .container-fluid.custom {
    padding: 0px 50px;
  }
}
@media only screen and (max-width: 1350px) {
  .container-fluid.custom {
    padding: 0px 50px;
    max-width: 1200px;
  }
}
@media only screen and (max-width: 1200px) {
  .container-fluid.custom {
    padding: 0px 75px;
  }
}
@media only screen and (max-width: 991.5px) {
  .errors:before {
    position: absolute;
    top: 0px;
    left: -370px;
    transform: unset;
    /*background-image: url(/Resources/img/bg-home.svg);
    background-repeat: no-repeat;*/
    width: 245%;
    height: 100%;
    z-index: 0;
    background-size: 105%;
  }
  .modal-account .content {
    max-width: 700px !important;
  }
  .container-fluid.custom {
    padding: 0px 25px;
  }
}
@media only screen and (max-width: 767.5px) {
  h2, h3, h4, h5, h6 {
    font-size: 28px;
    line-height: 32px;
  }
  .modal-account .content {
    max-width: 325px !important;
    padding: 50px 25px !important;
  }
  .modal-account .content .fas {
    top: 15px !important;
    right: 15px !important;
  }
  .container-fluid.custom {
    padding: 0px 15px;
  }
  .shopping-modal .inner {
    padding: 50px 20px 20px;
    min-width: inherit;
  }
  .shopping-modal .inner b {
    font-size: 21px;
  }
  .shopping-modal .btn-row {
    margin-top: 20px;
  }
  .shopping-modal .btn-row .btn-order {
    min-width: 120px;
    margin-right: 10px;
  }
  .banner-text {
    height: 200px;
  }
  .banner-text .text {
    font-size: 30px;
    width: calc(100% - 30px);
  }
  .breadcrumbs {
    margin: 0px 0 20px;
  }
  .popup-modal .content {
    padding: 30px 15px !important;
    overflow: hidden;
  }
  .popup-modal .content h2, .popup-modal .content h3, .popup-modal .content h4, .popup-modal .content h5, .popup-modal .content h6 {
    font-size: 24px;
    margin: 0 0 15px;
    padding: 0 50px 0 0;
  }
  .popup-modal .content .wrapper {
    flex-direction: column;
  }
  .popup-modal .content .img-wrap {
    display: none;
  }
  .btn-default {
    padding: 10px 20px !important;
    min-width: initial !important;
    font-size: 16px !important;
  }
  .breadcrumb-wrapper.shop-crumbs {
    display: block;
    padding: 15px 0;
  }
  .breadcrumb-wrapper.shop-crumbs .btn-back {
    margin: 0px 0px 15px;
  }
  .errors:before {
    transform: translateY(-50%);
    left: -260px;
    width: 250%;
    background-size: 120%;
    top: 68%;
  }
}
.ui-datepicker {
  display: none;
  background-color: #b5d0c1;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.11);
  margin-top: 0.25rem;
  padding: 0.5rem;
}
.ui-datepicker-calendar table {
  border-collapse: collapse;
  border-spacing: 0;
}
.ui-datepicker-calendar thead th {
  padding: 0.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: bold;
  color: #fff;
}
.ui-datepicker-calendar tbody td {
  width: 2.5rem;
  text-align: center;
  padding: 0;
  color: #fff;
}
.ui-datepicker-calendar tbody td.ui-state-disabled {
  opacity: 0.3;
}
.ui-datepicker-calendar tbody td a {
  display: block;
  border-radius: 50%;
  line-height: 2rem;
  transition: 0.3s all;
  color: #fff;
  font-size: 0.875rem;
  text-decoration: none;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
}
.ui-datepicker-calendar tbody td a:hover {
  background: white;
  color: white;
}
.ui-datepicker-calendar tbody td a.ui-state-active {
  background: #f69986;
  font-weight: bold;
}
.ui-datepicker-calendar tbody td a.ui-state-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #f69986;
}
.ui-datepicker-header a span {
  display: none;
}
.ui-datepicker-header a.ui-corner-all {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 2rem;
  height: 2rem;
  margin: 0.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
}
.ui-datepicker-header a.ui-datepicker-prev {
  left: 0;
}
.ui-datepicker-header a.ui-datepicker-prev::after {
  font-family: "Font Awesome 5 Free";
  content: "\f104";
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}
.ui-datepicker-header a.ui-datepicker-next {
  right: 0;
  text-align: right;
}
.ui-datepicker-header a.ui-datepicker-next::after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}
.ui-datepicker-title {
  color: white;
  text-align: center;
  line-height: 2rem;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: bold;
  padding-bottom: 0.25rem;
}
.ui-datepicker-week-col {
  color: #353535;
  font-weight: 400;
  font-size: 0.75rem;
}

.modal-account {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.46);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  overflow-y: auto;
  box-shadow: 0 3px 6px rgba(49, 77, 81, 0.0034);
}
.modal-account.active {
  opacity: 1;
  visibility: visible;
}
.modal-account .content {
  margin: 1.75rem auto;
  background: #f7f8fa;
  border-radius: 10px;
  padding: 75px 50px;
  text-align: center;
  max-width: 800px;
  min-height: inherit;
  max-height: 500px;
  overflow-x: hidden;
  overflow-y: scroll;
  width: 100%;
  position: relative;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.modal-account .content::-webkit-scrollbar {
  width: 10px;
}
.modal-account .content::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.modal-account .content::-webkit-scrollbar-thumb {
  background: #888;
}
.modal-account .content::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.modal-account .content .fas {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 5;
  line-height: 44px;
  width: 44px;
  background: #b5d0c1;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  color: #fff;
}
.modal-account .content .fas.small {
  max-width: 800px;
}
.modal-account .content .fas.small b {
  margin-bottom: 20px;
}
.modal-account .content .fas b {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
}
.modal-account .content .btn-default {
  padding: 10px 20px;
  text-align: center;
  font-weight: normal;
  display: table;
  border: none;
  cursor: pointer;
  outline: none !important;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #22C262;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  min-width: 200px;
  margin: 15px auto 0;
}
.modal-account .content .btn-default.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.modal-account .content .btn-default.loading:before {
  content: "" !important;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  position: absolute;
  left: 18px;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url(/Resources/img/loading.svg);
}
@media only screen and (min-width: 768px) {
  .modal-account .content .btn-default:hover {
    background: #000;
    color: #fff;
  }
}

section:not(.fold-home).anim-active .container-fluid.custom, section:not(.fold-home).anim-active img {
  opacity: 1;
  top: 0;
}
section:not(.fold-home) .container-fluid.custom, section:not(.fold-home) img {
  position: relative;
  opacity: 0;
  top: 20px;
  -webkit-transition: all 0.8s ease-in-out 0.2s;
  transition: all 0.8s ease-in-out 0.2s;
}
section.anim-active {
  -webkit-transition: opacity 0.5s linear 0s;
  transition: opacity 0.5s linear 0s;
}
