: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;

  --headerHeight: 64px;
}
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; justify-content: space-between;
  position: relative;
  scroll-behavior: smooth;
  padding: var(--headerHeight) var(--body-side-pad) 0;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  body {
    --body-side-pad: 0;
    padding: var(--headerHeight) 0 0 0;
    font-size: 20px;
  }
}
@media screen and (min-width: 1440px) {
  body {
    --body-side-pad: 0;
    padding: var(--headerHeight) 0 0 0;
    font-size: 24px;
  }
}
@media screen and (min-width: 1920px) {
  body {
    --body-side-pad: 0;
    padding: var(--headerHeight) 0 0 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 {

}
ul.asRow {
  display: flex; flex-direction: row;
}


.fullPopup {
  --fullPopupCloseSize: 24px;
  background: white;
  position: fixed; left: 0; top: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;

}
.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%;
}
.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);
}

.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }


.accordeon {
  margin: 20px 0;
  /*max-width: 900px;*/
}

.accordeon_item:not(:nth-child(1)) {
  border-top: 1px Solid #beb9b9;
}

/*.accordeon_item:last-child {
  border-bottom: 1px Solid #beb9b9;
}*/

.accordeon_item_header {
  padding: 27px 50px 27px 0;
  display: flex;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
}

.accordeon_item_header:hover .icon {
  background-color: #eeeeee;
}

.accordeon_item_header .title {
  font-size: 18px;
  text-transform: uppercase;
}

.accordeon_item .icon {
  background: white url('/imgs/icons/accordeon_expand_v2.svg') no-repeat center center;
  background-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -20px;
  transition: all 0.2s ease-in-out 0s;
  transform-origin: 50% 50%;
}

.accordeon_item .accordeon_item_body {
  height: 0;
  overflow: hidden;
  transition: all 0.2s ease-in-out 0s;
}

.accordeon_item_body_inner {
  padding-bottom: 27px;
  box-sizing: border-box;
}

.accordeon_item.expanded .accordeon_item_body {
  height: auto;
}

.accordeon_item.expanded .icon {
  transform: rotate(-180deg);
}

.ta-left { text-align: left; }
.ta-center { text-align: center; }
.ta-right { text-align: right; }
.ta-justify { text-align: justify; }