.header {
  background-color: #ffffff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 15;
  border-radius: 0 0 20px 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.header.is-open {
  border-radius: 0;
}

.header.is-open::before {
  position: fixed;
  left: 0;
  top: 100px;
  content: "";
  width: 100%;
  z-index: -1;
  height: 100vh;
  background-color: rgba(92, 105, 64, 0.4);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 80px;
}

.header__logo {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.header__logo a {
  display: block;
}

.header__logo img {
  height: 60px;
  width: 60px;
  display: block;
}

.cart-header {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  position: relative;
}

.cart-header__icon {
  display: block;
  position: relative;
}

.cart-header__icon span {
  text-align: center;
  position: absolute;
  height: 28px;
  top: -14px;
  right: -14px;
  font-size: 12px;
  width: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-radius: 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fed001;
}

.cart-header__icon svg {
  fill: #000;
  height: 40px;
  width: 40px;
}

.main-menu {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.main-menu--open .main-menu__navigation {
  display: block;
}

.main-menu__burger {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  position: relative;
}

.main-menu__burger::before {
  width: 32px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -16px;
  margin-top: -4px;
  content: "";
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.main-menu__burger::after {
  width: 32px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -16px;
  margin-top: 4px;
  content: "";
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.main-menu__burger.is-active::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -1px;
}

.main-menu__burger.is-active::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: -1px;
}

.main-menu__navigation {
  display: none;
  position: absolute;
  left: 0;
  top: 80px;
  width: 100%;
  max-height: calc(100vh - 80px);
  overflow: auto;
  background-color: #ffffff;
  padding: 10px 16px;
  border-radius: 0 0 20px 20px;
}

.main-menu__item {
  padding: 10px 0;
  position: relative;
}

.main-menu__item > a {
  color: #000;
  font-weight: 600;
  font-size: 18px;
}

.no-touch .main-menu__item:hover .main-menu__child {
  display: block;
}

.main-menu__child {
  display: block;
  margin-top: 20px;
  padding-left: 16px;
}

.main-menu__child li + li {
  margin-top: 15px;
}

.main-menu__child li > a {
  color: #000;
  font-weight: 600;
  font-size: 16px;
}

.now_cart {
  position: absolute;
  right: 0px;
  top: 115%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 3;
  padding: 5px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(150, 150, 150, 0.2);
  box-shadow: 0 0 10px rgba(150, 150, 150, 0.2);
  border-radius: 15px;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: none;
}

.now_cart.add_cart_now_ac {
  opacity: 1;
}

.card_img_now {
  height: 50px;
  width: 50px;
  display: block;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 10px;
  border-radius: 10px;
}

.info_now_cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 10px;
}

.midlles {
  margin: auto;
}

.name_now_cart {
  color: #000;
  white-space: nowrap;
  font-size: 16px;
}

.name_now_cart_add {
  color: #000;
  font-size: 13px;
}

.footer {
  background-color: #000;
  z-index: 10;
  border-radius: 20px 20px 0 0;
  -webkit-box-shadow: 0 0 10px rgba(92, 105, 64, 0.4);
  box-shadow: 0 0 10px rgba(92, 105, 64, 0.4);
}

.footer__row {
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer__logo {
  display: none;
}

.footer__logo img {
  height: 60px;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.footer__social a {
  height: 40px;
  background-color: #ffffff;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.no-touch .footer__social a:hover {
  background-color: #C91C16;
}

.no-touch .footer__social a:hover svg {
  fill: #ffffff;
}

.footer__social a svg {
  width: 24px;
  height: 24px;
  fill: #000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.footer__social a + a {
  margin-left: 5px;
}

.footer__contacts a {
  font-size: 20px;
  color: #ffffff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.no-touch .footer__contacts a:hover {
  color: #9e7e60;
}

body {
  padding-top: 100px;
}

.warning_red {
  font-size: 16px;
  color: #000;
}

.cart-page__title {
  margin-bottom: 50px;
}

.main-section {
  margin: 50px 0;
}

.main-section:last-child {
  margin-bottom: 0;
}

.line-item-cell {
  border-bottom: 1px solid rgba(92, 105, 64, 0.3);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}

.line-item-cell--delivery {
  grid-template-columns: 80px 1fr 130px;
}

.line-item-cell--delivery .pic_lazyload {
  display: none;
}

.line-item-cell img {
  display: block;
}

.line-item-cell .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 18px;
  grid-column: 2 span/auto;
}

.line-item-cell .drop-item {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 15px;
}

.line-item-cell .drop-item .drop {
  font-size: 0;
}

.line-item-cell .drop-item .drop img {
  height: 30px;
  width: 30px;
}

.no-touch .line-item-cell .drop-item .drop:hover {
  background-color: #000000;
}

.line-item-cell .one-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 16px;
  margin-left: 10px;
}

.line-item-cell .drop-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 20px;
}

.line-item-cell .all-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 20px;
}

.line-item-cell .pic_lazyload {
  background-color: #ffffff;
  height: 200px;
  width: 200px;
  padding: 8px;
  border-radius: 15px;
}

.line-item-cell .pic_lazyload img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  border-radius: 10px;
}

.line-item-cell .min-max-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.line-item-cell .min-max-cell .middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.line-item-cell .min-max-cell .minus,
.line-item-cell .min-max-cell .plus {
  height: 40px;
  width: 40px;
  background-color: #000;
  text-align: center;
  font-size: 30px;
  display: block;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.no-touch .line-item-cell .min-max-cell .minus:hover,
.no-touch .line-item-cell .min-max-cell .plus:hover {
  opacity: 0.7;
}

.line-item-cell .min-max-cell .minus::before,
.line-item-cell .min-max-cell .plus::before {
  width: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -6px;
  margin-top: -1px;
  height: 2px;
  border-radius: 2px;
  background-color: #ffffff;
  content: "";
}

.line-item-cell .min-max-cell .plus::after {
  height: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -6px;
  margin-left: -1px;
  width: 2px;
  border-radius: 2px;
  background-color: #ffffff;
  content: "";
}

.line-item-cell .min-max-cell .cnt_val {
  width: 70px;
  height: 50px;
  border: 2px solid #000;
  text-align: center;
  border-radius: 10px;
  outline: none;
  margin: 0 5px;
}

.cart-form {
  margin-top: 50px;
}

.cart-form h3 {
  text-align: center;
}

.cart-form .dasdasdwdqw {
  text-align: center;
}

.form-zakaz {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
  margin-bottom: 50px;
}

.form-zakaz .label {
  font-weight: 600;
  padding-left: 20px;
  margin-bottom: 10px;
}

.form-zakaz .justify-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
}

.form-zakaz [type=text] {
  padding: 0 20px;
  height: 56px;
  width: 100%;
  border-radius: 20px;
  border: none;
  outline: none;
  background-color: #f7f5f0;
}

.form-zakaz textarea {
  padding: 15px 20px;
  min-height: 150px;
  resize: none;
  width: 100%;
  border-radius: 20px;
  border: none;
  outline: none;
  background-color: #f7f5f0;
}

.all-price-information {
  margin-bottom: 150px;
  text-align: center;
  position: relative;
}

.all-price-information .error {
  position: absolute;
  bottom: -40px;
}

.all-price-information .middle-span {
  font-size: 20px;
  margin-top: 30px;
}

.all-price-information .checkoutbutton {
  padding: 20px 32px;
  border-radius: 10px;
  cursor: pointer;
  color: #ffffff;
  display: block;
  text-transform: uppercase;
  font-size: 18px;
  width: 100%;
  background-color: #000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.no-touch .all-price-information .checkoutbutton:hover {
  background-color: #000000;
}

.dostavka {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 10px;
}

.dostavka [type=radio] {
  display: none;
}

.dostavka [type=radio] + label {
  padding: 0 20px;
  height: 56px;
  width: 100%;
  border-radius: 20px;
  border: none;
  outline: none;
  background-color: #f7f5f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background-size: 20px;
  background-position: center right 20px;
  background-repeat: no-repeat;
  padding-right: 50px;
}

.no-touch .dostavka [type=radio] + label:hover {
  background-color: #a7ffad;
}

.dostavka [type=radio]:checked + label {
  background-color: #a7ffad;
  background-image: url("/site/old/img/ok-mark.svg");
}

.catalog-section {
  margin-top: 50px !important;
}

@media only screen and (min-width: 768px) {
  .cart-form h3 {
    text-align: left;
  }

  .cart-form .dasdasdwdqw {
    text-align: left;
  }
}

@media only screen and (min-width: 992px) {
  .header {
    border-radius: 0 0 50px 50px;
  }

  .header__logo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .cart-header {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .main-menu {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .main-menu__burger {
    display: none;
  }

  .main-menu__navigation {
    position: relative;
    left: initial;
    top: initial;
    padding: 0;
    border-radius: initial;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    overflow: initial;
    display: block;
  }

  .main-menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .main-menu__item {
    padding: 15px 0;
  }

  .main-menu__item + .main-menu__item {
    margin-left: 40px;
  }

  .main-menu__child {
    display: none;
    position: absolute;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 10px rgba(92, 105, 64, 0.4);
    box-shadow: 0 0 10px rgba(92, 105, 64, 0.4);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: calc(100% + 40px);
    left: -20px;
    padding: 20px;
    margin-top: 0;
    border-radius: 10px;
    top: 90%;
  }

  .footer {
    border-radius: 50px 50px 0 0;
  }

  .footer__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer__logo {
    display: block;
  }

  .footer__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer__social {
    margin-bottom: 0;
    margin-right: 30px;
  }

  body {
    padding-top: 140px;
  }

  .main-section {
    margin: 100px 0;
  }

  .line-item-cell {
    grid-template-columns: 80px 1fr 170px 150px;
    padding-right: 50px;
  }

  .line-item-cell--delivery {
    grid-template-columns: 80px 1fr 130px;
  }

  .line-item-cell--delivery .pic_lazyload {
    display: block;
  }

  .line-item-cell .name {
    grid-column: initial;
  }

  .line-item-cell .drop-item {
    margin-top: 38px;
  }

  .line-item-cell .pic_lazyload {
    padding: 10px;
    height: 80px;
    width: 80px;
  }

  .form-zakaz {
    padding: 30px;
  }

  .form-zakaz .justify-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-zakaz .full {
    grid-column: 3 span/auto;
  }

  .form-zakaz .full-input {
    grid-column: 2 span/auto;
  }

  .all-price-information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .all-price-information .middle-span {
    font-size: 30px;
    margin-top: 0;
  }

  .all-price-information .checkoutbutton {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .dostavka {
    grid-column: 2 span/auto;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (min-width: 1361px) {
  .header__row {
    height: 90px;
  }

  .header__logo img {
    height: 70px;
    width: 70px;
  }

  .now_cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .warning_red {
    margin-left: 20px;
    line-height: 36px;
  }

  .cart-page__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .line-item-cell {
    grid-template-columns: 80px 1fr 170px 150px 130px;
    padding-right: 0;
  }

  .line-item-cell--delivery {
    grid-template-columns: 80px 1fr 130px;
  }

  .line-item-cell .drop-item {
    position: relative;
    top: initial;
    margin-top: initial;
  }

  .line-item-cell .drop-item .drop {
    padding: 12px 30px;
    border-radius: 10px;
    cursor: pointer;
    color: #ffffff;
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #000;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }

  .line-item-cell .drop-item .drop img {
    display: none;
  }
}
/*# sourceMappingURL=../sourcemaps/cart/style.css.map */
