:root {
  font-size: 32px;
  line-height: 1.28125;
  letter-spacing: 0.4px;
  --fntJ: "Jost", sans-serif;
  --fntUnb: "Unbounded", Helvetica, Tahoma, Arial, sans-serif;
  --txtClr: #000000;
  --txtClrDark: #ffffff;

  --clrAccent: #B41C1B;
  --clrDarkGray: #1D1E1C;
  --clrLightGray: #D9D9D9;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}
html {
  height: 100%;
}
body {
  --body-side-pad: 30px;
  min-height: 100%;
  font-family: var(--fntJ);
  color: var(--txtClr);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.4px;
  display: flex; flex-direction: column;
  position: relative;
  scroll-behavior: smooth;
  padding: 0 var(--body-side-pad);
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  body {
    --body-side-pad: 0;
    padding: 0;
    font-size: 20px;
  }
}
@media screen and (min-width: 1440px) {
  body {
    --body-side-pad: 0;
    padding: 0;
    font-size: 24px;
  }
}
@media screen and (min-width: 1920px) {
  body {
    --body-side-pad: 0;
    padding: 0;
    font-size: 34px;
    line-height: 1.28125;
  }
}
body > :last-child {
  margin-top: auto;
}
body.disabledScroll {
  position: relative;
  overflow: hidden;
}

h2 {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  h2 {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 28px;
  }
}
@media screen and (min-width: 1440px) {
  h2 {
    font-weight: 600;
    font-size: 48px;
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 1920px) {
  h2 {
    font-weight: 600;
    font-size: 54px;
    margin-bottom: 40px;
  }
}



a,
a:active,
a:visited {
  color: var(--txtClr);
  text-decoration: none;
}
a:focus {
  color: var(--clrDarkGray);
}
a:hover {
  color: var(--clrAccent);
  /*text-decoration: underline; /* ?? */
}
p {

}


.dark a,
.dark a:active,
.dark a:visited {
  color: var(--txtClrDark);
}
.dark a:focus {
  color: var(--clrLightGray);
}
.dark a:hover {
  color: var(--clrAccent);
}
.dark p {
  color: var(--txtClrDark);
}

ul {
  margin-bottom: 0;
}
ul.noMarker {
  list-style: none;
  padding-left: 0;
}
ul.noMarker li {

}


.fullPopup {
  background: white;
  position: fixed; left: 0; top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;

  --fullPopupCloseSize: 24px;
}
.fullPopup .fullPopupClose {
  position: fixed; right: 10px; top: 10px;
  z-index: 9999;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.4s ease;
  width: var(--fullPopupCloseSize); height: var(--fullPopupCloseSize);
}
.fullPopup .fullPopupClose:hover {
  opacity: 1;
  transition: opacity 0.4s ease;
}
@media screen and (min-width: 768px) {
  .fullPopup {
    --fullPopupCloseSize: 50px;
  }
}
@media screen and (min-width: 1440px) {
  .fullPopup {
    --fullPopupCloseSize: 70px;
  }
}
@media screen and (min-width: 1920px) {
  .fullPopup {
    --fullPopupCloseSize: 80px;
  }
}

.fullPopup .fullPopupContent {
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 100%; height: 100%;
  overflow: auto;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(0.8*var(--fullPopupCloseSize));
}
.fullPopup.showed {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: scale(1);
}
.fullPopup.showed .fullPopupContent {
  transform: scale(1);
}

/* Плашка в корзине: бесплатная доставка от 200 PV */
.basket-corridor__notice {
  margin: 1rem 0 1.25rem;
  padding: 0.875rem 1rem;
  background: #FDE8E8;
  border: 1px solid #f5c6c6;
  border-radius: 12px;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #131415;
  text-align: center;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .basket-corridor__notice {
    margin: 0.5rem 0 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.35;
  }
}

.volPriceGrp {
  display: flex; align-items: center;
}
.partnerVolume {
  color: var(--clrAccent);
}