@charset "UTF-8";
/* fonts  */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/Lato-Light.woff2") format("woff2"), url("fonts/Lato-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/Lato-LightItalic.woff2") format("woff2"), url("fonts/Lato-LightItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/Lato-Regular.woff2") format("woff2"), url("fonts/Lato-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/Lato-Italic.woff2") format("woff2"), url("fonts/Lato-Italic.ttf") format("truetype");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/Lato-Bold.woff2") format("woff2"), url("fonts/Lato-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/Lato-BoldItalic.woff2") format("woff2"), url("fonts/Lato-BoldItalic.ttf") format("truetype");
}
/* css reset */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

/* main */
html {
  scroll-behavior: smooth;
  font-size: 22px;
  overflow-x: hidden;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: normal;
  color: #444444;
  overflow-x: hidden;
}

.wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

.dimmer {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
  transition: background-color 0.2s;
  z-index: 2;
}
.dimmer--active {
  pointer-events: all;
  background-color: rgba(68, 68, 68, 0.337254902);
}

.yellow-strong {
  color: #ffd354;
}

@media screen and (max-width: 767px) {
  .non-mobile {
    display: none;
  }
}
@media screen and (min-width: 767px) {
  .non-desktop {
    display: none;
  }
}
.cart {
  margin: 0;
  padding: 47px 20px 20px 20px;
  height: 100vh;
  width: 470px;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(70vw);
  z-index: 11;
  visibility: hidden;
  transition: transform 0.2s ease-in-out, visibility 0s 0.3s;
}
.cart--active {
  display: block;
  transform: translateX(0px);
  visibility: visible;
  transition: transform 0.2s ease-in-out, visibility 0s 0s;
  overflow: auto;
}
.cart__title {
  padding-bottom: 20px;
  border-bottom: 1px solid #444444;
}
.cart__inner {
  position: relative;
}

@media screen and (max-width: 767px) {
  .cart {
    width: 100%;
  }
}
.cart-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}
.cart-button::after {
  content: attr(data-value);
  position: absolute;
  top: 15px;
  right: 0;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ffd354;
  color: #444444;
  font-size: 0.7rem;
}

.cart-button:not(.display-counter)::after {
  display: none;
}

.cart-close-fix {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.main-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}
.main-menu__list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  font-size: 1.273rem;
  height: 100%;
  gap: 100px;
}
.main-menu__item {
  display: inline-block;
  min-height: 100%;
}
.main-menu__item a {
  position: relative;
  text-decoration: none;
  color: #444444;
  text-transform: capitalize;
  min-height: 100%;
  padding: 18px 0;
  border-bottom: 3px solid;
  border-color: transparent;
  transition: border-color 0.2s ease-out;
}
.main-menu__item a:hover {
  border-color: #ffd354;
}

@media screen and (max-width: 767px) {
  .main-menu__list {
    gap: 20px;
  }
}
/* START hamburger menu */
.hamburger {
  display: none;
  z-index: 3;
}
.hamburger__box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.hamburger__inner, .hamburger__inner::before, .hamburger__inner::after {
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background-color: #000000;
  position: absolute;
  z-index: 3;
}
.hamburger__inner::before, .hamburger__inner::after {
  content: "";
  left: 0;
  transition: transform 0.2s ease-in-out;
}
.hamburger__inner {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.1s ease-in-out;
}
.hamburger__inner::before {
  top: -10px;
}
.hamburger__inner::after {
  top: 10px;
}
.hamburger--active .hamburger__inner {
  background-color: transparent;
}
.hamburger--active .hamburger__inner:before {
  transform: translateY(10px) rotate(45deg);
}
.hamburger--active .hamburger__inner:after {
  transform: translateY(-10px) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .hamburger {
    /* padding: 10px; */
    display: inline-block;
    cursor: pointer;
    background: transparent;
    border: 0;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .main-menu {
    margin: 0;
    padding: 47px 20px 20px 20px;
    height: 100vh;
    width: 70vw;
    background-color: #ffd354;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-70vw);
    z-index: 2;
    visibility: hidden;
    transition: transform 0.2s ease-in-out, visibility 0s 0.3s;
  }
  .main-menu--active {
    display: block;
    transform: translateX(0px);
    visibility: visible;
    transition: transform 0.2s ease-in-out, visibility 0s 0s;
  }
  .main-menu__list {
    flex-direction: column;
    text-align: right;
  }
  .main-menu__item {
    margin: 0 0 20px 0;
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    min-height: auto;
  }
}
/* END hamburger menu */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  font-size: 1.2rem;
  background-color: transparent;
  border-bottom: 1px solid #ffd354;
  z-index: 10;
  transition: transform 0.2s, background-color 0.2s;
}
.header__inner {
  display: flex;
  align-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.header__logo {
  height: 39px;
}
.header__cart {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: nowrap;
}
.header__lang {
  display: inline-block;
  font-size: 1rem;
  color: #444444;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.header__lang option {
  background-color: #ffd354;
  padding: 5px 0;
}
.header--hidden {
  transform: translateY(-100%);
  box-shadow: none;
}
.header--background {
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 767px) {
  .header__logo {
    height: 20px;
  }
  .header__inner {
    height: 50px;
  }
}
.details {
  padding: 150px 0;
}
.details__inner {
  text-align: center;
  margin-bottom: 50px;
}
.details__inner h2 {
  font-size: 1.818rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
.details__line {
  display: block;
  position: relative;
  width: 100%;
}
.details__line::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 2px;
  background: repeating-linear-gradient(0deg, #ffd354, #ffd354 5px, #ffffff 5px, #ffffff 10px);
}
.details__list {
  display: flex;
  flex-direction: column;
  margin: 0 2em;
  list-style: none;
}
.details__list li:last-child {
  margin-bottom: 0;
}
.details__list li:nth-child(odd) {
  transform: translateX(-20px);
  text-align: right;
  padding-right: 30px;
}
.details__list li:nth-child(odd):after {
  right: -40px;
}
.details__list li:nth-child(2n) {
  align-self: flex-end;
  transform: translateX(20px);
  padding-left: 30px;
}
.details__list li:nth-child(2n):after {
  left: -40px;
}
.details__list li:after {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  width: 40px;
  height: 40px;
  background-color: #ffd354;
  border-radius: 50%;
  transform: translateY(-25%);
}
.details__item {
  position: relative;
  margin-bottom: 50px;
  width: 50%;
  text-transform: uppercase;
  color: #959595;
}

@media screen and (max-width: 767px) {
  .details__item {
    width: 100%;
  }
  .details__line::before {
    left: 0;
    transform: translateX(43px);
  }
  .details__list li:nth-child(odd) {
    align-self: flex-start;
    transform: translateX(20px);
    padding-left: 30px;
    text-align: left;
  }
  .details__list li:nth-child(2n) {
    align-self: flex-start;
  }
  .details__list li:nth-child(odd):after {
    left: -40px;
  }
}
#hero-top {
  background-image: url(/img/hero.png);
  background-color: #ffd354;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 150px 0 50px 0;
}

.hero-top {
  display: flex;
  height: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  height: 100%;
}
.hero-top__flex {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 50px;
}
.hero-top__title {
  font-size: 2.318rem;
  font-weight: 300;
  line-height: 4rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
}
.hero-top__img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .hero-top__flex {
    width: 100%;
    gap: 50px;
  }
  .hero-top__title {
    font-size: 1.818rem;
    font-weight: 300;
    line-height: 4rem;
    letter-spacing: 0.2rem;
    text-align: center;
  }
  #hero-top {
    background-image: url(/img/hero-small.webp);
  }
}
.hero-bottom {
  position: relative;
  background-color: #ffd354;
}
.hero-bottom__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  font-size: 1.136rem;
  font-weight: 300;
  line-height: 2rem;
  text-align: center;
  padding: 100px 0;
}
.hero-bottom__streak {
  position: absolute;
  bottom: 0;
  transform: translate(39%, 83%);
  width: 800px;
  user-select: none;
  max-width: 100%;
}

/* section products */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  padding: 130px 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(223, 223, 223, 0.2549019608);
}
.product-card__button {
  width: 100%;
  text-transform: uppercase;
  background-color: #ffd354;
  border: none;
  font-size: 1rem;
  padding: 10px 0;
  color: #444444;
  font-weight: 600;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: auto;
}

.product-card__img {
  position: relative;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  background-color: rgba(223, 223, 223, 0.2549019608);
  padding: 50px;
  height: 300px;
}

.product-card__over {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 10px;
  padding: 20px;
  background-color: transparent;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s ease-out;
}
.product-card__over button,
.product-card__over a {
  background-color: transparent;
  border: none;
  cursor: pointer;
  background-color: #ffd354;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: block;
}

.product-card__over:hover {
  opacity: 1;
}

.product-card__bottom {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.product-card__title a {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  color: #444444;
}

.product-card__price {
  font-size: 1.091rem;
  font-weight: 600;
  padding: 0 0 15px 0;
}

/* section about */
.about-sec {
  background-color: #ffd354;
  padding: 50px 0;
}

.about {
  position: relative;
  z-index: 1;
}
.about h2 {
  font-size: 1.818rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  padding-bottom: 30px;
}
.about__img {
  float: right;
  height: auto;
}
.about__wave {
  position: absolute;
  bottom: 0;
  transform: translate(-5%, 136%);
  width: 800px;
  user-select: none;
  max-width: 100%;
}
.about__wave-top {
  position: absolute;
  bottom: 0;
  transform: translate(262%, -200%);
  width: 308px;
  user-select: none;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .about h2 {
    text-align: center;
  }
  .about__img {
    width: 100%;
  }
}
/* section fact */
.fact {
  position: relative;
  font-style: italic;
  text-align: center;
  line-height: 1.5rem;
  font-weight: 300;
  padding: 50px 0;
}
.fact::before {
  content: "?";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15rem;
  font-weight: 700;
  font-style: normal;
  color: #ffd354;
  opacity: 0.12;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .fact {
    line-height: 2rem;
  }
  .fact::before {
    font-size: 35rem;
  }
}
/* section natural */
.natural-sec {
  border-top: 1px solid #ffd354;
}

.natural {
  position: relative;
  padding: 76px 0 50px 0;
}
.natural::before {
  content: url(img/bee-yellow.svg);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 0 50px;
}
.natural__bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 50px;
}
.natural__img {
  width: 350px;
  height: auto;
}
.natural h2 {
  font-size: 1.818rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  text-align: center;
  padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .natural {
    text-align: center;
  }
  .natural__bottom {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: left;
  }
  .natural__img {
    width: 100%;
  }
}
/* section faq */
.faq-sec {
  background-color: #ffd354;
}

.faq {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 80px 0;
}
.faq__title {
  padding-bottom: 50px;
  font-size: 1.818rem;
  font-weight: 700;
}
.faq__logo {
  display: flex;
  justify-content: center;
  width: 30%;
}
.faq__logo img {
  width: 40%;
}
.faq__questions {
  width: 70%;
}
.faq__questions details {
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.faq__questions details > summary {
  cursor: pointer;
  list-style-type: none;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 10px;
  font-size: 1rem;
}
.faq__answer {
  display: inline-block;
  position: relative;
  margin-left: 20px;
}
.faq__answer::before {
  content: "";
  position: absolute;
  left: -13px;
  min-height: 100%;
  width: 1px;
  background-color: #444444;
}
.faq__wave {
  position: absolute;
  bottom: 0;
  transform: translate(-29%, 83%);
  width: 800px;
  user-select: none;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .faq__title {
    text-align: center;
  }
  .faq__logo {
    display: none;
  }
  .faq__questions {
    width: 100%;
  }
}
@media screen and (min-width: 767px) {
  .faq__questions details > summary::before {
    content: url(img/bee-faq.svg);
    margin: 0 5px 0 0;
  }
}
/* section malta */
.malta {
  padding: 50px 0 225px 0;
}
.malta__title {
  font-size: 1.818rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 300;
  padding-bottom: 60px;
}
.malta__top {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 50px;
  flex-direction: row;
}
.malta__top-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  line-height: 1.6rem;
  background-color: rgba(229, 209, 150, 0.28);
  width: 50%;
  padding: 90px;
}
.malta__bottom {
  display: flex;
  justify-content: space-between;
}
.malta__bottom-left {
  font-size: 1rem;
  font-weight: 300;
  position: relative;
  background-color: #f2f2f2;
  width: 60%;
  padding: 210px 100px;
  line-height: 1.6rem;
}
.malta__bottom-left::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 0;
  transform: translateY(50%);
  background-color: #ffd354;
  width: 10px;
  height: 100px;
}
.malta__img-left {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-95%, 15%);
  z-index: 1;
}
.malta__img-honey {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  max-height: 150px;
}
.malta__img-right {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(90%, 30%);
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .malta {
    padding-bottom: 100px;
  }
  .malta__top-right {
    width: 100%;
    padding: 20px;
  }
  .malta__bottom-left {
    width: 100%;
    padding: 20px;
  }
  .malta__bottom-left::after {
    left: 3px;
  }
  .malta__img-right, .malta__img-left {
    position: relative;
    transform: none;
    width: 100%;
    height: auto;
  }
  .malta__img-honey {
    display: none;
  }
}
/* footer */
.footer {
  padding: 100px 0 50px 0;
  background-color: #959595;
  color: #d5d5d5;
  text-align: center;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  align-items: center;
  gap: 30px;
}
.footer__news {
  display: flex;
  justify-content: center;
  border: 1px solid rgba(242, 242, 242, 0.69);
  width: 50%;
}
.footer__news:focus-within {
  border: 1px solid #ffd354;
}
.footer__news input {
  display: block;
  background-color: transparent;
  border: none;
  padding: 15px 20px;
  font-size: 1rem;
  transition: border 0.2s ease;
  flex-grow: 2;
  color: #f2f2f2;
  width: 100%;
}
.footer__news input::placeholder {
  color: rgba(242, 242, 242, 0.69);
}
.footer__news input:focus-visible {
  outline: none;
  border: none;
}
.footer__news button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: rgba(242, 242, 242, 0.69);
  font-size: 2rem;
  padding: 0 15px;
}
.footer__hgroup {
  font-size: 1.364rem;
}
.footer__hgroup h2 {
  font-weight: 400;
  text-transform: uppercase;
  color: #d5d5d5;
}
.footer__hgroup h3 {
  color: rgba(242, 242, 242, 0.69);
  font-weight: 300;
}
.footer__bee {
  margin-top: 40px;
}
.footer__social {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.footer__social-link {
  color: #ffd354;
  font-size: 1.5rem;
  border: 1px solid #ffd354;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  transition: border-color 0.2s ease-out;
  margin-right: 15px;
}
.footer__menu-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
}
.footer__menu-list li > a {
  font-weight: 300;
  letter-spacing: 0.1rem;
  color: #f2f2f2;
  text-decoration: none;
  text-transform: capitalize;
}
.footer__menu-list li > a:hover {
  text-decoration: underline;
}
.footer__menu-list li:not(:last-child)::after {
  content: "|";
  margin: 0 20px;
}

@media screen and (max-width: 767px) {
  .footer__news {
    width: 100%;
  }
}
/* product page */
/*main */
.mini-form {
  display: flex;
  gap: 20px;
}
.mini-form button {
  text-transform: uppercase;
  background-color: #ffd354;
  border: none;
  font-size: 1rem;
  padding: 10px 15px;
  color: #444444;
  font-weight: 300;
  cursor: pointer;
}
.mini-form input[type=number]::-webkit-inner-spin-button,
.mini-form input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.mini-form .number-input {
  border: 2px solid #d5d5d5;
  display: inline-flex;
}
.mini-form .number-input button {
  outline: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  cursor: pointer;
  margin: 0;
  position: relative;
}
.mini-form .number-input button:after {
  content: "-";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 900;
}
.mini-form .number-input button.plus:after {
  content: "+";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 900;
}
.mini-form .number-input input[type=number] {
  font-family: sans-serif;
  max-width: 5rem;
  padding: 0.5rem;
  border: none;
  border-width: 0 2px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .mini-form {
    justify-content: center;
  }
  .mini-form .number-input input[type=number] {
    font-size: 0.591rem;
  }
  .mini-form button {
    font-size: 0.591rem;
  }
}
/* product main */
.product-main {
  padding: 150px 0 50px 0;
}
.product-main__inner {
  display: flex;
  flex-direction: row;
  gap: 50px;
}
.product-main__gallery {
  width: 50%;
}
.product-main__gallery img {
  width: 100%;
}
.product-main__info {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 50%;
}
.product-main__title {
  font-size: 1.818rem;
  font-weight: 600;
}
.product-main__desc {
  font-size: 1.591rem;
  font-weight: 300;
}
.product-main__buy {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .product-main__inner {
    flex-direction: column;
    align-items: center;
  }
  .product-main__info {
    width: 100%;
  }
  .product-main__gallery {
    width: 100%;
  }
}
/* section cocktail */
.cocktail {
  background-color: #ffd354;
  padding: 50px 0;
}
.cocktail__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.cocktail__desc {
  font-weight: 600;
  line-height: 2rem;
}
.cocktail__img {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .cocktail__inner {
    flex-direction: column;
  }
  .cocktail__img {
    width: 100%;
  }
  .cocktail__img img {
    width: 100%;
  }
}
/* sectiuon natural2  */
.natural2 {
  position: relative;
  border-top: 1px solid #ffd354;
}
.natural2__inner {
  padding: 76px 0 50px 0;
  text-align: center;
  font-size: 1.136rem;
  line-height: 2rem;
  font-style: italic;
  font-weight: 300;
}
.natural2::before {
  content: url(img/bee-yellow.svg);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 0 50px;
}

@media screen and (max-width: 767px) {
  .natural2 {
    text-align: center;
  }
}
/* section benefits */
.benefits {
  padding: 50px 0;
  background-color: #ffd354;
}
.benefits__title {
  text-align: center;
  font-size: 1.818rem;
  font-weight: 600;
  padding-bottom: 50px;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
  justify-content: center;
  align-items: start;
  justify-items: center;
  gap: 50px;
}
.benefits__box {
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.benefits__box figcaption {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  word-break: break-word;
}
.benefits__wave {
  position: absolute;
  bottom: 0;
  transform: translate(-5%, 136%);
  width: 800px;
  user-select: none;
  max-width: 100%;
}
.benefits__wave-top {
  position: absolute;
  bottom: 0;
  transform: translate(268%, -242%);
  width: 308px;
  user-select: none;
  max-width: 100%;
}

/* section forwho */
.forwho {
  padding: 100px 0 50px 0;
}
.forwho__inner {
  display: flex;
  justify-content: space-between;
}
.forwho__img {
  width: 40%;
}
.forwho__img img {
  width: 100%;
}
.forwho__desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  width: 50%;
}
.forwho__desc p {
  font-size: 1.136rem;
  line-height: 2rem;
}
.forwho__title {
  font-size: 1.818rem;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .forwho__inner {
    flex-direction: column;
  }
  .forwho__desc {
    width: 100%;
  }
  .forwho__img {
    width: 100%;
  }
}
/* section */
.whatin {
  padding: 76px 0;
  background-color: #f2f2f2;
}
.whatin__list {
  columns: 4;
  -webkit-columns: 4;
  -moz-columns: 4;
  margin: 0;
}
.whatin__list li {
  page-break-inside: avoid;
  break-inside: avoid-column;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.818rem;
}
.whatin__list li::before {
  content: "• ";
  color: #ffd354;
}
.whatin__title {
  font-size: 1.818rem;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .whatin__list {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}
/* section use */
.use {
  padding: 100px 0;
}
.use__title {
  font-size: 1.818rem;
  text-align: center;
  font-weight: 300;
  text-transform: uppercase;
}

/* page contact */
.contact {
  padding: 150px 0 100px 0;
}
.contact__inner {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 50%;
}
.contact__info h2 {
  font-size: 1.818rem;
  font-weight: 600;
  text-transform: uppercase;
}
.contact__form legend {
  font-size: 1.818rem;
  font-weight: 600;
  text-transform: uppercase;
}
.contact__form input {
  border: none;
  border-bottom: 1px solid #444444;
  padding: 20px 5px 0 5px;
  outline: none;
  transition: border-color 0.2s ease-out;
  width: 100%;
  font-size: 1rem;
  font-style: italic;
}
.contact__form textarea {
  margin-top: 20px;
  resize: vertical;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  font-style: italic;
  width: 100%;
}
.contact__form input:focus {
  border-bottom: 1px solid #ffd354;
}
.contact__form button {
  width: 100%;
  text-transform: uppercase;
  background-color: #ffd354;
  border: none;
  font-size: 1rem;
  padding: 10px 0;
  color: #444444;
  font-weight: 600;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .contact {
    padding: 100px 0;
  }
  .contact__inner {
    flex-direction: column;
  }
  .contact__info {
    width: 100%;
  }
}
/* cookies notice --------------------------------------------------------------------- */
.cookies-notice {
  position: fixed;
  box-sizing: border-box;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5333333333);
  color: #444;
  display: grid;
  grid-template-columns: 100%;
  place-content: center;
  place-items: center;
  transition: opacity 0.3s ease;
  font-size: 0.7em;
  font-weight: 300;
}
.cookies-notice:not(.is-open) {
  top: auto;
  bottom: 0;
  height: unset;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #ccc;
}
.cookies-notice:not(.is-open) .cookies-notice__container {
  width: 940px;
  position: static;
  background: transparent;
  padding: 0;
}
.cookies-notice:not(.is-open) .cookies-notice__form {
  display: none;
}
.cookies-notice.is-closed {
  opacity: 0;
  pointer-events: none;
}
.cookies-notice__container {
  width: 635px;
  max-width: 100%;
  padding: 10px 20px;
  position: relative;
  background-color: #fff;
  font-family: Lato, Helvetica Neue LT Pro, Verdana, sans-serif;
}
.cookies-notice__close {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  background: transparent;
  border: none;
  box-shadow: none;
}
.cookies-notice__close.show {
  display: block;
}
.cookies-notice__heading {
  font-weight: 400;
  font-size: 1.2em;
  line-height: 1.5em;
  text-align: left;
  margin: 0;
}
.cookies-notice__heading a {
  text-decoration: underline;
  color: inherit;
}
.cookies-notice__heading a:visited, .cookies-notice__heading a:active {
  color: inherit;
}
.cookies-notice__message {
  display: block;
  margin-bottom: 10px;
  line-height: 1.5em;
  font-size: max(9px, 1em);
}
.cookies-notice__form, .cookies-notice__options {
  display: grid;
  gap: 10px;
}
.cookies-notice__form .cookies-notice__button, .cookies-notice__options .cookies-notice__button {
  text-transform: uppercase;
}
.cookies-notice__form {
  grid-template-columns: 100%;
}
.cookies-notice__options {
  grid-template-columns: repeat(2, minmax(1px, 1fr));
  margin-top: 10px;
}
.cookies-notice__option {
  padding: 8px 10px;
  border: 1px solid #ebebeb;
  position: relative;
  cursor: pointer;
  user-select: none;
  top: unset;
  left: unset;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.cookies-notice__option input {
  padding: 0;
  -webkit-appearance: checkbox;
  width: 12px;
  height: 12px;
  margin: 0 5px 0 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  vertical-align: middle;
  visibility: visible;
}
.cookies-notice__buttons {
  margin-top: 10px;
}
.cookies-notice__buttons.hidden {
  display: none;
}
.cookies-notice__button {
  display: block;
  max-width: 100%;
  width: 100%;
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  background-color: #fff;
  color: #444;
  margin-bottom: 10px;
  font-size: 0.55rem;
  text-align: center;
  transition: all 0.15s ease-in;
  box-sizing: border-box;
  line-height: normal;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.cookies-notice__button__button:visited {
  color: #444;
}
.cookies-notice__button.btn-lg {
  padding: 10px 15px;
  margin: 0;
}
.cookies-notice__button:last-child {
  margin-bottom: 0;
}
.cookies-notice__button--accept-all {
  border-color: #444;
  background: #444;
  color: #fff;
}
.cookies-notice__button--accept-required {
  border-color: #ebebeb;
  color: #444;
}
.cookies-notice__button:hover, .cookies-notice__button:focus, .cookies-notice__button:active {
  color: #444;
  background-color: #ffd354;
  border-color: #ffd354;
  text-decoration: none;
}

@media (min-width: 768px) {
  .cookies-notice__container {
    max-width: calc(100% - 40px);
  }
  .cookies-notice__form {
    grid-template-columns: repeat(3, minmax(1px, 1fr));
  }
  .cookies-notice__options {
    grid-template-columns: repeat(3, minmax(1px, 1fr));
    grid-column-end: span 3;
  }
}
@media (min-width: 460px) {
  .cookies-notice__buttons {
    text-align: center;
    margin: 10px 0 5px;
  }
  .cookies-notice__button {
    max-width: none;
    min-width: 130px;
    width: auto;
    display: inline-block;
    margin: 0 10px 0 0;
    padding: 4px 10px 5px;
  }
  .cookies-notice__button:last-child {
    margin-right: 0;
  }
}
@media (min-width: 960px) {
  .cookies-notice:not(.is-open) .cookies-notice__message {
    display: inline;
    vertical-align: middle;
  }
  .cookies-notice__buttons {
    display: inline;
    vertical-align: middle;
  }
  .cookies-notice__buttons {
    margin-left: 15px;
  }
}
@media (min-width: 1300px) {
  .cookies-notice:not(.is-open) .cookies-notice__container {
    width: 1175px;
  }
}
.flag {
  background-image: url(../img/flags.png);
  width: 28px;
  height: 28px;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
  padding: 0;
  text-indent: 100%;
  white-space: nowrap;
}
.flag-none {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAB50lEQVQ4jX3Vy0tVURQG8OOjSzTQG5GDRoWhBT0mQcOExmlWaBRUREUQ0bAwrtnASomKDBxI9NAk0ECIoEEPMMUU7An2okn/yK/BXcbpcDwHNmfvb6317fXYa+8kyflQQhfG8QW/8BufAutCKc82j+wAZnEZLZiO/3a8wmZUQqeziKgWg7iPxsDOoC+lcxNHYl7GAwygNo9wEE9S6zosopzCmjCPmlivwQsM5IU5iZEweIi7mMIubImQ2/A6PHuDt+jDBPanCzCLhtQGW/EV13An0jCEq+jJ0W8MbFUSFevJeFzCbEG+51GXwSo4lMQxaM4Id2OogHAEOzJYK8YSTOcYnMDZAsILOJyDzyRYiuORHpMYzsGXxwie5uBLCb7nCKZwr4BwGM9y8G8J5nJcP4djBSGfwukcfC7BGFoygoO4VEDYi/YM1orRBN2oZIQb8LyA8CWaMlgF3Qnq41w1ZBQWsBN7opOOoyO65UNGtwHvUb8MdOAx9uI63uEnZqK1zkfSL6q23mI4MYGjYftfChLcjoq3YTXWx661KZ268HxdrDfiI27l5aUG/aqNXw6sHydTOv+uM6zFI9wQt89KCW+PUHtVb5gFbEJzhLkNV2K+b0WiDGkpCjGKz/iBP6rPwTg6rfAE/AVbeUAe63OG2QAAAABJRU5ErkJggg==);
  background-position: center center;
}
.flag-current {
  margin: 0;
  outline: none;
  border: 0;
}
.flag-ad {
  background-position: -32px 0;
}
.flag-ae {
  background-position: -64px 0;
}
.flag-af {
  background-position: -96px 0;
}
.flag-ag {
  background-position: -128px 0;
}
.flag-ai {
  background-position: -160px 0;
}
.flag-al {
  background-position: -192px 0;
}
.flag-am {
  background-position: -224px 0;
}
.flag-an {
  background-position: -256px 0;
}
.flag-ao {
  background-position: -288px 0;
}
.flag-ar {
  background-position: -320px 0;
}
.flag-as {
  background-position: -352px 0;
}
.flag-at {
  background-position: -384px 0;
}
.flag-au {
  background-position: -416px 0;
}
.flag-aw {
  background-position: -448px 0;
}
.flag-az {
  background-position: 0 -32px;
}
.flag-ba {
  background-position: -32px -32px;
}
.flag-bb {
  background-position: -64px -32px;
}
.flag-bd {
  background-position: -96px -32px;
}
.flag-be {
  background-position: -128px -32px;
}
.flag-bf {
  background-position: -160px -32px;
}
.flag-bg {
  background-position: -192px -32px;
}
.flag-bh {
  background-position: -224px -32px;
}
.flag-bi {
  background-position: -256px -32px;
}
.flag-bj {
  background-position: -288px -32px;
}
.flag-bm {
  background-position: -320px -32px;
}
.flag-bn {
  background-position: -352px -32px;
}
.flag-bo {
  background-position: -384px -32px;
}
.flag-br {
  background-position: -416px -32px;
}
.flag-bs {
  background-position: -448px -32px;
}
.flag-bt {
  background-position: 0 -64px;
}
.flag-bw {
  background-position: -32px -64px;
}
.flag-by {
  background-position: -64px -64px;
}
.flag-bz {
  background-position: -96px -64px;
}
.flag-ca {
  background-position: -128px -64px;
}
.flag-cd {
  background-position: -160px -64px;
}
.flag-cf {
  background-position: -192px -64px;
}
.flag-cg {
  background-position: -224px -64px;
}
.flag-ch {
  background-position: -256px -64px;
}
.flag-ci {
  background-position: -288px -64px;
}
.flag-ck {
  background-position: -320px -64px;
}
.flag-cl {
  background-position: -352px -64px;
}
.flag-cm {
  background-position: -384px -64px;
}
.flag-cn {
  background-position: -416px -64px;
}
.flag-co {
  background-position: -448px -64px;
}
.flag-cr {
  background-position: 0 -96px;
}
.flag-cu {
  background-position: -32px -96px;
}
.flag-cv {
  background-position: -64px -96px;
}
.flag-cy {
  background-position: -96px -96px;
}
.flag-cz {
  background-position: -128px -96px;
}
.flag-de {
  background-position: -160px -96px;
}
.flag-dj {
  background-position: -192px -96px;
}
.flag-dk {
  background-position: -224px -96px;
}
.flag-dm {
  background-position: -256px -96px;
}
.flag-do {
  background-position: -288px -96px;
}
.flag-dz {
  background-position: -320px -96px;
}
.flag-ec {
  background-position: -352px -96px;
}
.flag-ee {
  background-position: -384px -96px;
}
.flag-eg {
  background-position: -416px -96px;
}
.flag-eh {
  background-position: -448px -96px;
}
.flag-er {
  background-position: 0 -128px;
}
.flag-es {
  background-position: -32px -128px;
}
.flag-et {
  background-position: -64px -128px;
}
.flag-fi {
  background-position: -96px -128px;
}
.flag-fj {
  background-position: -128px -128px;
}
.flag-fm {
  background-position: -160px -128px;
}
.flag-fo {
  background-position: -192px -128px;
}
.flag-fr {
  background-position: -224px -128px;
}
.flag-ga {
  background-position: -256px -128px;
}
.flag-gb {
  background-position: -288px -128px;
}
.flag-gd {
  background-position: -320px -128px;
}
.flag-ge {
  background-position: -352px -128px;
}
.flag-gg {
  background-position: -384px -128px;
}
.flag-gh {
  background-position: -416px -128px;
}
.flag-gi {
  background-position: -448px -128px;
}
.flag-gl {
  background-position: 0 -160px;
}
.flag-gm {
  background-position: -32px -160px;
}
.flag-gn {
  background-position: -64px -160px;
}
.flag-gp {
  background-position: -96px -160px;
}
.flag-gq {
  background-position: -128px -160px;
}
.flag-gr {
  background-position: -160px -160px;
}
.flag-gt {
  background-position: -192px -160px;
}
.flag-gu {
  background-position: -224px -160px;
}
.flag-gw {
  background-position: -256px -160px;
}
.flag-gy {
  background-position: -288px -160px;
}
.flag-hk {
  background-position: -320px -160px;
}
.flag-hn {
  background-position: -352px -160px;
}
.flag-hr {
  background-position: -384px -160px;
}
.flag-ht {
  background-position: -416px -160px;
}
.flag-hu {
  background-position: -448px -160px;
}
.flag-id {
  background-position: 0 -192px;
}
.flag-ie {
  background-position: -32px -192px;
}
.flag-il {
  background-position: -64px -192px;
}
.flag-im {
  background-position: -96px -192px;
}
.flag-in {
  background-position: -128px -192px;
}
.flag-iq {
  background-position: -160px -192px;
}
.flag-ir {
  background-position: -192px -192px;
}
.flag-is {
  background-position: -224px -192px;
}
.flag-it {
  background-position: -256px -192px;
}
.flag-je {
  background-position: -288px -192px;
}
.flag-jm {
  background-position: -320px -192px;
}
.flag-jo {
  background-position: -352px -192px;
}
.flag-jp {
  background-position: -384px -192px;
}
.flag-ke {
  background-position: -416px -192px;
}
.flag-kg {
  background-position: -448px -192px;
}
.flag-kh {
  background-position: 0 -224px;
}
.flag-ki {
  background-position: -32px -224px;
}
.flag-km {
  background-position: -64px -224px;
}
.flag-kn {
  background-position: -96px -224px;
}
.flag-kp {
  background-position: -128px -224px;
}
.flag-kr {
  background-position: -160px -224px;
}
.flag-kw {
  background-position: -192px -224px;
}
.flag-ky {
  background-position: -224px -224px;
}
.flag-kz {
  background-position: -256px -224px;
}
.flag-la {
  background-position: -288px -224px;
}
.flag-lb {
  background-position: -320px -224px;
}
.flag-lc {
  background-position: -352px -224px;
}
.flag-li {
  background-position: -384px -224px;
}
.flag-lk {
  background-position: -416px -224px;
}
.flag-lr {
  background-position: -448px -224px;
}
.flag-ls {
  background-position: 0 -256px;
}
.flag-lt {
  background-position: -32px -256px;
}
.flag-lu {
  background-position: -64px -256px;
}
.flag-lv {
  background-position: -96px -256px;
}
.flag-ly {
  background-position: -128px -256px;
}
.flag-ma {
  background-position: -160px -256px;
}
.flag-mc {
  background-position: -192px -256px;
}
.flag-md {
  background-position: -224px -256px;
}
.flag-me {
  background-position: -256px -256px;
}
.flag-mg {
  background-position: -288px -256px;
}
.flag-mh {
  background-position: -320px -256px;
}
.flag-mk {
  background-position: -352px -256px;
}
.flag-ml {
  background-position: -384px -256px;
}
.flag-mm {
  background-position: -416px -256px;
}
.flag-mn {
  background-position: -448px -256px;
}
.flag-mo {
  background-position: 0 -288px;
}
.flag-mq {
  background-position: -32px -288px;
}
.flag-mr {
  background-position: -64px -288px;
}
.flag-ms {
  background-position: -96px -288px;
}
.flag-mt {
  background-position: -128px -288px;
}
.flag-mu {
  background-position: -160px -288px;
}
.flag-mv {
  background-position: -192px -288px;
}
.flag-mw {
  background-position: -224px -288px;
}
.flag-mx {
  background-position: -256px -288px;
}
.flag-my {
  background-position: -288px -288px;
}
.flag-mz {
  background-position: -320px -288px;
}
.flag-na {
  background-position: -352px -288px;
}
.flag-nc {
  background-position: -384px -288px;
}
.flag-ne {
  background-position: -416px -288px;
}
.flag-ng {
  background-position: -448px -288px;
}
.flag-ni {
  background-position: 0 -320px;
}
.flag-nl {
  background-position: -32px -320px;
}
.flag-no {
  background-position: -64px -320px;
}
.flag-np {
  background-position: -96px -320px;
}
.flag-nr {
  background-position: -128px -320px;
}
.flag-nz {
  background-position: -160px -320px;
}
.flag-om {
  background-position: -192px -320px;
}
.flag-pa {
  background-position: -224px -320px;
}
.flag-pe {
  background-position: -256px -320px;
}
.flag-pf {
  background-position: -288px -320px;
}
.flag-pg {
  background-position: -320px -320px;
}
.flag-ph {
  background-position: -352px -320px;
}
.flag-pk {
  background-position: -384px -320px;
}
.flag-pl {
  background-position: -416px -320px;
}
.flag-pr {
  background-position: -448px -320px;
}
.flag-ps {
  background-position: 0 -352px;
}
.flag-pt {
  background-position: -32px -352px;
}
.flag-pw {
  background-position: -64px -352px;
}
.flag-py {
  background-position: -96px -352px;
}
.flag-qa {
  background-position: -128px -352px;
}
.flag-re {
  background-position: -160px -352px;
}
.flag-ro {
  background-position: -192px -352px;
}
.flag-rs {
  background-position: -224px -352px;
}
.flag-ru {
  background-position: -256px -352px;
}
.flag-rw {
  background-position: -288px -352px;
}
.flag-sa {
  background-position: -320px -352px;
}
.flag-sb {
  background-position: -352px -352px;
}
.flag-sc {
  background-position: -384px -352px;
}
.flag-sd {
  background-position: -416px -352px;
}
.flag-se {
  background-position: -448px -352px;
}
.flag-sg {
  background-position: 0 -384px;
}
.flag-si {
  background-position: -32px -384px;
}
.flag-sk {
  background-position: -64px -384px;
}
.flag-sl {
  background-position: -96px -384px;
}
.flag-sm {
  background-position: -128px -384px;
}
.flag-sn {
  background-position: -160px -384px;
}
.flag-so {
  background-position: -192px -384px;
}
.flag-sr {
  background-position: -224px -384px;
}
.flag-st {
  background-position: -256px -384px;
}
.flag-sv {
  background-position: -288px -384px;
}
.flag-sy {
  background-position: -320px -384px;
}
.flag-sz {
  background-position: -352px -384px;
}
.flag-tc {
  background-position: -384px -384px;
}
.flag-td {
  background-position: -416px -384px;
}
.flag-tg {
  background-position: -448px -384px;
}
.flag-th {
  background-position: 0 -416px;
}
.flag-tj {
  background-position: -32px -416px;
}
.flag-tl {
  background-position: -64px -416px;
}
.flag-tm {
  background-position: -96px -416px;
}
.flag-tn {
  background-position: -128px -416px;
}
.flag-to {
  background-position: -160px -416px;
}
.flag-tr {
  background-position: -192px -416px;
}
.flag-tt {
  background-position: -224px -416px;
}
.flag-tv {
  background-position: -256px -416px;
}
.flag-tw {
  background-position: -288px -416px;
}
.flag-tz {
  background-position: -320px -416px;
}
.flag-ua {
  background-position: -352px -416px;
}
.flag-ug {
  background-position: -384px -416px;
}
.flag-us {
  background-position: -416px -416px;
}
.flag-uy {
  background-position: -448px -416px;
}
.flag-uz {
  background-position: 0 -448px;
}
.flag-va {
  background-position: -32px -448px;
}
.flag-vc {
  background-position: -64px -448px;
}
.flag-ve {
  background-position: -96px -448px;
}
.flag-vg {
  background-position: -128px -448px;
}
.flag-vi {
  background-position: -160px -448px;
}
.flag-vn {
  background-position: -192px -448px;
}
.flag-vu {
  background-position: -224px -448px;
}
.flag-ws {
  background-position: -256px -448px;
}
.flag-ye {
  background-position: -288px -448px;
}
.flag-za {
  background-position: -320px -448px;
}
.flag-zm {
  background-position: -352px -448px;
}
.flag-zw {
  background-position: -384px -448px;
}

.select-header__wrapper {
  position: relative;
  min-width: 58px;
}
.select-header__block {
  position: relative;
  padding: 0 20px;
}
.select-header__block.show {
  min-width: 150px;
  background-color: #ffd354;
  box-shadow: 3px 3px 5px #222;
}
.select-header__block.show .select-header__form--second {
  background-color: #ffd354;
  display: block;
  opacity: 1;
  transition: 0.4s;
  box-shadow: 3px 3px 5px #222;
}
.select-header__block.show .select-header__form--second select {
  border: none;
  color: #000000;
}
.select-header__form {
  display: flex;
  align-items: flex-end;
  gap: 0 5px;
  cursor: pointer;
  padding: 0 10px 5px;
}
.select-header__form--second {
  display: none;
  opacity: 0;
  transition: 0.4s;
  position: absolute;
  padding: 0 20px;
  padding-bottom: 20px;
  left: 0;
  right: 0;
}
.select-header__form--second .buttons {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
.select-header__form--second .buttons input {
  width: 45%;
  border: none;
  cursor: pointer;
}
.select-header__form--second label {
  font-size: 0.75rem;
}
.select-header__form--second select {
  display: block;
  width: 100%;
}

.header--hidden .select-header__block.show {
  transform: translateY(165%);
}

@media screen and (max-width: 991.98px) {
  .select-header__block {
    padding: 0 5px;
    font-size: 0.75rem;
  }
  .select-header__form--second {
    padding: 5px 10px 10px;
  }
}
@media screen and (max-width: 767px) {
  .select-header__block label {
    font-size: 12px;
  }
  .header--hidden .select-header__block.show {
    transform: translateY(140%);
  }
}
@media screen and (max-width: 575.98px) {
  .header--hidden .select-header__block.show {
    transform: translateY(180%);
  }
  .title-lang {
    display: none;
  }
  .title-currency {
    display: none;
  }
  .slash {
    display: none;
  }
  .select-header__block.show {
    position: absolute;
    left: 0;
  }
  .select-header__block.show .title-lang {
    display: block;
  }
  .select-header__block.show .title-currency {
    display: block;
  }
}
.slider,
.slider-dots {
  overflow: hidden;
}

.slick-track {
  gap: 10px;
  display: flex;
}

.slider,
.slider-dots {
  overflow: hidden;
}

.slider-dot {
  display: block;
  cursor: pointer;
  max-width: 140px;
  border: 2px solid #ffd354;
  height: 140px;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 3px;
}

.slick-current .slider-dot {
  border-color: #ffd354;
}

.slick-slide {
  display: flex;
  height: auto;
  align-items: center;
}

.nav-prev,
.nav-next {
  top: 50%;
  left: 5%;
  bottom: 0;
  position: absolute;
  transform: translateY(-50%);
  background-image: url(../images/icon-arrow-left.png);
  width: 15px;
  height: 26px;
  background-repeat: no-repeat;
  background-size: cover;
  text-decoration: none;
  background-position: center center;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  padding: 0;
  text-indent: 100%;
  white-space: nowrap;
  z-index: 5;
}

.slider-dots {
  margin-top: 20px;
}

.product-main__gallery img {
  height: auto;
}

.slick-initialized .slick-slide {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .product-thumbs {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
.shopping-cart-order-btn {
    display: block;
    margin: 15px 0 10px;
    padding: 10px 20px;
    background-color: #FFD354;
    text-decoration: none;
    text-align: center;
    color: black;
    font-size: 0.9rem;
}

.cart-close {
    display: block;
    width: 100%;
    background-color: #e6e6e6;
    padding: 10px 20px;
    color: black;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 10px;
}

.col-5 img {
    width: 100%;
}

.text-uppercase {
    padding-top: 10px;
    color: black;
    text-decoration: none;
}

.custom-number {
    position: relative;
    width: 100px;
}

.custom-number-input {
    width: 100%;
    border: 1px solid #000;
    padding: 10px 10px 10px 40px;
    line-height: 1;
    box-sizing: border-box;
    outline: none;
    background: transparent;
}

.custom-number-minus {
    position: absolute;
    left: 3px;
    top: 3px;
    bottom: 3px;
    border: 0;
    background: transparent;
    color: #222;
    outline: none;
    margin: 0;
    padding: 0 10px;
    z-index: 2;
}

.custom-number-plus {
    position: absolute;
    right: 3px;
    top: 3px;
    bottom: 3px;
    border: 0;
    background: transparent;
    color: #222;
    outline: none;
    margin: 0;
    padding: 0 10px;
    z-index: 2;
}

input[type="number"] {

    -moz-appearance: textfield;

}


.mini-form>.custom-number {
    width: auto;
}


.custom-number-plus,
.custom-number-minus {
    top: 1px !important;
    cursor: pointer;
}


.shopping-cart-item {
    padding: 20px 0;
    border-bottom: 1px solid #e6e6e6;
}

.shopping-cart-item--img {
    display: block;
    margin: 10px auto;
    text-align: center;
    max-width: 120px;
    max-height: 120px;
    width: 100%;
    height: auto;
}

.shopping-cart-item--img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.shopping-cart-item--desc {
    max-width: 100%;
    display: block;
}

.shopping-cart-item--title {
    color: inherit;
    text-decoration: navajowhite;
    font-weight: 600;
    font-size: 0.7rem;
    margin-bottom: 5px;
    display: inline-block;
}

@media (min-width: 350px) {
    .shopping-cart-item--img {
        display: inline-block;
        margin: 0 30px 0 0;
        vertical-align: middle;
    }

    .shopping-cart-item--desc {
        max-width: calc(100% - 160px);
        display: inline-block;
        vertical-align: middle;
    }

    .shopping-cart-item--title {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
}

.shopping-cart-item--title:active, .shopping-cart-item--title:focus, .shopping-cart-item--title:visited {
    color: inherit;
    text-decoration: none;
}

.shopping-cart-item .custom-number {
    display: inline-block;
    vertical-align: middle;
}

.shopping-cart-item .custom-number {
    display: inline-block;
    vertical-align: middle;
}

.shopping-cart-item-price {
    vertical-align: middle;
    margin-left: 10px;
    font-size: 0.75rem;
}

.shopping-cart-item--remove {
    margin-top: 10px;
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    color: #c90000;
}

.shopping-cart--total-price {
    display: block;
    margin: 10px 0;
    font-size: 0.75rem;
}

.empty-cart-msg {
    color: #888;
    font-size: 0.7rem;
    display: block;
    text-align: center;
    margin: 30px 0;
}
