::-moz-selection {
  background-color: #4fc3f7;
  color: #fff;
}

::selection {
  background-color: #4fc3f7;
  color: #fff;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
  border-color: #fff;
}

input:required:valid,
textarea:required:valid {
  border-color: #fff;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000;
  font-family: Roboto,sans-serif;
  font-size: 1.6rem;
  height: 100%;
  line-height: 1.1875;
  min-width: 320px;
  overflow-x: hidden;
  position: relative;
}

body.lock {
  overflow: hidden;
  padding-right: 17px;
}

:root {
  scroll-behavior: auto;
}

html {
  font-size: 10px;
  height: 100%;
  scroll-behavior: auto;
}

.wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  opacity: 0;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

main {
  -webkit-box-flex: 1;
  background: #ecedef;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  overflow: hidden;
}

footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.header {
  background: #2d3248;
  height: 8.5rem;
}

.header .container,
.header__wrap {
  height: 100%;
}

.header__wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

.header__logo img {
  max-width: 16.8rem;
}

.header__company {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: right;
}

.header__company span:first-of-type {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.1666666667;
  margin-bottom: .2rem;
  text-transform: uppercase;
}

.header__company span:last-of-type {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.1428571429;
}

input,
textarea {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

button:focus {
  outline: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.wrapper {
  position: relative;
}

.wrapper:after {
  background: transparent;
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -webkit-transition-duration: .45s;
  -o-transition-duration: .45s;
  transition-duration: .45s;
  visibility: hidden;
  width: 100%;
  z-index: -1;
}

.wrapper.fade:after {
  background: rgba(28, 23, 23, .8);
  content: "";
  height: 100%;
  left: 0;
  pointer-events: auto;
  position: absolute;
  top: 0;
  visibility: visible;
  width: 100%;
  z-index: 150;
}

input[type=search]::-ms-clear {
  display: none;
  height: 0;
  width: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  height: 0;
  width: 0;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.input,
.input-modal,
.textarea {
  background: transparent;
  border: none;
  border-bottom: .1rem solid hsla(0, 0%, 100%, .5);
  border-radius: 0;
  color: #fff;
  font-family: WebGilroy,sans-serif;
  font-size: 2rem;
  font-weight: 400;
  padding: 0 0 .4rem;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  width: 100%;
}

.input-modal::-webkit-input-placeholder,
.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  color: #fff;
  opacity: .6;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.input-modal::-moz-placeholder,
.input::-moz-placeholder,
.textarea::-moz-placeholder {
  color: #fff;
  opacity: .6;
  -moz-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.input-modal:-ms-input-placeholder,
.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  color: #fff;
  opacity: .6;
  -ms-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.input-modal::-ms-input-placeholder,
.input::-ms-input-placeholder,
.textarea::-ms-input-placeholder {
  color: #fff;
  opacity: .6;
  -ms-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.input-modal::placeholder,
.input::placeholder,
.textarea::placeholder {
  color: #fff;
  opacity: .6;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.input-modal:focus::-webkit-input-placeholder,
.input:focus::-webkit-input-placeholder,
.textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}

.input-modal:focus::-moz-placeholder,
.input:focus::-moz-placeholder,
.textarea:focus::-moz-placeholder {
  opacity: 0;
}

.input-modal:focus:-ms-input-placeholder,
.input:focus:-ms-input-placeholder,
.textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

.input-modal:focus::-ms-input-placeholder,
.input:focus::-ms-input-placeholder,
.textarea:focus::-ms-input-placeholder {
  opacity: 0;
}

.input-modal:focus::placeholder,
.input:focus::placeholder,
.textarea:focus::placeholder {
  opacity: 0;
}

.input-modal {
  background: #f2f2f2;
  border-radius: 4px;
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 0 1.5rem;
}

.input-modal::-webkit-input-placeholder {
  color: #81869e;
  opacity: 1;
}

.input-modal::-moz-placeholder {
  color: #81869e;
  opacity: 1;
}

.input-modal:-ms-input-placeholder {
  color: #81869e;
  opacity: 1;
}

.input-modal::-ms-input-placeholder {
  color: #81869e;
  opacity: 1;
}

.input-modal::placeholder {
  color: #81869e;
  opacity: 1;
}

.textarea {
  padding: 1rem;
  resize: none;
}

.select-box {
  display: block;
  font-size: 1.7rem;
  max-width: 100%;
  position: relative;
  width: 100%;
}

.select-box__current {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border: .1rem solid #9b9b9b;
  border-radius: 0;
  border-radius: 4.5rem;
  color: #1f2229;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.7rem;
  font-weight: 400;
  height: 6.9rem;
  outline: none;
  padding-left: 2.9rem;
  padding-right: 2.9rem;
  position: relative;
}

.select-box__current:focus+.select-box__list {
  -webkit-animation-name: none;
  animation-name: none;
  opacity: 1;
}

.select-box__current:focus+.select-box__list .select-box__option {
  cursor: pointer;
}

.select-box__current:focus .select-box__icon {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.select-box__icon {
  position: absolute;
  right: 3.6rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
  width: 1rem;
}

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

.select-box__value:first-of-type .select-box__input-text {
  color: #1f2229;
}

.select-box__input {
  display: none;
}

.select-box__input:checked+.select-box__input-text {
  display: block;
}

.select-box__input-text {
  background-color: #fff;
  display: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.select-box__list {
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
  -webkit-animation-duration: .4s;
  animation-duration: .4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: HideList;
  animation-name: HideList;
  -webkit-animation-timing-function: step-start;
  animation-timing-function: step-start;
  background-color: #fff;
  border: none;
  -webkit-box-shadow: 0 6px 8px rgba(0, 0, 0, .15);
  box-shadow: 0 6px 8px rgba(0, 0, 0, .15);
  font-size: 1.7rem;
  list-style: none;
  margin-left: 2rem;
  margin-top: -.4rem;
  opacity: 0;
  padding: .3rem 0;
  position: absolute;
  width: 50.5%;
  z-index: 2;
}

.select-box__list li {
  margin-bottom: .6rem;
}

.select-box__list li:last-of-type {
  margin-bottom: 0;
}

.select-box__option {
  background: #efefef;
  display: block;
  margin-bottom: 0;
  padding: .5rem 2.2rem;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.select-box__option:focus,
.select-box__option:hover {
  background-color: #e23c5c;
  color: #fff;
}

@-webkit-keyframes HideList {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 1;
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
}

@keyframes HideList {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 1;
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
}

.control {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #2d3248;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.1875;
  margin-bottom: 0;
  min-height: 2.8rem;
  padding-left: 3.6rem;
  padding-top: 0;
  position: relative;
}

.control a {
  color: #cd1e40;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
}

.control a:after {
  background-color: #cd1e40;
  content: "";
  display: block;
  height: 1px;
  -webkit-transition: width .5s ease-out;
  -o-transition: width .5s ease-out;
  transition: width .5s ease-out;
  width: 100%;
}

.control a:hover {
  color: #cd1e40;
}

.control a:hover:after {
  width: 0;
}

.control input {
  left: .6rem;
  opacity: 0;
  position: absolute;
  top: .2rem;
  z-index: -1;
}

.control_indicator {
  background: #f2f2f2;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
  height: 2.8rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 2.8rem;
}

.control_indicator:after {
  -webkit-box-sizing: unset;
  box-sizing: unset;
  content: "";
  display: none;
  position: absolute;
}

.control-checkbox .control_indicator:after {
  background: url(../images/dist/checkbox.svg) 50%/contain no-repeat;
  height: .8rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1rem;
}

.control input:checked~.control_indicator:after {
  display: block;
}

.link {
  position: relative;
}

.link:hover {
  color: #4fc3f7;
}

.link:after {
  background: #212529;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  width: 100%;
}

.link:hover:after {
  width: 0;
}

.italic {
  font-style: italic;
}

.h1 {
  font-size: 5.5rem;
  font-weight: 600;
  line-height: 1.2181818182;
  margin: 0 auto 5.7rem;
  max-width: 90.9rem;
  position: relative;
}

.h1-inner {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 3rem;
  position: relative;
  text-transform: uppercase;
}

.h2 {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.h3 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2333333333;
}

img {
  height: auto;
  max-width: 100%;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

a:hover {
  color: #000;
  text-decoration: none;
}

.container {
  margin: 0 auto;
  max-width: 136rem;
  padding-left: 4rem;
  padding-right: 4rem;
}

.btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  background: #4fc3f7;
  border: none;
  border-radius: 4px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
  box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Roboto,sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: normal;
  line-height: normal;
  padding: 0 0 .1rem;
  text-shadow: none;
  text-transform: none;
  text-transform: uppercase;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.btn:hover {
  background: #80d4f9;
}

svg {
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.svg-hidden {
  display: none;
}

.fancybox-custom .fancybox-button {
  background: #1e1e20;
  color: #fff;
  height: 5.6rem;
  width: 5.6rem;
}

.fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
.fancybox-custom .fancybox-navigation .fancybox-button--arrow_right {
  background: #fff;
  color: #000;
  height: 5.6rem;
  padding: .5rem;
  width: 5.6rem;
}

.fancybox-custom.fancybox-is-open .fancybox-bg {
  background: #000;
  opacity: .85;
}

.swiper-wrapper {
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
}

.smp {
  padding-bottom: 14.6rem;
  padding-top: 6.6rem;
}

.smp__wrap {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tabs {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-right: 1.4rem;
}

.payment {
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, .1);
  box-shadow: 0 0 40px rgba(0, 0, 0, .1);
  max-width: 32.3rem;
  width: 100%;
}

.tabs {
  background: #e3e4e6;
  border-radius: 0 0 4px 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 63px rgba(0, 0, 0, .15);
  box-shadow: 0 0 63px rgba(0, 0, 0, .15);
}

.tabs__header {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

.tabs__header-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  background: #f1f1f1;
  border-radius: 4px 4px 0 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 31.3rem;
  overflow: hidden;
  padding: 2.3rem 2.5rem 1.6rem 2.6rem;
  position: relative;
  text-align: center;
  width: 100%;
}

.tabs__header-item:after {
  background: #4fc3f7;
  content: "";
  height: .9rem;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  -o-transition: all .45s cubic-bezier(.39, .575, .565, 1);
  transition: all .45s cubic-bezier(.39, .575, .565, 1);
  width: 100%;
}

.tabs__header-item span:first-of-type {
  color: #2d3248;
  font-size: 2.1rem;
  line-height: 1.1904761905;
  margin-bottom: .5rem;
}

.tabs__header-item span:last-of-type {
  color: #878787;
  font-size: 1.6rem;
  line-height: 1.1875;
}

.tabs__header-item.active {
  background: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .1);
  box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.tabs__header-item.active:after {
  opacity: 1;
}

.tabs__header-item.active span:first-of-type {
  font-weight: 500;
}

.tabs__body {
  background: #fff;
  padding: 3.6rem 3.8rem 7.9rem 2.9rem;
}

.tab__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 7.3rem;
}

.tab__item-photo {
  margin-right: 4.7rem;
  max-width: 42.1rem;
  padding-top: 1.4rem;
  width: 100%;
}

.tab__item-photo img {
  height: 45.5rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.tab__item-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.tab__item-desc-header {
  margin-bottom: 1.8rem;
}

.tab__item-desc-header h2 {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.1904761905;
  margin-bottom: .3rem;
}

.tab__item-desc-header p {
  color: #878787;
  font-size: 1.6rem;
  line-height: 1.1875;
  margin-bottom: 0;
}

.tab__item-desc-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  border-bottom: 1px solid #c8c8c8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  margin-bottom: .9rem;
  padding-bottom: 1.4rem;
}

.tab__item-desc-item:last-of-type {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.tab__item-desc-item span:first-of-type {
  font-weight: 600;
}

.tab__item-desc-item span:last-of-type {
  font-weight: 500;
}

.tab__item-price {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 3.3rem;
}

.tab__item-price-btn {
  height: 5rem;
  margin-left: 3.1rem;
  max-width: 22.2rem;
  width: 100%;
}

.quantity-inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bt-minus {
  background: transparent;
  border: none;
  color: #2d3248;
  cursor: pointer;
  font-size: 1.6rem;
  height: 2rem;
  line-height: 1.1875;
  margin: 0;
  padding: 0;
  position: relative;
  top: -.5rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 1.5rem;
}

.quantity {
  background: none;
  border: 1px solid #000;
  border-radius: 4px;
  color: #2d3248;
  font-size: 1.6rem;
  height: 5rem;
  line-height: 1.1875;
  margin: 0 1rem;
  max-width: 5.2rem;
  padding: 0;
  text-align: center;
}

.bt-plus {
  background: transparent;
  border: none;
  color: #2d3248;
  cursor: pointer;
  font-size: 1.6rem;
  height: 2rem;
  line-height: 1.1875;
  margin: 0;
  outline: none;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 1.5rem;
}

.tab__item-price-num {
  display: block;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.175;
  margin-right: 2.2rem;
}

.tabs__body-tab {
  display: none;
}

.tabs__body-tab.active-tab {
  -webkit-animation: fadeIn 1.2s;
  animation: fadeIn 1.2s;
  display: block;
}

.payment {
  padding: 3.1rem 2.9rem 2.4rem 3.5rem;
}

.payment h2 {
  border-bottom: 1px solid #c8c8c8;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.1904761905;
  margin-bottom: 2.6rem;
  padding-bottom: 2.9rem;
}

.payment__count-drevo {
  margin-bottom: 1.9rem;
}

.payment__count-drevo span {
  font-size: 2rem;
  line-height: 1.65;
}

.payment__type-drevo {
  font-size: 1.6rem;
  line-height: 1.1875;
  margin-bottom: 5.7rem;
}

.payment__type-drevo p {
  margin-bottom: .1rem;
}

.payment__type-drevo ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 .5rem;
}

.payment__type-drevo ul li:before {
  content: "- ";
}

.payment__price {
  margin-bottom: 1.7rem;
}

.payment__price p {
  font-size: 1.6rem;
  line-height: 1.1875;
  margin-bottom: .5rem;
}

.payment__price .main-price {
  font-size: 4.6rem;
  line-height: 1.1739130435;
  margin-bottom: 0;
}

.payment-btn {
  height: 5rem;
  width: 100%;
}

.modal .dialog__content {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
  overflow-y: auto;
  padding: 12.5rem 4rem 0;
  text-align: left;
  width: 100%;
}

.modal .dialog__overlay {
  background: rgba(0, 0, 0, .6);
}

.modal .dialog {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.modal .dialog__wrap {
  max-width: 114rem;
  width: 100%;
}

.modal .dialog__wrap:after {
  content: "";
  display: inline-block;
  height: 2rem;
  width: 100%;
}

.modal-form {
  background: #fff;
  border-radius: 4px;
  margin-bottom: .5rem;
  max-width: 114rem;
  padding: 7.8rem 7.4rem 4rem;
  position: relative;
  text-align: left;
  width: 100%;
}

.modal-form .input-modal {
  height: 6.1rem;
  width: 100%;
}

.modal-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  margin-bottom: 3rem;
}

.modal-form__row:last-of-type {
  margin-bottom: 0;
}

.modal-form__item {
  max-width: 31rem;
  width: 100%;
}

.modal-form__item label {
  display: block;
  margin-bottom: 0;
}

.modal-form__item-header {
  color: #2d3248;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: .7rem;
}

.modal-form__item-header span {
  color: #4fc3f7;
  padding-left: .4rem;
}

.close-modal__container {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  left: 0;
  padding-right: .5rem;
  padding-top: .5rem;
  position: absolute;
  top: 0;
  width: 100%;
}

.close-modal {
  background: url(../images/dist/close-modal.svg) 50%/1.6rem no-repeat;
  cursor: pointer;
  height: 3rem;
  width: 3rem;
}

.modal-form__row--submit {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  margin-top: 5.2rem;
}

.main-form-submit {
  height: 5rem;
  max-width: 22.2rem;
  width: 100%;
}

.modal-form--hidden {
  display: none;
  margin-bottom: 3rem;
  padding: 7.8rem 7.4rem 6.1rem;
}

.modal-form--hidden .modal-form__row--submit {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: -1rem;
}

.modal-form--hidden .control {
  color: #878787;
  font-size: 1.4rem;
  line-height: 1.1428571429;
}

.modal-form--hidden.active {
  display: block;
}

.smp-red .header {
  background: -webkit-gradient(linear, left bottom, left top, from(#9d070c), to(#e6272d));
  background: -o-linear-gradient(bottom, #9d070c 0, #e6272d 100%);
  background: linear-gradient(0deg, #9d070c, #e6272d);
}

.smp-red .footer {
  background: #e6282e;
}

.smp-red .footer__wrap,
.smp-red .footer__wrap a {
  color: #d2d2d2;
}

.smp-red .tabs__header-item:after {
  background: #bc8279;
}

.smp-red .btn {
  background: #bc8279;
}

.smp-red .btn:hover {
  background: #c5928a;
}

.smp-red .modal-form__item-header span {
  color: #bc8279;
}

.smp-red .header__logo img {
  max-width: 18.6rem;
}

.smp-green {
  font-family: Comfortaa,cursive;
}

.smp-green .header {
  background: -webkit-gradient(linear, left bottom, left top, from(#15705f), to(#3aa15a));
  background: -o-linear-gradient(bottom, #15705f 0, #3aa15a 100%);
  background: linear-gradient(0deg, #15705f, #3aa15a);
}

.smp-green .header__logo:first-of-type img {
  max-width: 19.8rem;
}

.smp-green .header__logo:nth-of-type(2) img {
  max-width: 14.3rem;
}

.smp-green .footer {
  background: #177260;
}

.smp-green .footer__wrap,
.smp-green .footer__wrap a {
  color: #d2d2d2;
}

.smp-green .tabs__header-item:after {
  background: #2f925c;
}

.smp-green .btn {
  background: #2f925c;
  font-family: Comfortaa,cursive;
}

.smp-green .btn:hover {
  background: #35a568;
}

.smp-green .modal-form__item-header span {
  color: #2f925c;
}

.smp-green .footer__col-2 {
  max-width: 35.2rem;
}

.smp-green .tab__item-desc-item span:first-of-type {
  font-weight: 700;
  margin-bottom: .3rem;
}

.smp-green .tab__item-desc-item span:last-of-type {
  font-weight: 400;
}

.smp-green .tab__item-price {
  padding-left: 0;
}

.smp-green .payment__type-drevo ul li:before {
  display: none;
}

.smp-green .payment__type-drevo p {
  margin-bottom: .6rem;
}

.modal .dialog__content {
  max-width: 114rem;
}

.footer {
  background: #2d3248;
  padding-bottom: 1.8rem;
  padding-top: 1.5rem;
}

.footer__wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #a5a5a5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  justify-content: space-between;
  line-height: 1.1428571429;
}

.footer__wrap p {
  margin-bottom: .6rem;
}

.footer__wrap p:last-of-type {
  margin-bottom: 0;
}

.footer__wrap a {
  color: #a5a5a5;
}

.footer__wrap a:hover {
  color: #fff;
}

.footer__col-1 {
  max-width: 36.3rem;
  width: 100%;
}

.footer__col-2 {
  max-width: 31.2rem;
  width: 100%;
}

.footer__col-3 {
  max-width: 41rem;
  width: 100%;
}

@media (min-width:767px) {
  .smp-green .tabs__header-item span:last-of-type {
    font-size: 1.5rem;
  }

  .smp-green .tabs__header-item {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .smp-green .tabs__header-item span:first-of-type {
    font-size: 2rem;
  }

  .smp-green .tab__item-price-num {
    margin-right: 4rem;
  }

  .smp-green .quantity {
    max-width: 6.5rem;
  }

  .smp-green .tab__item-price-btn {
    margin-left: 4.2rem;
    max-width: 23.8rem;
  }

  .smp-green .payment {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .smp-green .payment__type-drevo {
    margin-bottom: 5.3rem;
  }

  .smp-green .payment__count-drevo p {
    font-size: 1.5rem;
  }

  .smp-green .payment__count-drevo span {
    font-size: 1.9rem;
  }

  .smp-green .tabs__body-tab:nth-of-type(2) .tab__item-info {
    margin-bottom: 5rem;
  }

  .smp-green .tab__item-desc-item span:last-of-type {
    font-size: 1.6rem;
    font-weight: 400;
  }

  .smp-green .--geo span:last-of-type {
    font-size: 1.8rem;
  }

  .smp-green .footer__wrap {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .smp-green .footer {
    padding-bottom: 1.6rem;
    padding-top: 1.6rem;
  }

  .smp-green .modal-form--hidden .modal-form__item-header {
    min-height: 4.8rem;
  }
}

@media (max-width:1700px) {
  html {
    font-size: 9px;
  }
}

@media (max-width:1500px) {
  .select-box__current {
    height: 5.5rem;
  }

  .select-box__input-text {
    font-size: 1.6rem;
  }
}

@media (max-width:1430px) {
  html {
    font-size: 9px;
  }
}

@media (max-width:1320px) {
  html {
    font-size: 8px;
  }
}

@media (max-width:1200px) {
  .smp__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .tabs {
    margin-bottom: 4rem;
    margin-right: 0;
    width: 100%;
  }

  .tabs__header-item {
    max-width: 100%;
  }
}

@media (max-width:1100px) {
  body.lock {
    padding-right: 0;
  }

  .wrapper {
    opacity: 1;
    overflow-x: hidden;
  }
}

@media (max-width:767px) {
  html {
    font-size: 10px;
  }

  .header {
    height: 60px;
  }

  .header__logo img {
    max-width: 130px;
  }

  .header__company {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .header__company span:first-of-type {
    font-size: 16px;
  }

  .header__company span:last-of-type {
    display: none;
    font-size: 12px;
    max-width: 70%;
  }

  .input,
  .input-modal,
  .textarea {
    font-size: 16px;
    padding: 0 0 5px;
  }

  .input-modal {
    padding: 0 10px;
  }

  .textarea {
    padding: 13px;
  }

  .select-box {
    font-size: 14px;
    width: 100%;
  }

  .select-box__current {
    font-size: 15px;
    height: 54px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .select-box__icon {
    right: 25px;
    width: 10px;
  }

  .select-box__list {
    font-size: 15px;
    width: 70%;
  }

  .select-box__option {
    padding: 6px 20px;
  }

  .select-box__option:last-of-type {
    padding-bottom: 6px;
  }

  .h1 {
    font-size: 3.8rem;
    line-height: 1.1052631579;
  }

  .h1-inner {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .h2 {
    font-size: 25px;
    text-align: left;
  }

  .h3 {
    font-size: 20px;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .btn {
    font-size: 16px;
    height: 44px;
    line-height: 1;
    padding: 0;
  }

  .fancybox-custom .fancybox-button {
    height: 4rem;
    width: 4rem;
  }

  .fancybox-custom .fancybox-navigation .fancybox-button {
    top: calc(50% - 20px);
  }

  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_right {
    height: 4rem;
    width: 4rem;
  }

  .smp {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .tabs {
    margin-bottom: 20px;
  }

  .payment {
    max-width: 100%;
  }

  .tabs__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .tabs__header-item {
    border-bottom: 1px solid #dfdfdf;
    padding: 15px;
    text-align: left;
  }

  .tabs__header-item:last-of-type {
    border-color: transparent;
  }

  .tabs__header-item:after {
    height: 5px;
  }

  .tabs__header-item span:first-of-type {
    font-size: 15px;
    margin-bottom: 3px;
  }

  .tabs__header-item span:last-of-type {
    font-size: 13px;
  }

  .tabs__body {
    padding: 20px 15px 30px;
  }

  .tab__item-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
  }

  .tab__item-photo {
    margin-right: 0;
    max-width: 100%;
    padding-top: 0;
  }

  .tab__item-photo img {
    height: auto;
  }

  .tab__item-desc {
    padding: 20px 0;
  }

  .tab__item-desc-header h2 {
    font-size: 18px;
  }

  .tab__item-desc-header p {
    font-size: 15px;
  }

  .tab__item-desc-item {
    font-size: 15px;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }

  .tab__item-price {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding-left: 0;
  }

  .tab__item-price-btn {
    height: 44px;
    margin-left: 0;
    max-width: 100%;
  }

  .bt-minus {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 25px;
    top: -8px;
  }

  .quantity {
    font-size: 16px;
    height: 44px;
    max-width: 44px;
  }

  .bt-plus {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 25px;
  }

  .tab__item-price-num {
    font-size: 30px;
    margin-right: 0;
  }

  .payment {
    padding: 30px 15px;
  }

  .payment h2 {
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .payment__count-drevo {
    margin-bottom: 10px;
  }

  .payment__count-drevo p {
    font-size: 15px;
  }

  .payment__count-drevo span {
    font-size: 18px;
  }

  .payment__type-drevo {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .payment__price .main-price {
    font-size: 35px;
  }

  .modal .dialog__content {
    padding: 40px 15px 0;
  }

  .modal .dialog__wrap:after {
    height: 10px;
  }

  .modal-form {
    padding: 30px 15px;
  }

  .modal-form .input-modal {
    height: 50px;
  }

  .modal-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .modal-form__item {
    max-width: 100%;
  }

  .modal-form__row--submit {
    margin-top: 30px;
  }

  .main-form-submit {
    height: 50px;
    max-width: 100%;
  }

  .modal-form--hidden {
    padding: 30px 15px;
  }

  .modal-form--hidden .modal-form__row--submit {
    gap: 20px;
    margin-top: 0;
  }

  .modal-form--hidden .control {
    font-size: 12px;
  }

  .smp-red .header__logo img {
    max-width: 130px;
  }

  .smp-green .--geo span:last-of-type {
    font-size: 17px;
  }

  .smp-green .quantity {
    max-width: 55px;
  }

  .smp-green .header__logo:first-of-type img {
    max-width: 120px;
  }

  .smp-green .header__logo:nth-of-type(2) img {
    max-width: 90px;
  }

  .footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 12px;
    gap: 15px;
  }
}

@media (max-width:320px) {
  .smp-green .tab__item-price {
    gap: 15px;
  }
}

@media (prefers-reduced-motion:no-preference) {
  :root {
    scroll-behavior: auto;
  }
}