@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 120%;
  font-size: 16px;
  font-family: "Manrope";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

a {
  color: white;
}

/*-------------------------------------------------------------------------------------------------------*/
@font-face {
  font-family: "Kharkiv";
  src: url("../fonts/Kharkiv-Tone.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
._lock {
  overflow: hidden;
}










.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 20;
  visibility: hidden;
  -webkit-transition: 0.5s all ease 0s;
  transition: 0.5s all ease 0s;
  overflow-y: scroll;
}

._open {
  opacity: 1;
  visibility: visible;
  z-index: 100;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.popup__body {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  z-index: 20;
}

.popup__content {
  background-color: #ffffff;
  width: 100%;
  max-width: 1200px;
  position: relative;
}

.popup__cancel {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-image: url(../img/cancel.svg);
  background-size: cover;
}

.popup__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  padding: 80px;
}

.popup__inner-left {
  width: 100%;
  max-width: 540px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup__inner-left-main {
  width: 100%;
  height: 450px;
}
.popup__inner-left-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.popup__inner-left-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.popup__inner-left-row-item {
  cursor: pointer;
  width: 80px;
  height: 80px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border: 2px solid var(--green, rgba(54, 80, 70, 0));
}
.popup__inner-left-row-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.popup__inner-left-row-item-active {
  border: 2px solid var(--green, #365046);
}

.popup__inner-right {
  width: 100%;
  max-width: 460px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.popup__inner-right-name {
  color: var(--black, #333);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 31.2px */
}

.popup__inner-right-block {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3px;
}
.popup__inner-right-block:first-child {
  margin-top: 10px;
}

.popup__inner-right-block-title {
  color: var(--add-txt, #7A6C4A);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
}

.popup__inner-right-block-text {
  color: var(--black, #333);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
}

.popup__inner-right-row-count {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup__inner-right-row-count-block {
  padding: 8px 15px;
  border-radius: 50px;
  background: var(--grey, #C3C9C1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 110px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup__inner-right-row-count-block-minus {
  cursor: pointer;
  width: 16px;
  height: 16px;
  background-image: url(../img/minus-green.svg);
  background-size: cover;
}

.popup__inner-right-row-count-block-num {
  color: var(--black, #333);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
}

.popup__inner-right-row-count-block-plus {
  cursor: pointer;
  width: 16px;
  height: 16px;
  background-image: url(../img/plus-green.svg);
  background-size: cover;
}

.popup__inner-right-row-count-price {
  color: var(--green, #365046);
  font-family: "Kharkiv";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
}

.popup__inner-right-button {
  cursor: pointer;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 50px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: var(--light, #FFFCF5);
  text-align: center;
  font-family: "Kharkiv";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  padding: 16px 20px;
  border: 1px solid rgba(54, 80, 70, 0);
  background: var(--green, #365046);
}
.popup__inner-right-button:hover {
  background: var(--light, #FFFCF5);
  color: #365046;
  border: 1px solid #365046;
}

.lock {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  overflow-y: hidden;
  padding-right: 17px;
}

@media (max-width: 992px) {
  .lock {
    overflow-y: hidden;
    padding-right: 0px;
  }
}
@media (max-width: 992px) {
  .popup__body {
    padding: 0px;
  }
  .popup__cancel {
    position: absolute;
    top: 0px;
    left: 10px;
    background-image: url(../img/back.svg);
    background-size: cover;
  }
  .popup__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
    padding: 40px 20px 20px 20px;
  }
  .popup__inner-left {
    max-width: none;
    row-gap: 10px;
  }
  .popup__inner-left-main {
    width: 100%;
    height: 270px;
  }
  .popup__inner-left-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .popup__inner-left-row-item {
    width: 40px;
    height: 40px;
  }
  .popup__inner-right {
    max-width: none;
  }
  .popup__inner-right-name {
    font-size: 20px;
  }
  .popup__inner-right-block-text {
    font-size: 15px;
    line-height: 140%; /* 20.8px */
  }
  .popup__inner-right-row-count {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .popup__inner-right-button {
    width: 100%;
    text-align: center;
  }
}
.popup-busket .section__open-inner-items-left-form {
  margin-top: 12px;
}
.popup-busket .section__open-inner-items-left-text {
  text-align: center;
}
.popup-busket .popup__content {
  background-color: #ffffff;
  width: 100%;
  max-width: 570px;
  position: relative;
}
.popup-busket .popup__content .popup__cancel {
  display: none;
}

.popup__inner-busket {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.popup__inner-busket-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup__inner-busket-top-title {
  color: var(--black, #333);
  /* desktop/h3 */
  font-family: "Kharkiv";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
}

.popup__inner-busket-top-clear {
  color: var(--add-txt, #7A6C4A);
  cursor: pointer;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
}

.popup__inner-busket-items {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
}

.popup__inner-busket-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 26px;
}

.popup__inner-busket-item-photo {
  width: 100px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  height: 71px;
}
.popup__inner-busket-item-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.popup__inner-busket-item-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 380px;
  row-gap: 10px;
}
.popup__inner-busket-item-main .popup__inner-right-row-count {
  margin-top: 0px;
}

.popup__inner-busket-item-main-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.popup__inner-busket-item-main-top-name {
  color: var(--black, #333);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
}

.popup__inner-busket-item-main-top-price {
  color: var(--green, #365046);
  font-family: "Kharkiv";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 112.5% */
}

.popup__inner-busket-item-main-top-delete {
  position: absolute;
  cursor: pointer;
  width: 16px;
  height: 16px;
  background-image: url(../img/cancel.svg);
  background-size: cover;
  top: -5px;
  right: -26px;
}

.popup__inner-busket-itog {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.popup__inner-busket-itog-title {
  color: var(--black, #333);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
}

.popup__inner-busket-itog-price {
  color: var(--red, #EC8161);
  font-family: "Kharkiv";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 120% */
}

@media (max-width: 992px) {
  .popup-busket .section__open-inner-items-left-form {
    margin-top: 12px;
  }
  .popup-busket .popup__content {
    max-width: none;
    position: relative;
  }
  .popup-busket .popup__content .popup__cancel {
    display: block;
  }
  .popup__inner-busket {
    padding: 57px 15px 40px 15px;
  }
  .popup__inner-busket-top-title {
    font-size: 18px;
  }
  .popup__inner-busket-items {
    margin-top: 23px;
  }
  .popup__inner-busket-item-photo {
    width: 80px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
    height: 81px;
  }
  .popup__inner-busket-item-main-top-price {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 90px;
            flex: 0 0 90px;
  }
  .popup__inner-busket-item-main {
    max-width: none;
    row-gap: 10px;
  }
  .popup__inner-busket-item-main .popup__inner-right-row-count {
    margin-top: 0px;
  }
  .popup__inner-busket-item-main-top-name {
    font-size: 14px;
    line-height: 120%; /* 20.8px */
  }
  .popup__inner-busket-item-main-top-delete {
    top: 0px;
    right: -26px;
  }
  .popup__inner-busket-itog {
    margin-top: 30px;
  }
}