@charset "UTF-8";

/*
.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

.header--ico {
  padding-left: 40px;
  background-position: left center;
  background-repeat: no-repeat;
}

.header--ico.phone {
  background-image: url(../images/phone.png);
}

.header--ico.clock {
  background-image: url(../images/Clock.png);
  background-size: 30px;
}

.header_top {
  padding: 20px 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header_top .border {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-right: 1px solid #f4f4f4;
  padding-right: 15px;
  margin-right: 15px;
}

.header_top .border:last-child {
  border: 0;
}

.header__logo {
  position: relative;
}

.header__logo a {
  display: flex;
  align-items: center;
}

.header__logo img {
  margin: 0 15px;
  height: auto;
}

.header__logo .slogan {
  color: #8b8b8b;
  font-size: 14px;
}

.header__number {
  max-width: 230px;
}

.header__number--link {
  font-size: 18px;
  color: #00ab37;
  width: 100%;
  line-height: 1.3;
  transition: 0.2s;
  left: 0px;
  position: relative;
}

.header__number--link:hover {
  left: 5px;
  opacity: 0.5;
}

.header__number--popup {
  border-bottom: 1px dotted #00ab37;
  color: #191919;
  margin-top: 10px;
  transition: 0.2s;
  left: 0px;
  position: relative;
}

.header__number--popup:hover {
  left: 5px;
  border-color: transparent;
}

.header__time-list li {
  width: 100%;
  color: #313131;
}

.header__time-show {
  margin-left: 0px;
  margin-top: 10px;
  border-bottom: 1px dotted #00ab37;
  line-height: 1.5;
  position: relative;
  transition: 0.2s;
}

.header__time-show::before {
  content: '';
  width: 15px;
  height: 20px;
  background-image: url(../images/gps_green.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: -22px;
  top: 2px;
}

.header__time-show:hover {
  border-color: transparent;
}

.header__link {
  max-width: 190px;
  padding-right: 15px;
}

.header__link a {
  display: block;
}

.header__link a:last-child {
  margin-bottom: 0;
  display: none;
}

.header__basket {
  width: 120px;
}

.header__basket a {
  width: 100%;
}

.header__basket-img {
  position: relative;
  text-align: center;
}

.header__basket-img img {
  position: relative;
  z-index: 2;
}

.header__basket-img span {
  position: absolute;
  width: 31px;
  height: 31px;
  background-color: #00ab37;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  top: -15px;
  right: 20px;
  z-index: 1;
  transition: 0.5s ease;
}

.header__basket-text {
  color: #6e6e6e;
  text-align: center;
  font-size: 12px;
}

.header__basket:hover .header__basket-img span {
  z-index: 10;
  width: 25px;
  height: 25px;
  right: calc(50% - 16px);
  top: -8px;
}

.header-mob__call {
  background-image: url(../images/phone_mob.png);
  width: 27px;
  height: 27px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  animation: call  1s infinite;
  display: none;
}

@keyframes call {
  0% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}

.header_bottom {
  background-color: #f2f4f5;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  position: relative;
}

.header_bottom-search {
  position: absolute;
  right: 17px;
  top: calc(50% - 15px);
}

.header_bottom-search__form {
  position: relative;
}

.header_bottom-search__text {
  position: absolute;
  width: 1170px;
  padding: 10px;
  background-color: #f2f4f5;
  right: -7px;
  z-index: 1;
  box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  padding-right: 35px;
  align-items: center;
  opacity: 0;
  top: 100px;
  transition: 0.3s ease-in-out;
  visibility: hidden;
}

.header_bottom-search__text input:not(.header_bottom-search-sbmt) {
  width: 95%;
  border: 0;
  border-bottom: 1px solid #9a9a9a;
  padding: 5px;
  background: transparent;
}

.header_bottom-search__text .close {
  width: 27px;
  height: 27px;
  cursor: pointer;
}

.header_bottom-search__text.open {
  top: -10px;
  opacity: 1;
  visibility: visible;
}

.header_bottom-search-sbmt {
  cursor: pointer;
  font-size: 0;
  width: 25px;
  height: 25px;
  border: 0;
  background: none;
  background-image: url(../images/search_ico.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10;
  position: relative;
}

.menu-nav {
  margin: 0;
  padding-left: 5px;
}

.menu-nav__list {
  display: flex;
}

.menu-nav__item {
  padding: 25px 0;
}

.menu-nav__item:last-child {
  border-right: 0;
}

.menu-nav__item:last-child a {
  border: 0;
}

.menu-nav__item:hover > a {
  color: #00ab37;
}

.menu-nav__item--active > a {
  color: #00ab37;
}

.menu-nav__link {
  padding: 0 18px;
  text-transform: uppercase;
  border-right: 2px solid #7d7d7d;
  font-weight: 500;
  color: #191919;
  font-size: 15px;
  transition: .2s ease-in;
  position: relative;
  letter-spacing: -0.03125rem;
}

.menu_burger {
  display: none;
}

#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
  width: 26px;
  height: 16px;
  position: relative;
  margin: 0px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #797979;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 18px;
}

#nav-icon1 span:nth-child(3) {
  top: 36px;
}

#nav-icon1.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* Icon 2 */
#nav-icon2 span {
  display: block;
  position: absolute;
  height: 9px;
  width: 50%;
  background: #d3531a;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
  top: 0px;
}

#nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
  top: 18px;
}

#nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
  top: 36px;
}

#nav-icon2.open span:nth-child(1), #nav-icon2.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2), #nav-icon2.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
  left: 5px;
  top: 7px;
}

#nav-icon2.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}

#nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
  left: 5px;
  top: 29px;
}

#nav-icon2.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 29px;
}

/* Icon 3 */
#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3) {
  top: 8px;
}

#nav-icon3 span:nth-child(4) {
  top: 16px;
}

#nav-icon3.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/* Icon 4 */
#nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(2) {
  top: 18px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(3) {
  top: 36px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}

#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 39px;
  left: 8px;
}

.footer {
  color: #a6a6a6;
}

.footer li a {
  transition: 0.3s;
  line-height: 1.3;
}

.footer li a:hover {
  opacity: .5;
}

.footer_zag {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.footer a {
  color: #a6a6a6;
}

.footer__top {
  padding: 50px 30px;
  background-color: #252525;
  color: #a6a6a6;
  display: flex;
  justify-content: space-between;
}

.footer__top-contact {
  max-width: 370px;
}

.footer__top-contact-logo {
  margin-bottom: 45px;
}

.footer__top-contact-logo a {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.4;
}

.footer__top-contact-logo img {
  margin-right: 10px;
}

/* .footer__top-contact-list {
  max-width: 300px;
} */

.footer__top-contact-item {
  background-repeat: no-repeat;
  padding-left: 30px;
  background-position: left top 5px;
  list-style: none;
  margin-bottom: 15px;
}

.footer__top-map {
  max-width: 400px;
  width: 100%;
  padding: 0 30px;
  display: flex;
  flex-wrap: wrap;
}

.footer__top-map-list {
  padding-right: 50px;
  margin-top: 20px;
}

.footer__top-map-list li {
  line-height: 1.4;
}

.footer__top-map-list:last-child {
  padding-right: 0;
}

.footer__top-list {
  /*margin-right: 100px;*/
}

.footer__top-list li {
  background-repeat: no-repeat;
  background-position: left top 0px;
  list-style: none;
  margin-bottom: 15px;
}

.footer__top-list .ss_li {
  padding-left: 30px;
  background-size: contain;
}

.footer__top-list:last-child {
  margin-right: 0;
}

.footer__top-list-container {
  display: flex;
}

.footer__bottom {
  background-color: #313131;
  padding: 30px 10px;
  font-size: 14px;
  text-align: center;
}

.link--gr-bl,
.link--gr-wt, .link--gr-bl_ {
  padding: 12px;
  border: 1px solid #39b54a;
  font-size: 10px;
  border-radius: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
  position: relative;
  text-align: center;
  border-radius: 25px !important;
}

.link--gr-bl span,
.link--gr-wt span, .link--gr-bl_ span {
  position: relative;
  transition: 0.3s;
}

/* .link--gr-bl:before,
.link--gr-wt:before, .link--gr-bl_:before {
  content: '';
  background-color: #39b54a;
  top: -1px;
  position: absolute;
  left: 0px;
  width: calc(100% + 1px);
  height: 0px;
  transition: 0.4s ease;
  z-index: 1;
  border-radius: 2px;
} */

.link--gr-bl:hover,
.link--gr-wt:hover, .link--gr-bl_:hover {
  color: #fff;
  background-color: #39b54a !important;
}

.link--gr-bl:hover span,
.link--gr-wt:hover span, .link--gr-bl_:hover span {
  z-index: 100;
}

.link--gr-bl:hover:before,
.link--gr-wt:hover:before, .link--gr-bl_:hover:before {
  height: calc(100% + 2px);
}

.link--gr-wt {
  padding: 15px 30px;
}

.link--gr-wt span {
  color: #fff;
}

.link_more {
  color: #00a72d;
  padding: 5px;
  padding-left: 0;
  padding-right: 40px;
  background-image: url(../images/ar_gr_r.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: 0.3s;
}

.link_more:hover {
  background-position: right 0px center;
}

.global__zag--full {
  padding: 40px 15px;
  margin: 0 auto;
  max-width: 900px;
}

.global__zag--half > div {
  text-align: left;
}

.global__zag--pt {
  padding-top: 0;
}

.global__zag-preview {
  color: #39b54a;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
}

.global__zag-h {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.global__zag-p {
  text-align: center;
}

.fb {
  background-image: url(../images/fn.png);
}

.inst {
  background-image: url(../images/inst.png);
}

.twit {
  background-image: url(../images/twit.png);
}

.gps {
  background-image: url(../images/gps.png);
}

.phone--g {
  background-image: url(../images/phone_grl.png);
}

.mail {
  background-image: url(../images/mail.png);
}

.input_check.styler {
  width: 25px;
  height: 25px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #e8e8e8;
}

.input_check.styler.jq-checkbox.focused {
  border: 1px solid #e8e8e8;
}

.input_check.styler.jq-checkbox.checked .jq-checkbox__div {
  width: 17px;
  height: 8px;
  margin: 5px 0 0 3px;
  border-bottom: 2px solid #666;
  border-left: 2px solid #666;
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
}

.jq-number.styler {
  width: 100px;
}

.jq-number__field {
  border-radius: 0;
  border: 1px solid #e8e8e8;
  box-shadow: none;
  background: #fff;
}

.jq-number__spin {
  height: 50%;
  border-radius: 0;
  background: none;
  box-shadow: none;
  border: 0;
  width: 25px;
}

.jq-number__field input {
  width: 75px;
  height: 45px;
  border-right: 1px solid #e8e8e8;
  border-radius: 0;
}

.jq-number.focused .jq-number__field {
  border: 1px solid #e8e8e8;
}

.jq-number:hover .jq-number__field {
  border: 1px solid #e8e8e8;
}

.jq-number__spin:hover {
  background: #e8e8e8;
  box-shadow: none;
}

.jq-number__spin:after {
  border: 0;
  top: 0;
  left: 0;
  width: 100%;
  background-image: url(../images/ar_bl_up.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  border: 0;
}

.jq-number__spin.minus:after {
  border: 0;
  top: 0;
  left: 0;
  width: 100%;
  background-image: url(../images/ar_bl_down.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  border: 0;
}

span.green {
  color: #39b54a;
  margin-top: -3px;
  margin-right: 3px;
}

.btn_refresh {
  font-size: 14px;
  padding: 5px;
  padding-right: 30px;
  background-image: url(../images/cancel.png);
  background-repeat: no-repeat;
  background-position: right 5px center;
  cursor: pointer;
  background-size: 15px;
}

.flex--block {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.seo__text {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 30px 40px;
}

.tooltip {
  position: absolute;
  right: 0;
  top: -3px;
  padding: 5px;
  z-index: 999;
}

.tooltip-container {
  position: relative;
}

.tooltip-img {
  background-image: url(../images/tooltips.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}

.tooltip-text {
  position: absolute;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  background-color: #f2f5f6;
  width: 150px;
  z-index: 999;
  left: -150px;
  bottom: 50px;
  border-radius: 3px;
  font-size: 12px;
  padding: 5px;
  opacity: 0;
  visibility: hidden;
  line-height: 1.3;
}

.tooltip-text::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 2.5px 0 2.5px;
  border-color: #f2f5f6 transparent transparent transparent;
  position: absolute;
  bottom: -3px;
  left: calc(50% - 2.5px);
}

.tooltip:hover .tooltip-text {
  bottom: 25px;
  left: -65px;
  opacity: 1;
  visibility: visible;
  transition: .3s;
}

.green {
  color: #00ab37;
  position: relative;
}

.required_email {
  transition: 0.3s;
}

.required_email.success,
.required_input.success {
  border-color: #00a72d !important;
}

.required_email.error,
.required_input.error {
  border-color: #39b54a !important;
}

.form_popup--input_textarea {
  height: 100px;
  border: 1px solid #e8e8e8;
  width: 100%;
  padding: 15px 10px;
  resize: none;
}

.bg--youtube {
  background-image: url(../images/youtube.png);
}

.btn_basket {
  padding: 13px 54px 13px 40px;
  background-image: url(../images/btn_basket.png);
  background-repeat: no-repeat;
  background-position: right 25px center;
  background-color: #39b54a;
  border: 1px solid #39b54a;
  color: #fff;
  text-transform: uppercase;
  transition: 0.3s;
}

.btn_basket:hover {
  color: #39b54a;
  background-color: #fff;
  background-image: url(../images/btn_basket_green.png);
}

.btn_basket.active {
  color: #39b54a;
  background-color: #fff;
  background-image: url(../images/btn_basket_green.png);
}

.btn_favorite {
  width: 48px;
  height: 48px;
  border: 1px solid #39b54a;
  transition: 0.3s;
  background-image: url(../images/btn_favorite.png);
  background-repeat: no-repeat;
  background-position: center;
}

.btn_favorite:hover {
  background-color: #39b54a;
  background-image: url(../images/btn_favorite_white.png);
}

.btn_favorite.active {
  background-color: #39b54a;
  background-image: url(../images/btn_favorite_white.png);
}

.ss {
  background-position: bottom;
  transition: .3s;
  background-size: 100px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.ss:hover {
  background-position: top;
}

.ss.fb {
  background-image: url(../images/ss.png);
  background-position: 5px -20px;
}

.ss.fb:hover {
  background-position: 5px 1px;
}

.ss.fb.active {
  background-image: url(../images/ss.png);
  background-position: left 5px bottom;
  background-size: 100px;
  background-position: 5px 1px;
}

.ss.tw {
  background-image: url(../images/ss.png);
  background-position: -80px -21px;
}

.ss.tw:hover {
  background-position: -80px -4px;
}

.ss.tw.active {
  background-image: url(../images/ss.png);
  background-position: left 5px bottom;
  background-size: 100px;
  background-position: -80px -4px;
}

.map {
  height: 500px;
  max-width: 700px;
  margin: 0 auto;
}

.popup-modal-dismiss {
  color: #fff;
  text-align: right;
  font-size: 18px;
  margin-bottom: 7px;
  width: 100%;
}

.mfp-container {
  display: flex;
  height: 100%;
  align-items: center;
}

.mfp-bg {
  opacity: 0.8;
}

.mfp-close {
  font-family: auto;
  font-size: 41px;
  color: #000000;
  opacity: 0.9;
}

.form--small .mfp-content {
  max-width: 370px;
}

.form--calculate .mfp-content {
  max-width: 770px;
}

.form_popup-small {
  background-color: #fcfcfc;
  padding: 40px 50px;
  border-radius: 5px;
}

.form_popup-calculate {
  background-color: #fcfcfc;
  padding: 40px 50px;
  border-radius: 5px;
}

.form_popup-calculate .form_popup-zag {
  text-align: left;
  width: 100%;
}

.form_popup-calculate form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form_popup-calculate .w50 {
  width: 50%;
}

.form_popup-calculate .w50 .form_popup-block:first-child {
  padding-right: 60px;
}

.form_popup-calculate label {
  color: #121212;
  line-height: 2;
  font-size: 16px;
  font-weight: 100;
}

.form_popup-zag {
  text-align: center;
  margin-bottom: 30px;
}

.form_popup-zag .zag {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.form_popup-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.form_popup-block:last-child {
  margin-bottom: 0;
}

.form_popup-block p {
  width: calc(100% - 37px);
  font-size: 14px;
  font-weight: 100;
  line-height: 1.5;
}

.form_popup-block p a {
  text-decoration: underline;
  color: #39b54a;
  margin-left: 5px;
}

.form_popup-block p a:hover {
  text-decoration: none;
}

.form_popup-block--sbmt {
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid #e8e8e8;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.form_popup-block--sbmt .form_popup--sbmt {
  width: auto;
  min-width: 265px;
}

.form_popup-num {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
  align-items: center;
}

.form_popup-num .name {
  margin-right: 10px;
}

.form_popup--input_text {
  padding: 15px 10px;
  border: 1px solid #e8e8e8;
  width: 100%;
  margin-bottom: 10px;
}

.form_popup--input_text:last-child {
  margin-bottom: 0;
}

.form_popup--sbmt {
  width: 100%;
  background-color: #39b54a;
  border: 1px solid #39b54a;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  padding: 18px 5px;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.2s;
}

.form_popup--sbmt:hover {
  color: #39b54a;
  background-color: #fff;
}

.form_popup-block--double {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
}

.form_popup-block--double .form_popup-block {
  width: 50%;
  text-align: left;
  margin-bottom: 0;
}

textarea.form_popup--input_text {
  height: 142px;
  margin-bottom: 43px;
  resize: none;
}

.form_popup-calculate .jq-file {
  width: 100%;
  box-shadow: none;
  border-radius: 0;
}

.form_popup-calculate .jq-file__name {
  padding: 15px 10px;
  border: 1px solid #e8e8e8 !important;
  width: 100%;
  margin-bottom: 10px;
  height: auto;
  box-shadow: none;
  border-radius: 2px;
  font: inherit;
  font-size: 16px;
  margin-bottom: 0;
  outline: none !important;
  color: #8f8f8f;
}

.form_popup-calculate .jq-file__browse {
  width: 50px;
  height: calc(100% - 2px);
  border: 0;
  box-shadow: none;
  background: none;
  border-left: 1px solid #e8e8e8;
  font-size: 0;
  background: url(../images/file.png) no-repeat center, #cbcbcb;
  border-radius: 0;
}

.form_popup-calculate .jq-file:hover .jq-file__browse {
  background: url(../images/file.png) no-repeat center, #cbcbcb;
}

.form_popup-raschet label {
  color: #121212;
  font-weight: 500;
}

.form_popup-raschet .w50:nth-child(3) .form_popup-block {
  padding-right: 0;
}

@media screen and (max-width: 600px) {
  .form_popup-block--double .form_popup-block {
    width: 100%;
    margin-bottom: 10px;
  }
  .form_popup-block--double {
    flex-wrap: wrap;
  }
  textarea.form_popup--input_text {
    height: 50px;
    margin-bottom: 20px;
  }
  .form_popup-calculate .jq-file__name {
    padding: 10px;
  }
  .form_popup-zag .zag {
    padding-right: 20px;
  }
}

.main__slide::before {
  content: '';
  background-color: #fff;
  width: 70px;
  left: -70px;
  top: 0;
  position: absolute;
  height: 100%;
  z-index: 2;
}

.main__slide::after {
  content: '';
  background-color: #fff;
  width: 70px;
  right: -70px;
  top: 0;
  position: absolute;
  height: 100%;
}

.main__slide .slick-list.draggable {
  overflow: visible;
}

.main__slide-slide {
  height: 570px;
  margin-top: 15px;
  background-size: cover;
  opacity: .3;
  transition: 0.5s;
}

.main__slide-text::before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85098) 0%, rgba(0, 0, 0, 0.41) 50%, transparent 100%);
}

.main__slide-text > div {
  max-width: 830px;
  position: relative;
  z-index: 2;
}

.main__slide-text .zag {
  font-size: 48px;
  margin-bottom: 30px;
  left: 200px;
  opacity: 0;
  transition: 1s;
  transition-delay: 0.8s;
  position: relative;
}

.main__slide-text .zag span {
  color: #00ab37;
  font-weight: bold;
}

.main__slide-text .desc {
  margin-bottom: 30px;
  left: 200px;
  opacity: 0;
  transition: 1s;
  transition-delay: 1.2s;
  position: relative;
}

.main__slide-text .link--gr-wt {
  font-size: 14px;
  left: 200px;
  opacity: 0;
  transition: 1s;
  transition-delay: 1.4s;
}

.main__slide .slick-prev {
  left: 30px;
}

.main__slide .slick-next {
  right: 30px;
}

.main__slide .slick-prev,
.main__slide .slick-next {
  background-color: transparent;
  border: 1px solid #3cb878;
  border-radius: 2px;
  width: 50px;
  height: 50px;
  z-index: 3;
  transition: .3s;
}

.main__slide .slick-prev:hover,
.main__slide .slick-next:hover {
  background-color: #3cb878;
}

.main__slide .slick-prev:before {
  content: url(../images/ar_w_l.png);
}

.main__slide .slick-next:before {
  content: url(../images/ar_w_r.png);
}

.main__slide-slide.slick-current.slick-active {
  opacity: 1;
}

.main__slide-slide.slick-current.slick-active .zag {
  left: 0;
  opacity: 1;
}

.main__slide-slide.slick-current.slick-active .desc {
  left: 0;
  opacity: 1;
}

.main__slide-slide.slick-current.slick-active .link--gr-wt {
  left: 0;
  opacity: 1;
}

.main__product {
  padding: 35px 0;
  border-bottom: 1px solid #e5e5e5;
}

.main__product--page {
  padding: 0;
}

.main__product-container {
  display: flex;
  flex-wrap: wrap;
}

.main__product-item {
  width: calc(25% - 23px);
  margin-right: 30px;
  height: 190px;
  margin-bottom: 30px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.5s;
}

.main__product-item:nth-child(4n) {
  margin-right: 0;
}

.main__product-item:hover {
  transform: scale(0.9);
}

.main__product-item:hover .main__product-name {
  min-height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.main__product-name {
  width: 100%;
  min-height: 49px;
  padding: 15px 8px;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.main__product-link {
  width: 100%;
  text-align: center;
}

.main__product-link a {
  font-size: 14px;
  padding: 15px 20px;
}

.progress_job {
  padding: 30px 30px 60px;
}

.progress_job-container {
  display: flex;
  justify-content: space-between;
}

.progress_job-block {
  padding-right: 60px;
  position: relative;
}

.progress_job-block::before {
  content: '';
  background-color: #e2e2e2;
  width: 100%;
  position: absolute;
  height: 2px;
  top: 35px;
  z-index: 1;
  left: 0;
  transition: 0.5s;
}

.progress_job-block:last-child:before {
  width: 0;
}

.progress_job-block:hover:last-child:before {
  width: 50%;
}

.progress_job-block:hover:first-child:before {
  left: 50%;
}

.progress_job-block-num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  font-weight: bold;
  font-size: 32px;
  color: #39b54a;
  border-radius: 50%;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.18);
  border: 1px solid #e0e0e0;
  position: relative;
  z-index: 2;
  background-color: #fff;
  left: 0;
  transition: 0.5s;
}

.progress_job-block-zag {
  font-size: 22px;
  font-weight: bold;
  margin: 25px 0 20px;
  width: 100%;
}

.progress_job-block-p {
  color: #6e6e6e;
}

.main_progect {
  display: flex;
  flex-wrap: wrap;
  padding: 70px 0 30px;
  align-items: center;
  margin: 0 30px;
}

.main_progect .slick-prev {
  left: -150px;
}

.main_progect .slick-next {
  right: -150px;
}

.main_progect .slick-prev,
.main_progect .slick-next {
  background-color: #00a72d;
  border: 1px solid #00a72d;
  border-radius: 2px;
  width: 50px;
  height: 50px;
  z-index: 3;
  transition: .3s;
}

.main_progect .slick-prev:hover,
.main_progect .slick-next:hover {
  background-color: transparent;
}

.main_progect .slick-prev:before {
  content: url(../images/ar_w_l.png);
}

.main_progect .slick-next:before {
  content: url(../images/ar_w_r.png);
}

.main_progect-sl-text {
  padding: 0px 0;
  position: relative;
  z-index: 1;
}

.main_progect-sl-text__name {
  display: flex;
  justify-content: center;
  font-size: 22px;
}

.main_progect-sl-text_change {
  font-weight: bold;
  color: #39b54a;
  margin-left: 10px;
  line-height: 1.4;
}

.main_progect-sl-text_address {
  text-align: center !important;
  color: #6e6e6e;
  font-size: 14px;
  max-width: 320px;
  margin: 8px auto 10px;
}

.main_progect-sl-text_address .name {
  width: 70px;
  font-weight: bold;
}

.main_progect-sl-text_address .change {
  max-width: calc(100% - 70px);
}

.main_progect-sl-text_task {
  text-align: center;
  color: #6e6e6e;
  font-size: 14px;
  display: none;
  max-width: 320px;
  margin: 0 auto;
}

.main_progect-sl-text_task .name {
  width: 70px;
  font-weight: bold;
}

.main_progect-sl-text_task .change {
  max-width: calc(100% - 70px);
}

.main_progect-text-list {
  display: flex;
  justify-content: flex-end;
}

.main_progect-text-item.active a {
  color: #39b54a;
}

.main_progect-text-link {
  padding: 5px 25px;
  color: #6e6e6e;
  transition: 0.2s;
}

.main_progect-text-link:hover {
  color: #39b54a;
}

.main_progect-container {
  width: 100%;
  display: none;
}

.main_progect-container--overflow {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.main_progect-container--overflow .preloader {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
}

.main_progect-container--overflow .preloader::before {
  content: '';
  width: 50px;
  height: 50px;
  background-image: url(../images/loading.png);
  position: absolute;
  top: calc(50% - 25px);
  background-size: contain;
  left: calc(50% - 25px);
  animation: rotate 2s infinite;
}

.main_progect-container--overflow.preloader--active .preloader {
  opacity: 1;
  z-index: 999;
}

.main_progect-container.active {
  display: block;
}

.main_progect-slider, .main_progect-slider_v2 {
  margin: 0 auto;
  z-index: 10;
}

.main_progect-slider::before, .main_progect-slider_v2::before {
  content: '';
  background-color: #fff;
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -10px;
  z-index: 4;
}

.main_progect-slider::after, .main_progect-slider_v2::after {
  content: '';
  background-color: #fff;
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -10px;
  z-index: 4;
}

.main_progect-slider .slick-list, .main_progect-slider_v2 .slick-list {
  overflow: visible;
}

.main_progect-slide {
  background-size: 100%;
  width: calc(100% + 500px);
  transition: 2s;
  background-position: center;
  opacity: 0.3;
}

.main_progect-slide-bg {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 50px;
  overflow: hidden;
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 20, 17, 0) 50%, #000000 100%);
}

.main_progect-slide-bg img {
  z-index: -1;
  /* position: absolute; */
  min-height: auto;
  bottom: 0;
  transition: 5s;
}

.main_progect-slide.slick-current.slick-active {
  opacity: 1;
}

.main_progect-slide.slick-current.slick-active:hover img {
  transform: scale(1.25);
}

.main_progect--page .main_progect-container--overflow {

}

.main_progect--page .main_progect {
  padding-bottom: 0;
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.quest__block {
  padding: 40px 100px;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0 50px;
  background-size: cover;
}

.quest__block::before {
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.49);
}

.quest__block-zag {
  z-index: 2;
  position: relative;
}

.quest__block-zag .zag {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.quest__block-link {
  z-index: 2;
  position: relative;
  max-width: 310px;
  width: 100%;
}

.quest__block-link a {
  display: block;
}

.quest__block-link a:first-child {
  margin-bottom: 20px;
}

.link__quest {
  padding: 12px 20px;
  border-radius: 35px;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  right: 0;
  transition: 0.5s;
}

.link__quest:hover {
  right: 30px;
  opacity: .8;
}

.link__quest--white {
  background-color: #fff;
  color: #39b54a;
  font-size: 24px;
  padding-left: 55px;
}

.link__quest--phone {
  background-image: url(../images/phone_full.png);
  background-repeat: no-repeat;
  background-position: left 20px  center;
}

.link__quest--green {
  background-color: #39b54a;
  color: #fff;
  padding: 16px 20px;
}

.main_company {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0 40px;
  margin: 0 30px;
  border-bottom: 1px solid #e5e5e5;
}

.main_company-container {
  display: flex;
  flex-wrap: wrap;
}

.main_company-block {
  width: 20%;
  padding: 0 25px;
}

.main_company-img {
  height: 60px;
  width: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 15px;
}

.main_company-text p {
  margin-bottom: 35px;
  color: #6e6e6e;
  line-height: 1.5;
}

.main_company-block {
  text-align: center;
}

.main_article {
  padding: 0 0 85px;
  margin: 0 30px;
}

.main_article-pos {
  display: flex;
  justify-content: space-between;
}

.main_article-block__img {
  width: 240px;
  height: 280px;
  background-size: cover;
}

.main_article-block__text {
  width: calc(100% - 270px);
  padding-right: 90px;
  padding-top: 5px;
}

.main_article-block__text .date {
  font-size: 14px;
  color: #a6a6a6;
  margin-bottom: 15px;
}

.main_article-block__text .name {
  font-size: 22px;
  color: #39b54a;
  margin-bottom: 20px;
}

.main_article-block__text .text {
  color: #a6a6a6;
  margin-bottom: 30px;
}

.main_article-noSlider {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.main_article-noSlider .main_article-block {
  width: calc(50% - 30px);
  margin-right: 30px;
  margin-bottom: 38px;
}

.main_article-noSlider .main_article-block__text {
  padding-right: 0;
}

.main_article-noSlider .main_article-block__text .name {
  color: #2c2c2c;
  font-size: 20px;
}

.main_article-noSlider .main_article-block__text .text {
  color: #747474;
  font-size: 14px;
  line-height: 1.3;
}

.page_article {
  padding-bottom: 10px;
}

.subscribe__block {
  display: flex;
  justify-content: space-between;
  padding: 30px 60px;
  align-items: center;
  background-color: #f2f4f5;
  margin: 30px 0;
}

.subscribe__block-text-zag {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.subscribe__block-form {
  display: flex;
}

.subscribe__block-form .input__text, .subscribe__block-form__block .input__text {
  padding: 16px;
  border: 1px solid #ebebeb;
  width: 320px;
}

.subscribe__block-form .input__sbmt, .subscribe__block-form__block .input__sbmt {
  padding: 15px 20px;
  background-color: #00a72d;
  border: 1px solid #00a72d;
  color: #fff;
  text-transform: uppercase;
  transition: 0.3s;
  cursor: pointer;
}

.subscribe__block-form .input__sbmt:hover {
  color: #00a72d;
  background-color: #fff;
}

.video__block {
  position: relative;
  height: 420px;
}

.video__block-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  left: 0;
  top: 0;
  z-index: 1;
}

.video__block-text {
  display: flex;
  align-items: flex-end;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 65px;
  text-align: center;
  color: #fff;
}

.video__block-text_img {
  position: relative;
  display: flex;
  width: 82px;
  height: 82px;
  margin: auto;
}

.video__block-text_img::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1;
  border-radius: 50%;
}

.video__block-text_img img {
  z-index: 2;
}

.video__block-text:hover .video__block-text_img::before {
  animation: pulse 1.2s infinite;
}

.video__block-text_zag {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 40px;
}

.video__block-text_p {
  color: #fff;
}

.video__block--catalog {
  display: none;
  flex-wrap: wrap;
  width: calc(100% + 30px);
}

.video__block--catalog.active {
  display: flex;
}

.video__block--small {
  width: calc((100% / 4) - (30px - (30px / 4)));
  height: 270px;
  margin-right: 30px;
  margin-bottom: 30px;
}

.video__block--small:nth-child(4n) {
  margin-right: 0;
}

.video__block--small .video__block-text {
  padding: 5px;
}

.video__block--small .video__block-text a {
  width: 100%;
}

.video__block--small .video__block-text_zag {
  font-size: 18px;
  width: 100%;
  /* height: 55px; */
}

@keyframes pulse {
  0% {
    top: 0px;
    left: 0px;
    width: calc(100% - 0px);
    height: calc(100% - 0px);
  }
  50% {
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
  }
  100% {
    top: 0px;
    left: 0px;
    width: calc(100% - 0px);
    height: calc(100% - 0px);
  }
}

.breadcrumbs {
  background-color: #f2f5f6;
  width: 100%;
  padding: 0 30px;
  min-height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0;
}

.breadcrumbs__page-name {
  font-size: 24px;
  color: #2c2c2c;
  padding-right: 15px;
}

.bx-breadcrumb {
  display: flex;
  flex-wrap: wrap;
}

.bx-breadcrumb-item a {
  color: #191919;
  padding-left: 15px;
  background-image: url(../images/ar_black_right.png);
  background-repeat: no-repeat;
  background-position: left 5px center;
  transition: 0.2s;
}

.bx-breadcrumb-item a:hover {
  color: #a6a6a6;
}

.bx-breadcrumb-item > span {
  color: #a6a6a6;
  padding-left: 15px;
  background-image: url(../images/ar_gray_right.png);
  background-repeat: no-repeat;
  background-position: left 5px center;
}

.bx-breadcrumb-item:first-child a {
  padding-left: 25px;
  background-image: url(../images/breadhome.png);
  background-repeat: no-repeat;
  background-position: left center;
}

.bx-breadcrumb-item:first-child a:hover {
  opacity: 0.6;
}

.slider__client {
  padding: 20px 0;
  margin: 0 30px;
}

.slider__client .slick-prev,
.slider__client .slick-next {
  z-index: 10;
  width: 40px;
  height: 40px;
  top: -43px;
  bottom: auto;
}

.slider__client .slick-prev {
  left: auto;
  right: 50px;
}

.slider__client .slick-prev::before {
  width: 100%;
  height: 100%;
  content: '';
  background-image: url(../images/ar_gray_l2.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  background-position: center;
}

.slider__client .slick-next {
  right: 0px;
}

.slider__client .slick-next::before {
  width: 100%;
  height: 100%;
  content: '';
  background-image: url(../images/ar_gray_r2.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  background-position: center;
}

.slider__client-container {
  margin: 0 -15px;
}

.slider__client-slide {
  max-width: 300px;
  overflow: hidden;
  height: 70px;
}

.slider__client-slide .bg {
  width: calc(100% - 30px);
  height: 70px;
  margin-left: 15px;
  background-size: cover;
  background-position: center;
}

.slider__client-slide img {
  max-height: 1000%;
  width: calc(100% - 30px);
  margin: auto;
}

.progect__info {
  padding: 60px 0px 0;
}

.progect__info--link_center {
  padding: 30px 0 40px;
}

.progect__info--link_center a {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}

.progect__info .global__zag {
  padding-left: 30px;
}

.progect__info .progect__info-main__text {
  padding-left: 30px;
}

.progect__info .main_progect-sl-text__name {
  justify-content: flex-start;
  max-width: 50%;
}

.progect__info .main_progect-sl-text_address {
  text-align: left;
  margin: 18px 0 5px;
  max-width: 50%;
}

.progect__info .main_progect-sl-text_task {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 50%;
}

.progect__info-block {
  padding: 40px 30px 40px;
}

.progect__info-block:nth-child(even) {
  background-color: #f2f4f5;
}

.progect__info-block:nth-child(even) .progect__info-block__slider::before {
  background-color: #f2f4f5;
}

.progect__info-block__zag {
  color: #191919;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 30px;
}

.progect__info-block__list {
  margin-bottom: 40px;
}

.progect__info-block__list ul li {
  font-weight: 100;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.progect__info-block__list ul li::before {
  content: '';
  top: 5px;
  width: 5px;
  height: 5px;
  left: 5px;
  position: absolute;
  background-color: #1fc055;
  border-radius: 50%;
}

.progect__info-block__slider {
  width: calc(100% + 30px);
}

.progect__info-block__slider::before {
  content: '';
  /*position: absolute;*/
  right: 0;
  height: 100%;
  width: 30px;
  background-color: #fff;
  top: 0;
  z-index: 999;
}

.progect__info-block__slider .slick-prev,
.progect__info-block__slider .slick-next {
  z-index: 10;
  width: 40px;
  height: 40px;
  top: -43px;
  bottom: auto;
}

.progect__info-block__slider .slick-prev {
  left: auto;
  right: 80px;
}

.progect__info-block__slider .slick-prev::before {
  width: 100%;
  height: 100%;
  content: '';
  background-image: url(../images/ar_gray_l2.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  background-position: center;
}

.progect__info-block__slider .slick-next {
  right: 30px;
}

.progect__info-block__slider .slick-next::before {
  width: 100%;
  height: 100%;
  content: '';
  background-image: url(../images/ar_gray_r2.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  background-position: center;
}

.progect__info-block__slide {
  /* height: 210px; */
}

.progect__info-block__slide a {
  width: calc(100% - 30px);
  height: 100%;
  margin-right: 30px;
  overflow: hidden;
}

.progect__info-block__slide .bg {
  background-size: cover;
  width: 100%;
  height: 100%;
  margin-right: 30px;
}

.progect__info-block__slide .img {
  width: auto;
  max-width: 1000%;
  min-height: 100%;
}

.progect__info-block__slide .img img {
  min-height: 100%;
  width: auto;
  max-width: 1000%;
}

.comment__block {
  padding: 60px 30px;
  background-color: #f2f4f5;
}

.comment__block .slick-dots {
  padding-top: 20px;
  border-top: 1px solid #e8e8e8;
  bottom: -10px;
  width: calc(50% - 60px);
  right: 0;
  text-align: left;
  left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.comment__block .slick-dots li button:before {
  font-size: 40px;
  width: 100%;
  height: 100%;
  content: '';
  border-radius: 50%;
  background-color: #d7d7d7;
  opacity: 1;
}

.comment__block .slick-dots li {
  width: 55px;
  height: 55px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comment__block .slick-dots li button {
  width: 40px;
  position: relative;
  height: 40px;
  transition: 0.3s;
}

.comment__block .slick-dots li.slick-active button {
  width: 55px;
  height: 55px;
}

.comment__block-flex {
  display: flex;
  flex-wrap: wrap;
}

.comment__block-video {
  width: 50%;
  padding-top: 15px;
}

.comment__block-video .video__block {
  height: 350px;
}

.comment__block-video .video__block-text {
  padding: 40px 90px;
}

.comment__block-video .video__block-text_zag {
  font-size: 18px;
}

.comment__block-video .video__block-text_p {
  font-size: 14px;
}

.comment__block-text {
  width: 50%;
  padding-left: 60px;
  padding-bottom: 65px;
}

.comment__block-text-zag {
  font-size: 24px;
  margin: 30px 0 15px;
}

.comment__block-text-p {
  color: #6e6e6e;
  font-size: 14px;
  margin-bottom: 10px;
}

.comment__block-text-name {
  font-size: 24px;
  margin: 30px 0 10px;
}

.comment__block-text-prof {
  color: #6e6e6e;
}

.category {
  padding: 2px 20px;
}

.category_sort {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.category_sort-list {
  display: flex;
  flex-wrap: wrap;
}

.category_sort-name {
  font-size: 14px;
  margin-right: 20px;
}

.category_sort-block {
  display: flex;
  align-items: center;
  margin-right: 30px;
  cursor: pointer;
  transition: .2s;
}

.category_sort-block .name {
  margin-right: 10px;
}

.category_sort-block img {
  transition: 0.3s;
}

.category_sort-block:hover {
  opacity: .6;
}

.category_sort-block.active img {
  transform: scale(-1, 1);
}

.category-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.category-container__right {
  width: calc(100% - 300px);
  display: flex;
  flex-wrap: wrap;
}

.category-container__right-top {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 30px;
  background-color: #f2f5f6;
  margin-bottom: 20px;
}

.category-container__pagination {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.category-container__pagination .prev {
  width: 45px;
  height: 45px;
  border: 1px solid #e8e8e8;
  position: relative;
  transition: .2s;
  cursor: pointer;
  margin-right: 5px;
}

.category-container__pagination .prev:hover {
  border-color: #00ab37;
}

.category-container__pagination .prev::before {
  content: '';
  background-image: url(../images/ar_black_right.png);
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
  position: absolute;
  width: 100%;
  height: 100%;
}

.category-container__pagination .next {
  width: 45px;
  height: 45px;
  border: 1px solid #e8e8e8;
  position: relative;
  transition: .2s;
  cursor: pointer;
}

.category-container__pagination .next:hover {
  border-color: #00ab37;
}

.category-container__pagination .next::before {
  content: '';
  background-image: url(../images/ar_black_right.png);
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(0deg);
  position: absolute;
  width: 100%;
  height: 100%;
}

.category-container__pagination ul {
  display: flex;
  flex-wrap: wrap;
}

.category-container__pagination li {
  width: 45px;
  height: 45px;
  border: 1px solid #e8e8e8;
  position: relative;
  transition: .2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}

.category-container__pagination li:hover {
  background-color: #00ab37;
  color: #fff;
}

.category-container__pagination li.active {
  background-color: #00ab37;
  color: #fff;
}


.category__popular {
    margin-top: 20px;
    margin-left: 15%;
}
.category__popular-list ul {
  display: flex;
  flex-wrap: wrap;
}
.category__popular-list ul li {
  border-bottom: 2px solid #00ab37;
  color: #2c2c2c;
  margin-left: 50px;
  line-height: 1.6;
  font-size: 16px;
}
.category__popular_1 .category__popular-list ul li {
  margin-left: 0px;
  border-bottom: none;
  margin-right:15px;
  margin-bottom:10px;
}
.category__popular_1 .category__popular-list ul li  a {
  border-bottom: 2px solid #00ab37;
}
.category__selection {
  margin-bottom: 20px;
}
.category__selection-list {margin-top:10px;}
.category__selection-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.category__selection-list ul li {
  border-bottom: 2px solid #00ab37;
  color: #2c2c2c;
  margin-left: 40px;
  line-height: 1.6;
  font-size: 14px;
}

.category__box:nth-child(3n) {
  margin-right: 0;
}

.category__box-top {
  position: relative;
  padding-top: 35px;
}

.category__box-video {
  width: 40px;
  height: 30px;
  background-image: url(../images/youtube.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.category__box-video-rutube {
  width: 40px;
  height: 30px;
  background-image: url(../images/rutube.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.category__box-p2019 {
  width: 50px;
  height: 50px;
  background-image: url(/upload/product2019-100.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 15px;
  left: 0px;
}
.category__box-p2020 {
  width: 50px;
  height: 50px;
  background-image: url(/upload/logo_LSPG_2020_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 15px;
  left: 0px;
}

.category__box-p {
  width: 45px;
  height: 45px;
  background-image: url(/upload/product2019-100.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 15px;
  left: 21px;
}

.category__box-p::before {
  content: "";
  background: url(/upload/logo_LSPG_2020_white.png) no-repeat center;
  background-size: 50px;
  position: absolute;
  width: 50px;
  height: 50px;
  left: -26px;
  top:-2px;
}

.category__box-p2019-detail {
  width: 70px;
  height: 70px;
  background-image: url(/upload/product2019-100.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 15px;
  right: 5px;
}

.category__box-p2020-detail {
  width: 70px;
  height: 70px;
  background-image: url(/upload/logo_LSPG_2020_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 15px;
  right: 5px;
}

.category__box-p-detail {
  width: 70px;
  height: 70px;
  background-image: url(/upload/product2019-100.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 15px;
  right: 5px;
}

.category__box-p-detail::before {
  content: "";
  background: url(/upload/logo_LSPG_2020_white.png) no-repeat center;
  width: 78px;
  height: 78px;
  background-size: 78px;
  position: absolute;
  right: 40px;
  top: -3px;
}

.category__box-favorite {
  /* background-image: url(../images/favorite_img.png); */
  background-image: url(../images/vesy.png);
  width: 30px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  transition: 0.2s;
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-size: 29px;
  cursor: pointer;
}

.category__box-favorite:hover {
  background-position: top;
  background-image: url(../images/vesy_hover.png);
}

.category__box-favorite.active {
  background-position: top;
  background-image: url(../images/vesy_hover.png);
}

.category__box-img {
  height: 210px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category__box-img .bg {
  height: 100%;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: 1s;
}

.category__box-img img {
  max-height: 100%;
  margin: 0 auto;
  display: block;
  max-width: 1000%;
  transition: 1s;
}

.category__box-img:hover .bg {
  transform: scale(0.9);
}

.category__box-img:hover img {
  transform: scale(0.9);
}

.category__box-stars {
  position: absolute;
  top: 5px;
  right: 0;
}

.category__box-stars ul {
  display: flex;
}

.category__box-stars li {
  width: 19px;
  height: 19px;
  background-image: url(../images/stars.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 19px;
  background-position: top center;
  transition: 1s;
}

.category__box-stars .hover {
  background-position: bottom center;
}

.category__box-stars .voted {
  background-position: bottom center;
}

.category__box-stars.vote_star li {
  cursor: pointer;
}

.category__box-sales {
  color: #fff;
  text-transform: uppercase;
}

.category__box-sales span {
  width: 155px;
  height: 30px;
  padding-left: 15px;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
}

.category__box-sales.red span {
  background-color: #ff404a;
}

.category__box-sales.blue span {
  background-color: #6d40ff;
}

.category__box-name {
  font-size: 14px;
  height: 48px;
  display: flex;
  align-items: flex-end;
  margin: 15px 0 5px;
}

.category__box-article {
  margin-bottom: 10px;
  text-align: left;
  font-size: 14px;
}

.category__box-article span {
  color: #00ab37;
  margin-left: 5px;
}

.category__box-list {
  padding: 10px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  color: #727272;
  font-size: 12px;
  position: relative;
}

.category__box-list li {
  line-height: 1.3;
}

.category__box-list span {
  margin-left: 5px;
}

.category__box-presence {
  position: absolute;
  color: #00ab37;
  font-size: 14px;
  bottom: 10px;
}

.category__box-presence--red {
  color: #ff404a;
}

.category__box-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.category__box-price {
  padding: 10px 0;
  width: calc(100% - 86px);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.category__box-price_zag {
  font-size: 14px;
}

.category__box-price_old {
  font-size: 12px;
  color: #727272;
  text-decoration: line-through;
  line-height: 1.4;
}

.category__box-price_new {
  color: #ff414e;
  font-size: 17px;
  width: 100%;

}

.category__box-ref-price{
  font-size: 14px;
  color: #727272;
  margin-bottom: 8px;
  min-height: 30px;

}

.category__box-count {
  width: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 10px;
}

.category__box-count .count_text {
  width: 35px;
  height: 34px;
  text-align: center;
  border: 1px solid #e8e8e8;
}

.category__box-count .count_plus {
  width: calc((95px - 50px) / 2);
  height: 34px;
  border: 0;
  background-color: #f2f5f6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.category__box-count .count_plus:hover {
  background-color: #cacaca;
}

.category__box-count .count_minus {
  width: calc((95px - 50px) / 2);
  height: 34px;
  border: 0;
  background-color: #f2f5f6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.category__box-count .count_minus:hover {
  background-color: #cacaca;
}

.category__box-link {
  width: 100%;
}

.category__box-link a {
  width: 100%;
  font-size: 14px;
}

.filter {
  width: 270px;
}

.filter .input_check.styler.jq-checkbox.checked .jq-checkbox__div {
  width: 14px;
  height: 7px;
  margin: 4px 0 0 3px;
}

.filter-name {
  color: #fff;
  text-transform: uppercase;
  padding: 14px 16px;
  background-color: #00ab37;
  margin-bottom: 20px;
}

.filter-block {
  padding-top: 25px;
}

.filter-block__name {
  color: #191919;
  padding-left: 16px;
  cursor: pointer;
}

.filter-block--input {
  border-top: 1px solid #f1f4f5;
  border-bottom: 1px solid #f1f4f5;
  padding: 13px 0 17px;
}

.filter-block__box_input {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  position: relative;
}

.filter-block__box_input::before {
  content: '';
  position: absolute;
  width: 7px;
  height: 1px;
  left: calc(50% - 3.5px);
  top: 50%;
  background-color: #e8e8e8;
}

.filter-block__box--input {
  width: 100px;
  border: 1px solid #e8e8e8;
  padding: 9px 10px;
}

.filter-block__box--input::placeholder {
  color: #e8e8e8;
}

.filter-block__box_list {
  padding: 10px 1px 10px 16px;
}

.filter-block__box_list-li {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 100;
}

.filter-block__box_list-li .input_check.styler {
  width: 20px;
  height: 20px;
}

.filter-block__box_list-label {
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.filter-block__box_list-label .jq-checkbox {
  pointer-events: none;
}

.filter-block__box_list-span {
  margin-left: 6px;
  width: calc(100% - 29px);
}

.filter--sbmt {
  width: 100%;
  border: 0;
  background-color: #fff;
  border: 1px solid #39b54a;
  color: #39b54a;
  transition: 0.3s;
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 0;
}

.filter--sbmt:hover {
  background-color: #39b54a;
  color: #fff;
}

.filter-block.filter-block--input.openable {
  padding: 25px 0 0;
}

.openable {
  border: 0;
}

.openable .filter-block__name {
  position: relative;
}

.openable .filter-block__name::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 7px;
  height: 5px;
  background-image: url(../images/ar_bl_down.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
}

.openable .filter-block__name.close:before {
  transform: rotate(180deg);
}

.open--false .filter-block__box_list {
  display: none;
}

.used_product {
  padding: 30px;
}

.used_product .category__box {
  width: 100%;
  margin-bottom: 0;
}

.used_product-slider {
  width: calc(100% + 30px);
  padding-bottom: 0px !important;
}

.used_product-slider::before {
  content: '';
  height: 100%;
  width: 27px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #fff;
  z-index: 10;
}

.used_product-slider .slick-prev,
.used_product-slider .slick-next {
  z-index: 10;
  width: 40px;
  height: 40px;
  top: -43px;
  bottom: auto;
}

.used_product-slider .slick-prev {
  left: auto;
  right: 80px;
}

.used_product-slider .slick-prev::before {
  width: 100%;
  height: 100%;
  content: '';
  background-image: url(../images/ar_gray_l2.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  background-position: center;
}

.used_product-slider .slick-next {
  right: 30px;
}

.used_product-slider .slick-next::before {
  width: 100%;
  height: 100%;
  content: '';
  background-image: url(../images/ar_gray_r2.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  background-position: center;
}

.used_product-slide {
  padding-right: 30px;
}

.service--pt {
  padding-top: 0;
}

.service_tab .main_company-text p:last-child {
  margin-bottom: 0;
}

.service_tab-list {
  padding: 35px 0 40px;
  margin: 0 auto;
}

.service_tab-list ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.service_tab-list ul li {
  width: 20%;
}

.service_tab-list ul li.active .main_company-block::before {
  background-color: #00ab37;
  height: 3px;
}

.service_tab-list .main_company-img {
  height: 40px;
}

.service_tab-list .main_company-block {
  padding: 0 5px;
  position: relative;
  cursor: pointer;
  width: 100%;
}

.service_tab-list .main_company-block::before {
  content: '';
  width: 100%;
  background-color: transparent;
  position: absolute;
  bottom: -12px;
  height: 0px;
  left: 0;
  transition: 0.3s;
}

.service_tab-list .main_company-block:hover:before {
  background-color: #00ab37;
  height: 3px;
}

.service_tab-list .main_company-block.active::before {
  background-color: #00ab37;
  height: 3px;
}

.service_tab-list .main_company-text {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service_tab-list .main_company-container {
  border-bottom: 1px solid #ebebeb;
  padding: 0 20px 10px 20px;
}

.service_tab.tab__block.active {
  display: block;
}

.service_tab.tab__block {
  display: none;
}

.basket {
  padding: 60px 30px;
}

.basket__total {
  max-width: 240px;
  margin-left: auto;
}

.basket__total-text {
  border: 1px solid #e8e8e8;
  padding: 18px 25px;
  text-align: center;
  margin-bottom: 25px;
}

.basket__total-count {
  font-size: 20px;
  padding: 0 5px 16px 7px;
  width: 100%;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 25px;
}

.basket__total-count .change {
  margin: 0 5px;
}

.basket__total-price {
  font-size: 30px;
  color: #00ab37;
}

.basket__total-price .change {
  margin-right: 5px;
}

.basket__total-link a {
  font-size: 14px;
  color: #fff;
  padding: 15px 0;
  width: 100%;
  text-transform: uppercase;
  background-color: #39b54a;
  border: 1px solid #39b54a;
  text-align: center;
  transition: .3s;
}

.basket__total-link a:hover {
  color: #39b54a;
  background-color: #ffff;
}

.basket__container-top {
  background-color: #f2f5f6;
  height: 45px;
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}

.basket__container-top .btn_refresh {
  position: absolute;
  right: 20px;
  top: calc(50% - 13px);
}

.basket__item {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  justify-content: space-between;
  position: relative;
  margin-bottom: 20px;
  padding-right: 100px;
}

.basket__item-img {
  padding: 35px 20px;
  padding-right: 0;
  width: 15%;
  position: relative;
}

.basket__item-img .img {
  width: 100%;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.basket__item-img img {
  height: 100px;
}

.basket__item-img .category__box-sales {
  top: 12px;
  left: 15px;
}

.basket__item-img .category__box-sales span {
  width: 65px;
  font-size: 10px;
  height: 20px;
}

.basket__item-img .category__box-stars {
  top: 12px;
  right: 0;
}

.basket__item-img .category__box-stars li {
  width: 12px;
  height: 12px;
  background-size: 12px;
}

.basket__item-img .category__box-video {
  left: 20px;
  width: 26px;
  height: 18px;
}

.basket__item-name {
  width: 30%;
  font-size: 18px;
}

.basket__item-name .category__box-article {
  margin-top: 10px;
  margin-bottom: 0;
}

.basket__item-delete {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  background-image: url(../images/cancel.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
  transition: 0.3s;
  cursor: pointer;
}

.basket__item-delete:hover {
  background-color: #f2f5f6;
}

.basket__item-price_zag {
  font-size: 15px;
  margin-bottom: 5px;
}

.basket__item-price_num {
  font-size: 19px;
  color: #00ab37;
}

.basket__item-price_num .num {
  margin-right: 5px;
}

.compare .global__zag {
  padding: 60px 30px 0;
}

.compare__container {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 100%;
}

.compare__container .basket__container-top {
  margin-right: 30px;
  width: calc(((100% / 12) * 9) - 30px);
}

.compare__container-info {
  display: flex;
  width: 100%;
}

.compare__left {
  display: flex;
  align-items: flex-end;
}

.compare__left-list {
  width: 100%;
  margin-bottom: 86px;
}

.compare__left-list ul li {
  text-align: left !important;
  padding-left: 30px !important;
}

.compare__left-list ul li::before {
  content: none !important;
}

.compare--list ul li {
  padding: 15px;
  text-align: center;
  height: 48px;
}

.compare--list ul li img {
  margin: 0 auto;
}

.compare--list ul li:nth-child(odd) {
  background-color: #f1f4f5;
  position: relative;
}

.compare--list ul li:nth-child(odd)::before {
  content: '';
  width: 30px;
  position: absolute;
  left: -15px;
  background-color: #f1f4f5;
  height: 100%;
  top: 0;
}

.compare--list ul li:nth-child(odd)::after {
  content: '';
  width: 30px;
  position: absolute;
  right: -30px;
  background-color: #f1f4f5;
  height: 100%;
  top: 0;
}

.compare__slider {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.compare__slider .slick-prev, .compare__slider .slick-next {
  top: -55px;
}

.compare__slider .slick-prev {
  left: 15px;
  width: 30px;
}

.compare__slider .slick-next {
  left: 50px;
  width: 30px;
}

.compare__slider .slick-prev:before {
  content: url(../images/ar_gray_l.png);
}

.compare__slider .slick-next:before {
  content: url(../images/ar_gray_r.png);
}

.compare__slide {
  position: relative;
  max-width: 307px;
  transition: 1s;
}

.compare__slide .border {
  border: 1px solid #e0e0e0;
  width: calc(100% - 30px);
  padding-bottom: 85px;
}

.compare__slide .category__box {
  width: 100%;
  margin-bottom: 55px;
  border: 0;
}

.compare__slide .close {
  width: 20px;
  height: 20px;
  background-image: url(../images/cancel.png);
  background-repeat: no-repeat;
  background-position: right 5px center;
  cursor: pointer;
  background-size: 15px;
  position: absolute;
  background-position: center;
  right: 32px;
  top: 2px;
}

.compare .category__box-bottom {
  border-top: 1px solid #e8e8e8;
}

.compare .category__box-list,
.compare .category__box-count {
  display: none;
}

.cost__list {
  margin-bottom: 60px;
}

.cost__item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  min-height: 50px;
  padding: 5px 30px;
  color: #6e6e6e;
}

.cost__item:nth-child(odd) {
  background-color: #f2f4f5;
}

.cost__item-text {
  max-width: calc(100% - 200px);
}

.cost__item-price {
  display: flex;
  font-size: 18px;
  color: #aaaaaa;
  align-items: center;
}

.cost__item-price_number {
  color: #39b54a;
  font-weight: bold;
  font-size: 24px;
  margin-right: 6px;
}

.service__video {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 30px;
}

.service__video-text {
  width: 50%;
  padding-right: 80px;
}

.service__video-text p {
  color: #6e6e6e;
  line-height: 1.6;
}

.service__video-img {
  width: 50%;
}

.service__video-img .video__block {
  height: 350px;
}

.service__video-img .video__block-text {
  padding: 50px;
}

.service__video-img .video__block-text_p {
  font-size: 14px;
}

.service__video-img .video__block-text_zag {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
}

.ordering {
  padding: 30px;
}

.ordering__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.ordering__block {
  width: 100%;
  border-top: 5px solid #00ab37;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.ordering__block--left {
  width: calc(50% - 20px);
}

.ordering__block--right {
  width: calc(50% - 20px);
}

.ordering__block-zag {
  padding: 15px 20px;
  text-transform: uppercase;
  color: #121212;
  font-weight: 500;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
}

.ordering__block-zag span {
  font-size: 24px;
  color: #00ab37;
  margin-right: 15px;
  line-height: 0.5;
  margin-right: 15px;
  display: block;
}

.ordering__block-zag .ml15 {
  margin-left: 10px;
}

.ordering__block-check {
  width: calc(50% - 10px);
  font-weight: 100;
}

.ordering__block-check .input_check.styler.jq-checkbox.checked .jq-checkbox__div {
  width: 13px;
  height: 6px;
  margin: 5px 0 0 3px;
}

.ordering__block-check_zag {
  padding: 7px 20px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 20px;
}

.ordering__block-check li {
  margin-bottom: 15px;
}

.ordering__block-check label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 100;
}

.ordering__block-check label .input_check.styler {
  margin-right: 13px;
  width: 20px;
  height: 20px;
  border-radius: 0;
  box-shadow: none;
}

.ordering__block-check label a {
  color: #00ab37;
  margin-left: 3px;
  margin-left: 33px;
  line-height: 1.3;
}

.ordering__block-check label a:hover {
  text-decoration: underline;
}

.ordering__block-list_items {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding-top: 20px;
}

.ordering__block-list_items .basket__item-price_num {
  color: #39b54a;
}

.ordering__block-list_items .basket__item {
  padding-right: 50px;
  border: 0;
}

.ordering__block-list_items .basket__item-delete {
  width: 30px;
}

.ordering__block-list_items .basket__item-name {
  font-size: 12px;
  width: 60%;
}

.ordering__block-list_items .basket__item-img {
  padding: 10px 0;
  width: 10%;
}

.ordering__block-list_items .basket__item-img .img {
  height: 50px;
}

.ordering__block-list_items .basket__item-img img {
  height: 50px;
}

.ordering__block-input {
  width: 100%;
  margin-bottom: 20px;
}

.ordering__block-input label {
  display: flex;
  margin-bottom: 10px;
  font-weight: 100;
}

.ordering__block-input .form_popup--input_text {
  padding: 12px 10px;
}

.ordering__total {
  display: flex;
}

.ordering__total-price {
  width: 50%;
  display: flex;
  font-size: 24px;
  color: #5f5f5f;
  align-items: center;
}

.ordering__total-price .num {
  margin-left: 15px;
  color: #ff414e;
  text-transform: uppercase;
  font-size: 30px;
}

.ordering__total-price .num span {
  margin-right: 5px;
}

.ordering__total-link {
  width: 50%;
}

.ordering__total-link a {
  padding: 15px 0;
  text-align: center;
  background-color: #39b54a;
  border: 1px solid #39b54a;
  width: 100%;
  text-transform: uppercase;
  color: #fff;
  transition: 0.3s;
}

.ordering__total-link a:hover {
  color: #39b54a;
  background-color: #fff;
}

.product_advantage {
  margin-top: 10px;
}

.product_advantage-list {
  padding: 10px 0;
  min-height: 90px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.product_advantage-list li {
  width: calc((100% / 4) - 10px);
  background-repeat: no-repeat;
  background-position: left center;
  padding: 10px 0 10px 55px;
  background-size: 40px;
  min-height: 100%;
  font-size: 14px;
  margin-right: 20px;
}

.product_advantage-list li:last-child {
  margin-right: 0;
}

.product_advantage-list li .name {
  font-weight: bold;
}

.product_advantage-list--bg li {
  background-color: #f2f4f5;
  min-height: 50px;
  background-size: 30px;
  background-position: left 15px center;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #6e6e6e;
  padding-left: 55px;
  width: calc((100% / 4) - 30px);
  transition: 0.2s;
  cursor: pointer;
}

.product_advantage-list--bg li .name {
  font-weight: normal;
}

.product_advantage-list--bg li:hover {
  background-color: #e2e2e2;
}

.product_advantage-list--bg .active {
  background-color: #e2e2e2;
}

.product_advantage .tab__block {
  display: none;
}

.product_advantage .tab__block.active {
  display: flex;
}

.product_advantage-list--certificate {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.product_advantage-list--certificate .popup--imge {
  position: relative;
}

.product_advantage-list--certificate .popup--imge::before {
  content: '';
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  background-image: url(../images/search_ico-plus.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 10;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.product_advantage-list--certificate li {
  width: auto;
  padding: 0;
  margin-right: 10px;
}

.product_advantage-list--certificate li img {
  max-height: 90px;
}

.card__tabs {
  margin-top: 30px;
}

.card__tabs .w50 {
  width: 50%;
}

.card__tabs-list {
  display: flex;
  flex-wrap: wrap;
}

.card__tabs-list li {
  width: calc(100% / 5);
  position: relative;
  padding: 5px 15px;
  text-align: center;
  background-color: #fdfcfc;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e1e1e1;
  border-bottom: 1px solid #cacaca;
  border-top-right-radius: 4px;
  overflow: hidden;
  border-top-left-radius: 4px;
  cursor: pointer;
  color: #6e6e6e;
  transition: 0.3s;
}

.card__tabs-list li::before {
  content: '';
  background-color: #39b54a;
  width: 0;
  height: 4px;
  position: absolute;
  top: 0;
  left: -1px;
  transition: 0.3s;
}

.card__tabs-list li.active {
  border-bottom: 1px solid transparent;
}

.card__tabs-list li.active::before {
  width: calc(100% + 2px);
}

.card__tabs-tab {
  padding-top: 35px;
  display: none;
}

.card__tabs-tab_zag {
  font-size: 22px;
  margin-bottom: 20px;
}

.card__tabs-tab_p {
  color: #6e6e6e;
  line-height: 1.4;
  margin-bottom: 40px;
}

.card__tabs-tab-list {
  padding: 0px 30px;
}

.card__tabs-tab-list li {
  position: relative;
  padding-left: 25px;
  display: flex;
  padding-bottom: 15px;
}

.card__tabs-tab-list li .name {
  position: relative;
  padding-right: 30px;
  min-width: 110px;
}

.card__tabs-tab-list li .name .tooltip {
  top: -6px;
}

.card__tabs-tab-list li .desc {
  color: #a6a6a6;
  padding-left: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.card__tabs-tab-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #6e6e6e;
  position: absolute;
  left: 0;
  top: 4px;
}

.card__tabs-tab-list_btn {
  padding-left: 30px;
}

.card__tabs-tab-list_btn .card__list-btn {
  padding: 22px 35px;
  background-color: #f2f4f5;
  color: #6e6e6e;
  border: 1px solid #f2f4f5;
  display: inline-block;
  transition: 0.2s;
  cursor: pointer;
}

.card__tabs-tab-list_btn .card__list-btn:hover {
  background-color: #fff;
  border: 1px solid #6e6e6e;
}

.card__tabs-tab-list-hide {
  display: none;
}

.card__tabs-tab .video__block {
  height: 350px;
}

.card__tabs-tab .video__block-text_zag {
  font-size: 18px;
  margin-top: 20px;
}

.card__tabs-tab .video__block-text_p {
  font-size: 14px;
}

.card__tabs-tab .video__block-text {
  padding: 40px;
  padding-bottom: 20px;
}

.card__tabs-tab.active {
  display: flex;
  flex-wrap: wrap;
}

.card__tabs-comment_block:first-child .card__tabs-comment_block-top {
  padding-top: 0;
}

.card__tabs-comment_block-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 0;
}

.card__tabs-comment_block-img {
  width: 40px;
  height: 40px;
  border: 3px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
}

.card__tabs-comment_block-img img {
  max-width: 100%;
  max-height: 100%;
}

.card__tabs-comment_block-name {
  margin-right: 10px;
}

.card__tabs-comment_block-date {
  color: #a6a6a6;
}

.card__tabs-comment_block-center {
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.card__tabs-comment_block-zag {
  display: flex;
  align-items: center;
}

.card__tabs-comment_block-zag span {
  font-size: 22px;
  margin-right: 20px;
}

.card__tabs-comment_block-zag .category__box-stars {
  position: relative;
  top: 0;
}

.card__tabs-comment_block-p {
  color: #6e6e6e;
  line-height: 1.3;
}

.card__tabs-form {
  width: 100%;
  padding-top: 40px;
}

.card__tabs-form > form {
  width: 50%;
}

.card__tabs-form--half_block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

.card__tabs-form--half_block .ordering__block-input {
  width: 50%;
}

.card__tabs-form--half_block .category__box-stars {
  position: relative;
  display: flex;
  width: 50%;
  padding-left: 30px;
}

.card__tabs-form--half_block .category__box-stars .name {
  margin-right: 10px;
}

.card__tabs-form .form_popup-zag .zag {
  text-align: left;
}

.card__tabs-form .form_popup--sbmt {
  display: inline-block;
  width: auto;
  padding: 17px 22px;
  text-transform: uppercase;
  border-radius: 0;
}

.card__tabs-form .sbmt--right {
  text-align: right;
}

.card__tabs-quest__block {
  padding: 40px 0 30px;
  border-bottom: 1px solid #e8e8e8;
}

.card__tabs-quest__block ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.card__tabs-quest__block ul:first-child {
  margin-bottom: 30px;
}

.card__tabs-quest__block:first-child {
  padding-top: 0;
}

.card__tabs-quest__block .img {
  width: 100px;
  height: 70px;
}

.card__tabs-quest__block .img div {
  background-repeat: no-repeat;
  background-position: center;
  height: 70px;
}

.card__tabs-quest__block .text {
  width: calc(100% - 100px);
}

.card__tabs-quest__block .text .name {
  font-size: 22px;
  margin-bottom: 20px;
}

.card__tabs-quest__block .text p {
  color: #6e6e6e;
}

.card__tabs-progects {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.card__tabs-progects_block {
  width: calc((33.33% + (30px / 3)) - 30px);
  height: 320px;
  margin-right: 30px;
  margin-bottom: 20px;
}

.card__tabs-progects_block:nth-child(3n) {
  margin-right: 0;
}

.card__tabs-progects_block .bg {
  height: calc(100% - 60px);
  background-size: cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
  position: relative;
}

.card__tabs-progects_block .bg::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 31%, black 100%);
  top: 0;
  left: 0;
}

.card__tabs-progects_block .bg a {
  z-index: 999;
  color: #fff;
}

.card__tabs-progects_block .name {
  padding: 20px 0;
  width: 100%;
  text-align: center;
  font-size: 18px;
  color: #00a72d;
  font-weight: bold;
}

.card__tabs-tab.video__block--catalog {
  width: 100%;
}

.card__tabs-tab.video__block--catalog .video__block--small {
  height: 270px;
  width: calc((100% / 3) - (30px - (30px / 3)));
}

.card__tabs-tab.video__block--catalog .video__block--small:nth-child(3n) {
  margin-right: 0;
}

.card__tabs-tab.video__block--catalog .video__block--small:nth-child(4n) {
  margin-right: 30px;
}

.card {
  padding: 40px 30px;
  display: flex;
  flex-wrap: wrap;
}

.card__images {
  position: relative;
}

.card__images .category__box-sales {
  z-index: 10;
  top: 1px;
  left: 1px;
}


.card__images .category__box-sales.red span {
  background-color: #d85a5a;
  width: auto;
  padding-left: 5px;
  padding: 0 15px;
}

.card__images-once {
  margin-bottom: 15px;
}

.card__images-once_slider {
  border: 1px solid #f1f1f1;
}

.card__images-once_slide {
  cursor: pointer;
}

.card__images-once_slide .link {
  width: 100%;
  height: 100%;
  display: flex;
}

.card__images-once_slide .bg {
  width: 100%;
  /* height: 425px; */ 
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/card_empty.png);
}

.card__images-once_slide .bg.contain {
  background-size: contain;
}

.card__images-once_slide .bg.cover {
  background-size: cover;
}

.card__images-nav {
  width: calc(100% + 13px);
  padding-bottom: 40px;
}

.card__images-nav .slick-prev.slick-disabled:before, .card__images-nav .slick-next.slick-disabled:before {
  opacity: .75;
}

.card__images-nav .slick-prev {
  left: -20px;
  width: 30px;
}

.card__images-nav .slick-next {
  right: -20px;
  width: 30px;
}

.card__images-nav .slick-prev:before {
  content: url(../images/ar_gray_l.png);
}

.card__images-nav .slick-next:before {
  content: url(../images/ar_gray_r.png);
}

.card__images-nav .slick-next {
  right: 30px;
}

.card__images-nav .slick-prev {
  left: 30px;
}

.card__images-nav .slick-prev, .card__images-nav .slick-next {
  z-index: 10;
  top: auto;
  bottom: -40px;
}

.card__images-nav .bg--youtube {
  position: absolute;
  width: calc(100% - 15px);
  height: 100%;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
}

.card__images-nav .slick-prev:before, .card__images-nav .slick-next:before {
  color: #06a82f;
}

.card__images-nav_slide {
  cursor: pointer;
  position: relative;
}

.card__images-nav_slide .link {
  width: 100%;
  text-align: center;
}

.card__images-nav_slide .bg {
  width: calc(100% - 15px);
  border: 1px solid #f1f1f1;
  /* height: 100px; */
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/card_empty.png);
  background-size: cover;
  transition: 0.2s;
}

.card__images-nav .card__images-nav_slide.slick-slide.slick-current.slick-active .bg {
  border: 5px solid #f1f1f1;
}

.card__info {
  padding-left: 30px;
  position: relative;
}

.card__info-top {
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}

.card__info-name {
  font-size: 24px;
  margin-bottom: 15px;
}

.card__info-name span {
  text-transform: uppercase;
}

.card__info .category__box-article {
  font-size: 18px;
}

.card__info-price_old {
  color: #a6a6a6;
  font-size: 24px;
  text-decoration: line-through;
}

.card__info-price_new {
  font-size: 36px;
  color: #39b54a;
}

.card__info-price_new .val {
  margin-left: 40px;
  color: #191919;
  font-size: 24px;
}

.card__info-social {
  position: absolute;
  right: 0;
  bottom: 20px;
  display: flex;
  align-items: center;
}

.card__info-social > span {
  color: #000000;
  margin-right: 15px;
}

.card__info-social ul {
  display: flex;
}

.card__info-social ul li {
  width: 20px;
  height: 20px;
  margin-right: 15px;
}

.card__info-center {
  padding: 20px 0 25px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  flex-wrap: wrap;
}

.card__info-center_left {
  width: 50%;
}

.card__info-center_right {
  width: 50%;
}

.card__info-center_list li {
  margin-bottom: 15px;
}

.card__info-center_list .name {
  color: #191919;
}

.card__info-center_list .info {
  color: #a6a6a6;
  margin-left: 5px;
  font-weight: 100;
}

.card__info-center_link {
  display: flex;
}

.card__info-center_link .btn_basket {
  margin-right: 10px;
}

.card__info-quanty {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
}

.card__info-quanty .card__info-quanty_text {
  font-size: 18px;
}

.card__info-quanty_name {
  width: 100%;
  margin-bottom: 10px;
}

.card__info-quanty-text {
  font-size: 18px;
}

.card__info-quanty .category__box-count {
  position: relative;
  padding-top: 0;
  width: auto;
  margin-right: 15px;
}

.card__info-quanty .count_text {
  width: 50px;
  height: 48px;
}

.card__info-quanty .count_text:focus {
  border: 1px solid #39b54a;
}

.card__info-quanty .count_plus {
  height: 48px;
  width: 30px;
}

.card__info-quanty .count_minus {
  height: 48px;
  width: 30px;
}

.card__info-payment {
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
}

.card__info-payment img {
  margin-right: 30px;
}

.card__info-advantage {
  padding-top: 25px;
}

.card__info-advantage ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card__info-advantage ul li {
  width: 50%;
  padding: 5px 10px 5px 27px;
  background-image: url(../images/tick.png);
  background-position: left center;
  background-repeat: no-repeat;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 100;
}

.category__box {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  margin-right: 30px;
  margin-bottom: 30px;
  width: calc((100% / 3) - (30px - (30px / 3)));
}

@media screen and (max-width: 1440px) {
  .main_progect .slick-prev {
    left: -135px;
  }
  .main_progect .slick-next {
    right: -135px;
  }
  .category {
    padding-top: 15px;
  }
  .category__box {
    max-width: 100%;
    width: calc((100% / 2) - (15px - (15px / 2)));
    margin-right: 15px;
    margin-bottom: 15px;
  }
  .category__box:nth-child(3n) {
    margin-right: 15px;
  }
  .category__box:nth-child(2n) {
    margin-right: 0;
  }
  .header__link {
    max-width: 170px;
  }
  .breadcrumbs {
    height: 70px;
    padding-left: 20px;
  }
  .breadcrumbs__page-name {
    font-size: 22px;
  }
  .menu-nav__link {
    padding: 0 16px;
  }
  .main__slide::before {
    width: 20px;
    left: -20px;
  }
  .main__slide::after {
    width: 20px;
    right: -20px;
  }
  .header_bottom-search__text {
    width: 1100px;
  }
  .header_top .border {
    margin-right: 10px;
    padding-top: 10px;
  }
  .header_top .border {
    padding-right: 10px;
  }
  .header_top .border:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  .header__link {
    padding-right: 0px;
  }
  .global__zag--full {
    padding: 15px;
  }
  .main_progect-sl-text {
    padding: 0px 0 20px 0;
  }
  .main_progect {
    padding: 30px;
  }
  .main_article {
    padding: 0 0 30px;
  }
  .subscribe__block {
    margin: 15px 0;
    padding: 30px;
  }
  .global__zag-h, .quest__block-zag .zag {
    font-size: 30px;
  }
  .main_progect .slick-prev, .main_progect .slick-next {
    bottom: -62px;
  }
  .main_progect-container--overflow {

  }
  .compare__slide .border {
    width: calc(100% - 10px);
  }
  .compare__slide {
    max-width: 284px;
  }
  .compare__container .basket__container-top {
    margin-right: 10px;
    width: calc(((100% / 12) * 9) - 10px);
  }
  .compare__slide .category__box {
    margin-bottom: 20px;
  }
  .compare__slide .border {
    padding-bottom: 20px;
  }
  .compare__left-list {
    margin-bottom: 21px;
  }
  .compare--list ul li:nth-child(odd)::after {
    content: '';
    width: 10px;
    position: absolute;
    right: -10px;
    background-color: #f1f4f5;
    height: 100%;
    top: 0;
  }
  .compare__slide .close {
    right: 13px;
  }
  .ordering {
    padding: 30px 15px 0;
  }
  .ordering__total-price .num {
    font-size: 26px;
  }
  .ordering__block-check label {
    font-size: 14px;
  }
}

@media screen and (max-width: 1200px) {
  .used_product-slider .slick-prev, .used_product-slider .slick-next {
    top: -30px;
  }
  .main_progect .slick-prev,
  .main_progect .slick-next {
    width: 30px;
    height: 30px;
  }
  .main_progect .slick-prev {
    left: -120px;
  }
  .main_progect .slick-next {
    right: -120px;
  }
  .header__time-show {
    font-size: 14px;
    margin-top: 5px;
  }
  .header__number--popup {
    font-size: 14px;
  }
  .header__link {
    max-width: 150px;
  }
  .ordering__block-check:nth-child(2),
  .ordering__block-check {
    width: 100%;
  }
  .ordering {
    padding: 15px 0;
  }
  .ordering__block-check_zag {
    margin-bottom: 10px;
  }
  .ordering__block {
    margin-bottom: 10px;
  }
  .ordering__block-list_items .basket__item-name {
    width: 35%;
  }
  .ordering__total-price {
    font-size: 18px;
  }
  .ordering__total-price .num {
    font-size: 22px;
  }
  .ordering__block-list_items {
    padding-top: 10px;
  }
  .ordering__block-zag {
    margin-bottom: 10px;
  }
  .ordering__block-input {
    margin-bottom: 15px;
  }
  .compare__slider .slick-prev, .compare__slider .slick-next {
    top: -36px;
  }
  .compare__slide {
    max-width: 365px;
  }
  .basket {
    padding: 15px;
  }
  .basket__container-top {
    margin-bottom: 15px;
  }
  .basket__item {
    margin-bottom: 10px;
  }
  .basket__item-img {
    width: 18%;
  }
  .basket__item-name {
    font-size: 16px;
  }
  .basket__item {
    padding-right: 60px;
  }
  .basket__container-top .btn_refresh {
    right: 15px;
  }
  .basket__total-count {
    font-size: 18px;
    padding: 0 0px 10px 0px;
    margin-bottom: 15px;
  }
  .basket__total-text {
    padding: 15px 20px;
    margin-bottom: 10px;
  }
  .basket__total-price {
    font-size: 24px;
  }
  .basket__item-price_num {
    font-size: 16px;
  }
  .basket__item-price_zag {
    font-size: 14px;
  }
  .progect__info-block {
    padding: 30px 15px 60px;
  }
  .used_product {
    padding: 15px;
  }
  .progect__info .global__zag,
  .progect__info .progect__info-main__text {
    padding-left: 15px;
  }
  .progect__info-block__list {
    margin-bottom: 10px;
  }
  .progect__info-block__zag {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .comment__block-video .video__block-text {
    padding: 20px 30px;
  }
  .comment__block .slick-dots {
    width: calc(50% - 20px);
  }
  .comment__block .slick-dots li button {
    width: 30px;
    height: 30px;
  }
  .comment__block-text-zag {
    font-size: 20px;
    margin: 10px 0 10px;
  }
  .slick-dotted.slick-slider {
    margin-bottom: 0;
  }
  .progect__info-block__slider::before {
    width: 15px;
  }
  .comment__block-video .video__block {
    height: 300px;
  }
  .progect__info-block__slide a {
    width: calc(100% - 15px);
    height: 100%;
    margin-right: 15px;
  }
  .progect__info-block__slide {
    height: 160px;
  }
  .progect__info-block__slider {
    width: calc(100% + 15px);
  }
  .progect__info--link_center {
    padding: 20px 0 10px;
  }
  .comment__block .slick-dots li {
    width: 35px;
    height: 35px;
  }
  .comment__block-text-name {
    font-size: 20px;
  }
  .comment__block .slick-dots li.slick-active button {
    width: 40px;
    height: 40px;
  }
  .comment__block-text {
    padding-left: 20px;
    padding-bottom: 40px;
  }
  .comment__block {
    padding: 30px 15px;
  }
  .progect__info-block__slider .slick-prev, .progect__info-block__slider .slick-next {
    bottom: -55px;
  }
  .progect__info {
    padding-top: 15px;
  }
  .main_progect-container--overflow {

  }
  .video__block-text_p {
    font-size: 14px;
  }
  .video__block-text_zag {
    font-size: 25px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .video__block-text {
    padding: 30px;
  }
  .video__block {
    height: 350px;
  }
  .header__logo img {
    margin: 0 15px;
    max-width: 120px;
  }
  .header__number--link {
    font-size: 14px;
  }
  .header__number--popup {
    margin-top: 5px;
  }
  .header--ico {
    padding-left: 25px;
  }
  .header--ico.phone {
    background-size: 20px;
  }
  .header--ico.clock {
    background-size: 20px;
  }
  .header__logo .slogan {
    font-size: 12px;
  }
  .header__basket-text {
    font-size: 10px;
  }
  .header__basket {
    width: 100px;
  }
  .header__basket-img span {
    right: 12px;
  }
  .header__time-list li {
    font-size: 14px;
  }
  .header__number {
    max-width: 175px;
  }
  .menu-nav__link {
    padding: 0 9px;
    font-size: 14px;
  }
  .breadcrumbs {
    padding-left: 15px;
    padding-right: 20px;
    height: 60px;
  }
  .header_bottom-search-sbmt {
    width: 20px;
    height: 20px;
  }
  .menu-nav__item {
    padding: 15px 0;
  }
  .header_bottom-search__text.open {
    top: -5px;
  }
  .header_bottom-search__text {
    width: 890px;
    padding: 5px 10px;
    padding-right: 40px;
  }
  .header_bottom-search__text .close {
    width: 20px;
    height: 20px;
  }
  .main__slide-slide {
    height: 450px;
  }
  .main__slide-text .zag {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .main__slide-text > div {
    max-width: 730px;
  }
  .main__slide-text .desc {
    margin-bottom: 15px;
  }
  .link--gr-wt {
    padding: 10px 20px;
  }
  .main__slide .slick-prev, .main__slide .slick-next {
    width: 30px;
    height: 30px;
  }
  .main__product {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .main__product-item {
    width: calc(33.33% - 7px);
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .main__product-item:nth-child(4n) {
    margin-right: 10px;
  }
  .main__product-item:nth-child(3n) {
    margin-right: 0px;
  }
  .global__zag-h {
    margin-bottom: 15px;
  }
  .main__product-link {
    margin-top: 5px;
  }
  .progress_job-block-num {
    font-size: 25px;
    width: 50px;
    height: 50px;
  }
  .progress_job-block::before {
    top: 25px;
  }
  .progress_job-block-zag {
    font-size: 20px;
    margin: 20px 0 10px;
  }
  .progress_job {
    padding: 15px;
  }
  .quest__block {
    margin: 15px 0;
    padding: 15px;
  }
  .quest__block-zag .zag {
    margin-bottom: 10px;
  }
  .quest__block-link a:first-child {
    margin-bottom: 10px;
  }
  .link__quest--white {
    font-size: 20px;
    padding-left: 30px;
  }
  .link__quest--phone {
    background-position: left 10px center;
  }
  .quest__block-link {
    max-width: 265px;
  }
  .link__quest {
    font-size: 16px;
  }
  .link__quest--green {
    padding: 12px 20px;
  }
  .main_company {
    padding: 15px;
  }
  .main_company-text p {
    margin-bottom: 15px; margin-top:10px;
  }
  /* .main_company-text p {
    padding: 0 15px;
  } */
  .main_company-img {
    height: 45px;
    margin-bottom: 10px;
  }
  .main_company-text {
    font-size: 13px;
  }
  .global__zag-h, .quest__block-zag .zag {
    font-size: 25px;
  }
  .main_progect-text-link {
    padding: 5px 10px;
  }
  .main_progect-sl-text__name {
    font-size: 18px;
  }
  .main_progect-sl-text_change {
    line-height: 1.4;
  }
  .main_article-block__img {
    width: 180px;
    height: 210px;
  }
  .main_article-block__text {
    width: calc(100% - 190px);
    padding-right: 30px;
  }
  .main_article-block__text .date,
  .main_article-block__text .name,
  .main_article-block__text .text {
    margin-bottom: 10px;
  }
  .main_article-block__text .name {
    font-size: 18px;
  }
  .main_article-block__text .text {
    font-size: 14px;
  }
  .main_article-block__text .date {
    font-size: 12px;
  }
  .link_more {
    font-size: 14px;
  }
  .main_progect {
    padding: 15px;
  }
  .subscribe__block-text-zag {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .subscribe__block-form .input__text {
    padding: 10px;
    width: 300px;
  }
  .subscribe__block-form .input__sbmt {
    padding: 10px;
    font-size: 14px;
  }
  .footer__top-list {
    margin-right: 30px;
  }
  .footer_zag {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .footer__top-contact-logo img {
    max-width: 130px;
    margin-right: 5px;
  }
  .footer__top-contact-logo a .slogan {
    font-size: 12px;
  }
  .footer__top-map {
    max-width: 370px;
    padding: 0 15px;
  }
  .footer li a,
  .footer__top-map-list li {
    font-size: 14px;
  }
  .footer__top-contact-item {
    margin-bottom: 10px;
  }
  .footer__top {
    padding: 30px 15px;
  }
  .footer__bottom {
    padding: 15px;
  }
  .progress_job-block:hover:first-child:before {
    left: 30%;
  }
  .progress_job-block:hover:last-child:before {
    width: 30%;
  }
  .main_company-block {
    padding: 0 10px;
  }
  .main__product--page {
    padding: 0;
  }
  .video__block--small {
    width: calc((100% / 3) - (15px - (15px / 3)));
    margin-right: 15px;
    margin-bottom: 15px;
    height: 150px;
  }
  .video__block--small:nth-child(3n) {
    margin-right: 0;
  }
  .video__block--small:nth-child(4n) {
    margin-right: 15px;
  }
  .video__block--small .video__block-text_zag {
    font-size: 14px;
    margin-top: 10px;
  }
  .video__block-text_img {
    width: 50px;
    height: 50px;
  }
  .main_progect {
    margin: 0;
  }
  .slider__client {
    margin: 0 15px;
  }
  .slider__client-container {
    margin: 15px;
  }
  .service__video-text {
    padding-right: 20px;
  }
  .service__video-text p {
    font-size: 14px;
  }
  .cost__list {
    margin-bottom: 30px;
  }
  .cost__item-price_number {
    font-size: 20px;
  }
  .cost__item-price {
    font-size: 16px;
  }
  .service_tab-list {
    padding: 25px 0 20px;
  }
  .seo__text {
    padding: 10px 15px 25px;
  }
  .service__video {
    padding: 20px 15px;
  }
  .card__tabs-tab.video__block--catalog .video__block--small:nth-child(4n) {
    margin-right: 15px;
  }
  .card__tabs-tab.video__block--catalog .video__block--small {
    height: 230px;
    width: calc((100% / 3) - (15px - (15px / 3)));
    margin-bottom: 15px;
  }
  .card__tabs-tab.video__block--catalog .video__block--small:nth-child(3n) {
    margin-right: 0;
  }
  .card__tabs-tab-list {
    padding: 0 15px;
  }
  .card__tabs-tab .video__block {
    height: 300px;
  }
  .card__tabs-tab {
    padding-top: 20px;
  }
  .card__tabs-tab-list li .name,
  .card__tabs-tab-list li .desc {
    font-size: 14px;
  }
  .card__tabs-tab-list_btn {
    padding-left: 0;
  }
  .card__tabs-tab-list_btn .card__list-btn {
    padding: 10px 15px;
  }
  .progect__info-block__slider .slick-next {
    right: 15px;
  }
  .progect__info-block__slider .slick-prev {
    right: 65px;
  }
}

@media screen and (max-width: 990px) {
  .used_product-slider {
    padding-bottom: 15px;
  }
  .header-mob__call {
    display: block;
  }
  .video__block--catalog .video__block {
    margin: 0;
    margin-right: 10px;
    margin-bottom: 15px;
  }
  .main__slide .slick-list.draggable {
    overflow: hidden;
  }
  .main__slide::after {
    content: none;
  }
  .main__slide::before {
    content: none;
  }
  .header_top .border {
    margin: 0;
    padding: 0;
    border: 0;
  }
  .header__link {
    display: none;
  }
  .menu_burger {
    display: block;
    position: absolute;
    left: 20px;
  }
  .header__logo {
    left: 70px;
    position: absolute;
  }
  .header_top {
    position: relative;
  }
  .header__logo .slogan {
    display: none;
  }
  .header_top .header__time,
  .header_top .header__number {
    display: none;
  }
  .header__basket-img img {
    width: 35px;
    height: 30px;
  }
  .header__basket-img span {
    width: 23px;
    height: 23px;
    font-size: 10px;
  }
  .header__basket-text {
    display: none;
  }
  .header__basket {
    width: 70px;
  }
  .header_top {
    padding: 25px 0;
    align-items: center;
    justify-content: flex-end;
    height: 80px;
    z-index: 30;
    background-color: #fff;
  }
  .header_bottom {
    position: absolute;
    z-index: 10;
    flex-wrap: wrap;
    background-color: #fff;
    left: 0px;
    border-top: 1px solid #787978;
    padding: 0 20px;
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.22);
  }
  .menu-nav {
    width: 100%;
    order: 2;
  }
  .menu-nav__list {
    flex-wrap: wrap;
  }
  .menu-nav__item {
    width: 100%;
  }
  .header_bottom-search {
    width: 100%;
    position: relative;
    order: 1;
    right: auto;
    top: auto;
    padding: 20px 0px;
    border-bottom: 1px solid #e8e8e8;
  }
  .menu-nav__link {
    border-right: 0;
  }
  .header_bottom-search__text {
    position: relative;
    top: auto;
    right: auto;
    top: auto;
  }
  .header_bottom-search__text {
    width: 100%;
    visibility: visible;
    padding: 0;
    background-color: #fff;
    box-shadow: none;
    opacity: 1;
  }
  .header_bottom-search__text .close {
    display: none;
  }
  .header_bottom-search__text input {
    border: 0;
    background-color: #f2f4f5;
    padding: 13px 50px 13px 10px;
    width: 100%;
  }
  .header_bottom-search-sbmt {
    position: absolute;
    right: 15px;
    top: 11px;
    opacity: 0.6;
  }
  .menu-nav__link {
    font-size: 16px;
    padding-left: 4px;
  }
  .menu-nav__list {
    padding: 15px 0;
  }
  .mobile-block__append {
    order: 3;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    background-color: #f2f4f5;
    justify-content: center;
    align-items: center;
  }
  .header__time {
    width: 50%;
  }
  .header__number {
    width: 50%;
    max-width: 100%;
  }
  .header__time-list li,
  .header__number--link {
    font-size: 16px;
  }
  .header--ico.clock {
    background-size: 35px;
  }
  .header--ico {
    padding-left: 50px;
  }
  .header--ico.phone {
    background-size: 30px;
  }
  .header_bottom {
    left: -100%;
    top: calc(0% + 0px);
    overflow: hidden;
    transition: 0.3s;
    z-index: 20;
    padding-bottom: 15px;
  }
  .header_bottom.open {
    left: 0;
    top: calc(0% + 81px);
    overflow: visible;
  }
  .header__logo img {
    margin: 0;
  }
  .main__slide-slide {
    margin-top: 0;
  }
  .container_shadow {
    padding: 0;
  }
  .main_article {
    padding: 0 20px;
  }
  .video__block {
    margin: 0 20px;
  }
  .card__tabs-tab.video__block--catalog .video__block--small {
    margin-bottom: 10px;
    margin-right: 10px;
  }
  .card__tabs-tab.video__block--catalog .video__block--small:nth-child(4n) {
    margin-right: 10px;
  }
  .card__images.col-4 {
    width: 40%;
  }
  .card__info.col-8 {
    width: 60%;
  }
  .card__info-name {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .category__box-stars {
    top: 0;
  }
  .card__info-price_new {
    font-size: 26px;
  }
  .card__info-price_old {
    font-size: 18px;
  }
  .card__info-price_new .val {
    margin-left: 15px;
  }
  .card__info-social {
    bottom: 22px;
  }
  .card__info-top {
    padding-bottom: 10px;
  }
  .card__info-center {
    padding: 10px 0;
  }
  .card__info-center_list li {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .card__info-quanty_name {
    font-size: 14px;
  }
  .card__info-payment {
    padding: 10px 0;
  }
  .card__info-advantage {
    padding-top: 10px;
  }
  .card__images-once_slide .bg {
    height: 370px;
  }
  .product_advantage-list--bg li {
    font-size: 16px;
    width: calc((100% / 4) - 10px);
    padding-left: 50px;
    background-position: left 15px center;
    background-size: 25px;
  }
  .product_advantage-list li .name {
    font-size: 14px;
  }
  .product_advantage-list li .desc {
    font-size: 14px;
  }
  .used_product {
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
  }
  .card__tabs-quest__block:first-child {
    padding-top: 10px;
  }
  .card__tabs-quest__block .text .name {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .card__tabs-quest__block ul:first-child {
    margin-bottom: 15px;
  }
  .card__tabs-quest__block .text p {
    font-size: 14px;
  }
  .card__tabs-quest__block .img {
    width: 70px;
    height: 50px;
  }
  .card__tabs-quest__block .img div {
    height: 100%;
    background-size: contain;
  }
  .card__tabs-quest__block .text {
    width: calc(100% - 70px);
  }
  .card__tabs-quest__block {
    padding: 15px 0;
  }
  .card__tabs-form {
    padding-top: 15px;
  }
  .form_popup-zag {
    margin-bottom: 15px;
  }
  .form_popup-zag .zag {
    font-size: 22px;
  }
  .card {
    padding: 20px;
  }
  .main_article {
    margin: 0;
  }
  .main_article-noSlider .main_article-block {
    width: calc(50% - 15px);
    margin-right: 15px;
    margin-bottom: 15px;
  }
  .ordering {
    padding: 20px;
  }
  .filter {
    width: 240px;
  }
  .category-container__right {
    width: calc(100% - 250px);
  }
}

@media screen and (min-width: 801px) {
    .progress_job-block:hover .progress_job-block-num {
      left: calc(50% - 35px);
    }
   .progress_job {padding: 0 20px !important;}
   .progress_job-block-num {margin-left: 0px !important;}
}

@media screen and (max-width: 800px) {
  .video__block--catalog .video__block {
    width: calc((100% / 2) - (15px - (15px / 2)));
    margin-right: 0px;
    margin-bottom: 15px;
    height: 150px;
  }
  /* .video__block--small .video__block-text_zag {
    height: 25px;
  } */
  .video__block--catalog {
    justify-content: space-between;
  }
  .main_article-block__text {
    padding-left: 25px;
  }
  .main_article {
    margin: 0;
  }
  .main_article {
    padding-bottom: 0;
  }
  .subscribe__block-text {
    width: auto;
    margin-bottom: 20px;
    padding-right: 15px;
  }
  .subscribe__block {
    flex-wrap: wrap;
    justify-content: center;
  }
  .subscribe__block-text-zag {
    font-size: 18px;
  }
  .subscribe__block-text-p {
    font-size: 14px;
  }
  .main_article-block__text .name {
    font-size: 22px;
  }
  .main_article-block__text .text {
    font-size: 16px;
  }
  .main_article-block__text .date {
    font-size: 14px;
  }
  .link_more {
    font-size: 16px;
  }
  .footer__top-contact-logo a .slogan {
    display: none;
  }
  .footer__top {
    flex-wrap: wrap;
  }
  .footer__top-map-list {
    margin-top: 0;
  }
  .footer__top-list-container {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    order: 2;
    margin-top: 15px;
  }
  .footer__top-list {
    order: 2;
  }
  .footer__top-list ul {
    flex-wrap: wrap;
  }
  .footer__top-list:last-child {
    width: calc(100% - 300px);
    order: 1;
  }
  .footer__top-list:last-child ul {
    display: flex;
  }
  .footer__top-list:last-child ul li {
    width: 50%;
  }
  .footer__top-map {
    order: 2;
  }
  .footer__top-contact {
    max-width: 50%;
  }
  .main_progect-slider::before {
    content: none;
  }
  .main_progect-slider::after {
    content: none;
  }
  .main_progect-slider {
    width: 100% !important;
  }
  .main_progect .slick-prev {
    left: 20px;
  }
  .main_progect .slick-next {
    right: 20px;
  }
  .main_progect {
    padding: 15px 20px;
  }
  .main_progect {
    margin-top: 0px;
    border-top: 1px solid #dbdbdb;
  }
  .main_progect .global__zag.global__zag--half.col-3 {
    width: 100%;
    text-align: center;
  }
  .main_progect .global__zag.global__zag--half.col-3 > div {
    text-align: center;
  }
  .main_progect .main_progect-text.col-9 {
    width: 100%;
  }
  .basket .global__zag.global__zag--half.col-3 {
    width: 100%;
    text-align: center;
  }
  .basket .global__zag.global__zag--half.col-3 > div {
    text-align: center;
  }
  .main_progect-text-list {
    justify-content: center;
    margin-bottom: 20px;
  }
  .main_company {
    margin: 0;
    border-bottom: 0;
  }
  .main_company .global__zag {
    display: none;
  }
  /* .main_company .main_company-text > p {
    display: none;
  } */
  .main_company-block {
    width: 33.33%;
  }
  .main__slide-text > div {
    max-width: 80%;
  }
  .card__info.col-8,
  .card__images.col-4 {
    width: 50%;
  }
  .card__info-top {
    padding: 40px 0;
  }
  .card__info-social {
    bottom: 10px;
    left: 0;
  }
  .card__info-center_left,
  .card__info-center_right,
  .card__info-advantage ul li {
    width: 100%;
  }
  .card__images-once_slide .bg {
    height: 430px;
  }
  .product_advantage-list--bg li,
  .product_advantage-list li {
    width: calc(50% - 10px);
    margin-bottom: 10px;
  }
  .card__tabs-tab_p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .used_product .global__zag.global__zag--half {
    width: 100%;
  }
  .card__tabs .w50 {
    width: 100%;
  }
  .card__tabs-tab .video__block {
    margin: 15px 0;
  }
  .card__tabs-tab.video__block--catalog .video__block--small {
    height: 230px;
    width: calc((100% / 2) - (10px - (10px / 2)));
    margin-bottom: 10px;
    margin-right: 10px;
    margin-top: 0;
  }
  .card__tabs-tab.video__block--catalog .video__block--small:nth-child(2n) {
    margin-right: 0;
  }
  .card__tabs-tab.video__block--catalog .video__block--small:nth-child(3n) {
    margin-right: 10px;
  }
  .card__tabs-tab.video__block--catalog .video__block--small:nth-child(4n) {
    margin-right: 0px;
  }
  .card__tabs-form > form {
    width: 100%;
    padding-top: 20px;
  }
  .card__tabs-progects_block {
    width: calc((50% + (10px / 2)) - 10px);
    height: 270px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .card__tabs-progects_block:nth-child(3n) {
    margin-right: 10px;
  }
  .card__tabs-progects_block:nth-child(2n) {
    margin-right: 0;
  }
  .card__tabs-progects_block .name {
    padding: 10px 0;
  }
  .card__tabs-progects_block .bg {
    height: calc(100% - 40px);
  }
  .card__tabs-list li {
    font-size: 14px;
  }
  .seo__text .col-3,
  .seo__text .col-9 {
    width: 100%;
  }
  .seo__text .main_company-text p {
    padding: 0;
  }
  .global__zag--half > div {
    text-align: center;
  }
  .main_article-noSlider .main_article-block {
    width: 100%;
    margin-right: 0;
    border: 1px solid #f2f5f6;
  }
  body .service_tab-list {
    width: 100%;
  }
  .service_tab-list .main_company-container {
    border-bottom: 0;
  }
  .service_tab-list ul li {
    border: 1px solid #e8e8e8;
    padding: 20px;
  }
  .service_tab-list ul li.active {
    border-color: #00a72d;
  }
  .service_tab-list .main_company-block:hover:before {
    content: none !important;
  }
  .service_tab-list ul li.active .main_company-block::before {
    content: none !important;
  }
  .progress_job.service--pt {
    display: block;
    padding-bottom: 50px;
  }
  .progress_job.service--pt .slick-prev {
    left: 40px;
    width: 30px;
    top: auto;
    bottom: -40px;
  }
  .progress_job.service--pt .slick-next {
    right: 40px;
    width: 30px;
    top: auto;
    bottom: -40px;
  }
  .progress_job.service--pt .slick-prev:before {
    content: url(../images/ar_gray_l.png);
  }
  .progress_job.service--pt .slick-next:before {
    content: url(../images/ar_gray_r.png);
  }
  .progress_job-block::before {
    content: none;
  }
  .progress_job-block {
    padding-right: 0px;
    position: relative;
  }
  .progress_job-block-num {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .progress_job-block-zag,
  .progress_job-block-p {
    padding-left: 80px;
    padding-right: 20px;
  }
  .main_company-text {
    font-size: 16px;
  }
  .service__video {
    padding: 0 20px;
  }
  .service__video-text {
    width: 100%;
  }
  .service__video-img {
    width: 100%;
  }
  .service__video-img .video__block {
    margin: 20px 0;
  }
  .slider__client .global__zag.global__zag--half.col-3 {
    width: 100%;
  }
  .progect__info .global__zag.global__zag--half.col-5 {
    width: 100%;
  }
  .progect__info-block__slider .slick-next {
    right: 20px;
  }
  .progect__info-block__slider .slick-prev, .progect__info-block__slider .slick-next {
    bottom: auto;
    top: -30px;
  }
  .progect__info-block__list {
    margin-bottom: 50px;
  }
  .comment__block-video .video__block-text_p {
    display: none;
  }
  .comment__block-video .video__block {
    height: 250px;
  }
  .comment__block-text-name {
    margin: 10px 0;
  }
  .comment__block-text {
    padding-bottom: 60px;
  }
  .ordering__block--left,
  .ordering__block--right,
  .ordering__block-list_items {
    width: 100%;
  }
  .ordering__block-list_items .basket__item-name {
    width: 60%;
  }
  .category__selection-list ul li {
    margin-left: 0px;
    margin-right: 20px;
  }
  .category__selection-list ul {
    justify-content: flex-start;
  }
  .category .global__zag.global__zag--half {
    width: 100%;
  }
  .filter {
    width: 100%;
  }
  .category-container__right {
    width: 100%;
  }
  .category-container__left {
    width: 100%;
  }
  .filter {
    position: relative;
  }
  .filter-name {
    position: relative;
  }
  .filter-name::before {
    content: '';
    position: absolute;
    right: 18px;
    top: calc(50% - 1px);
    background-color: #fff;
    width: 9px;
    height: 1px;
  }
  .filter-name::after {
    content: '';
    position: absolute;
    right: 22px;
    top: calc(50% - 5.5px);
    background-color: #fff;
    width: 1px;
    height: 9px;
    transition: 0.2s;
  }
  .filter-name.open::after {
    top: calc(50% - 1px);
    height: 1px;
    background-color: transparent;
  }
  .filter-mob__container {
    display: none;
    position: absolute;
    top: 100%;
    background-color: #fff;
    z-index: 400;
    width: 100%;
    max-width: calc(100% - 45px) !important;
    padding: 20px;
    margin-top: 3px;
    border-radius: 0px 0px 20px 20px !important;
  }
  .used_product .global__zag--half > div {
    text-align: left;
  }
  .product_advantage-list--certificate li {
    width: auto;
  }
  .slider__client .global__zag > * {
    text-align: left;
  }
  .slider__client-container {
    margin: 0;
  }
  .slider__client .slick-prev, .slider__client .slick-next {
    width: 30px;
    height: 30px;
  }
  .slider__client-slide .bg {
    margin: 0;
    width: calc(100% - 15px);
    margin-right: 15px;
  }
  .slider__client-slide img {
    width: calc(100% - 15px);
    margin-right: 15px;
  }
  .slider__client-container {
    width: calc(100% + 15px);
  }
  .slider__client {
    margin: 0 20px;
  }
}

@media screen and (max-width: 600px) {
  .footer__top-list:last-child ul {
    flex-wrap: wrap;
    display: none;
  }
  .footer__top-list:last-child {
    width: 100%;
	margin-left: 0px!important;
  }
  .footer__top-list:last-child ul li {
    width: 100%;
	margin-left:0px!important;
  }
  .progress_job-block-num {
    box-shadow: none;
  }
  .compare .global__zag {
    width: 100% !important;
  }
  .compare .category__box-price {
    width: 100%;
  }
  .compare .category__box-price_old {
    display: none;
  }
  .compare .category__box-stars {
    display: none;
  }
  .compare .category__box-favorite {
    display: none;
  }
  .compare .slick-prev:before, .compare .slick-next:before {
    width: 100%;
    height: 100%;
  }
  .compare .category__box-top {
    padding-top: 20px;
  }
  .compare .category__box-name {
    font-size: 8px;
    margin-bottom: 15px;
  }
  .compare .category__box-article {
    font-size: 8px;
  }
  .compare .category__box-price_zag {
    font-size: 7px;
  }
  .compare .category__box-price_new {
    font-size: 10px;
  }
  .compare .category__box-video {
    display: none;
  }
  .compare .link--gr-bl span {
    font-size: 7px;
  }
  .compare .category__box-link a {
    padding: 4px 0;
    margin-bottom: 0;
  }
  .compare .category__box-sales span {
    width: 65px;
    height: 16px;
    font-size: 7px;
  }
  .compare .category__box-img {
    height: 120px;
  }
  .compare__slide .close {
    z-index: 50;
  }
  .compare__slide .category__box {
    height: 400px;
  }
  .compare__slider .slick-next:before {
    content: url(../images/ar_black_right.png);
    font-size: 0;
  }
  .compare__slider .slick-prev:before {
    content: url(../images/ar_black_right.png);
    transform: rotate(-180deg);
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .compare__left.col-3,
  .compare__left.col-9 {
    width: 50%;
  }
  .compare--list ul li {
    font-size: 12px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
  }
  .compare__slider .slick-prev, .compare__slider .slick-next {
    top: 360px;
    width: 45px;
    height: 45px;
    border: 1px solid #e8e8e8;
    z-index: 10;
    background-color: #fff;
  }
  .compare__slider .slick-next {
    left: auto;
    right: 20px;
  }
  .compare__slide .category__box {
    margin-bottom: 0;
    padding-bottom: 80px;
  }
  .compare__container-info {
    margin-bottom: 40px;
  }
  .compare__slide .close {
    width: 30px;
    height: 30px;
    top: 0px;
    right: 10px;
    background-size: 10px;
  }
  .compare__slide .category__box {
    padding-right: 20px;
  }
  .compare__slide .border {
    width: 100%;
  }
  .compare__container .basket__container-top {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
  .compare__slide {
    max-width: 100%;
  }
  .slider__client-slide {
    margin-bottom: 15px;
    max-width: 100%;
    margin: 15px 20px;
    height: 80px;
  }
  .slider__client-slide .bg {
    margin: 0;
    width: 100%;
    height: 100%;
  }
  .slider__client-slide img {
    width: 100%;
  }
  .slider__client-container {
    margin: 0;
  }
  .hide-xs {
    display: none;
  }
  .breadcrumbs {
    height: auto;
    margin: 0;
    padding: 20px 10px;
  }
  .bx-breadcrumb {
    width: 100%;
    height: auto;
  }
  .breadcrumbs {
    flex-wrap: wrap;
  }
  .breadcrumbs__page-name {
    text-align: center;
    width: 100%;
    padding: 10px;
    display: none;
  }
  .form_popup-calculate .w50 .form_popup-block:first-child {
    padding-right: 10px;
  }
  .form_popup-calculate .w50 {
    width: 100%;
  }
  .form_popup-small,
  .form_popup-calculate {
    padding: 20px;
  }
  .form_popup-zag .zag {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .form_popup-zag {
    margin-bottom: 10px;
  }
  .form_popup-block {
    margin-bottom: 10px;
  }
  .form_popup--input_text {
    padding: 10px;
  }
  .form_popup--sbmt {
    padding: 10px;
  }
  .form_popup-container_num {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px;
  }
  .form_popup-num {
    width: calc(50% - 5px);
  }
  .jq-number__field input {
    width: 40px;
    height: 40px;
  }
  .jq-number.styler {
    width: 65px;
    padding-right: 0;
  }
  .jq-number__field {
    width: 65px;
  }
  .form_popup-num .name {
    font-size: 12px;
    width: 50px;
    width: 90px;
  }
  .form_popup-num {
    justify-content: flex-start;
  }
  .form_popup-block--sbmt .form_popup--sbmt {
    width: auto;
    min-width: 180px;
  }
  .form_popup-calculate .w50 .form_popup-block:first-child {
    padding-right: 0;
  }
  .form_popup-calculate .form_popup-zag {
    order: 1;
  }
  .w50.form_popup-container_text {
    order: 3;
  }
  .w50.form_popup-container_num {
    order: 2;
  }
  .form_popup-block.form_popup-block--sbmt {
    order: 4;
  }
  .form_popup-block--sbmt {
    margin-top: 10px;
    padding-top: 10px;
  }
  .footer__top-contact {
    max-width: 100%;
    width: 100%;
    margin-bottom: 25px;
  }
  .footer__top-contact-logo {
    margin-bottom: 30px;
  }
  .footer__top-list-container {
    max-width: 100%;
    width: 100%;
  }
  .footer__top-list {
    margin: 0;
    width: 100%;
  }
  .footer__top-list:nth-child(1) {
    order: 2;
  }
  .footer__top-map {
    padding: 0;
  }
  .footer__top-map img {
    margin-top: 30px;
  }
  .footer__top-map-list {
    padding-right: 25px;
  }
  .footer__bottom {
    font-size: 12px;
    line-height: 1.5;
  }
  .footer__top-list ul {
    padding: 15px;
    display: none;
  }
  .footer_zag {
    margin-bottom: 15px;
  }
  .footer li a, .footer__top-map-list li {
    font-size: 16px;
  }
  .footer__top-map-list li {
    font-size: 14px;
  }
  .footer__top-list .footer_zag {
    width: auto;
    display: inline-block;
    padding-right: 30px;
    position: relative;
  }
  .footer__top-list .footer_zag::before {
    content: '';
    position: absolute;
    right: 10px;
    top: 3px;
    width: 10px;
    height: 10px;
    background-image: url(../images/ar_w_r.png);
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(90deg);
    transition: 0.3s;
    background-position: center;
  }
  .footer__top-list .footer_zag.open::before {
    transform: rotate(-90deg);
  }
  .main__slide {
    max-height: 250px;
    overflow: hidden;
  }
  .main__slide-slide {
    height: 250px;
  }
  .main__slide-text .zag {
    font-size: 22px;
  }
  .main__slide-text .desc {
    font-size: 12px;
  }
  .main__slide-text .link--gr-wt {
    margin: 0 auto;
  }
  /*
  .main__slide-text > div {
    text-align: center;
  } */
  .main__slide .slick-prev {
    left: 5px;
  }
  .main__slide .slick-next {
    right: 5px;
  }
  .main__product:not(.main__product--page) {
    padding-top: 0;
    border-bottom: 0;
  }
  .main__product:not(.main__product--page) .global__zag {
    display: none;
  }
  .main__product:not(.main__product--page) .main__product-item {
    width: 100%;
    margin: 0;
  }
  .main__product:not(.main__product--page) .main__product-item {
    height: 60px;
    margin: 0 !important;
  }
  .main__product:not(.main__product--page) .main__product-item:hover {
    transform: none;
  }
  .main__product:not(.main__product--page) .main__product-name {
    height: 100%;
    background-color: #fff;
    color: #4b4b4b;
    border-bottom: 1px solid #e8e8e8;
    text-align: left;
    padding-left: 75px;
    justify-content: flex-start;
    background-position: left 15px center;
    background-repeat: no-repeat;
    position: relative;
  }
  .main__product:not(.main__product--page) .main__product-name::before {
    content: '';
    position: absolute;
    top: calc(50% - 6px);
    right: 20px;
    width: 12px;
    height: 12px;
    background-size: contain;
    background-image: url(../images/ar_black_right.png);
    background-position: center;
    background-repeat: no-repeat;
  }
  .main__product:not(.main__product--page) .main__product-item {
    background: none !important;
  }
  .main__product:not(.main__product--page) .main__product-item:hover .main__product-name {
    background-color: #fff;
  }
  .main__product:not(.main__product--page) .main__product-link {
    padding-bottom: 0;
  }
  .main_progect-text {
    position: relative;
  }
  .main_progect-text-list {
    display: block;
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    z-index: 999;
    width: 100%;
    top: 50px;
    padding:20px;
  }
  .main_progect-text-list li {
    width: 100%;
  }
  .main_progect-text--name {
    padding: 12px 18px;
    position: relative;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    margin-bottom: 30px;
    color: #39b54a;
    text-decoration: underline;
  }
  .main_progect-text--name::before {
    content: '';
    position: absolute;
    top: calc(50% - 6px);
    right: 20px;
    width: 10px;
    height: 10px;
    background-size: contain;
    background-image: url(../images/ar_bl_down.png);
    background-position: center;
    background-repeat: no-repeat;
  }
  .quest__block {
    flex-wrap: wrap;
    padding: 30px 15px;
  }
  .quest__block-zag {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .quest__block-link {
    max-width: 100%;
  }
  .card__info.col-8, .card__images.col-4 {
    width: 100%;
  }
  .card-mobile__name {
    padding: 10px 0 50px;
    position: relative;
    width: 100%;
  }
  .card-mobile__name .category__box-stars {
    bottom: 20px;
    top: auto;
    left: 0;
    right: auto;
  }
  .card__info-name {
    font-size: 24px;
  }
  .card__images-once_slide .bg {
    height: 325px;
  }
  .card__images-nav_slide .bg {
    /* height: 60px; */
  }
  .card__info {
    padding-left: 0;
  }
  .card__info-top {
    padding-top: 20px;
  }
  .card__info-price_old {
    font-size: 24px;
  }
  .card__info-price_new {
    font-size: 32px;
  }
  .card__info-center_list li {
    font-size: 16px;
  }
  .card__info-quanty_name {
    font-size: 16px;
  }
  .card__info-center {
    padding: 20px 0;
  }
  /* .card__info-advantage,
  .product_advantage-list--bg {
    display: none;
  } */
  .product_advantage-list--bg li, .product_advantage-list li {
    width: 100%; margin-right:0px !important;
  }
  .product_advantage-list {
    padding: 0;
    border-bottom: 0;
  }
  .card__tabs-list li {
    height: 50px;
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #e1e1e1 !important;
  }
  .card__tabs-tab .w50 .video__block {
    display: none;
  }
  .card__tabs-tab-list {
    padding: 0;
  }
  .card__tabs-tab.video__block--catalog .video__block--small,
  .card__tabs-progects_block {
    height: 200px;
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0px !important;
    margin-top: 0;
  }
  .card__tabs-progects_block .bg {
    padding-bottom: 10px;
  }
  .card__tabs-quest__block .img {
    width: 20px;
    height: 30px;
    margin-top: -5px;
  }
  .card__tabs-quest__block .text {
    width: calc(100% - 25px);
    padding-left: 10px;
  }
  .card__tabs-quest__block .text p {
    margin-left: -25px;
  }
  .card__tabs-quest__block ul:first-child {
    margin-bottom: 30px;
  }
  .card__tabs-quest__block .text .name {
    margin-bottom: 20px;
  }
  .card__tabs-comment_block-zag span {
    width: 100%;
  }
  .card__tabs-comment_block-zag {
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .card__tabs-comment_block-zag .category__box-stars {
    top: 5px;
  }
  .card__tabs-comment_block-top {
    padding-bottom: 10px;
  }
  .card__tabs-form--half_block .ordering__block-input {
    width: 100%;
  }
  .card__tabs-form--half_block .category__box-stars {
    padding-left: 0;
    padding: 10px 0 20px;
  }
  .card__tabs-form--half_block .category__box-stars .name {
    font-weight: 100;
  }
  .card__info-top {
    padding: 10px 0 40px;
  }
  .card__info-price_new .val {
    font-size: 18px;
  }
  .main__product--page {
    padding: 0 20px 10px;
  }
  .main__product--page .main__product-item {
    width: calc(50% - 7px);
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .main__product--page .main__product-item:nth-child(3n) {
    margin-right: 10px;
  }
  .main__product--page .main__product-item:nth-child(2n) {
    margin-right: 0;
  }
  .cost__item-text {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .cost__item-price {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .cost__item {
    justify-content: center;
    padding: 20px;
  }
  .main_progect-sl-text_task {
    display: none;
  }
  .service_tab-list ul li {
    width: 50%;
  }
  .btn_cost__list {
    text-align: center;
  }
  .btn_cost__list div {
    font-size: 14px;
    color: #383838;
    padding: 5px;
    margin-bottom: 40px;
    display: inline-block;
    text-transform: uppercase;
    border-bottom: 1px dotted #39b54a;
    position: relative;
  }
  .btn_cost__list div::before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    right: -30px;
    top: 6px;
    background-image: url(../images/ar_bl_down.png);
    background-repeat: no-repeat;
    background-position: center;
  }
  .service__video-img .video__block {
    height: 280px;
  }
  .service__video-img .video__block-text {
    padding: 20px;
  }
  .progect__info .main_progect-sl-text_address,
  .progect__info .main_progect-sl-text_task {
    display: block;
    text-align: center;
    max-width: 100%;
    margin-top: 10px;
  }
  .progect__info .main_progect-sl-text__name {
    width: 100%;
    max-width: 100%;
    text-align: start;
    justify-content: start;
  }
  .comment__block-text,
  .comment__block-video {
    width: 100%;
    padding-left: 0;
  }
  .comment__block-video {
    order: 2;
  }
  .comment__block-video .video__block {
    margin: 0;
  }
  .video__block-text {
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
  }
  .comment__block .slick-dots {
    width: 100%;
    left: 0;
    bottom: 260px;
  }
  .main_progect-sl-text_address .name,
  .main_progect-sl-text_task .name {
    display: block;
    /* margin: 10px auto; */
  }
  .comment__block .slick-dots li {
    width: 40px;
    height: 40px;
  }
  .comment__block .slick-dots {
    padding-top: 10px;
  }
  .basket__item {
    flex-wrap: wrap;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .basket__item-img {
    width: 200px;
  }
  .basket__item-name {
    width: calc(100% - 200px);
  }
  .basket__item-img {
    padding-left: 0;
    margin-left: -15px;
  }
  .basket__total {
    max-width: 100%;
  }
  .category-container__right-top {
    margin-bottom: 55px;
    padding: 0px;
  }
  .category_sort {
    width: 100%;
  }
  .category_sort-name {
    width: 100%;
    padding: 15px;
    margin-right: 0;
    position: relative;
  }
  .category_sort-name::before {
    content: '';
    position: absolute;
    right: 18px;
    top: calc(50% - 1px);
    background-color: #000000;
    width: 9px;
    height: 1px;
  }
  .category_sort-name::after {
    content: '';
    position: absolute;
    right: 22px;
    top: calc(50% - 5.5px);
    background-color: #000000;
    width: 1px;
    height: 9px;
    transition: 0.2s;
  }
  .category-container__right-top {
    position: relative;
  }
  .filter-mob__container {
    max-width: 100%;
  }
  .category_sort-name.open::after {
    top: calc(50% - 1px);
    height: 1px;
  }
  .category_sort-refresh {
    position: absolute;
    bottom: -40px;
    right: 0;
  }
  .category_sort-list {
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(100% + 5px);
    border: 1px solid #e8e8e8;
    background-color: #fff;
    padding: 16px;
    box-shadow: 2px 4px 2px 3px rgba(0, 0, 0, 0.31);
    z-index: 350;
    display: none;
  }
  .category_sort-list li {
    width: 100%;
    margin-bottom: 10px;
  }
  .category__box {
    width: 100%;
    margin-right: 0 !important;
  }
  .category {
    padding: 20px;
  }
  .category_sort-block:hover {
    opacity: 1;
  }
  .filter-mob__container {
    padding: 20px 10px;
  }
  .filter-block__box--input {
    width: 90px;
  }
  .used_product .global__zag-h {
    margin-bottom: 30px;
  }
  .used_product-slider .slick-prev, .used_product-slider .slick-next {
    top: -44px;
  }
  .used_product-slider .slick-prev, .used_product-slider .slick-next {
    width: 30px;
    height: 30px;
  }
  .product_advantage-list--certificate li {
    width: auto;
  }
  .slider__client-slide {
    margin: 15px 0;
  }
  .slider__client-container {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .used_product .global__zag-h, .used_product .quest__block-zag .zag {
    font-size: 20px;
  }
  .used_product-slider .slick-next {
    right: 32px;
  }
  .used_product-slider .slick-prev {
    left: auto;
    right: 65px;
  }
  .main__product--page .main__product-item {
    width: 100%;
    margin: 0 !important;
    margin-bottom: 10px !important;
  }
  .video__block--catalog .video__block {
    width: 100%;
    height: 200px;
  }
  .main_progect-container--overflow {

  }
  .main_progect-slide {

  }
  .main_progect-sl-text_change {
    text-align: center;
    width: 100%;
  }
  .main_progect .slick-prev, .main_progect .slick-next {
    bottom: -115px;
  }
  .main_progect-sl-text__name {
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .main_progect-sl-text {
    padding-bottom: 25px;
  }
  .main_company-block {
    width: 50%;
    margin-bottom: 20px;
    padding: 0 5px;
  }
  .main_company-text {
    font-size: 12px;
  }
  .footer__top-contact-logo a {
    justify-content: center;
  }
  .global__zag-h, .quest__block-zag .zag {
    font-size: 22px;
  }
  .global__zag-p {
    font-size: 14px;
    color: #6e6e6e;
  }
  .global__zag-preview {
    margin-bottom: 10px;
  }
  .global__zag--full {
    padding-bottom: 30px;
  }
  .header__time,
  .header__number {
    width: 100%;
    margin: 15px 0;
  }
  .subscribe__block-text {
    width: 100%;
  }
  .subscribe__block-form .input__text {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .subscribe__block-form .input__sbmt {
    width: 100%;
    text-align: center;
  }
  .subscribe__block-form {
    flex-wrap: wrap;
    max-width: 100%;
  }
  .subscribe__block-form__block {
    width: 100%;
  }
  .subscribe__block {
    padding: 30px 20px;
    margin: 0;
  }
  .video__block {
    height: 280px;
  }
  .video__block-text_p {
    display: none;
  }
  .video__block-text_zag {
    font-size: 18px;
  }
  .video__block-text {
    justify-content: center;
  }
  .video__block-text_img {
    width: 80px;
    height: 80px;
  }
  .main_article-block__img {
    height: 280px;
    width: 100%;
  }
  .main_article-noSlider .main_article-block__text {
    width: 100%;
    padding-top: 20px;
    padding-left: 0;
  }
  .main_article-pos {
    flex-wrap: wrap;
  }
  .main_article-noSlider .main_article-block__text .name {
    font-size: 22px;
    color: #00a72d;
  }
  .main_article-noSlider .main_article-block__text .text {
    font-size: 16px;
  }
  .main_article-noSlider .main_article-block {
    border: 0;
    box-shadow: 0px 0px 2px 3px rgba(0, 0, 0, 0.13);
  }
  .main__product-link a {
    margin-bottom: 0;
  }
  .main__product-link {
    padding: 25px 0;
    margin: 0;
  }
  .main_article-noSlider .main_article-block__text {
    padding: 10px;
  }
  .global__zag--full {
    padding: 15px 0;
  }
  .ordering__block-list_items .basket__item {
    flex-wrap: wrap;
  }
  .basket__item-price.basket__item-price--2 {
    margin-left: 100px;
    width: calc(100% - 100px);
  }
  .ordering__block-list_items .basket__item-img {
    width: 100px;
  }
  .ordering__block-list_items .basket__item-name {
    width: calc(100% - 100px);
  }
  .ordering__block-list_items .basket__item {
    border: 1px solid #f2f4fa;
    padding-bottom: 10px;
  }
  .ordering__block-list_items {
    border: 0;
  }
  .ordering__total {
    flex-wrap: wrap;
  }
  .ordering__total-price {
    width: 100%;
  }
  .ordering__total-price .num {
    font-size: 30px;
  }
  .ordering__total-price {
    font-size: 24px;
  }
  .ordering__total-link {
    width: 100%;
    margin-top: 30px;
  }
  .ordering__block-zag {
    padding: 15px 0px;
  }
  .basket .basket__item-price.basket__item-price--2 {
    width: auto;
    margin-left: 0;
  }
  .progect__info-block__slider .slick-prev, .progect__info-block__slider .slick-next {
    width: 30px;
    height: 30px;
    top: -25px;
  }
  .progect__info-block__slider .slick-next {
    right: 15px;
  }
  .progect__info-block__slider .slick-prev {
    right: 55px;
  }
  .progect__info-block__list {
    margin-bottom: 0;
  }
  .progect__info-block__slider {
    margin-top: 50px;
  }
  .used_product .global__zag-h {
    margin-bottom: 20px;
  }
  .used_product-slider .slick-prev, .used_product-slider .slick-next {
    top: -35px;
  }
}

@media screen and (max-width: 425px) {
  .main_article-block__img {
    width: 100%;
    height: 280px;
  }
  .main_article-pos {
    flex-wrap: wrap;
  }
  .main_article-block__text {
    width: 100%;
    padding: 20px 0;
  }
  .basket__item-delete {
    width: 30px;
    border-left: 1px solid #e0e0e0;
  }
  .basket__item {
    padding-right: 35px;
  }
  .basket__item-img {
    width: 100%;
  }
  .basket__item-name {
    width: 100%;
    margin-bottom: 15px;
  }
  .used_product .global__zag-h {
    padding-right: 100px;
  }
}

@media screen and (max-width: 375px) {
  .main__slide-text .zag {
    font-size: 18px;
  }
  .used_product .global__zag-h {
    padding-right: 100px;
  }
}

* {
  box-sizing: border-box;
  outline: none !important;
}

a {
  text-decoration: none;
  color: #191919;
}

img {
  max-width: 100%;
}

article {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

body {
  background-color: #fbfbfb;
}

.container_shadow {
  max-width: 1370px;
  padding: 0 70px;
  margin: 0 auto;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.18);
  border: 1px solid #e0e0e0;
  width: 100%;
  background-color: #fff;
}

.container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: justify;
}

.container .tbl-frst-str {
	font-weight: bold;
	border-bottom: 3px solid #00ab37;
}

.container table {
	width: 954px;
	border-collapse: collapse;
}

.container  td {
	padding-right: 160px;
	padding-top: 5px;
	padding-bottom: 10px;
    border-bottom: 1px solid #00ab37;
}

.container h2 {
	margin-top: 15px;
	margin-bottom: 5px;
}

.container p {
margin-bottom: 10px;
}

.container ul>li {
	list-style-type: disc;
}

.container ul {
	margin-bottom: 15px;
}

.container li {
	margin-bottom: 5px;
}

.container--flex {
  display: flex;
  flex-wrap: wrap;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  color: #191919;
  overflow-x: hidden;
}

.col-1 {
  width: calc((100% / 12) * 1);
}

.col-2 {
  width: calc((100% / 12) * 2);
}

.col-3 {
  width: calc((100% / 12) * 3);
}

.col-4 {
  width: calc((100% / 12) * 4);
}

.col-5 {
  width: calc((100% / 12) * 5);
}

.col-6 {
  width: calc((100% / 12) * 6);
}

.col-7 {
  width: calc((100% / 12) * 7);
}

.col-8 {
  width: calc((100% / 12) * 8);
}

.col-9 {
  width: calc((100% / 12) * 9);
}

.col-10 {
  width: calc((100% / 12) * 10);
}

.col-11 {
  width: calc((100% / 12) * 11);
}

.col-12 {
  width: calc((100% / 12) * 12);
}

.hide {
  display: none;
}

.tabs__content {
  display: none;
  /* по умолчанию прячем все блоки */
}

.tabs__content.active {
  display: block;
  /* по умолчанию показываем нужный блок */
}

@media screen and (max-width: 1440px) {
  .container_shadow {
    padding: 0 20px;
    max-width: 1180px;
  }
}

@media screen and (max-width: 1200px) {
  .container {
    max-width: 970px;
  }
  .container_shadow {
    padding: 0 20px;
    max-width: 990px;
  }
}

@media screen and (max-width: 990px) {
  .container {
    padding: 0 15px;
  }
  .container_shadow {
    padding: 0;
    max-width: 100%;
  }
}
