@font-face {
  font-family: "HelveticaNeueCyr";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/HelveticaNeueCyr-Roman.eot);
  src: url(../fonts/HelveticaNeueCyr-Roman.ttf) format('truetype'), url(../fonts/HelveticaNeueCyr-Roman.svg) format('svg'), url(../fonts/HelveticaNeueCyr-Roman.woff) format('woff');
}
@font-face {
  font-family: "HelveticaNeueCyr";
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/HelveticaNeueCyr-Light.eot);
  src: url(../fonts/HelveticaNeueCyr-Light.ttf) format('truetype'), url(../fonts/HelveticaNeueCyr-Light.svg) format('svg'), url(../fonts/HelveticaNeueCyr-Light.woff) format('woff');
}
@font-face {
  font-family: "HelveticaNeueCyr";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/HelveticaNeueCyr-Bold.eot);
  src: url(../fonts/HelveticaNeueCyr-Bold.ttf) format('truetype'), url(../fonts/HelveticaNeueCyr-Bold.svg) format('svg'), url(../fonts/HelveticaNeueCyr-Bold.woff) format('woff');
}
.helvetica-font {
  font-weight: 400;
  font-family: "HelveticaNeueCyr";
}
@font-face {
  font-family: "Rouble";
  src: url(../fonts/ALSRubl.eot);
  src: url(../fonts/ALSRubl.ttf) format('truetype'), url(../fonts/ALSRubl.svg) format('svg'), url(../fonts/ALSRubl.woff) format('woff');
}
.rouble-font {
  font-family: "Rouble", sans-serif !important;
  font-style: normal;
  text-transform: lowercase !important;
  font-weight: normal;
}
.fa-font {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main-font-regular {
  font-family: 'Open Sans', sans-serif;
}
html,
body,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
img,
ol,
ul,
li,
form,
input {
  margin: 0;
  padding: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
h1 {
  font-size: 32px;
  margin-bottom: 30px;
  padding-top: 35px;
}
h2 {
  font-size: 30px;
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.1;
}
h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: normal;
  line-height: 1.1;
}
h4 {
  font-size: 14px;
  margin-bottom: 15px;
}
h5 {
  font-size: 16px;
  margin-bottom: 10px;
}
h6 {
  font-size: 13px;
  margin-bottom: 5px;
}
:before,
:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
a {
  color: #8c964c;
  text-decoration: none;
}
a:hover,
a:focus {
  color: currentColor;
  outline: none;
  text-decoration: none;
}
label {
  margin-bottom: 0;
  font-weight: normal;
}
input,
textarea,
select {
  font-family: 'Open Sans', sans-serif;
  /* Firefox 19+ */
  /* Firefox 18- */
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: #c3bfb9!important;
}
input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  color: #c3bfb9!important;
}
input:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder {
  color: #c3bfb9!important;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: #c3bfb9!important;
}
.btn{
	border-radius:0;
}
.subscribe-form__input .errorMessage{
    color: #fff;
    margin: 10px 0 0;
}
.list-view{
	padding:0;
}
img {
  max-width: 100%;
}
/* BEGIN my-mixins */
.my-transition {
  -webkit-transition: all .15s;
  -o-transition: all .15s;
  transition: all .15s;
}
.horizontal-center-position-absolute {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
.vertical-center-position-absolute {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.vertical-horizontal-center-pos-absolute {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.cancel-vertical-horizontal-center-pos-absolute {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, 0%);
      -ms-transform: translate(0%, 0%);
       -o-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
}
.to-right {
  margin-left: auto;
}
.to-left {
  margin-right: auto;
}
.border-radius {
  -webkit-border-radius: 5px;
          border-radius: 5px;
}
.txt-center {
  text-align: center;
}
/* BEGIN indents */
.pb0 {
  padding-bottom: 0px !important;
}
.pb5 {
  padding-bottom: 5px !important;
}
.pb10 {
  padding-bottom: 10px !important;
}
.pb15 {
  padding-bottom: 15px !important;
}
.pb20 {
  padding-bottom: 20px !important;
}
.pb25 {
  padding-bottom: 25px !important;
}
.pb30 {
  padding-bottom: 30px !important;
}
.pb35 {
  padding-bottom: 35px !important;
}
.pb40 {
  padding-bottom: 40px !important;
}
.pb45 {
  padding-bottom: 45px !important;
}
.pb50 {
  padding-bottom: 50px !important;
}
.pt0 {
  padding-top: 0px !important;
}
.pt5 {
  padding-top: 5px !important;
}
.pt10 {
  padding-top: 10px !important;
}
.pt15 {
  padding-top: 15px !important;
}
.pt20 {
  padding-top: 20px !important;
}
.pt25 {
  padding-top: 25px !important;
}
.pt30 {
  padding-top: 30px !important;
}
.pt35 {
  padding-top: 35px !important;
}
.pt40 {
  padding-top: 40px !important;
}
.pt45 {
  padding-top: 45px !important;
}
.pt50 {
  padding-top: 50px !important;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb35 {
  margin-bottom: 35px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb45 {
  margin-bottom: 45px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
/* END indents */
/* END my-mixins */
body {
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.1;
  color: #443f3d;
  font-family: 'Open Sans', sans-serif;
}
.wrapper {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
.txt-sect .wrap-txt-block {
  font-size: 14px;
  line-height: 24px;
}
.wrap-txt-block {
  line-height: 1.7;
}
.wrap-txt-block:before,
.wrap-txt-block:after {
  content: " ";
  display: table;
}
.wrap-txt-block:after {
  clear: both;
}
.wrap-txt-block > * {
  margin-bottom: 17px;
}
.wrap-txt-block > *:last-child {
  margin-bottom: 0;
}
.wrap-txt-block p {
  margin-bottom: 15px;
}
.wrap-txt-block ul {
  padding-left: 0px;
  margin-bottom: 15px;
  list-style: none;
}
.wrap-txt-block ul li {
  position: relative;
  padding-left: 21px;
  margin-bottom: 3px;
}
.wrap-txt-block ul li:before {
  content: "";
  position: absolute;
  background: url("../images/icon-ok.png") no-repeat;
  width: 15px;
  height: 11px;
  left: 0;
  top: 7px;
}
.wrap-txt-block ol {
  counter-reset: myCounter;
  margin-bottom: 15px;
}
.wrap-txt-block ol li {
  list-style: none;
  margin-bottom: 10px;
}
.wrap-txt-block ol li:before {
  counter-increment: myCounter;
  content: counter(myCounter);
  color: black;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  line-height: 19px;
  width: 18px;
  height: 18px;
  margin-right: 7px;
}
.wrap-txt-block a:not(.my-btn) {
  text-decoration: underline;
}
.wrap-txt-block table {
  margin-bottom: 15px;
  width: 100%;
}
.wrap-txt-block iframe {
  width: 550px;
  height: 390px;
  display: block;
  margin: 0 auto 20px;
}
/* BEGIN main-slider */
.main-slider {
  position: relative;
}
.main-slider .slider-nav-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 0px;
  color: #ffffff;
  z-index: 1;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 60px;
}
.main-slider .slider-nav-btn--left {
  left: 50%;
  margin-left: -500px;
}
.main-slider .slider-nav-btn--right {
  right: 50%;
  margin-right: -500px;
}
/* END main-slider */
/* BEGIN error-page */
.error-page {
  padding: 120px 0;
}
.error-page__box {
  text-align: center;
}
.error-page__title {
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 300;
}
.error-page__number {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 25px;
}
.error-page__desc {
  font-size: 18px;
  font-weight: 300;
}
/* END error-page */
/* BEGIN tabs */
.tabs__list {
  list-style: none;
}
.tabs__item.is-active {
  color: red;
}
.tabs__col {
  display: none;
}
.tabs__col.is-active {
  display: block;
}
/* END tabs */
.header__bottom .header__basket,.header__bottom .menu-callback{
  display: none;
}
.sticky {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100% !important;
}
.sticky .wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sticky .header__nav {
  width: 90%;
}
.sticky .header-navigation > ul > li > a {
  padding: 10px 11px;
  font-size: 15px;
}
.sticky .header-navigation > ul > li:nth-of-type(4) {
  margin-right: 0;
}
.sticky .header__basket {
  display: block;
  margin-left: auto;
  margin-bottom: 0;
}
.header__bottom .sticky .menu-callback{
	display:block;
    margin: 0 0 0 10px;
}
.sticky .header__basket-product {
  padding-left: 30px;
}
/* BEGIN forms */
.personal-data {
  font-size: 12px;
}
.personal-data a {
  text-decoration: underline;
}
.personal-data a:hover {
  text-decoration: none;
}
.plushka {
  -webkit-border-radius: 5px;
          border-radius: 5px;
  background: #e0e0e0;
  padding: 20px 15px;
}
.form {
  -webkit-border-radius: 5px;
          border-radius: 5px;
  background: #e0e0e0;
  padding: 20px 15px;
}
.form__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.form__col-100 {
  width: 100%;
  padding: 0px 10px;
}
.form__col-50 {
  width: 50%;
  padding: 0px 10px;
}
.form__col-33 {
  width: 33.33%;
  padding: 0px 10px;
}
.form-input-file .jq-file {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 100%;
  -webkit-border-radius: 0;
          border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-input-file .jq-file:hover .jq-file__browse {
  background: #a29e98;
}
.form-input-file .jq-file__browse {
  position: static;
  width: 165px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  background: #C3BFB9;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
  -webkit-border-radius: 0;
          border-radius: 0;
  padding: 3px;
}
.form-input-file .jq-file__browse:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
}
.form-input-file .jq-file__name {
  display: block;
  width: 100%;
  border: 1px solid #8c964c;
  padding: 4px 15px;
  height: 40px;
  outline: none;
  background-color: #fff;
  color: #c3bfb9;
  -webkit-border-radius: 0;
          border-radius: 0;
  margin-right: 30px;
}
.form-input input[type='email'],
.form-input input[type='tel'],
.form-input input[type='text'] {
  display: block;
  width: 100%;
  border: 1px solid #8c964c;
  padding: 8px 15px;
  height: 40px;
  outline: none;
  background-color: #fff;
  color: #443f3d;
}
.form-input textarea,
.form-textarea textarea {
  display: block;
  width: 100%;
  border: 1px solid #8c964c;
  padding: 8px 15px;
  outline: none;
  resize: vertical;
  height: 180px;
  font-size: inherit;
  font-family: inherit;
  background-color: #fff;
  color: #443f3d;
}
.form-input textarea {
  height: 100px;
}
.form-btn button,.form-btn a.btn{
  text-transform: uppercase;
  border: none;
  display: inline-block;
  vertical-align: middle;
  outline: none;
  background: #8c964c;
  background: -webkit-linear-gradient(top, #8c964c 0%, #52582c 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#8c964c), to(#52582c));
  background: -o-linear-gradient(top, #8c964c 0%, #52582c 100%);
  background: linear-gradient(to bottom, #8c964c 0%, #52582c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8c964c', endColorstr='#52582c', GradientType=0);
  color: #ffffff;
  padding: 13px 20px;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  min-width: 190px;
}
.form-btn .button--block {
  width: 100%;
  display: block;
}
.form-btn .button--big {
  padding: 25px 20px;
  font-weight: 400;
  font-family: "HelveticaNeueCyr";
  font-weight: bold;
}
.form-btn .button--bold {
  font-weight: 700;
}
.form-btn .button--md {
  width: 100%;
  display: block;
  max-width: 290px;
  margin: 0 auto;
}
.form-btn button:hover {
  background: #4e5427;
  background: -webkit-linear-gradient(top, #4e5427 0%, #303415 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#4e5427), to(#303415));
  background: -o-linear-gradient(top, #4e5427 0%, #303415 100%);
  background: linear-gradient(to bottom, #4e5427 0%, #303415 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4e5427', endColorstr='#303415', GradientType=0);
}
.form-radio label {
  font-weight: normal;
  margin-bottom: 0;
  font-size: 14px;
  cursor: pointer;
}
.form-radio .jq-radio {
  left: 0;
  width: 14px;
  height: 14px;
  -webkit-border-radius: 0;
          border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#fff));
  background: -webkit-linear-gradient(#FFF, #fff);
  background: -o-linear-gradient(#FFF, #fff);
  background: linear-gradient(#FFF, #fff);
  margin-right: 8px;
  border: 1px solid #E9E9E9;
}
.form-radio .jq-radio.checked .jq-radio__div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  -webkit-border-radius: 0px;
          border-radius: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: red;
}
.form-radio .jq-radio.focused {
  border: none;
  -webkit-border-radius: 5px;
          border-radius: 5px;
}
.form-search {
  position: relative;
}
.form-search input {
  box-sizing: border-box;
  padding: 0 54px 5px 0;
  height: 42px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  outline: none;
  width: 100%;
  display: block;
  -webkit-border-radius: 0;
          border-radius: 0;
  -webkit-appearance: inherit;
}
.form-search button {
  background: url("../images/icon-search.png") no-repeat center center;
  top: 0;
  right: 0;
  padding: 0;
  width: 54px;
  height: 43px;
  border: none;
  outline: none;
  position: absolute;
  cursor: pointer;
}
.form-search button:hover {
  opacity: .8;
}
.form-count {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-count .jq-number {
  width: 66px;
  height: 24px;
  position: relative;
  border: 1px solid #016B3F;
  padding: 3px 23px;
}
.form-count .jq-number__field {
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-border-radius: 0;
          border-radius: 0;
  border: none;
}
.form-count .jq-number__spin {
  height: 100%;
  width: 19px;
  border: none;
  -webkit-border-radius: 0;
          border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #016B3F;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.form-count .jq-number__spin:after {
  border: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  width: 100%;
  height: 100%;
  text-shadow: none;
  left: 0;
  top: 0;
  right: auto;
  bottom: auto;
}
.form-count .jq-number__spin.plus {
  left: 0;
  right: auto;
}
.form-count .jq-number__spin.plus:after {
  content: "+";
  padding-top: 4px;
}
.form-count .jq-number__spin.minus {
  left: auto;
  right: 0;
}
.form-count .jq-number__spin.minus:after {
  content: "-";
  padding-top: 3px;
}
#review-form.form,#order-form.form{
	background:transparent;
	padding:0;
	border-radius:0;
}
.has-success .form-control{
	border:0;
	box-shadow:none;
	-webkit-box-shadow:none;
}
.form-control{
	height:auto;
    padding: initial;
	background:transparent;
	border:0;
	box-shadow:none;
	-webkit-box-shadow:none;
	border-radius:0;
}
.form-count .jq-number__field input {
  font-size: 14px;
  padding: 0;
  text-align: center;
  display: block;
}
.my-btn {
  text-transform: uppercase;
  border: none;
  display: inline-block;
  vertical-align: middle;
  outline: none;
  background: #8c964c;
  background: -webkit-linear-gradient(top, #8c964c 0%, #52582c 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#8c964c), to(#52582c));
  background: -o-linear-gradient(top, #8c964c 0%, #52582c 100%);
  background: linear-gradient(to bottom, #8c964c 0%, #52582c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8c964c', endColorstr='#52582c', GradientType=0);
  color: #ffffff;
  padding: 13px 20px;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
}
.my-btn--block {
  width: 100%;
  display: block;
}
.my-btn--big {
  padding: 25px 20px;
  font-weight: 400;
  font-family: "HelveticaNeueCyr";
  font-weight: bold;
}
.my-btn--bold {
  font-weight: 700;
}
.my-btn--md {
  width: 100%;
  display: block;
  max-width: 290px;
  margin: 0 auto;
}
.my-btn:hover,
.my-btn:focus {
  background: #4e5427;
  background: -webkit-linear-gradient(top, #4e5427 0%, #303415 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#4e5427), to(#303415));
  background: -o-linear-gradient(top, #4e5427 0%, #303415 100%);
  background: linear-gradient(to bottom, #4e5427 0%, #303415 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4e5427', endColorstr='#303415', GradientType=0);
  color:#fff;
}
.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus,.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default{
	background:transparent;
}
.navbar-nav {
    margin: 0;
}
.dropdown-menu{
	float:none;
}
input, button, select, textarea{
	line-height:normal;
}
/* END forms */
.page-box-content {
  padding-top: 60px;
}
.main-slider-wrap,
.page-slider {
  margin-top: -60px;
}
.page-slider {
  margin-bottom: 30px;
}
.breadcrumbs-sect {
  padding: 0 0 30px;
}
.breadcrumbs {
  list-style: none;
  font-size: 14px;
}
.breadcrumbs li {
  display: inline-block;
  position: relative;
  font-size: 14px;
  color: #52582c;
}
.breadcrumbs li + li:before {
  content: '\003E';
  color: #443f3d;
  display: inline-block;
  vertical-align: baseline;
  margin: 0 5px 0 3px;
}
.breadcrumbs span {
  color: #AECE5E;
}
.breadcrumbs a {
  color: #443f3d;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
/* BEGIN my-pagination */
.pagination-wrap {
  text-align: center;
}
.my-pagination {
  display: inline-block;
  vertical-align: top;
  list-style: none;
  font-size: 0;
}
.my-pagination li {
  display: inline-block;
  vertical-align: bottom;
  margin-left: 15px;
  padding-bottom: 3px;
  font-size: 14px;
}
.my-pagination li.previous a,
.my-pagination li.next a {
  padding-left: 20px;
  padding-right: 20px;
}
.my-pagination li.selected a {
  background: #8c964c;
  background: -webkit-linear-gradient(top, #8c964c 0%, #52582c 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#8c964c), to(#52582c));
  background: -o-linear-gradient(top, #8c964c 0%, #52582c 100%);
  background: linear-gradient(to bottom, #8c964c 0%, #52582c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8c964c', endColorstr='#52582c', GradientType=0);
  color: #fff;
  cursor: default;
}
.my-pagination li span,
.my-pagination li a {
  color: #443f3d;
  background: #F8F8F8;
  display: block;
  padding: 11px 5px;
  min-width: 38px;
  text-align: center;
}
.my-pagination li a:hover {
  color: #fff;
  background: #8c964c;
  background: -webkit-linear-gradient(top, #8c964c 0%, #52582c 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#8c964c), to(#52582c));
  background: -o-linear-gradient(top, #8c964c 0%, #52582c 100%);
  background: linear-gradient(to bottom, #8c964c 0%, #52582c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8c964c', endColorstr='#52582c', GradientType=0);
}
.my-pagination2 {
  display: inline-block;
  vertical-align: top;
  list-style: none;
  font-size: 0;
}
.my-pagination2 li {
  display: inline-block;
  vertical-align: bottom;
  margin-left: 15px;
  font-size: 22px;
}
.my-pagination2 li.next a {
  color: #2764B0;
  background-color: transparent;
}
.my-pagination2 li.next a:hover {
  background-color: transparent;
  color: #2764b0;
}
.my-pagination2 li.selected a {
  width: 40px;
  color: #fff;
  font-size: 22px;
  background: #AECE5E;
}
.my-pagination2 li.selected a:hover {
  color: #ffffff;
}
.my-pagination2 li span,
.my-pagination2 li a {
  color: #000;
  display: block;
  padding: 8px 5px;
  text-align: center;
  font-weight: bold;
}
.my-pagination2 li a:hover {
  color: #AECE5E;
}
.txt-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 15px;
  font-size: 18px;
}
.txt-nav__see-all {
  color: #AECE5E;
}
.txt-nav__right {
  margin-left: auto;
}
.txt-nav__prev {
  display: inline-block;
  vertical-align: top;
  position: relative;
  color: #AECE5E;
}
.txt-nav__prev:before {
  content: "\f104";
  vertical-align: middle;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
}
.txt-nav__next {
  margin-left: 34px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  color: #AECE5E;
}
.txt-nav__next:after {
  content: "\f105";
  vertical-align: middle;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 10px;
}
.txt-nav2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
}
.txt-nav2 a:hover {
  opacity: .9;
}
.txt-nav2__prev {
  display: inline-block;
  vertical-align: top;
  position: relative;
  color: #ffffff;
  background: #443f3d;
  text-align: center;
  width: 40px;
  height: 40px;
  font-size: 30px;
}
.txt-nav2__prev:before {
  content: "\f104";
  vertical-align: middle;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.txt-nav2__next {
  display: inline-block;
  vertical-align: top;
  position: relative;
  color: #ffffff;
  background: #443f3d;
  text-align: center;
  width: 40px;
  height: 40px;
  font-size: 30px;
}
.txt-nav2__next:after {
  content: "\f105";
  vertical-align: middle;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* END my-pagination */
/* BEGIN social */
.social {
  list-style: none;
  margin: 0 -5px;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
}
.social li {
  display: inline-block;
  vertical-align: top;
  padding: 0px 4px;
}
.social li a:hover {
  opacity: 0.85;
}
/* END social */
/* BEGIN title-block */
.title {
  margin-bottom: 90px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
.title--white {
  color: #fff;
}
/* END title-block */
/*slick btns*/
.slick-prev,
.slick-next {
  z-index: 3;
  width: 32px;
  height: 32px;
}
.slick-prev:before,
.slick-next:before {
  content: '';
  opacity: 1;
  display: block;
  width: 32px;
  height: 32px;
  -webkit-transition: all .15s;
  -o-transition: all .15s;
  transition: all .15s;
}
.slick-prev:before {
  background: url("../images/arrow-left.png") no-repeat center center;
}
.slick-prev:hover:before {
  background: url("../images/arrow-left-active.png") no-repeat center center;
}
.slick-next:before {
  background: url("../images/arrow-right.png") no-repeat center center;
}
.slick-next:hover:before {
  background: url("../images/arrow-right-active.png") no-repeat center center;
}
/*end slick btns*/
/*.jq-selectbox*/
.jq-selectbox {
  width: 100%;
}
.jq-selectbox li:hover {
  background-color: #AECE5E;
}
.jq-selectbox .jq-selectbox__select {
  height: 44px;
  padding: 0 30px 0 10px;
  border: 1px solid #52582c;
  -webkit-border-radius: 0;
          border-radius: 0;
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 14px;
  line-height: 1.2;
  font-family: 'Open Sans', sans-serif;
  color: #443f3d;
  text-shadow: none;
}
.jq-selectbox .jq-selectbox__select-text {
  height: 42px;
  line-height: 42px;
  font-weight: bold;
}
.jq-selectbox .jq-selectbox__trigger {
  width: 34px;
  border: none;
}
.jq-selectbox .jq-selectbox__trigger-arrow {
  top: 3px;
  right: 10px;
  border: none;
  background: url("../images/arrow-bottom.png") no-repeat;
  width: 34px;
  height: 34px;
}
/*end .jq-selectbox*/
/*radio-box*/
.radio-box {
  display: inline-block;
  font-size: 14px;
  margin-right: 5px;
}
.radio-box label {
  font-weight: 700;
  color: #016B3F;
}
.jq-radio,.jq-checkbox {
  width: 9px;
  height: 9px;
  border: 1px solid #016B3F;
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0 1px 0 0;
}
.jq-radio.checked,.jq-checkbox.checked {
  background: #016B3F;
}
.jq-radio.checked .jq-radio__div,.jq-checkbox.checked .jq-checkbox__div {
  display: none;
}
/*end radio-box*/
.main-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.main-container__col-sidebar {
  -webkit-box-flex: 0;
  -webkit-flex: none;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 310px;
  padding-right: 30px;
}
.main-container__col-content {
  min-width: 1px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.new-form__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
  font-size: 14px;
}
.new-form__col-l {
  width: 42%;
  padding: 0 15px;
}
.new-form__col-r {
  width: 58%;
  padding: 0 15px;
}
.new-form__btn-box {
  text-align: center;
}
.header__top {
  position: relative;
  z-index: 3;
  min-height: 167px;
  padding: 20px 0 12px;
  background-repeat: no-repeat;
  background-position: center top;
  background-image: url("../images/bg-header.jpg");
}
.header__top::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(36,40,11,0.8);
}
.header__top-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.header__top .wrapper {
  position: relative;
  z-index: 2;
}
.header__top a {
  color: #ffffff;
}
.header__left {
  width: 35%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 20px;
}
.header__left-box {
  margin-right: auto;
}
.header__mail {
  position: relative;
  padding-left: 38px;
  margin-bottom: 12px;
  display: block;
}
.header__mail:before {
  content: "";
  position: absolute;
  background: url("../images/icon-mail.png") no-repeat;
  width: 23px;
  height: 23px;
  left: 0;
  top: -6px;
}
.header__phone {
  padding-left: 38px;
  font-size: 18px;
  position: relative;
  display: block;
  font-weight: bold;
}
.header__bottom {
  z-index: 2 !important;
}
.calc-menu {
    margin-bottom: 65px;
}
.calc-menu__content {
    background: #F8F8F8;
    padding: 18px 18px 55px;
}
.calc-menu__content + .wrap-txt-block {
  padding-top: 55px;
}
.calc-menu__content.mb40 + .wrap-txt-block {
  padding-top: 15px;
}
.calc-menu__gallery {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 55px;
}
.calc-menu__gallery-big-col {
    width: 734px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
}
.calc-menu__gallery-small-col {
    width: 383px;
    padding-left: 13px;
}
.menu-gall-small .slick-prev {
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    left: 50%;
    margin-left: -17px;
    top: 0px;
}
.menu-gall-small .slick-next {
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    left: 50%;
    margin-left: -17px;
    top: auto;
    bottom: 11px;
}
.calc-prod {
    margin-bottom: 55px;
}
.calc-prod__title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 35px;
    font-weight: bold;
}
.calc-prod__title-txt {
    display: inline-block;
    vertical-align: top;
    padding-left: 60px;
    position: relative;
}
.calc-prod__title-txt:before {
    content: "";
    position: absolute;
    background: url(../images/calc-img.png) no-repeat;
    width: 39px;
    height: 39px;
    left: 0;
    top: -3px;
}
.calc-prod__table-tr {
    background: #ffffff;
    padding: 13px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 7px;
}
.calc-prod__table-td {
    padding: 0 15px;
  width: 25%;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}
.calc-prod__table-td--summ {
    width: 150px;
}
.calc-prod__table-td:last-child {
    width: 66px;
    text-align: center;
}
.close-btn {
    background: url(../images/x-icon.png) no-repeat;
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: top;
}
.calc-prod__total-price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 17px;
}
.my-btn-plus {
    text-transform: uppercase;
    border: none;
    display: inline-block;
    vertical-align: middle;
    outline: none;
  background: #8c964c;
  background: -webkit-linear-gradient(top, #8c964c 0%, #52582c 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#8c964c), to(#52582c));
  background: -o-linear-gradient(top, #8c964c 0%, #52582c 100%);
  background: linear-gradient(to bottom, #8c964c 0%, #52582c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8c964c', endColorstr='#52582c', GradientType=0);
    color: #ffffff;
    padding: 10px 33px 10px 80px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    position: relative;
    font-weight: bold;
}
.my-btn-plus:before {
    content: "";
    position: absolute;
    background: url(../images/plus.png) no-repeat;
    width: 32px;
    height: 32px;
    left: 28px;
    top: 50%;
    margin-top: -16px;
}
.my-btn-next {
    margin-left: 20px;
    text-transform: uppercase;
    border: none;
    display: inline-block;
    vertical-align: middle;
    outline: none;
  background: #8c964c;
  background: -webkit-linear-gradient(top, #8c964c 0%, #52582c 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#8c964c), to(#52582c));
  background: -o-linear-gradient(top, #8c964c 0%, #52582c 100%);
  background: linear-gradient(to bottom, #8c964c 0%, #52582c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8c964c', endColorstr='#52582c', GradientType=0);
    color: #ffffff;
    padding: 10px 33px 10px 33px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    position: relative;
    font-weight: bold;
}
.my-btn-plus:hover,
.my-btn-next:hover {
  background: #4e5427;
  background: -webkit-linear-gradient(top, #4e5427 0%, #303415 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#4e5427), to(#303415));
  background: -o-linear-gradient(top, #4e5427 0%, #303415 100%);
  background: linear-gradient(to bottom, #4e5427 0%, #303415 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4e5427', endColorstr='#303415', GradientType=0);
  color:#fff;
}

.calc-prod__total-price-txt {
    font-size: 14px;
    padding-right: 65px;
    font-weight: bold;
}
.calc-menu__content {
    background: #F8F8F8;
    padding: 18px 18px 45px;
}
.calc-services {
    margin-bottom: 55px;
}
.title-small {
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 50px;
    text-align: center;
}
.calc-bonus {
  margin-top: 40px;
}
.calc-bonus__table-tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    background: #ffffff;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}
.calc-bonus__table-td--img {
    width: 90px;
    height: 70px;
    background-repeat: no-repeat;
    background-size: cover;
}
.calc-bonus__table-td--name {
    width: 255px;
    line-height: 1.5;
    padding: 20px;
}
.calc-bonus__table-td--size {
    width: 195px;
    padding-right: 40px;
}
.custom-select--initial-width {
    min-width: initial!important;
}
.calc-bonus__table-td {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}
.calc-bonus__table-td--color {
    width: 200px;
    padding-right: 40px;
}
.form-count {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.form-count .jq-number__spin.minus {
    right: auto;
    left: 0;
}
.form-count .jq-number__spin.minus:after {
    content: "-";
    padding-top: 3px;
}
.form-count .jq-number__spin:after {
    border: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    width: 100%;
    height: 100%;
    text-shadow: none;
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
}
.form-count .jq-number__spin.plus {
    left: auto;
    right: 0;
}
.calc-bonus__table-td--count {
    width: 105px;
    padding-right: 40px;
}
.calc-bonus__table-td--price {
    width: 185px;
    text-transform: none;
}
.calc-bonus__table-td--close {
    width: 70px;
    text-align: center;
}
.calc-bonus__total {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
}
.calc-bonus__total-txt {
    font-weight: bold;
    font-size: 18px;
}
.calc-bonus__btn {
    width: 270px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-left: 70px;
}
.form-count .jq-number__spin_:after {
    border: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    width: 100%;
    height: 100%;
    text-shadow: none;
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
}
input[type=number].options-count::-webkit-inner-spin-button,
input[type=number].options-count::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.jq-number__spin_ {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 14px;
    border: 1px solid #CCC;
    border-bottom-color: #B3B3B3;
    border-radius: 4px;
    background: #F5F5F5;
    background: -webkit-linear-gradient(#FFF, #E6E6E6);
    background: linear-gradient(#FFF, #E6E6E6);
    box-shadow: 0 1px 2px rgba(0,0,0,.1);
    box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-shadow: 1px 1px #FFF;
    cursor: pointer;
}
.form-count .jq-number__spin_ {
    height: 100%;
    width: 19px;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #52582c;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}
.form-count .jq-number__spin_.plus:after {
    content: "+";
    padding-top: 4px;
}
.form-count .jq-number__spin_.plus {
    left: auto;
    right: 0;
}
.jq-number__spin_.minus:hover:after {
    border-top-color: #000;
}
.form-count .jq-number__spin_.minus:after {
    content: "-";
    padding-top: 3px;
}
.form-count .jq-number__spin_.minus {
    right: auto;
    left: 0;
}
.form-count .jq-number__field_ input {
    font-size: 14px;
    padding: 0;
    text-align: center;
    display: block;
}
.form-count .jq-number__field_ {
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: none;
}
.form-count .jq-number_ {
    width: 66px;
    height: 24px;
    position: relative;
    border: 1px solid #016B3F;
    padding: 3px 23px;
}
.form-count .jq-number {
    width: 66px;
    height: 24px;
    position: relative;
    border: 1px solid #016B3F;
    padding: 3px 23px;
}
.form-count .jq-number__field {
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: none;
}
.form-count .jq-number__field input {
    font-size: 14px;
    padding: 0;
    text-align: center;
    display: block;
}
.fieldkitchen-products p {
    display: inline-block;
  vertical-align: middle;
	margin: 0 20px 0 0;
}
.fieldkitchen-products-style {
  padding: 0 15px 10px 0;
}
.fieldkitchen-products p.fieldkitchen-product-price {
  display: inline-block;
  vertical-align: middle;
    margin: 0;
    text-align: right;
    font-weight: 700;
    color: #016b3f;
  white-space: nowrap;
}
.prod-basket__all-info-kitchens{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.basket-table__td.basket-table__fieldkitchen {
  width: 45%;
}
.basket-table__td.basket-table__fieldkitchen_contains {
  width: 45%;
}
.prod-basket__row-info-fieldkitchen .col-caption{
    margin: 0 5px 0 0;
  display: inline-block;
  vertical-align: middle;
}
.prod-basket__row-info-fieldkitchen .col-info{
  display: inline-block;
  vertical-align: middle;
}
.calc-menu__gallery {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 55px;
}
.calc-menu__gallery-big-col {
    width: 734px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
}
.calc-menu__gallery-small-col {
    width: 383px;
    padding-left: 13px;
}
.menu-gall-small .slick-prev {
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    left: 50%;
    margin-left: -17px;
    top: 0px;
}
.menu-gall-small .slick-prev:before {
    background: url(../images/arrow-top.png) no-repeat;
    width: 34px;
    height: 34px;
}
.menu-gall-small__slide {
    margin-bottom: 7px;
    position: relative;
    top: 1px;
}
.visible-lg{
	display:block;
}
.visible-xs{
	display:none;
}
.menu-gall-small .slick-next {
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    left: 50%;
    margin-left: -17px;
    top: auto;
    bottom: 11px;
}
.menu-gall-small .slick-next:before {
    background: url(../images/arrow-bottom.png) no-repeat;
    width: 34px;
    height: 34px;
}
.prod-basket__row-info-fieldkitchen{
    padding: 0 15px 10px 0;
    font-size: 16px;
    font-weight: 700;
    color: #52582c;
}
span.fieldkitchen-option {
    font-size: 12px;
    color: #016b6f;
}
.jq-number__field_ input {
    box-sizing: border-box;
    width: 100%;
    padding: 8px 9px;
    border: none;
    outline: none;
    background: none;
    font: 14px Arial, sans-serif;
    color: #333;
    text-align: left;
    -moz-appearance: textfield;
}
.jq-number__spin_:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 11px;
    width: 0;
    height: 0;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #999;
    border-left: 5px solid transparent;
}
.calc-services__box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px;
}
.calc-services__col {
    width: 25%;
    padding: 0px 15px;
}
.calc-services__one {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}
.calc-services__img {
    width: 253px;
    height: 200px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
    background-size: cover;
}
.calc-services__content {
    display: inline;
    width: 100%;
    background: #ffffff;
    padding: 15px 18px;
    font-weight: bold;
    text-transform: uppercase;
}
.calc-services__title {
    #margin-bottom: 20px;
    float: left;
}
.calc-services__price {
    float: right;
}
.custom-select {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
  width: 100%;
}
.header__phone-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
}
.header__phone:before {
  content: "";
  position: absolute;
  background: url("../images/ico-tel.png") no-repeat;
  width: 25px;
  height: 25px;
  left: 0;
  top: -3px;
  background-size: contain;
}
.header__mail:hover,
.header__phone:hover {
  text-decoration: underline;
}
.header__phone-whatsapp {
  display: block;
  margin-left: 5px;
}
.header__phone-whatsapp:hover {
  opacity: 0.8;
}
.header__phone-whatsapp img {
  display: block;
}
.header__btn {
  padding-top: 10px;
}
.header__center {
  width: 226px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin: 0px auto -72px;
}
.header__right {
  width: 35%;
  text-align: right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  padding-left: 20px;
}
.header__right-box {
  margin-left: auto;
}
.header__social {
  margin-bottom: 20px;
}
.header__basket {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
}
.product-one__text-description ul{
    padding: 0 0 0 30px;
    overflow: auto;
}
.header__basket-product {
  padding-left: 43px;
  position: relative;
}
@-webkit-keyframes swing {
  15% {
    -webkit-transform: translateX(9px);
    transform: translateX(9px);
  }
  30% {
    -webkit-transform: translateX(-9px);
    transform: translateX(-9px);
  }
  40% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  50% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  65% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes swing {
  15% {
    -webkit-transform: translateX(9px);
    transform: translateX(9px);
  }
  30% {
    -webkit-transform: translateX(-9px);
    transform: translateX(-9px);
  }
  40% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  50% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  65% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.header__basket-product:before {
  content: "";
  position: absolute;
  background: url("../images/icon-basket.png") no-repeat;
  width: 22px;
  height: 22px;
  left: 0;
  top: -5px;
}
.basket-animate:before{
  -webkit-animation: swing 1s ease;
  animation: swing 1s ease;
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
}
.header__basket-price {
  margin-left: auto;
}
.header__bottom {
  background: #52582c;
}
.navbar-nav>li,.navbar-nav{
	float:none;
}
.header-navigation {
  position: relative;
  z-index: 999;
  display: block;
}
.header-navigation > ul {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.navbar-toggle{
	float:none;
}
.header-navigation > ul > li > a {
  font-size: 16px;
  line-height: 18px;
  padding: 10px 13px;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #ffffff;
  max-width: 135px;
}
.header-navigation > ul > li > a:hover {
  background: #4e5427;
  background: -webkit-linear-gradient(top, #4e5427 0%, #303415 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#4e5427), to(#303415));
  background: -o-linear-gradient(top, #4e5427 0%, #303415 100%);
  background: linear-gradient(to bottom, #4e5427 0%, #303415 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4e5427', endColorstr='#303415', GradientType=0);
}
.header-navigation > ul > li:nth-of-type(4) {
  margin-right: 200px;
}
.header-navigation > ul > li.active > a,
.header-navigation > ul > li > a:focus {
  background: #4e5427;
  background: -webkit-linear-gradient(top, #4e5427 0%, #303415 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#4e5427), to(#303415));
  background: -o-linear-gradient(top, #4e5427 0%, #303415 100%);
  background: linear-gradient(to bottom, #4e5427 0%, #303415 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4e5427', endColorstr='#303415', GradientType=0);
}
.header-navigation > ul li .dropdown-menu li {
  margin-bottom: 8px;
}
.header-navigation > ul li .dropdown-menu li:last-child {
  margin-bottom: 0;
}
.header-navigation > ul li .dropdown-menu li > a {
  font-size: 14px;
  white-space: nowrap;
}
.header-navigation > ul li .dropdown-menu li > a:hover {
  text-decoration: underline;
}
.dropdown {
  position: relative;
}
.dropdown__btn {
  background-color: transparent;
  border: none;
  outline: none;
  position: relative;
  display: none;
}
.dropdown__btn:before {
  content: "\f107";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ffffff;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.94);
}
.header__search .form{
    padding: 0;
    background: transparent;
    border-radius: 0;
    -webkit-border-radius: 0;
}
.header__search .form input {
  color: #ffffff;
}
.footer .header__search .form input {
  color: #443f3d;;
}
.btn-nav {
  display: inline-block;
  display: none;
  background: transparent;
  border: none;
  width: 40px;
  margin: 0;
  padding: 11px 4px;
  outline: none;
}
.btn-nav .icon-bar {
  width: 100%;
  height: 2px;
  margin-bottom: 5px;
  background: #fff;
  display: block;
}
.btn-nav .icon-bar:last-child {
  margin-bottom: 0;
}
.footer .header__top {
  background-image: none;
}
.footer .header__top a {
  color: #443f3d;
}
.footer .header__top .my-btn {
  color: #ffffff;
}
.footer .header__top::before {
  display: none;
}
.footer .form-search input {
  border-bottom: 1px solid #52582c;
}
.footer .form-search button {
  background: url("../images/icon-search-dark.png") no-repeat center center;
}
.footer .header__basket-product:before {
  background: url("../images/icon-basket-dark.png") no-repeat
}
.footer .header__center {
  margin: -78px auto -10px;
}
.txt-sect {
  padding-bottom: 40px;
}
.main-slider__slide {
  background-position: center top;
  padding: 110px 0 150px;
	min-height: 499px;
}
.main-slider__txt {
  margin-bottom: 115px;
  width: 50%;
}
.main-slider__txt-one {
  font-size: 36px;
  line-height: 40px;
  font-weight: bold;
  text-transform: uppercase;
  color: #52582c;
  background: white;
  padding: 15px 10px;
  background: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  display: inline-block;
}
.main-slider__txt-one:last-child {
  margin-bottom: 0;
}
.main-slider__btn {
  width: 285px;
}
/* BEGIN adavantages */
.adavantages {
  margin-top: -55px;
  margin-bottom: 100px;
  position: relative;
}
.adavantages__box {
  padding: 0px 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.adavantages__col {
  width: 25%;
}
.adavantages__col:nth-of-type(1) .adavantages__one {
  background: #52582c;
}
.adavantages__col:nth-of-type(2) .adavantages__one {
  background: #7f8846;
}
.adavantages__col:nth-of-type(3) .adavantages__one {
  background: #8baf4e;
}
.adavantages__col:nth-of-type(4) .adavantages__one {
  background: #93c45e;
}
.adavantages__one {
  padding: 20px 3px 35px;
  height: 100%;
  text-align: center;
}
.adavantages__img {
  margin-bottom: 25px;
}
.adavantages__txt {
  font-weight: 400;
  font-family: "HelveticaNeueCyr";
  font-weight: 300;
  color: #ffffff;
  line-height: 20px;
}
/* END adavantages */
/* BEGIN icon-about */
.icon-about {
  margin-bottom: 80px;
  position: relative;
}
.icon-about__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 42px;
}
.icon-about__col {
  width: 185px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none;
  text-align: center;
}
.icon-about__img {
  margin-bottom: 30px;
}
.icon-about__txt {
  font-weight: 400;
  font-family: "HelveticaNeueCyr";
  font-weight: bold;
  color: #443f3d;
  text-transform: uppercase;
  line-height: 1.3;
}
.about-sect {
  position: relative;
  font-size: 14px;
  padding-bottom: 70px;
}
.about-sect .wrap-txt-block {position: relative; z-index: 2;}
.about-sect__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.about-sect__col-left {
  width: 100%;
  margin-right: 25px;
  padding-bottom: 20px;
  position: relative;
}
.about-sect__more {
  /*position: absolute;*/
  margin-top: 40px;
  bottom: 30px;
  left: 0;
  width: 285px;
}
.basket-more-info__item .col-info .radio-box span .jq-radio.radio-line+label+br {
    display: none;
}
.has-error .form-control{
	border-color: #aece5e;
}
#call-back .form,#feedback-widget-form.form{
	border:0;
	border-radius:0;
	background:transparent;
	padding:0;
}
.basket-more-info__item .radio-box span .jq-radio.radio-row+label,.basket-more-info__item .radio-box_ span .jq-checkbox.radio-row+label{
    font-weight: 400;
    color: #484848;
    margin: 0 0 5px 7px;
}
form .result ul,.alert.alert-block.alert-danger ul{
    padding: 0 20px;
    list-style-type: none;
}
#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url(../images/fancybox_sprite.png);
}
.fancybox-overlay{
	background: url(../images/fancybox_overlay.png);
}
.alert.alert-block.alert-danger p{
    color: #000;
    font-size: 20px;
    margin: 0 0 10px;
}
.alert.alert-block.alert-danger p{
	display:none;
}
form .result,.alert.alert-block.alert-danger {
    margin: 20px 0 0;
    background: #dedede;
    border: 0;
    border-radius: 0;
    padding: 20px 0;
    font-size: 17px;
    line-height: 22px;
	display:none;
}
.basket-more-info__item .col-info .radio-box span .jq-radio.radio-line+label{
	margin: 0 5px 0 3px;
}
.about-sect__col-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  width: 626px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-left: auto;
}
.about-sect__col-right-col {
  width: 50%;
  padding: 0 15px 30px;
}
.img-decor {
  position: absolute;
  font-size: 16px;
  z-index: 1;
}
.fieldkitchen-wrapper.active{
	max-height:1000px;
}
.fieldkitchen-wrapper{
    max-height: 0;
    overflow: hidden;
	transition:all 1s;
}
.img-decor--right1 {
  top: -6.875em;
  right: 0;
  width: 31em;
}
.img-decor--right2 {
  top: -11.875em;
  right: 0;
  width: 33em;
}
.img-decor--right3 {
  top: -14.875em;
  right: 0;
  width: 40em;
}
.img-decor--right4 {
  bottom: 1em;
  right: 0;
  width: 26em;
}
.img-decor--left1 {
  bottom: -13.875em;
  left: 0;
  width: 30em;
}
.img-decor--left2 {
  bottom: -13.875em;
  left: 0;
  width: 27em;
}
.img-decor--left3 {
  bottom: -19.5em;
  left: 7em;
  width: 28em;
}
/* END icon-about */
/* BEGIN popup-call-back */
.popup-call-back,.popup-fieldkitchen {
  border: 1px solid #AECE5E;
  background: #ffffff;
  padding: 30px 33px 50px;
  width: 450px;
  display: none;
}
.popup-fieldkitchen{
	display:block;
}
.popup-call-back .title {
  margin-bottom: 55px;
}
/* END popup-call-back */
/* BEGIN lease-goods */
.lease-goods {
  padding: 90px 0px 45px;
  background: #F8F8F8;
}
.table.table-condensed>thead>tr>th, .table.table-condensed>tbody>tr>th, .table.table-condensed>tfoot>tr>th, .table.table-condensed>thead>tr>td, .table.table-condensed>tbody>tr>td, .table.table-condensed>tfoot>tr>td{
	border:0;
}
.lease-goods__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.lease-goods__col {
  width: 25%;
  padding: 0px 14px 45px;
}
.lease-goods-one {
  text-align: center;
}
.lease-goods-one__img {
  background-size: cover !important;
  height: 220px;
  width: 100%;
  margin-bottom: 20px;
}
.lease-goods-one__title {
  text-transform: uppercase;
  font-weight: 400;
  font-family: "HelveticaNeueCyr";
  font-weight: bold;
  color: #443f3d;
}
/* END lease-goods */
.our-clients {
  padding: 90px 0 50px;
  position: relative;
}
.our-clients-slider {
  padding: 0 40px;
}
.our-clients-slider__img-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100px;
  padding: 0 15px;
}
.our-clients-slider__img-box img {
  width: 100%;
}
.reviews-sect {
  background: url("../images/reviews-bg.png") no-repeat center top;
  min-height: 855px;
  padding: 0 0 50px;
}
.reviews-sect__btn-wrap {
  margin-top: 75px;
}
.reviews-slider {
  padding: 0 35px;
  margin-top: -20px;
}
.reviews-slider__content .reviews-slider__text.active {
	max-height:1000px;
}
.reviews-slider__content .reviews-slider__text {
    overflow: hidden;
    padding: 0 6px;
    max-height: 300px;
    transition: all 0.5s;
}
.review-more{
	margin:10px 0 0;
	display:block;
}
.reviews-slider__content {
  background: #fff;
  padding: 20px;
}
.reviews-slider__user-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.reviews-slider__text {
  font-size: 14px;
  line-height: 20px;
}
.articles-sect {
  padding: 95px 0;
  position: relative;
  background: #F8F8F8;
}
.articles-sect__btn-wrap {
  margin-top: 55px;
}
.articles-slider {
  padding: 0 45px;
}
.articles-slider__slide {
  padding: 0 20px;
}
.article-preview {
  display: block;
  color: #443f3d;
}
.article-preview:before,
.article-preview:after {
  content: " ";
  display: table;
}
.article-preview:after {
  clear: both;
}
.article-preview__img {
  float: left;
  width: 195px;
  line-height: 0.5;
  margin: 0 25px 10px 0;
}
.article-preview__img img {
  width: 100%;
}
.article-preview__date {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.article-preview__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  -webkit-transition: all .15s;
  -o-transition: all .15s;
  transition: all .15s;
}
.article-preview__name:hover {
  color: #8c964c;
}
.article-preview__text {
  font-size: 14px;
  line-height: 1.5;
}
.article-preview__text p {
  margin-bottom: 20px;
}
.article-preview__more {
  color: #52582c;
  text-decoration: underline;
}
.article-preview__more:hover {
  text-decoration: none;
}
.subscribe-sect {
  background: url("../images/subscribe-bg.jpg") no-repeat center top;
  background-size: cover;
  padding: 95px 0;
}
.subscribe-sect .subscribe-form__input input {
  /* Firefox 19+ */
  /* Firefox 18- */
}
.subscribe-sect .subscribe-form__input input::-webkit-input-placeholder {
  color: #443f3d;
}
.subscribe-sect .subscribe-form__input input::-moz-placeholder {
  color: #443f3d;
}
.subscribe-sect .subscribe-form__input input:-moz-placeholder {
  color: #443f3d;
}
.subscribe-sect .subscribe-form__input input:-ms-input-placeholder {
  color: #443f3d;
}
.subscribe-form {
  max-width: 920px;
  margin: 0 auto;
}
#callback-form .captcha-wrapper .g-recaptcha>div{
    margin: 0 auto 30px;
}
.subscribe-form__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
.subscribe-form__input {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 285px;
}
.subscribe-form__input input[type='email'],
.subscribe-form__input input[type='tel'],
.subscribe-form__input input[type='text'] {
  display: block;
  width: 100%;
  border: 1px solid transparent;
  padding: 8px 25px;
  height: 72px;
  outline: none;
  background-color: #fff;
  color: #000;
  font-size: 16px;
}
.subscribe-form__btn {
  width: 285px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.subscribe-form__btn button,.subscribe-form__btn input[type="submit"]{
  text-transform: uppercase;
  border: none;
  display: inline-block;
  vertical-align: middle;
  outline: none;
  background: #8c964c;
  background: -webkit-linear-gradient(top, #8c964c 0%, #4a5025 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#8c964c), to(#4a5025));
  background: -o-linear-gradient(top, #8c964c 0%, #4a5025 100%);
  background: linear-gradient(to bottom, #8c964c 0%, #4a5025 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8c964c', endColorstr='#4a5025', GradientType=0);
  color: #ffffff;
  padding: 13px 20px;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  display: block;
  width: 100%;
  font-weight: 700;
  min-height: 72px;
}
.subscribe-form__btn .button--block {
  width: 100%;
  display: block;
}
.subscribe-form__btn .button--big {
  padding: 25px 20px;
  font-weight: 400;
  font-family: "HelveticaNeueCyr";
  font-weight: bold;
}
.subscribe-form__btn .button--bold {
  font-weight: 700;
}
.subscribe-form__btn .button--md {
  width: 100%;
  display: block;
  max-width: 290px;
  margin: 0 auto;
}
.subscribe-form__btn button:hover,.subscribe-form__btn input[type="submit"]:hover {
  background: #4e5427;
  background: -webkit-linear-gradient(top, #4e5427 0%, #303415 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#4e5427), to(#303415));
  background: -o-linear-gradient(top, #4e5427 0%, #303415 100%);
  background: linear-gradient(to bottom, #4e5427 0%, #303415 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4e5427', endColorstr='#303415', GradientType=0);
}
.pagination{
	display:block;
	text-align:center;
}
.product-one {
  margin-bottom: 100px;
}
.product-one__container {
  background: #F8F8F8;
  padding: 25px 17px;
}
.product-one__container:before,
.product-one__container:after {
  content: " ";
  display: table;
}
.product-one__container:after {
  clear: both;
}
.product-one__slider-box {
  width: 360px;
  float: left;
  margin: 0 25px 10px 0;
}
.product-one__title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  padding: 0;
}
.product-one__main-info {
  margin-bottom: 20px;
}
.product-one__row-info {
  padding-bottom: 17px;
  font-size: 18px;
  font-weight: 700;
  color: #016b3f;
}
.product-one__row-info div[style*="color:red;"] {
  padding-top: 0 !important;
  font-size: 14px;
}
.product-one__row-info .col-caption {
  display: inline-block;
  vertical-align: middle;
  padding-right: 10px;
}
.product-one__row-info .col-info {
  display: inline-block;
  vertical-align: middle;
}
.product-one__select {
  width: 185px;
}
.product-one__btn-row {
  margin-bottom: 15px;
}
.product-one__btn-row .my-btn {
  width: 270px;
}
.product-one__text-description {
  clear: both;
  font-size: 14px;
  line-height: 1.8;
}
.product-one__text-description p {
  margin-bottom: 7px;
}
.product-slider {
  margin-bottom: 22px;
}
.product-slider__img img {
  margin: 0 auto;
}
.product-slider-nav {
  margin: 0 -13px;
  position: relative;
}
.product-slider-nav:before,
.product-slider-nav:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 13px;
  top: 0;
  background: #F8F8F8;
  z-index: 1;
}
.product-slider-nav:before {
  left: 0;
}
.product-slider-nav:after {
  right: 0;
}
.product-slider-nav__slide {
  padding: 0 13px;
}
.product-slider-nav__img img {
  margin: 0 auto;
}
.product-slider-nav .slick-prev:before,
.product-slider-nav .slick-next:before {
  background-color: #fff;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  border: 1px solid #fff;
}
.product-labels {
  padding-bottom: 70px;
}
.product-labels__list {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.product-labels__list > li {
  font-size: 16px;
  color: #fff;
  padding: 0 30px 25px 0;
}
.product-labels__list > li > a {
  display: inline-block;
  color: #fff;
  padding: 9px 14px;
  background: #AECE5E;
}
.product-labels__list > li > a:hover {
  background: #a4c35d;
}
.popup-order {
  width: 830px;
  background: #ffffff;
  border: 1px solid #AECE5E;
  padding: 35px 20px;
  display: none;
}
.products-preview-sect {
  padding: 0 0 90px;
}
.products-preview-sect .title {
  margin-bottom: 45px;
}
.products-preview-slider__slide {
  padding: 0 14px;
}
.products-preview-slider .slick-prev {
  left: -21px;
}
.products-preview-slider .slick-next {
  right: -21px;
}
.prod-preview {
  background: #F8F8F8;
  position: relative;
}
.prod-preview__img {
  line-height: 0.5;
}
.prod-preview__img img {
  width: 100%;
}
.prod-preview__content {
  padding: 18px;
  text-align: center;
}
.prod-preview__name {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 8px;
}
.prod-preview__name a {
  color: #443f3d;
}
.prod-preview__name a:hover {
  color: #8c964c;
}
.prod-preview__text {
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.prod-preview__price {
  color: #7f8946;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}
.basket-page {
  padding: 0 0 45px;
}
.prod-basket {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.prod-basket__col-img {
  width: 145px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 18px;
  line-height: 0.5;
}
.prod-basket__col-img img {
  width: 100%;
}
.prod-basket__col-description {
  min-width: 1px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #F8F8F8;
  padding: 20px 15px;
}
.prod-basket__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.prod-basket__col-about {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
}
.prod-basket__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 40px;
}
.prod-basket__name a {
  color: #443f3d;
}
.prod-basket__name a:hover {
  color: #AECE5E;
}
.prod-basket__all-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.prod-basket__row-info {
  padding: 0 15px 10px 0;
  font-size: 16px;
  font-weight: 700;
  color: #52582c;
  width: 220px;
}
.prod-basket__row-info--amount {
  width: 250px;
}
.prod-basket__row-info--amount .col-caption {
  font-size: 18px;
}
.prod-basket__row-info .col-caption {
  display: inline-block;
  vertical-align: middle;
  padding-right: 15px;
}
.prod-basket__row-info .col-info {
  display: inline-block;
  vertical-align: middle;
}
.prod-basket__col-btn {
  padding: 10px;
  text-align: center;
}
.prod-basket__btn-remove {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  font-family: inherit;
  color: #443f3d;
  padding: 55px 0 0;
  background: transparent;
  border: none;
  outline: none;
  position: relative;
  cursor: pointer;
}
.prod-basket__btn-remove:before {
  content: '';
  background: url("../images/x-icon.png") no-repeat;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -16px;
}
.prod-basket__btn-remove:hover {
  opacity: 0.85;
}
.basket-more-info {
  background: #F8F8F8;
  padding: 20px;
  margin-bottom: 20px;
}
.basket-more-info__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 26px;
}
.basket-more-info__item {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 11px;
}
.basket-more-info__item .col-caption {
  display: inline-block;
  vertical-align: baseline;
  padding-right: 10px;
}
.basket-more-info__item .col-info {
  display: inline-block;
  vertical-align: baseline;
}
.basket-total {
  padding-top: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.basket-total__price {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  color: #443f3d;
  padding-right: 55px;
}
.basket-total__price .cart-cost_ {
  color: #52582c;
}
.basket-total__btn-box .my-btn {
  padding-left: 30px;
  padding-right: 30px;
}
.articles-all__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.articles-all__col {
  width: 43%;
  padding: 0 0 50px;
}
.articles-all__pagination {
  padding-bottom: 90px;
}
.sidebar-nav {
  margin-bottom: 30px;
}
.sidebar-nav__list {
  list-style: none;
  background: #52582c;
}
.sidebar-nav__list > li {
  border-bottom: 1px solid #707643;
  position: relative;
}
.sidebar-nav__list > li:nth-last-of-type(1) {
  border: none;
}
.sidebar-nav__list > li > a {
  display: block;
  color: #fff;
  padding: 11px 17px;
  margin-right: 40px;
}
.sidebar-nav__list > li > a:hover {
  color: #ffffff;
}
.sidebar-nav__btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: url("../images/arrow-down.png") no-repeat;
  width: 27px;
  height: 27px;
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
}
.sidebar-nav__btn:hover {
  opacity: 0.85;
}
.sidebar-nav__btn.active {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sidebar-nav__dropdown {
  list-style: none;
  background: #565c2d;
  display: none;
}
.sidebar-nav__dropdown > li {
  border-bottom: 1px solid #707643;
  position: relative;
}
.sidebar-nav__dropdown > li > a {
  display: block;
  color: #a5ab7a;
  padding: 11px 17px;
  position: relative;
}
.sidebar-nav__dropdown > li > a:before {
  content: '\2014';
  display: inline-block;
  margin-right: 5px;
}
.sidebar-nav__dropdown > li > a:hover {
  color: #a5ab7a;
}
.catalog__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -15px;
}
.catalog__col {
  width: 33.3%;
  padding: 0 15px 50px;
}
.catalog__pagination {
  padding-bottom: 45px;
}
.catalog-text {
  padding-bottom: 45px;
  font-size: 14px;
}
.contacts .title {
  margin-bottom: 45px;
}
.contacts__main-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.contacts__col-main {
  width: 43%;
  padding: 0 20px 50px 0;
}
.contacts__col-map {
  width: 57%;
  height: 430px;
  padding-bottom: 50px;
}
.contacts__col-map iframe {
  height: 100%;
  width: 100%;
  border: none;
}
.contacts__sub-title {
  font-weight: 700;
  padding-left: 50px;
  margin-bottom: 28px;
}
.contacts__item {
  line-height: 1.5;
  margin-bottom: 28px;
  padding-left: 50px;
  position: relative;
}
.contacts__item:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
}
.contacts__item--phone:before {
  background: url("../images/contacts-phone.png") no-repeat;
  width: 32px;
  height: 32px;
}
.contacts__item--mail:before {
  background: url("../images/contacts-mail.png") no-repeat;
  width: 32px;
  height: 26px;
}
.contacts__item--date:before {
  background: url("../images/contacts-date.png") no-repeat;
  width: 32px;
  height: 32px;
}
.contacts__item--address:before {
  background: url("../images/contacts-address.png") no-repeat;
  width: 24px;
  height: 32px;
}
.contacts__social {
  padding-left: 50px;
}
.callback-sect {
  padding: 45px 0 55px;
  background: #F8F8F8;
}
.callback-sect .title {
  margin-bottom: 45px;
}
.leave-review-sect {
  padding: 45px 0 55px;
  background: #F8F8F8;
}
.leave-review-sect .title {
  margin-bottom: 45px;
}
.leave-review-sect .form-textarea textarea {
  height: 250px;
}
.txt-sect .title {
  margin-bottom: 45px;
}
.reviews .title {
  margin-bottom: 45px;
}
.reviews__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -15px;
}
.reviews__col {
  width: 33.3%;
  padding: 0 14px 50px;
}
.reviews__pagination {
  padding-bottom: 45px;
}
.review-one {
  border: 1px solid #707643;
  padding: 20px;
}
.review-one:before,
.review-one:after {
  content: " ";
  display: table;
}
.review-one:after {
  clear: both;
}
.review-one__img {
  float: left;
  width: 85px;
  margin: 0 15px 6px 0;
}
.review-one__img img {
  width: 100%;
}
.review-one__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.review-one__text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.divide{

}
.divide__box{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
  margin:0 -15px;
  padding: 40px 0 25px;
}
.divide__col{
  width: 33.33%;
  padding: 0px 15px 30px;
}
.divide-one{
	display: block;
	text-decoration: none !important;
}
.divide-one__img{
	height: 205px;
	background: #8c964c;
	background-size: cover;
	background-position: center center;
}
.divide-one__content{
  padding: 15px 15px 35px;
  background-color: #F8F8F8;
}
.divide-one__title{
  margin-bottom: 25px;
  text-align: center;
  color: #443f3d;
}
.divide-one__btn{
  max-width: 230px;
  margin:0 auto;
}
.calc-kitchen {
  margin-bottom: 55px;
}
.calc-kitchen__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: -15px;
  margin-right: -15px;
}
.calc-kitchen__col {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 30px;
  padding: 0 15px;
  width: 33.3%;
}
.calc-kitchen__col__price {
  padding-left: 27px;
  font-size: 16px;
  color: #443f3d;
}
.calc-kitchen__col__price strong {
  font-weight: bold;
}
.calc-kitchen__card {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
  border: 1px solid transparent;
  padding: 27px;
  background-color: #ffffff;
  cursor: pointer;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.calc-kitchen__card::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 6px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #9cb537;
  padding: 1px;
  width: 16px;
  height: 16px;
  background-clip: content-box;
  background-color: transparent;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.calc-kitchen__card:hover {
  border: 1px solid #9cb537;
}
.calc-kitchen__card__img-wrapper {
  height: 152px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.calc-kitchen__card__content {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px 20px 70px;
  height: -webkit-calc(-52%);
  height: calc(100% - 152px);
  background-color: #ffffff;
}
.calc-kitchen__card__title {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.3;
  color: #443f3d;
}
.calc-kitchen__card__price {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.3;
  color: #443f3d;
}
.calc-kitchen__card__price strong {
  font-weight: bold;
}
.calc-kitchen__card__btn {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 25px;
  height: 44px;
}
.calc-kitchen__item {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.calc-kitchen__item:checked + .calc-kitchen__card {
  border: 1px solid #9cb537;
  background-color: transparent;
}
.calc-kitchen__item:checked + .calc-kitchen__card::before {
  background-color: #9cb537;
}
.calc-kitchen__btn {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 266px;
  height: 44px;
}
.gallery-sect {
  padding: 35px 0;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.gallery-item {
  box-sizing: border-box;
  margin-bottom: 30px;
  padding: 0 15px;
  width: 25%;
}
.gallery-item a {
  overflow: hidden;
  position: relative;
  display: block;
  height: 200px;
}
.gallery-item img {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  max-width:150%;
  max-height:150%;
}
.gallery-item-title {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}
.fancybox-title-float-wrap .child {
  white-space: normal;
}
/*******media**********/
@media (min-width: 1200px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}
@media screen and (max-width: 1800px) {
  .img-decor {
    font-size: 12px;
  }
}
@media screen and (max-width: 1600px) {
  .img-decor {
    font-size: 9px;
  }
}
@media screen and (max-width: 1400px) {
  .img-decor {
    font-size: 7px;
  }
}
@media screen and (max-width: 1199px) {
  .calc-menu__gallery-big-col {
    width: 650px;
}
  .page-box {
    overflow-x: hidden;
  }
  .wrapper {
    max-width: 1000px;
  }
  .img-decor {
    display: none;
  }
  .header__top-box {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__center,
  .footer .header__center {
    width: 130px;
    margin: 0;
  }
  .header__left,
  .header__right {
    width: auto;
    margin: 0;
  }
  .header-navigation > ul > li > a {
    font-size: 15px;
  }
  .header-navigation > ul > li:nth-of-type(4) {
    margin-right: 0;
  }
  .main-slider__slide {
    background-size: cover !important;
    min-height: 400px;
  }
  .main-slider__txt {
    width: 90%;
  }
  .about-sect__col-right {
    width: 50%;
  }
  .adavantages__box {
    padding: 0;
  }
  .icon-about__box {
    padding: 0;
  }
  .catalog__box {
    margin: 0 -10px;
  }
  .catalog__col {
    padding: 0 10px 35px;
  }
  .products-preview-slider {
    padding: 0 30px;
  }
  .products-preview-slider .slick-prev {
    left: 0;
  }
  .products-preview-slider .slick-next {
    right: 0;
  }
  .products-preview-slider__slide {
    padding: 0 10px;
  }
  .header__bottom .sticky .menu-callback {
    margin: 0 0 0 5px;
  }
  .calc-bonus__table-td--count {
    width: 80px;
    padding-right: 10px;
  }
  .calc-bonus__table-td--name {
    width: 190px;
  }
}
@media screen and (max-width: 991px) {
  body {
    font-size: 12px;
  }
  .wrapper {
    max-width: 780px;
  }
  .title {
    margin-bottom: 45px;
    font-size: 22px;
  }
  .title-small {
    margin-bottom: 30px;
    font-size: 22px;
  }
  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 22px;
  }
  .my-btn {
    font-weight: 400;
    padding: 13px 20px;
    font-size: 12px;
  }
  .my-btn--big {
    padding: 13px 20px;
    font-size: 12px;
  }
  .header {
    position: relative;
  }
  .header .header__top {
    padding: 10px 0;
    min-height: 125px;
    background-image: none !important;
  }
  .header-inner .header__top {
    background-color: #f7f8fa;
  }
  .header .header__top::before {
    display: none;
  }
  .header .header__top a {
    color: #443f3d;
  }
  .header .header__top-box {
    position: relative;
    padding-left: 150px;
    font-size: 14px;
  }
  .header .header__left {
    padding-top: 15px;
    padding-right: 0;
  }
  .header .header__mail {
    margin-bottom: 35px;
  }
  .header .header__phone {
    font-size: 14px;
  }
  .header .header__btn {
    position: absolute;
    right: 0;
    top: 40px;
  }
  .header .header__top .header__btn a {
    padding: 0;
    width: 180px;
    height: 45px;
    font-size: 12px;
    line-height: 45px;
    color: #ffffff;
  }
  .header .header__center {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
  }
  .header .header__logo {
    width: 105px !important;
  }
  .header .header__logo img {
    width: 105px;
  }
  .header .header__right {
    padding-left: 0;
    padding-top: 15px;
  }
  .header .header__search {
    display: none;
  }
  .header .header__social {
    display: none;
  }
  .header .header__basket-product {
    padding-right: 30px;
  }
  .header .header__basket-product:before {
    background: url("../images/icon-basket-dark.png") no-repeat;
  }
  .header-navigation > ul > li > a {
    font-size: 14px;
    padding: 10px 10px;
  }
  .header .sticky .header-navigation > ul > li > a {
    padding: 10px 9px;
    font-size: 12px;
  }
  .header .sticky .header__basket-product:before {
    background: url("../images/icon-basket.png") no-repeat;
  }
  .footer .header__center {
    display: none;
  }
  .footer .header__btn {
    display: none;
  }
  .footer .header__top {
    padding: 30px 0;
    min-height: 0;
    font-size: 14px;
  }
  .footer .header__mail {
    margin-bottom: 50px;
  }
  .footer .header__phone {
    font-size: 14px;
  }
  .footer .header__bottom {
    display: none;
  }
  .footer .header__basket {
    display: none;
  }
  .footer .header__right-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .footer .header__social {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 0;
  }
  .footer .header__social .social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0;
    width: 100%;
  }
  .footer .header__search {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 25px;
    width: 280px;
  }
  .main-slider__slide {
    padding: 50px 0;
    background-repeat: no-repeat;
    min-height: 320px;
  }
  .main-slider__txt {
    width: 100%;
  }
  .main-slider__txt-one {
    padding: 8px 10px;
    font-size: 19px;
  }
  .adavantages {
    margin-bottom: 45px;
  }
  .adavantages__one {
    padding: 15px 3px 20px;
  }
  .adavantages__img {
    margin-bottom: 15px;
  }
  .adavantages__img img {
    width: 53px;
    height: auto;
  }
  .adavantages__txt {
    font-size: 12px;
    line-height: 1.1;
  }
  .lease-goods {
    padding: 45px 0 10px;
  }
  .lease-goods__col {
    padding: 0 14px 35px;
  }
  .lease-goods-one__img {
    height: 140px;
  }
  .our-clients {
    padding: 45px 0;
  }
  .reviews-sect {
    min-height: initial;
    padding: 0 0 45px 0;
  }
  .reviews-sect__btn-wrap {
    margin-top: 40px;
  }
  .about-sect {
    padding: 45px 0;
  }
  .about-sect__box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 12px;
  }
  .about-sect__col-left {
    width: 100%;
    margin: 0 0 20px;
  }
  .about-sect__col-right {
    width: 100%;
  }
  .about-sect__more {
    margin-top: 40px;
  }
  .articles-sect {
    padding: 45px 0;
  }
  .articles-slider {
    padding: 0;
  }
  .articles-slider .slick-prev,
  .articles-slider .slick-next {
    top: 55px;
    transform: none;
  }
  .article-preview__img {
    float: none;
    width: auto;
    margin: 0 0 20px;
    padding: 0 45px;
  }
  .article-preview__img img {
    width: auto;
  }
  .article-preview__date {
    margin-bottom: 5px;
    font-size: 14px;
  }
  .article-preview__name {
    margin-bottom: 15px;
    font-size: 14px;
  }
  .article-preview__text {
    font-size: 12px;
  }
  .article-preview__text p {
    margin-bottom: 10px;
  }
  .articles-sect__btn-wrap {
    margin-top: 40px;
  }
  .subscribe-sect {
    padding: 45px 0;
  }
  .subscribe-form__row {
    display: block;
  }
  .subscribe-form {
    max-width: 310px
  }
  .subscribe-form__input {
    max-width: none;
    margin-bottom: 25px;
  }
  .subscribe-form__input input[type='email'],
  .subscribe-form__input input[type='tel'],
  .subscribe-form__input input[type='text'] {
    height: 46px;
  }
  .subscribe-form__row .captcha-wrapper {
    margin: 0 auto 25px;
    max-width: 304px
  }
  .subscribe-form__btn {
    margin: 0 auto;
    width: 100%;
  }
  .subscribe-form__btn button,
  .subscribe-form__btn input[type="submit"] {
    font-weight: 400;
    min-height: 46px;
    font-size: 12px;
  }
  .page-box-content {
    padding-top: 25px;
  }
  .main-slider-wrap,
  .page-slider {
    margin-top: -25px;
  }
  .breadcrumbs-sect {
    padding: 0 0 5px;
  }
  .contacts .title {
    margin-bottom: 40px;
  }
  .contacts__main-row {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .contacts__sub-title {
    margin-bottom: 15px;
    padding-left: 25px;
  }
  .contacts__item {
    margin-bottom: 15px;
    padding-left: 25px;
  }
  .contacts__item:before {
    width: 19px;
    background-size: 100% auto;
  }
  .contacts__item--address:before {
    top: -3px;
  }
  .contacts__col-map {
    width: 50%;
  }
  .callback-sect {
    padding: 45px 0 50px;
  }
  .articles-all__box {
    margin-left: -15px;
    margin-right: -15px;
  }
  .articles-all__col {
    padding: 0 15px 30px;
    width: 50%;
  }
  .articles-all__col .article-preview {
    border: 1px solid #707643;
    padding: 20px 10px 15px;
    height: 100%;
    -webkit-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
  }
  .articles-all__pagination {
    padding-bottom: 50px;
  }
  .article-preview:hover {
    opacity: 0.85;
  }
  .reviews__box {
    padding-bottom: 20px;
  }
  .reviews__col {
    padding-bottom: 30px;
    width: 50%;
  }
  .review-one {
    padding: 15px 10px 20px;
    height: 100%;
  }
  .review-one__name {
    font-size: 16px;
  }
  .wrap-txt-block blockquote {
    font-size: 12px;
  }
  .wrap-txt-block h1 {
    text-transform: uppercase;
  }
  .wrap-txt-block h2 {
    margin-bottom: 30px;
    text-transform: uppercase;
  }
  .wrap-txt-block h3 {
    margin-bottom: 5px;
    font-size: 16px;
    text-transform: uppercase;
  }
  .wrap-txt-block * + h3 {
    margin-top: 20px;
  }
  .wrap-txt-block * + h2 {
    margin-top: 40px;
  }
  .gallery-sect {
    padding-bottom: 0;
  }
  .gallery {
    display: block;
  }
  .gallery-item {
    overflow: hidden;
    clear: both;
    padding: 0;
    width: 100%;
  }
  .gallery-item a {
    float: left;
    width: 290px;
  }
  p.gallery-item-title {
    margin: 0 0 0 310px;
    text-align: left;
    font-size: 12px;
    line-height: 1.5;
  }
  .basket-page {
    padding-top: 40px;
  }
  .basket-page .basket-page {
    padding: 0;
  }
  .basket-total {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 10px;
  }
  .basket-total__price {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    padding-right: 0;
  }
  .basket-total__btn-box {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .basket-total__btn-box .my-btn {
    font-weight: 700;
    font-size: 16px;
  }
  .prod-basket__col-img {
    margin-right: 0;
    width: 77px;
  }
  .prod-basket__col-description {
    padding: 10px 15px 10px 25px;
  }
  .prod-basket__name {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .prod-basket__row-info {
    width: 70%;
    font-size: 12px;
  }
  .prod-basket__row-info--amount .col-caption {
    font-size: 12px;
  }
  .prod-basket__col-btn {
    padding: 0;
  }
  .prod-basket__btn-remove {
    overflow: hidden;
    height: 32px;
    width: 32px;
    font-size: 0;
    color: transparent;
  }
  .main-container__col-sidebar {
    width: 300px;
  }
  .catalog__col {
    width: 50%;
  }
  .catalog-text {
    font-size: 12px;
  }
  .divide__box {
    padding-top: 0;
    padding-bottom: 0;
  }
  .divide-one__img {
    height: 160px;
  }
  .divide-one__content {
    padding: 15px 15px 25px;
  }
  .divide-one__title {
    font-weight: bold;
    font-size: 14px;
  }
  .popup-call-back, .popup-fieldkitchen {
    padding: 40px 20px 35px;
  }
  .popup-call-back .title {
    margin-bottom: 30px;
  }
  .fancybox-close {
    top: 0;
    right: 0;
  }
  .popup-order {
    width: 290px;
    padding: 20px;
  }
  .popup-order .title {
    font-size: 23px;
  }
  .popup-order .new-form__row {
    display: block;
    margin: 0;
  }
  .popup-order .new-form__col-l {
    width: 100%;
    padding: 0;
  }
  .popup-order .new-form__col-r {
    width: 100%;
    padding: 0;
  }
  .popup-order .form-textarea textarea {
    height: 110px;
  }
  .calc-prod__title {
    font-size: 22px;
  }
  .calc-prod__title-txt:before {
    top: -7px;
  }
  .calc-menu__gallery-big-col {
    width: 535px;
  }
  .calc-prod__table {
    background-color: #ffffff;
  }
  .calc-prod__table-tr {
    position: relative;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
      margin: 0 -15px;
    padding-bottom: 50px;
      background-color: transparent;
      width: auto;
  }
  .calc-prod__table-td {
      margin-bottom: 30px;
      padding-right: 15px;
      padding-left: 15px;
      width: 33.3%;
  }
  .calc-prod__table-td.calc-prod__table-td--summ {
    position: absolute;
    bottom: 31px;
    right: 0;
    padding-right: 55px;
    width: 33.3%;
  }
  .calc-prod__table-td:last-child {
    position: absolute;
    right: 15px;
    bottom: 20px;
    padding: 0;
    margin-bottom: 0;
  }
  .calc-prod__table-td > .custom-select {
    margin: 0 auto;
    min-width: 100%;
    max-width: none;
  }
  .calc-bonus {
    margin-top: 30px;
  }
  .calc-bonus__table .calc-prod__table-tr {
    display: block;
    overflow: hidden;
    clear: both;
    background-color: #ffffff;
    padding-bottom: 13px;
    margin-bottom: 7px;
  }
  .calc-bonus__table .calc-prod__table-tr:last-child {
    margin-bottom: 0;
  }
  .calc-bonus__table-td {
    margin-top: 15px;
    margin-left: 100px;
    padding-right: 0;
    width: auto;
  }
  .calc-bonus__table-td--img {
    float: left;
    margin-top: 0;
    margin-left: 0;
    width: 90px;
  }
  .calc-bonus__table-td--name {
    margin-top: 0;
    padding: 0;
    font-size: 12px;
  }
  .calc-services {
    margin-bottom: 45px;
  }
  .calc-services__col {
      width: 100%;
      margin-bottom: 15px;
  }
  .calc-bonus__table-tr {
      padding-bottom: 5px;
      position: relative;
  }
  .calc-prod__table-td--summ {
      margin-bottom: 0;
  }
  .prod-basket__row-info-fieldkitchen {
    font-size: 12px;
  }
  .icon-about {
    margin-bottom: 60px;
  }
  .product-one__title {
    font-size: 26px;
  }
  .calc-kitchen__list {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  .calc-kitchen__card {
    padding: 17px;
  }
  .calc-kitchen__card::before {
    width: 10px;
    height: 10px;
    top: 3px;
    left: 3px;
  }
  .calc-kitchen__item:checked + .calc-kitchen__card {
    background-color: #f0f0f0;
  }
  .calc-kitchen__card__img-wrapper {
    height: 95px;
  }
  .calc-kitchen__card__content {
    padding: 10px 10px 50px;
  }
  .calc-kitchen__card__title {
    font-size: 12px;
  }
  .calc-kitchen__card__price {
    font-size: 12px;
  }
  .calc-kitchen__card__btn {
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 35px;
    line-height: 35px;
    font-weight: bold;
    padding: 0;
  }
  .calc-kitchen__col__price {
    padding-left: 0;
    font-size: 12px;
  }
  .calc-prod__total-options-price-txt {
    margin-bottom: -13px;
    padding-top: 20px;
  }
  .calc-bonus__total {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .calc-bonus__total-txt {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    font-size: 12px;
  }
  .calc-bonus__btn {
    margin-left: 0;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .calc-menu__content + .wrap-txt-block {
    padding-top: 45px;
  }
  .calc-menu__content.mb40 + .wrap-txt-block {
    padding-top: 5px;
  }
}
@media screen and (max-width: 780px) {
  .calc-menu__gallery {
    display: block;
    margin-bottom: 35px;
  }
  .calc-menu__gallery-big-col {
    width: 100%;
    margin-bottom: 10px;
  }
  .calc-menu__gallery-small-col {
    width: 100%;
    padding-left: 0;
  }
  .menu-gall-small__slide {
    padding: 0 5px;
  }
  .menu-gall-small .slick-prev {
    margin-left: 0;
    left: -10px;
    top: 50%;
    margin-top: -17px;
  }
  .menu-gall-small {
    padding: 0 20px;
  }
  .menu-gall-small .slick-prev:before {
    background-image: url(../images/arrow-left.png);
  }
  .menu-gall-small .slick-next {
    margin-left: 0;
    left: auto;
    right: -10px;
    top: 50%;
    margin-top: -17px;
  }
  .menu-gall-small .slick-next:before {
    background-image: url(../images/arrow-right.png);
  }
}
@media screen and (max-width: 767px) {
  .visible-lg{
    display:none;
  }
  .visible-xs{
    display:block;
  }
  .wrap-txt-block img {
    display: block;
    float: none !important;
    margin: 0 auto 15px !important;
    height: inherit !important;
  }
  .wrap-txt-block iframe {
    width: 450px;
    height: 300px;
  }
  .fancybox-nav span {
    visibility: visible;
  }
  .header .header__top .header__btn {
    right: 50px;
  }
  .header .header__top .header__btn a {
    width: 130px;
  }
  .header .header__basket-product {
    padding-left: 25px;
    padding-right: 15px;
  }
  .btn-nav {
    display: block;
    position: absolute;
    left: auto;
    right: 15px;
    top: -61px;
    z-index: 10;
    width: 36px;
  }
  .btn-nav .icon-bar {
    margin-left: auto;
    margin-right: auto;
    width: 20px;
    border-radius: 1px;
    background: #52582c;
  }
  .header .header__bottom {
    position: relative;
    height: 0 !important;
  }
  .header .header__bottom .wrapper {
    padding: 0;
  }
  .header-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 10;
    display: none;
    background: #454a24;
    box-shadow: 8.5px 14.7px 10.5px 0 rgba(0, 0, 0, 0.54);
  }
  .header-navigation > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .header-navigation > ul > li {
    position: relative;
    border-top: 1px solid #51572b;
  }
  .header-navigation > ul > li > a {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    padding: 10px 15px;
    height: auto;
    max-width: inherit;
    text-align: left;
  }
  .header .dropdown__btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 40px;
    height: 40px;
  }
  .header .navbar-nav > li > .dropdown-menu {
    border-radius: 0;
  }
  .dropdown-menu {
    position: relative;
  }
  .header .sticky .btn-nav {
    position: relative;
    left: 15px;
    right: auto;
    top: 0;
  }
  .header .sticky .btn-nav .icon-bar {
    background: #ffffff;
  }
  .header__bottom .sticky .menu-callback {
    margin: 0 10px 0 0;
  }
  .main-slider__txt {
    margin-bottom: 40px;
  }
  .basket-total {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 0;
  }
  .basket-total__price {
    padding-right: 0;
  }
  .my-btn-plus {
    padding: 10px 15px 10px 50px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
  }
  .my-btn-plus:before {
    left: 10px;
  }
  .my-btn-next {
    margin-left: 0;
    padding: 10px 15px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
  }
  .calc-prod__total-price {
      display: block;
      padding-top: 30px;
  }
  .calc-prod__total-price-txt {
      padding-right: 0;
  }
  .calc-prod__total-price-btn {
    margin-bottom: 30px;
  }
  .icon-about__box {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .icon-about__col {
    width: 50%;
    padding: 0 15px 40px;
  }
  .icon-about__img {
    margin-bottom: 15px;
  }
  .icon-about {
    margin-bottom: 25px;
  }
  .my-pagination li.previous a,
  .my-pagination li.next a {
    padding-left: 12px;
    padding-right: 12px;
  }
  .product-one__slider-box {
    width: 100%;
    float: none;
    margin: 0 0 30px;
  }
  .product-one__title {
    margin-bottom: 30px;
  }
  .product-one {
    margin-bottom: 60px;
  }
  .product-labels__list > li {
    padding: 0 15px 10px 0;
  }
  .product-labels {
    padding-bottom: 50px;
  }
  .products-preview-sect {
    padding: 0 0 70px;
  }
}
@media screen and (max-width: 700px) {
  .main-container__col-sidebar {
    padding-right: 0;
    width: 100%;
  }
  .sidebar-nav {
    margin-bottom: 50px;
  }
  .main-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .main-container__col-content {
    width: 100%;
  }
  .calc-prod__table-tr {
    margin: 0;
    padding-bottom: 25px;
  }
  .calc-prod__table-td {
    margin-bottom: 20px;
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }
  .calc-prod__table-td.calc-prod__table-td--summ {
    position: static;
    margin-bottom: 0;
    padding-top: 5px;
    padding-right: 55px;
    width: 100%;
  }
  .calc-prod__table-td:last-child {
    right: 0;
    bottom: 15px;
  }
}
@media screen and (max-width: 660px) {
  .contacts__main-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contacts__col-main {
    width: 100%;
    padding: 0 0 45px;
  }
  .contacts__col-map {
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
    height: 380px;
    padding-bottom: 50px;
  }
  .divide__col{
    width: 50%;
  }
  .calc-services__box {
    display: block;
    margin: 0;
  }
  .calc-kitchen__col {
    padding: 0;
    width: 100%;
  }
  .calc-kitchen__card {
    padding: 20px;
  }
  .calc-kitchen__card::before {
    width: 12px;
    height: 12px;
  }
  .calc-kitchen__card__img-wrapper {
    height: 160px;
  }
  .calc-kitchen__card__content {
    height: auto;
    padding: 15px;
  }
  .calc-kitchen__card__btn {
    position: static;
    margin-top: 15px;
    width: 100%;
  }
  .calc-prod__total-options-price-txt{
    margin-bottom: 20px;
    text-align: left;
  }
  .calc-bonus__total {
    display: block;
  }
  .calc-bonus__total-txt {
    margin-bottom: 25px;
  }
  .calc-bonus__btn {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .header .header__top-box {
    padding-left: 120px;
  }
  .header .header__mail {
    display: none;
  }
  .header .header__phone-wrap {
    display: none;
  }
  .header .header__top .header__btn {
    right: 41px;
  }
  .btn-nav {
    right: 11px;
  }
  .footer .header__top-box {
    display: block;
  }
  .footer .header__left {
    display: block;
    margin-bottom: 20px;
    padding-right: 0;
  }
  .footer .header__left-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer .header__right {
    padding-left: 0;
  }
  .footer .header__right-box {
    width: 100%;
  }
  .footer .header__mail {
    margin-bottom: 0;
  }
  .footer .header__search {
    width: 100%;
  }
  .main-slider__slide {
    min-height: 220px;
  }
  .adavantages__box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .adavantages__col {
    width: 50%;
  }
  .lease-goods__col {
    padding: 0 5px 35px;
    width: 50%;
  }
  .new-form__row {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .new-form__col-l {
    width: 100%;
    padding: 0;
  }
  .new-form__col-r {
    width: 100%;
    padding: 0;
  }
  .articles-all__box {
    margin: 0;
  }
  .articles-all__col {
    padding: 0 0 20px;
    width: 100%;
  }
  .reviews__box {
    margin: 0;
    padding-bottom: 30px;
  }
  .reviews__col {
    padding: 0 0 20px;
    width: 100%;
  }
  .gallery-item a {
    float: none;
    width: 100%;
    height: auto;
  }
  .gallery-item a img {
    position: static;
    transform: none;
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    max-height: none;
    margin-bottom: 0 !important;
  }
  p.gallery-item-title {
    margin: 10px 0 0;
  }
  .basket-total {
    display: block;
  }
  .basket-total__price {
    margin-bottom: 30px;
  }
  .basket-total__btn-box .my-btn {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 525px) {
  .callback-sect .g-recaptcha,
  .leave-review-sect .g-recaptcha {
    float: none !important;
    max-width: 304px;
    margin: 0 auto 40px;
  }
  .basket-table__td.basket-table__fieldkitchen {
    width: 100%;
  }
  .basket-table__td.basket-table__fieldkitchen_contains {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .prod-basket {
    background-color: #F8F8F8;
  }
  .prod-basket__all-info {
    display: block;
  }
  .prod-basket__row-info {
    width: 100%;
  }
  .prod-basket__col-description {
    padding: 10px 15px;
  }
  .basket-total__btn-box .my-btn {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
  .divide__col{
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .wrap-txt-block iframe {
    width: 100%;
    height: 200px;
  }
  .close-btn {
    width: 20px;
    height: 20px;
    background-size: contain;
  }
  .main-slider__txt-one {
    font-size: 13px;
    line-height: 24px;
    background: rgba(255, 255, 255, 0.8);
  }
  .about-sect__more {
    width: 100%;
  }
  .about-sect__col-right-col {
    padding: 0 5px 10px;
  }
  .about-sect__col-right {
    margin-bottom: 10px;
  }
  .articles-slider__slide {
    padding: 0;
  }
  .prod-preview__price {
    font-size: 14px;
  }
  .catalog__box {
    margin: 0;
  }
  .catalog__col {
    width: 100%;
    padding: 0 0 35px;
  }
  .footer .header__left-box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer .header__left-box > p {
    margin-bottom: 15px;
    width: 100%;
  }
  .calc-prod__table-tr{
      width: 100%;
  }
  .icon-about__txt {
    font-size: 14px;
  }
  .popup-call-back {
    width: 280px;
    padding: 30px 15px;
  }
  .popup-call-back .title {
    margin-bottom: 30px;
    font-size: 23px;
  }
  .my-pagination li span,
  .my-pagination li a {
    color: #443f3d;
    background: #F8F8F8;
    display: block;
    padding: 8px 5px;
    min-width: 28px;
    text-align: center;
  }
  .my-pagination li {
    margin-left: 3px;
  }
}
@media screen and (max-width: 380px) {
  .footer .header__left-box {
    display: block;
  }
  .footer .header__mail {
    margin-bottom: 15px;
  }
  .lease-goods__col {
    padding: 0 5px 25px;
  }
  .lease-goods-one__img {
    height: 110px;
  }
  .calc-prod__total-price-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .calc-kitchen__card__img-wrapper {
    height: 120px;
  }
  .calc-bonus__table-td {
    font-size: 12px;
  }
}

/*# sourceMappingURL=../maps/main.css.map */
