@import url('./blocks/_fonts.css');
@import url('./blocks/_header.css');
@import url('./blocks/_footer.css');
@import url('./blocks/viewcart-popup.css');

:root {
  --color-primary: #8dc63f;
  --color-primary-dark: #041a10;
  --color-text-gray: #4c4c4d;
  --color-text-black: #041a10;
  --bg-color-primary-dark: #09452b;
}

html {
  overflow-x: clip;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  /* line-height: 1.4; */
  color: var(--color-text-gray);
  min-height: 100vh;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

p {
  margin: 0;
}

a,
input {
  font: inherit;
  color: inherit;
  text-decoration: none;
  transition: all 125ms ease;
}

a:hover {
  color: var(--color-primary);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

main {
  flex-grow: 1;
}

.desc ul {
  list-style: revert;
  padding: revert;
  margin: revert;
}

.desc h2,
.desc h3,
.desc h4 {
  color: inherit;
}
.desc h3 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 14px;
}

.desc p + p {
  margin-top: 14px;
}

.breadcrumb-pan {
  padding-top: 1em;
}

.breadcrumb {
  margin: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  color: #475467;
}

h1,
.h1 {
  font-size: 48px;
  line-height: 1.04583;
  font-weight: 400;

}

h2,
.h2 {
  font-size: 32px;
  line-height: 1.3;
}

h3,
.h3 {
  font-size: 24px;
  line-height: 1.4;
}

h4,
.h4 {
  font-size: 20px;
  line-height: 1.4;
}

.js-adrecom-scrolltotop {
  font-size: 2rem;
  line-height: 50px;
  color: var(--color-primary-dark);
  text-align: center;
  width: 60px;
  height: 60px;
  background-color: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.09);
  border-radius: 100vw;
  display: grid;
  place-content: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transform: scale(0);
  transition: all 125ms;
  z-index: 1090;
  cursor: pointer;
}

.js-adrecom-scrolltotop.active {
  transform: scale(1);
}

.js-adrecom-scrolltotop i {
  transition: all 125ms;
}

.js-adrecom-scrolltotop:hover {
  color: #ffffff;
  background-color: var(--color-primary);
}

.js-adrecom-scrolltotop:hover i {
  transform: scale(0.9);
}

.form_err_message,
.form_email_error,
.form_password_error,
.form_mandatory_error,
.validate_terms_error {
  display: none;
  color: #cc0000;
  text-align: center;
}

.error_mess,
.submit_mess,
.soldout {
  color: #cc0000;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 3px solid #000000;
  border-right-color: transparent;
  border-radius: 100vw;
  animation: spin infinite 1s linear;
}

.cookie-consent__eyebrow {
  letter-spacing: 0.08em;
  color: var(--color-primary);
}

.cookie-consent {
  background-color: rgba(230, 238, 231, 0.96);
  z-index: 1200;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991.5px) {
  h1,
  .h1 {
    font-size: 40px;
  }

  h2,
  .h2 {
    font-size: 26px;
  }

  h3,
  .h3 {
    font-size: 22px;
  }

  h4,
  .h4 {
    font-size: 18px;
  }
}
