@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i&subset=cyrillic&display=swap");
body {
  color: #2b2b2b;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 17px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Предотвращаем pull-to-refresh на мобильных устройствах */
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
}
body.active_menu {
  height: 100%;
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
table {
  display: block;
}
a {
  color: #0088d0;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
*:focus {
  outline: none;
}
p {
  margin: 10px 0;
}
img {
  height: auto;
  max-width: 100%;
  border: none;
}
.clear {
  clear: both;
  height: 0;
  width: 0;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  color: #2b2b2b;
  clear: both;
  font-weight: 400;
  text-transform: uppercase;
  margin: 40px 0;
}
h1 {
  font-size: 26px;
}
h1.page_title {
  font-size: 40px;
  text-transform: none;
  font-weight: 300;
  margin: 40px 0;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 22px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 17px;
  font-weight: 700;
}
h6 {
  font-size: 16px;
  font-weight: 700;
}
.content_text h2 {
  margin: 45px 0 25px;
}
ul,
ol {
  list-style-type: none;
  margin: 20px 0;
  padding: 0 0 0 30px;
}
ul li {
  position: relative;
  margin: 10px 0;
}
ul li::before {
  background: #0088d0;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 6px;
  width: 6px;
  margin: 0 10px 3px 0px;
}
ol {
  counter-reset: list1;
}
ol li {
  position: relative;
  margin: 10px 0;
}
ol li::before {
  counter-increment: list1;
  content: counter(list1, decimal-leading-zero);
  color: #0088d0;
  margin: 0 20px 0 0;
  font-weight: 300;
}
ol li::after {
  content: "/";
  color: #0088d0;
  position: absolute;
  left: 20px;
  top: -2px;
  font-size: 10px;
  font-weight: 300;
}
ol ol {
  counter-reset: list2;
  padding: 0 0 0 15px !important;
  margin: 10px 0 0 !important;
}
ol ol li::after {
  display: none;
}
ol ol li:before {
  counter-increment: list2;
  content: counter(list1) "." counter(list2) ". ";
  margin: 0;
}
blockquote {
  display: block;
  border-left: 4px solid #0088d0;
  padding: 0 0 0 40px;
  font-size: 21px;
  font-weight: 300;
  margin: 0;
}
.content {
  margin: 0 auto;
  padding: 0 10px;
  width: 1160px;
  max-width: 98%; /* Адаптивность для узких viewport */
  box-sizing: border-box;
}
.content_home {
  width: 1270px;
  max-width: 98%; /* Адаптивность для узких viewport */
  margin: 0 auto; /* Центрирование блока */
  box-sizing: border-box;
}
.blue {
  color: #0088d0;
}
.red {
  color: #f35c14;
}
.bold,
.content_text p.bold {
  font-weight: 700;
}
.italic {
  font-style: italic;
}
.grey_bg {
  background: #f6f6f6;
}
.align_left {
  float: left;
  margin: 0 20px 20px 0;
}
.align_right {
  float: right;
  margin: 0 0 20px 20px;
}
.center {
  text-align: center;
}
a[href$=".xlsx"],
a[href$=".xls"],
p.price_xls,
a[href$=".rar"],
a[href$=".zip"],
a[href$=".doc"],
a[href$=".docx"],
a[href$=".pdf"] {
  position: relative;
  padding: 0 0 0 25px;
  color: #f35c14;
  font-weight: 400;
  text-decoration: underline;
}
a[href$=".xlsx"]::before,
a[href$=".xls"]::before,
p.price_xls::before {
  content: "\f1c3";
  display: block;
  position: absolute;
  left: 0;
  top: -2px;
  font-family: "FontAwesome";
  font-size: 22px;
}
a[href$=".rar"]::before,
a[href$=".zip"]::before {
  content: "\f1c6";
  display: block;
  position: absolute;
  left: 0;
  top: -2px;
  font-family: "FontAwesome";
  font-size: 22px;
}
a[href$=".doc"]::before,
a[href$=".docx"]::before {
  content: "\f1c2";
  display: block;
  position: absolute;
  left: 0;
  top: -2px;
  font-family: "FontAwesome";
  font-size: 22px;
}
a[href$=".pdf"]::before {
  content: "\f1c1";
  display: block;
  position: absolute;
  left: 0;
  top: -2px;
  font-family: "FontAwesome";
  font-size: 22px;
}
a[href$=".xlsx"]:hover,
a[href$=".xls"]:hover,
p.price_xls:hover,
a[href$=".rar"]:hover,
a[href$=".zip"]:hover,
a[href$=".doc"]:hover,
a[href$=".docx"]:hover,
a[href$=".pdf"]:hover {
  color: #0088d0;
}
table {
  border-collapse: collapse;
}
/*--Form--*/
::-webkit-input-placeholder {
  color: #999999;
}
:-moz-placeholder {
  color: #999999;
}
::-moz-placeholder {
  color: #999999;
}
:-ms-input-placeholder {
  color: #999999;
}
*,
::before,
::after {
  box-sizing: border-box;
}
::selection {
  color: #fff;
  background: #f35c14;
}
input:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus:-moz-placeholder {
  color: transparent;
}
input:focus::-moz-placeholder {
  color: transparent;
}
input:focus:-ms-input-placeholder {
  color: transparent;
}
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
textarea:focus:-moz-placeholder {
  color: transparent;
}
textarea:focus::-moz-placeholder {
  color: transparent;
}
textarea:focus:-ms-input-placeholder {
  color: transparent;
}
input:not([type='submit']):focus,
textarea:focus {
  background: #fff !important;
}
select,
input[type="email"],
input[type="password"],
input[type="phone"],
input[type="tel"],
input[type="text"],
input[type="number"],
input[type="url"] {
  display: block;
  width: 100%;
  background: #f6f6f6;
  border: 1px solid #e0e0e0;
  height: 50px;
  line-height: normal;
  margin: 0 0 10px;
  padding: 0 30px;
  font-size: 16px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
}
input[type="submit"] {
  color: #fff;
  background: rgba(0, 136, 208, 1);
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
  padding: 0 45px;
  font-size: 15px;
  font-weight: 300;
  border: none;
  font-family: "Roboto Condensed", sans-serif;
  cursor: pointer;
}
input[type="submit"]:hover {
  background: rgba(0, 136, 208, 0.8);
}
textarea {
  display: block;
  width: 100%;
  background: #f6f6f6;
  border: 1px solid #e0e0e0;
  margin: 0 0 10px;
  padding: 20px 30px;
  font-size: 16px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
}
input[type="checkbox"],
input[type="radio"] {
  display: none;
}

#comments-form input[type="checkbox"],
.cart_form input[type="checkbox"],
.call_me_form input[type="checkbox"],
.order_form input[type="checkbox"],
.order-form-1 input[type="checkbox"],
.order-form-1 input[type="radio"] {
  display: inline-block!important;
}

div.agree {
  text-align: left;
}
div.agree input[type="checkbox"] + label {
  display: block;
  margin: 15px 0 30px;
  position: relative;
  padding: 0 0 0 25px;
}
input[type="checkbox"] + label::before {
  cursor: pointer;
  display: block;
  margin: 0;
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  background: #fff;
  width: 16px;
  height: 16px;
  border: 1px solid #c8c8ca;
  border-radius: 3px;
}
input[type="checkbox"]:checked + label::before {
  background: #fff url(/images/chek.png) no-repeat 1px 2px;
  z-index: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
.quantity-block {
  position: relative;
  display: inline-block;
}
.quantity-block button {
  position: absolute;
  padding: 0;
  border: none;
  background: none;
  font-size: 18px;
  right: 12px;
  cursor: pointer;
}
.quantity-block button.quantity-arrow-plus {
  top: 0px;
}
.quantity-block button.quantity-arrow-minus {
  bottom: 0px;
}
form .agree a {
  color: #1a1a1a;
  font-size: 13px;
}
.fancybox-bg {
  background: #fff;
}
.fancybox-content {
  border: 3px solid #f35c14;
  text-align: center;
  padding: 0;
}
.form_top {
  background: #2b2b2b;
  position: relative;
}
.call_me_form {
  width: 490px;
}
.call_me_form form {
  width: 330px;
  margin: 50px auto;
}
.call_me_form div.thx,
.order_form div.thx {
  padding: 50px 0 23px 0;
  display: none;
}
.call_me_form .error,
.order_form .error,
.request-price-form .error {
  display: none;
}
.call_me_form .error,
.order_form .error,
.request-price-form .error {
  color: red;
  border: 2px solid red;
}
.fancybox-button.fancybox-close-small {
  height: 75px;
  width: 75px;
  color: #f35c14;
}
.order_form,
.request-price-form {
  width: 770px;
}
.order_form form,
.request-price-form form {
  width: 670px;
  margin: 50px auto;
}
.order_form form textarea,
.request-price-form form textarea {
  height: 110px;
}
.order_form_left,
.request-price-form-left {
  float: left;
  width: 50%;
  padding: 0 5px;
}
.order_form div.agree input[type="checkbox"] + label,
.request-price-form div.agree input[type="checkbox"] + label {
  display: inline-block;
}
.order_form div.agree .request-price-form div.agree {
  text-align: center;
}
div[id*="hidden-form"] h3 {
  font-size: 25px;
  margin: 0 0 20px;
}
.erorr_form {
  color: red;
  border: 2px solid red;
  padding: 10px;
  margin: 10px 0;
}
.info_form {
  font-size: 14px;
}
/*--End Form--*/
/*--Header--*/
.header_container {
  position: relative;
  left: 0;
  top: 0;
}

.site_header.fixed .header_container {
  position: fixed;
  top: 0;
  z-index: 9998;
  width: 100%;
}
.site_header ul {
  margin: 0 auto;
  padding: 0 10px;
  text-align: center;
  max-width: 1140px;
}
.site_header ul li {
  display: inline-block;
  position: relative;
  padding: 0;
  margin: 0;
}
.site_header ul li::before {
  display: none;
}
.top_navigation ul li a {
  color: #fff;
  font-size: 17px;
  font-weight: 300;
  line-height: 40px;
  padding: 0 40px;
  display: block;
}
.top_navigation ul li.with_sub_menu a {
  padding: 0 60px 0 20px;
}
.top_navigation > ul > li:hover > a {
  text-decoration: none;
}
.top_navigation > ul > li.with_sub_menu > a::before {
  content: "\f107";
  display: block;
  font-family: "FontAwesome";
  position: absolute;
  height: 12px;
  width: 12px;
  top: 12px;
  right: 20px;
  line-height: normal;
}
.top_navigation > ul > li.with_sub_menu:hover > a::before {
  content: "\f106";
}
.top_navigation > ul > li:hover ul.sub_menu {
  display: block;
}
ul.sub_menu.sub_menu_top {
  background: #0b1430;
  color: #fff;
  width: 100%;
  padding: 5px 30px 5px;
}
ul.sub_menu.sub_menu_top li {
  display: block;
}

.catalog_menu li a {
  padding: 0;
  font-size: 14px;
  line-height: normal;
  margin: 15px 0;
  font-weight: 400;
  color: #000!important;
  text-decoration: underline;
}

ul.sub_menu.sub_menu_top li a {
  padding: 0;
  font-size: 14px;
  line-height: normal;
  margin: 15px 0;
  font-weight: 400;
  color: #fff;
  text-decoration: underline;
}
ul.sub_menu.sub_menu_top li a:hover {
  color: lightgrey;
}
.middle_header {
  background: #101d44;
  height: 74px;
  text-align: center;
  position: relative;
  font-size: 14px;
}
.middle_header > * {
  display: inline-block;
  margin: 0 40px;
  vertical-align: middle;
  height: 100%;
}
.top_logo {
  margin: 0 0 0 40px;
}
.top_logo img {
  display: block;
  height: 45px;
  margin: 15px 0 0;
}
.menu_toggle {
  display: none;
  width: 25px;
  height: 16px !important;
  position: absolute;
  right: 15px;
  top: 15px;
}
.menu_toggle .line {
  display: block;
  background: #fff;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  transition: all 0.5s;
}
.menu_toggle .line.line-1 {
  top: 0;
}
.menu_toggle .line.line-2 {
  top: 50%;
}
.menu_toggle .line.line-3 {
  top: 100%;
}
.middle_header form.searchform {
  position: relative;
  width: 425px;
  margin: 5px 0 0 75px;
  height: 45px;
}
.middle_header form.searchform input[type="text"] {
  background: #e1e1e1;
  width: 100%;
  border: none;
  box-shadow: none;
  height: 100%;
  padding: 0 50px 0 15px;
  font-size: 17px;
  line-height: normal;
}
.middle_header .searchform button,
.manufacturers_search .searchform button {
  background: rgba(0, 0, 0, 0) url("../images/search_button.png") no-repeat
    scroll center center;
  border: none;
  height: 25px;
  padding: 0;
  right: 0px;
  width: 50px;
  position: absolute;
  top: 9px;
  border-left: 1px solid #b3b3b3;
}
.main_navigation {
  position: relative;
  z-index: 111;
}
.main_navigation {
  background: #0088d0;
}
.top_logo2 {
  display: block;
  position: absolute;
  left: 55px;
  top: 10px;
}
.main_navigation ul {
  background: #0088d0;
  padding: 0 0px;
}
.main_navigation > ul > li {
  position: relative;
}
.main_navigation > ul > li.main_horeca_link {
  position: relative;
}
.main_navigation > ul > li > a {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 50px;
  padding: 0 25px;
  display: block;
}
.main_navigation > ul > li:hover > a {
  background: #fff;
  color: #2b2b2b;
  text-decoration: none;
}
ul.sub_menu {
  position: absolute;
  left: 0;
  z-index: 111;
  background: #f3f3f3;
  text-align: left !important;
  padding: 30px;
  display: none;
}

@media screen and (min-width: 1024px) {
  ul.sub_menu {
    margin: -1px 0 0 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
}
.main_navigation > ul > li:hover ul.sub_menu {
  display: flex;
}
.main_navigation li.main_horeca_link ul.sub_menu > li.top-menu-first {
  width: 255px;
}
.main_navigation li.main_horeca_link ul.sub_menu > li:nth-child(2) {
  width: 190px;
}
.main_navigation li.main_horeca_link ul.sub_menu > li {
  width: 165px;
  vertical-align: top;
}
.main_navigation ul.sub_menu > li > ul {
  background: none;
  text-align: left;
  padding: 0;
}
.main_navigation ul.sub_menu > li > ul li {
  display: block;
  margin: 10px 0;
}
.main_navigation ul.sub_menu > li > ul li a {
  color: #2b2b2b;
  font-size: 15px;
  font-weight: 300;
  padding: 0;
}
.main_navigation ul.sub_menu > li > ul.sub_menu1 li {
  margin: 20px 0;
}
.main_navigation ul.sub_menu > li > ul.sub_menu1 li a {
  font-size: 17px;
  position: relative;
  padding: 0 0 0 35px;
  display: block;
}
.main_navigation ul.sub_menu > li > ul.sub_menu1 li a span {
}
.main_navigation ul.sub_menu > li > ul.sub_menu1 li a svg,
.main_navigation ul.sub_menu > li > ul.sub_menu1 li a img,
.site_header .mobile_menu .mobile_menu_block > ul > li ul.sub_menu li a svg,
.site_header .mobile_menu .mobile_menu_block > ul > li ul.sub_menu li a img {
  position: absolute;
  width: 25px;
  left: 0;
  top: 0;
  fill: #0088d0;
}

.catalog_menu > ul > li {
  display: block!important;
  width: 100%!important;
  text-align: left!important;
  padding: 0 20px!important;
  border-bottom: 1px solid #e0e0e0!important;
  line-height: 45px!important;
  color: black!important;
}


.main_navigation ul.sub_menu > li > ul.sub_menu3 li:first-child {
  font-weight: 700;
  margin: 10px 0 40px;
}
.main_navigation ul.sub_menu > li a:hover {
  color: #fff;
}
.main_navigation ul.sub_menu4 {
  width: 100%;
}
.main_navigation ul.sub_menu4 > li {
  display: block;
  margin: 10px 0;
  width: 100%;
}
.main_navigation ul.sub_menu4 > li a {
  color: #2b2b2b;
  font-size: 15px;
  font-weight: 300;
  padding: 0;
}
.contacts_header {
  margin: 0 0 0 0;
}
.contacts_header > * {
  display: inline-block;
}
.contacts_header .top_phone {
  color: #fff;
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid #595959;
  height: 100%;
  padding: 17px 45px 0;
}
.contacts_header .top_phone:hover {
  text-decoration: none;
}
.contacts_header .top_phone span {
  display: block;
  font-size: 14px;
  font-weight: 400;
}
.top_email {
  padding: 23px 35px 0;
  height: 100%;
  vertical-align: top;
  border-right: 1px solid #595959;
  color: #fff;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 700;
}
.top_cart {
  color: #fff;
  position: relative;
  padding: 22px 30px 0 50px;
  border-right: 1px solid #595959;
  z-index: 200;
}
.top_cart a {
  color: #fff;
}
.top_cart:hover a {
  color: #f35c14;
  text-decoration: none;
}
.top_cart span {
  position: absolute;
  left: 0;
  top: 23px;
  display: block;
}
.top_cart .top_cart_count {
  top: -3px;
  right: -7px;
  width: 20px;
  left: auto;
  background: #fff;
  color: #2b2b2b;
  font-size: 11px;
  text-align: center;
  height: 20px;
  line-height: 22px;
  border-radius: 50%;
}
.top_cart:hover .top_cart_count {
  background: #f35c14;
  color: #fff;
}
.middle_header .call_me {
  background: rgba(243, 92, 20, 1);
  color: #fff;
  width: 220px;
  line-height: 40px;
  border-radius: 4px;
  padding: 0 0 0 35px;
  font-size: 16px;
  font-weight: 700;
  height: 40px;
  text-align: left;
}
.middle_header .call_me:hover {
  background: rgba(243, 92, 20, 0.8);
  text-decoration: none;
}
.middle_header .call_me i {
  margin: 0 5px 0 0;
}

.mobile_search {
  display: none;
  width: 55px;
  border-right: 1px solid #595959;
  padding: 15px 5px 0 0;
  text-align: center;
}
.mobile_search svg,
.mobile_search img {
  width: 30px;
  fill: #fff;
}
.mobile_search:hover svg {
  fill: #f35c14;
}
.mobile_menu {
  display: none;
  top: 120px;
  width: 100%;
  position: fixed;
  overflow-y: scroll;
  background: #fff;
}
.mobile_menu_block {
  position: relative;
  background: #fff;
  top: 0;
  transition: all 1s;
  z-index: 3;
  width: 100%;
  left: -100%;
  opacity: 0;
}
.site_header .mobile_menu ul {
  width: 100%;
  display: block;
  background: #fff;
  padding: 0px;
  position: relative;
}
.site_header .mobile_menu .mobile_menu_block > ul:last-child {
  padding: 30px 0;
}
.site_header .mobile_menu .mobile_menu_block > ul > li {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0 20px;
  border-bottom: 1px solid #e0e0e0;
  line-height: 45px;
}
.site_header .mobile_menu .mobile_menu_block > ul:last-child > li {
  border-bottom: none;
}
/* Визуальная линия-разделитель для разделов Каталог и Сотрудничество */
.site_header .mobile_menu .mobile_menu_block > ul > li.menu-with-separator > a {
  display: flex;
  align-items: center;
  width: calc(100% - 35px);
}
.site_header .mobile_menu .mobile_menu_block > ul > li.menu-with-separator > a::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #e0e0e0;
  margin-left: 10px;
  margin-top: 10px;
}
/* Скрываем линию когда раздел развернут */
.site_header .mobile_menu .mobile_menu_block > ul > li.menu-with-separator.active-menu-item > a::after {
  display: none;
}
.site_header .mobile_menu_block > ul > li > a {
  font-size: 16px;
  color: #2b2b2b;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.site_header .mobile_menu .mobile_menu_block > ul > li ul.sub_menu {
  width: 100%;
  padding: 0 0px 15px 35px;
  display: none;
}
.site_header .mobile_menu .mobile_menu_block > ul > li ul.sub_menu li {
  line-height: 30px;
  display: block;
  margin: 7px 0;
  text-transform: uppercase;
  font-weight: 700;
}
.site_header .mobile_menu .mobile_menu_block > ul > li > ul.sub_menu > li > a {
  padding: 0;
  font-size: 14px !important;
  line-height: normal;
  margin: 15px 0;
  font-weight: 400;
  color: #0088d0;
  text-decoration: underline;
  text-transform: uppercase;
}
.site_header .mobile_menu .mobile_menu_block > ul > li ul.sub_menu li a svg,
.site_header .mobile_menu .mobile_menu_block > ul > li ul.sub_menu li a img {
  left: -35px;
  top: 3px;
}



.open-submenu {
  cursor: pointer;
  height: 100%;
  line-height: 40px;
  position: absolute;
  right: 0px;
  top: 0;
  width: 30%;
  text-align: right;
  z-index: 0;
  padding: 0 20px 0 0;
}
.open-submenu::after {
  font-family: "FontAwesome";
  content: "\f105";
  color: #000;
  opacity: 1;
  font-weight: 600;
  font-size: 17px;
}
.site_header .mobile_menu_block > ul > li > a .open-submenu + span {
  position: relative;
  z-index: 11;
  display: inline-block;
}
.hidden_cart {
  position: absolute;
  width: 285px;
  text-align: center;
  padding: 25px 40px;
  background: #fff;
  box-shadow: 1px 1px 4px 0px #aaa;
  -webkit-box-shadow: 1px 1px 4px 0px #aaa;
  border-radius: 4px;
  left: -80px;
  top: 74px;
  display: none;
}
.hidden_cart p {
  color: #666666;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 300;
}
.hidden_cart_img {
  width: 120px;
  margin: 30px auto 20px;
}
.hidden_cart .product_desc_title2,
.hidden_cart .product_desc_title4 {
  font-size: 18px;
  color: #2b2b2b;
}
.hidden_cart .order_link {
  margin: 0 auto;
  width: 100%;
  color: #fff !important;
}
.hidden_cart .product_desc_title,
.hidden_cart .product_desc_title3 {
  margin: 0 0 10px;
}
.hidden_cart .product_price {
  margin: 0 0 0px;
}
.hidden_cart .product_price span {
  display: inline-block;
  color: #999999;
  text-transform: uppercase;
  margin: 0px 0 0px 15px;
  position: relative;
  left: auto;
  top: auto;
  font-weight: 300;
  background: url(/images/control.png) no-repeat 0px 6px/7px;
  padding: 0 0 0 20px;
  font-size: 16px;
}
.hidden_cart::before {
  content: "";
  position: absolute;
  display: block;
  border: 10px solid transparent;
  border-bottom: 10px solid #fff;
  left: 45%;
  top: -20px;
}
.top_cart.visible:hover .hidden_cart {
  display: block;
}
/*--End Header--*/

/*--Home--*/
#home_slider {
}
#home_slider .owl-carousel .owl-item {
  min-height: 1px;
  float: none;
  display: inline-block;
}
#home_slider .owl-nav,
#suppliers_block .owl-nav,
.product_block.owl-carousel .owl-nav,
#categories-mobile .owl-nav,
#clients_block .owl-nav {
  position: absolute;
  left: 0;
  width: 100%;
}

#home_slider .owl-nav {
  top: 50%;
}
.product_block.owl-carousel .owl-nav {
  top: 45%;
}
#clients_block .owl-nav,
#categories-mobile .owl-nav,
#suppliers_block .owl-nav {
  top: 35%;
}
#home_slider .owl-nav button,
.product_block.owl-carousel .owl-nav button,
#suppliers_block .owl-nav button,
#categories-mobile .owl-nav button,
#clients_block .owl-nav button {
  display: block;
  height: 40px;
  width: 40px;
  border: 1px solid #d9d9d9;
  position: absolute;
}
#home_slider .owl-nav button.owl-prev {
  left: 85px;
}
.product_block.owl-carousel .owl-nav button.owl-prev,
#clients_block .owl-nav button.owl-prev,
#categories-mobile .owl-nav button.owl-prev,
#suppliers_block .owl-nav button.owl-prev {
  left: -85px;
}
#home_slider .owl-nav button.owl-next {
  right: 85px;
}
.product_block.owl-carousel .owl-nav button.owl-next,
#clients_block .owl-nav button.owl-next,
#categories-mobile .owl-nav button.owl-next,
#suppliers_block .owl-nav button.owl-next {
  right: -85px;
}
#home_slider .owl-nav button::before,
.product_block.owl-carousel .owl-nav button::before,
#suppliers_block .owl-nav button::before,
#clients_block .owl-nav button::before,
#categories-mobile .owl-nav button::before,
.fotorama__wrap .fotorama__arr::before {
  display: block;
  font-family: "FontAwesome";
  color: #d9d9d9;
  text-align: center;
  font-size: 26px;
  line-height: 38px;
}
#home_slider .owl-nav button.owl-prev::before,
.product_block.owl-carousel .owl-nav button.owl-prev::before,
#suppliers_block .owl-nav button.owl-prev::before,
#clients_block .owl-nav button.owl-prev::before,
#categories-mobile .owl-nav button.owl-prev::before,
.fotorama__wrap .fotorama__arr.fotorama__arr--prev::before {
  content: "\f104";
}
#home_slider .owl-nav button.owl-next::before,
.product_block.owl-carousel .owl-nav button.owl-next::before,
#suppliers_block .owl-nav button.owl-next::before,
#clients_block .owl-nav button.owl-next::before,
#categories-mobile .owl-nav button.owl-next::before,
.fotorama__wrap .fotorama__arr.fotorama__arr--next::before {
  content: "\f105";
}
#home_slider .owl-nav button:hover::before {
  color: #fff;
}
.product_block.owl-carousel .owl-nav button:hover::before,
#clients_block .owl-nav button:hover::before,
#categories-mobile .owl-nav button:hover::before,
#suppliers_block .owl-nav button:hover::before {
  color: #2b2b2b;
}
#home_slider .owl-nav button:hover {
  border: 1px solid #fff;
}
.product_block.owl-carousel .owl-nav button:hover,
#clients_block .owl-nav button:hover,
#categories-mobile .owl-nav button:hover,
#suppliers_block .owl-nav button:hover {
  border: 1px solid #2b2b2b;
}
#home_slider .owl-dots {
  position: absolute;
  bottom: 50px;
  text-align: center;
  left: 0;
  width: 100%;
}
#home_slider.owl-carousel .owl-dots button.owl-dot {
  background: #fff;
}
#home_slider.owl-carousel .owl-dots button.owl-dot.active {
  background: #0088d0;
}
.owl-carousel .owl-dots button.owl-dot {
  background: #e0e0e0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  height: 4px;
  width: 50px;
  display: inline-block;
  float: none;
  margin: 0 5px;
  white-space: nowrap;
}
.owl-carousel .owl-dots button.owl-dot.active {
  background: #0088d0;
}
.owl-carousel .owl-nav button span {
  font-size: 0;
}
.advantages1 {
  padding: 60px 0;
  text-align: center;
}
.advantages1 > div {
  display: inline-block;
  margin: 0 -2px;
  padding: 10px 35px 0 75px;
  position: relative;
  text-align: left;
  width: 25%;
  vertical-align: top;
  font-size: 17px;
  font-weight: 700;
}
.advantages1 > div svg,
.advantages1 > div img {
  width: 65px;
  position: absolute;
  left: 0;
  top: 0;
  fill: #058ad1;
}
.advantages1 > div.advantages1_1 svg,
.advantages1 > div.advantages1_1 img {
  width: 60px;
}
.advantages1 > div.advantages1_4 svg,
.advantages1 > div.advantages1_4 img {
  width: 55px;
}
.advantages1 > div span {
  font-size: 17px;
  font-weight: 700;
  display: block;
}
.category_block {
  text-align: center;
}
.category_block div a {
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 16px;
  padding: 0;
}
.category_block div a p {
  width: 100%;
  display: block;
  position: relative;
  margin: auto 50px;
  bottom: auto;
  left: auto;
}
.category_block div a:hover,
#categories-mobile a:hover
{
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 0 3px #f35c14 inset;
  -webkit-box-shadow: 0 0 0 3px #f35c14 inset;
  color: #f35c14;
  text-decoration: none;
}
.category_block div a svg,
.category_block div a img {
  fill: #fff;
  width: 55px;
  height: 55px;
  display: block;
  margin: 0 auto 45px;
}
.category_block div a:hover svg,
#categories-mobile a:hover svg
{
  fill: #f35c14;
}
.category_block div img {
  display: block;
}
.clients {
  background: #f8f8f8;
  padding: 50px 0;
  margin: 60px 0;
  text-align: center;
}
.clients h2 {
  margin: 0 0 30px;
}
#clients_block .owl-dots {
  margin: 30px 0 0;
}
#categories-mobile .owl-dots {
  margin: 30px 0 30px;
  text-align: center;
}
#clients_block.owl-carousel.owl-drag .owl-item > div,
#categories-mobile.owl-carousel.owl-drag .owl-item > div,
#suppliers_block.owl-carousel.owl-drag .owl-item > div {
  max-width: 250px;
  max-height: 250px;
  overflow: hidden;
}
.special_offer_block {
}
.special_offer_block h2 {
  text-align: center;
  margin: 0 0 30px;
}
.special_offer_block .content > div[class*="special_offer_"] {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  height: 469px;
  width: auto;
  position: relative;
  overflow: hidden;
}
.special_offer_block .content > div a {
  background: rgba(0, 0, 0, 0.3);
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 16px;
}
.special_offer_block > div a:hover {
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 3px inset #f35c14;
  -webkit-box-shadow: 0 0 0 3px inset #f35c14;
  text-decoration: none;
}
.special_offer_block .content > div img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
}
.special_offer_block .content > div p {
  font-weight: 300;
  font-size: 26px;
  margin: 10px 0 0;
  line-height: 30px;
}
.special_offer_block a div {
  position: absolute;
  left: 40px;
  font-weight: 300;
  font-size: 26px;
  bottom: 40px;
}
.special_offer_block a div span {
  background: #0088d0;
  font-size: 16px;
  padding: 5px 15px;
}
.special_offer_block a:hover div span {
  background: #f35c14;
}
.special_offer_left {
  height: 234px;
  position: relative;
  overflow: hidden;
}
.special_offer_left_block {
  position: relative;
  height: 234px;
  overflow: hidden;
}
.special_offer_left_block:nth-child(1) {
  margin: 0 0 1px;
}
.special_offer_left_block img {
}
.special_offer_left_block a {
}
.special_offer_left_block a div {
  max-width: 240px;
}
.special_offer_right {
  height: 469px;
  position: relative;
  margin: 0 0 0 -2px;
}
.special_offer_right a div {
  max-width: 400px;
}
.special_offer_block > div a::before {
  content: "\f105";
  display: block;
  font-family: "FontAwesome";
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
  font-size: 26px;
  line-height: 38px;
}
.special_offer_block > div a:hover::before {
  background: #f35c14;
  border: 1px solid #f35c14;
}
.advantages2_block {
  background: #f6f6f6;
  padding: 60px 0;
  margin: 60px 0;
}
.advantages2 {
  text-align: center;
}
.advantages2 > div {
  display: inline-block;
  width: 25%;
  padding: 10px 20px 0 85px;
  position: relative;
  text-align: left;
  vertical-align: top;
  margin: 0 -2px;
  font-size: 17px;
  font-weight: 700;
}
.advantages2 > div svg,
.advantages2 > div img {
  width: 55px;
  position: absolute;
  left: 0;
  top: 0;
  fill: #058ad1;
}
.advantages2 > div span {
  font-size: 17px;
  font-weight: 700;
  display: block;
}
.sale {
  text-align: center;
}
.sale h2 {
  margin: 0 0 30px;
}
.product_block {
}
.product_box {
  display: block;
  background: #fff;
  border: 1px solid #eaeaea;
  padding: 10px;
  overflow: hidden;
  position: relative;
  text-align: left;
  font-size: 14px;
}

.product_box:hover {
  text-decoration: none;
}
.product_box span {
  display: block;
  font-weight: 300;
}
.product_top {
  position: absolute;
  width: 100%;
  z-index: 100;
  overflow: hidden;
  height: 45px;
  left: 0;
  top: 0;
}
.label_left {
  position: absolute;
  left: -25px;
  top: -5px;
  background: #f36810;
  transform: rotate(-45deg);
  padding: 12px 25px 4px;
  color: #fff;
  font-weight: 700 !important;
  font-size: 12px;
}
.label_right {
  color: #999;
  font-size: 13px;
  font-weight: 300;
  position: absolute;
  right: 30px;
  top: 15px;
}
.product_gallery {
  position: relative;
  height: 280px;
  margin: 0px 0 0;
}
.owl-carousel .owl-item .product_gallery img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-height: 250px;
}
.product_gallery_inner {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99;
}
.product_box .product_gallery_box {
  position: static;
  float: left;
  height: 100%;
  width: 33%;
}
.product_box .product_gallery_box.product_gallery_box2 {
  width: 50%;
}
.product_box .product_gallery_box2 span.product_img_button {
  width: 50%;
}

.product_gallery, span.product_img {
  display: flex!important;
}

.product_gallery img {
  object-fit: contain;
}

.product_img {
  opacity: 0;
  overflow: hidden;
  bottom: 0;
  top: 0;
  right: 0;
  z-index: -2;
  width: 100%;
  position: absolute;
  height: auto;
  left: 0;
  background: #fff;
}
.product_box span.product_img_button {
  display: none;
  position: absolute;
  bottom: 20px;
  width: 33%;
}
.product_box .product_gallery_box .product_img_button:after {
  display: block;
  content: "";
  position: absolute;
  top: 1px;
  bottom: 2px;
  height: 3px;
  left: 1px;
  right: 1px;
  background: #e0e0e0;
  transition: background-color 0.2s;
}
.product_box .product_gallery:hover .product_img_button {
  display: block;
}
.product_box .product_gallery_box:hover .product_img_button:after {
  background: #8a8a8a;
}
.product_desc {
  padding: 0 5px;
}
.product_desc_title span.product_desc_title2,
.product_desc_title span.product_desc_title4 {
  font-size: 18px;
  color: #2b2b2b;
}
.product_desc_title,
.product_desc_title3 {
  color: #999;
  font-size: 14px;
  margin: 0px 0px 20px;
}
.product_desc_attr {
  color: #0088d0;
  position: absolute;
  max-width: 180px;
}
.product_desc_attr span {
  color: #2b2b2b;
}
.product_box .product_desc_hidden_attr {
  color: #999;
  opacity: 0;
  display: none;
}
.product_desc_hidden_attr span.product_size span {
  color: #2b2b2b;
  display: inline-block;
  position: relative;
  padding: 0 5px 0 15px;
  font-size: 12px;
}
.product_desc_hidden_attr span.product_size span::before {
  content: "";
  display: block;
  background-image: url("../images/size.png");
  background-repeat: no-repeat;
  height: 15px;
  width: 15px;
  left: 0;
  top: 0px;
  position: absolute;
}
.product_desc_hidden_attr span.product_size span.arrow_l::before {
  background-position: 0 0;
  top: -1px;
}
.product_desc_hidden_attr span.product_size span.arrow_h::before {
  background-position: -14px -1px;
}
.product_desc_hidden_attr span.product_size span.arrow_w::before {
  background-position: -30px -1px;
}
.product_desc_hidden_attr span.product_size span.arrow_dp::before {
  background-position: -60px -1px;
}
.product_desc_hidden_attr span.product_size span.arrow_diameter::before {
  background-position: -45px -1px;
}
.product_price_box {
  position: absolute;
  right: 15px;
  bottom: 10px;
  height: 93px;
}

.product_tag_box {
  position: absolute;
  bottom: 10px;
  height: 93px;
}

.product_tag_box > .tag_label {
  background-color: #f26b20;
  color: #fff;
  padding: 0px 10px;
  height: 19px;
  line-height: 1.3em;
}

.presence {
  color: #fff;
  padding: 0px 10px;
  height: 19px;
  line-height: 1.3em;
  display: block;
  white-space: nowrap;
  width: fit-content;
}
.presence_yes {
  background: #4ab171;
}
.presence_no {
  background: #c4c4c4;
}
.product_price {
  font-size: 24px;
  color: #2b2b2b;
  margin: 60px 0 0;
  text-align: right;
}
.product_price sup {
  font-size: 13px;
  margin: 0 0 0 5px;
}
.product_price_box .product_desc_hidden_attr {
  width: 125px;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
}
.article_number {
  position: absolute;
  top: 0;
}
.article_number span {
  word-break: break-word;
  color: #2b2b2b;
  font-size: 12px;
  display: inline-block !important;
}
.product_color {
  position: absolute;
  bottom: 0;
}
.product_box:hover .product_desc_attr,
.product_box:hover .presence,
.product_box:hover .product_price,
.product_box:hover .product_tag_box {
  display: none;
}
.product_box:hover .product_desc_hidden_attr {
  display: block;
  opacity: 1;
}
.product_box .product_gallery_box:hover .product_img {
  opacity: 1;
}
.owl-carousel .owl-item .product_color img {
  display: inline-block;
  height: 18px;
  width: 18px;
  vertical-align: top;
  margin: 1px 0;
  border-radius: 50%;
}
.product_block .owl-dots {
  margin: 20px 0 0;
}
.all_projects {
  margin: 60px 0;
}
.all_projects h2 {
  margin: 0 0 30px;
  text-align: center;
}
.project_block {
  display: block;
  float: left;
  width: 32%;
  margin: 0 25px 0 0;
}
.project_block:nth-child(3) {
  margin: 0;
}
.project_block:hover {
  text-decoration: none;
}
.project_block span {
  display: block;
  font-weight: 300;
}
.project_block img {
  display: block;
  width: 100%;
}
.project_img {
  position: relative;
}
.project_img::before {
  background-image: url(../images/photo-zoom.svg);
  content: "";
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55px;
}
.project_block:hover .project_img::before {
  display: block;
}
.project_desc {
  padding: 40px;
  background: #f6f6f6;
  font-size: 14px;
}
.project_category {
  color: #999;
  text-transform: uppercase;
  font-size: 12px;
}
.project_title {
  color: #f35c14;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0px 0 15px;
  min-height: 45px;
}
.project_text {
  color: #666;
}
.project_block:hover .project_desc {
  background: #f35c14;
}
.project_block:hover span {
  color: #fff !important;
}
.read_more {
  border: 1px solid #c3c3c3;
  color: #2b2b2b;
  font-size: 16px;
  display: block;
  margin: 30px auto 0;
  height: 40px;
  line-height: 40px;
  width: 150px;
  border-radius: 2px;
  text-align: center;
}
.read_more:hover {
  background: #f35c14;
  border: 1px solid #f35c14;
  color: #fff;
  text-decoration: none;
}
.news {
  padding: 0 0 0;
}
.news h2 {
  margin: 0 0 30px;
  text-align: center;
}
.news_block {
}
.news_box {
  display: inline-block;
  width: 49.8%;
}
.news_wrap {
  position: relative;
  float: left;
  background: #f2f2f2;
  width: 320px;
  height: 285px;
}
.news_img {
  position: relative;
  float: right;
  height: 285px;
  width: 285px;
  overflow: hidden;
}
.news_block a {
  color: #2b2b2b;
  background: #f6f6f6;
  display: block;
  font-weight: 300;
  height: auto;
  width: 605px;
  position: relative;
  float: left;
}
.news_block a:hover .news_wrap {
  color: #fff;
  background: #f35c14;
  text-decoration: none;
}
.news_block a:nth-child(2) {
  float: right;
}
.news_block img {
  display: block;
  height: auto;
  width: auto;
  max-width: none;
}
.news_block a span {
  display: block;
}
.news_block .read_more {
  border: 1px solid #c3c3c3;
  color: #2b2b2b;
  font-size: 16px;
  display: block;
  margin: 0;
  height: 40px;
  line-height: 40px;
  width: 150px;
  border-radius: 2px;
  text-align: center;
  position: absolute;
  left: 40px;
  bottom: 40px;
}
.news_block a:hover .read_more {
  background: #fff;
  text-decoration: none;
}
.news_title {
  font-size: 18px;
  text-transform: uppercase;
  padding: 0 50px 0 40px;
  border-left: 2px solid #f35c14;
}
.news_date {
  font-size: 12px;
  color: #999;
  padding: 40px 0 10px 40px;
  text-transform: none;
}
.news_block a:hover .news_date {
  color: #fff;
}
.new_product {
  background: #f6f6f6;
  padding: 60px 0;
  margin: 60px 0;
  text-align: center;
}
.new_product h2 {
  margin: 0 0 30px;
}
.suppliers {
  text-align: center;
  margin: 60px 0 0;
}
.suppliers h2 {
  margin: 0 0 10px;
}
.suppliers p {
  font-size: 17px;
  font-weight: 300;
  margin: 0 0 40px;
}
#suppliers_block .owl-dots {
  margin: 30px 0 0;
}
#suppliers_block img {
  border: 1px solid #f0f0f0;
}
.popular_sections {
  text-align: center;
  margin: -10px 0 0;
  padding: 60px 0 0;
}
.popular_sections h2 {
  margin: 0 0 10px;
  text-align: center;
}
.popular_sections p {
  font-size: 17px;
  font-weight: 300;
  margin: 0 0 40px;
}
.popular_sections_block {
  width: 100%; /* Занимаем всю ширину родителя */
  max-width: 1270px; /* Ограничение для больших экранов */
  margin: 0 auto; /* Центрирование блока */
  position: relative;
  overflow: visible; /* Изменено с hidden на visible - не обрезает при масштабировании */
  box-sizing: border-box;
}
.popular_sections_left {
  float: left;
  width: 100%; /* Занимает всю ширину родителя вместо жёсткой 837px */
  max-width: 837px; /* Максимальная ширина для больших экранов */
  margin-right: 14px;
}
.popular_sections_right {
  float: right;
  width: 100%; /* Занимает всю ширину родителя вместо жёсткой 409px */
  max-width: 409px; /* Максимальная ширина для больших экранов */
}

/* Flexbox верстка ТОЛЬКО для десктопа (не затрагивает планшеты и мобильные) */
@media screen and (min-width: 900px) {
  .popular_sections_block {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
    --scale-factor: 1; /* Базовый коэффициент масштабирования */
  }
  .popular_sections_left {
    flex: 837 0.5 837px; /* Уменьшаем flex-shrink до 0.5 - меньше сжимается */
    float: none;
    width: auto;
    min-width: 600px; /* Минимальная ширина для сохранения позиций заголовков */
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .popular_sections_right {
    flex: 409 0.5 409px; /* Уменьшаем flex-shrink до 0.5 - меньше сжимается */
    float: none;
    width: auto;
    min-width: 300px; /* Минимальная ширина для сохранения позиций заголовков */
    margin: 0 !important;
  }
  .popular_sections_umbrellas {
    height: 100% !important; /* Растягиваем зонты на всю высоту правой части */
  }
  .popular_sections_umbrellas .popular_sections_item {
    height: 100% !important; /* Элемент внутри зонтов растягивается на всю высоту */
  }
  .popular_sections_chairs {
    margin: 0 !important;
    width: 100%;
    min-width: 0; /* Позволяет сжиматься */
    height: 268px !important; /* Фиксированная высота для выравнивания с шезлонгами */
    padding-bottom: 0 !important; /* Отключаем адаптивную высоту для десктопа */
  }
  .popular_sections_chairs .popular_sections_item {
    height: 100% !important; /* Элемент внутри стульев растягивается на всю высоту */
  }
  .popular_sections_bottom_row {
    display: flex;
    gap: 14px;
    width: 100%;
    min-width: 0; /* Позволяет сжиматься */
    height: 268px !important; /* Фиксированная высота для выравнивания */
    margin: 0 !important;
  }
  .popular_sections_sunbeds {
    flex: 546 1 0; /* flex-grow, flex-shrink, flex-basis - позволяет сжиматься */
    float: none;
    width: auto;
    min-width: 0; /* Важно! Позволяет flex-элементу сжиматься меньше контента */
    margin: 0 !important;
  }
  .popular_sections_sunbeds .popular_sections_item {
    height: 100% !important; /* Элемент внутри шезлонгов растягивается на всю высоту */
  }
  .popular_sections_tables {
    flex: 277 1 0; /* flex-grow, flex-shrink, flex-basis - позволяет сжиматься */
    float: none;
    width: auto;
    min-width: 0; /* Важно! Позволяет flex-элементу сжиматься меньше контента */
    margin: 0 !important;
  }
  .popular_sections_tables .popular_sections_item {
    height: 100% !important; /* Элемент внутри столов растягивается на всю высоту */
  }

  /* Адаптивный размер шрифта для заголовков на десктопе */
  .popular_sections_title {
    font-size: clamp(14px, 1.42vw, 18px) !important;
    white-space: nowrap !important; /* Запрещаем перенос текста ТОЛЬКО на десктопе */
    transform-origin: left top !important; /* Точка для масштабирования ТОЛЬКО на десктопе */
  }
}


/* Универсальное решение для блока "популярные разделы" - адаптивная ширина */

/* Планшеты и небольшие экраны (900-1270px) - адаптивное уменьшение */
@media screen and (min-width: 900px) and (max-width: 1399px) {
  .popular_sections_block {
    width: 100% !important; /* Занимаем всю ширину родителя */
    max-width: 1270px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
}

/* Большие экраны (>1400px) - полная ширина */
@media screen and (min-width: 1400px) {
  .popular_sections_block {
    width: 100% !important; /* Занимаем всю ширину родителя */
    max-width: 1270px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
}


/* Исправления для сверхшироких экранов (1900px+) - предотвращение горизонтального скролла */
@media screen and (min-width: 1900px) {
  .popular_sections_sunbeds img {
    position: absolute!important;
    height: 100%!important;
    left: 0 !important;
    top: 0 !important;
    width: 100%!important;
    object-fit: cover!important;
  }

  .popular_sections_umbrellas img {
    position: absolute !important;
    left: -20px !important;
    top: 156px !important;
    width: 300px !important;
    height: 290px !important;
    object-fit: contain !important;
  }
}
.popular_sections_item {
  position: relative;
  display: block;
  overflow: visible;
  background: #f6f6f6;
  transition: background 0.3s ease;
}
.popular_sections_item > img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}
.popular_sections_overlay {
  position: absolute;
  background: transparent;
  padding: 0;
}
.popular_sections_title {
  color: #525151;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
  transition: color 0.3s ease;
}
.popular_sections_item:hover {
  background: #f35c14;
}
.popular_sections_item:hover .popular_sections_title {
  color: #fff;
}
.popular_sections_chairs {
  width: 100%;
  max-width: 837px;
  height: 0;
  padding-bottom: 32%;
  margin-bottom: 14px;
  position: relative;
}

.popular_sections_chairs .popular_sections_title{
  top: 16px !important;
  left: 255px;
  position: absolute !important;
  width: 300px !important;
  z-index: 300 !important;
}
.chairs_images_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chair_img {
  position: absolute;
  height: 104.5%;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.chair_img_full {
  top: -0.75%;
  z-index: 1;
}

.chair_img_1 {
  left: 19.26%;
  top: 21.5%;
  z-index: 1;
  display: none;
}
.chair_img_2 {
  position: absolute;
  left: 42.4%;
  top: 18.7%;
  z-index: 200;
  height: 77.6% !important;
}
.chair_img_3 {
  left: 68.8%;
  top: 7.5%;
  z-index: 3;
  height: 94.8% !important;
}

.popular_sections_sunbeds {
  width: 100%; /* Занимает всю ширину родителя вместо жёсткой 546px */
  max-width: 546px; /* Максимальная ширина для больших экранов */
  height: 268px;
  float: left;
  margin-right: 14px;
  position: relative;
}

.popular_sections_sunbeds img {
  position: absolute!important;
  height: 125%!important;
  left: -24px !important;
  top: -50px !important;
}

.popular_sections_sunbeds .popular_sections_title{
  top: 28px !important;
  left: 282px;
  position: absolute!important;
  width: 230px!important;
}

.popular_sections_tables {
  width: 100%; /* Занимает всю ширину родителя вместо жёсткой 277px */
  max-width: 277px; /* Максимальная ширина для больших экранов */
  height: 268px;
  float: right;
  position: relative;
}


.popular_sections_tables .popular_sections_title{
  top: 9px !important;
  left: 15px;
  position: absolute!important;
  width: 230px!important;
}

.popular_sections_tables img {
  position: absolute !important;
  top: 36px;
  left: 0!important;
  height: 85% !important;
}


.popular_sections_umbrellas {
  width: 100%; /* Занимает всю ширину родителя вместо жёсткой 409px */
  max-width: 409px; /* Максимальная ширина для больших экранов */
  height: 550px; /* Базовая высота */
  position: relative;
}

.popular_sections_umbrellas .popular_sections_title{
  top: 25px!important;
  left: 92px;
  position: absolute!important;
  width: 230px!important;
}

.popular_sections_umbrellas img {
  position: absolute !important;
  left: -4.2%;
  max-width: 96%;
  width: auto !important;
}

.reviews {
  background: #f6f6f6;
  padding: 60px 0;
  margin: 60px 0 0;
  text-align: center;
}
.reviews h2 {
  margin: 0 0 30px;
}
.reviews_box {
  background: #fff;
  text-align: left;
  padding: 40px;
  font-weight: 300;
  display: inline-block;
  width: 33%;
}
.content_home .reviews_block {
  display: flex;
}
.content_home .reviews_box {
  margin: 0 2px;
}
.reviews_top {
  position: relative;
  font-weight: 300;
}
.reviews_name {
  font-size: 16px;
  text-transform: uppercase;
  float: left;
  width: 50%;
}
.reviews_rating {
  margin: 10px 0 40px;
  color: #999;
  font-size: 13px;
}
.reviews_rating i {
}
.reviews_rating i.active {
  color: #f35c14;
}
.reviews_city {
  color: #0088d0;
  font-size: 16px;
  float: right;
  text-align: right;
  width: 50%;
}
.reviews_desc {
  font-size: 16px;
  color: #999;
}
.reviews a.order_link {
  display: block;
  width: 155px;
  margin: 40px auto 0;
}
.seo_block {
  padding: 65px;
  text-align: center;
}
.seo_block h1 {
  margin: 40px 0;
  font-size: 26px;
}
.seo_text {
  color: #666;
  font-weight: 300;
  line-height: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.bottom_logo {
  display: block;
  width: 200px;
  margin: 0 auto;
}
/*--End Home--*/

/*--Page--*/
.bread_crumbs {
  background: #f6f6f6;
}
.bread_crumbs .home_link {
  background: #ececec;
  color: #a6a6a6;
}
.bread_crumbs a,
.bread_crumbs span {
  color: #a6a6a6;
  font-size: 15px;
  font-weight: 300;
  line-height: 50px;
  display: inline-block;
  padding: 0 18px;
  border-right: 1px solid #e6e6e6;
}
.bread_crumbs a:hover {
  background: #ececec;
  color: #a6a6a6;
  text-decoration: none;
}
.page_prev {
  margin: 0 0 40px;
}
.page_prev img {
  display: block;
  width: 100%;
}
.page_prev p {
  margin: 0;
  background: #f6f6f6;
  color: #666;
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  text-align: center;
  padding: 10px;
}
.content_text {
}
.content_text p,
.content_text ul,
.content_text ol {
  margin: 0 0 15px;
  color: #666;
  font-weight: 300;
  padding: 0;
}
.about_number {
  text-align: center;
  margin: 0 0 40px;
  display: flex;
}
.about_number_box {
  width: 33.333%;
}
.about_number_box * {
  display: inline-block;
  vertical-align: middle;
}
.about_number_box p {
  font-weight: 700;
  text-align: left;
}
.about_number_box span {
  color: #0088d0;
  font-size: 52px;
  font-weight: 400;
  margin: 0 30px 0 0;
}
.utp {
  display: flex;
}
.about_utp ul {
  width: 33.333%;
}
.about_utp.utp {
  margin: 0 0 50px;
}
.utp ul {
  padding: 0 50px 0 0;
  margin: 0;
}
.utp ul li {
  padding: 0px 0 0 85px;
  position: relative;
  margin: 0 0 40px;
  min-height: 70px;
}
.utp ul li::before {
  display: none;
}
.utp ul li svg,
.utp ul li img {
  width: 60px;
  position: absolute;
  left: 0;
  top: 5px;
  fill: #058ad1;
}
.utp ul li span {
  font-weight: 700;
}
.utp ul li p {
  color: #666;
  font-size: 15px;
  font-weight: 300;
}
.service_page {
  text-align: left;
}
.service_page > div {
  position: relative;
  width: 360px;
  display: inline-block;
  margin: 0px 20px 20px 0px;
  text-align: center;
}
.service_page > div:nth-child(3n + 3) {
  margin: 0 0 20px;
}
.category_block.service_page div a span {
  bottom: 100px;
}
.services_utp {
  margin: 40px 0 0;
}
.services_utp ul {
  width: 50%;
}
.price_table {
  border-collapse: collapse;
  margin: 30px 0 50px;
}
.price_table tr {
}
.price_table tr:nth-child(odd) {
  background: #f6f6f6;
}
.price_table td {
  color: #2b2b2b;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  padding: 15px 40px;
  border-left: 1px solid #eaeaea;
  width: 295px;
}
.price_table tr:first-child td {
  border-bottom: 3px solid #0088d0;
  font-size: 15px;
  font-weight: 700;
}
.price_table tr:first-child td:first-child {
  color: #2b2b2b;
  font-weight: 700;
  border-left: #f6f6f6;
}
.price_table tr:first-child td:last-child {
  color: #2b2b2b;
  font-weight: 700;
  border-right: #f6f6f6;
}
.price_table tr td:first-child {
  font-size: 15px;
  color: #666;
  text-align: left;
  width: 48%;
}
.price_table tr td:last-child {
  color: #f35c14;
  border-right: 1px solid #eaeaea;
}
.price_table tr:last-child td {
  border-bottom: 1px solid #eaeaea;
}
.price_table td sup {
  font-size: 10px;
}
.services_tabs {
}
.services_tabs.ui-tabs .ui-tabs-nav {
  padding: 0;
}
.services_tabs.ui-tabs .ui-tabs-nav li {
  margin: 0 50px 0 0;
}
.services_tabs.ui-tabs .ui-tabs-nav li::before {
  display: none;
}
.services_tabs.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: none;
  padding: 0;
  color: #999;
  border-bottom: 1px solid #999;
}
.services_tabs.ui-tabs .ui-tabs-nav .ui-tabs-active .ui-tabs-anchor,
.services_tabs.ui-tabs .ui-tabs-nav .ui-tabs-anchor:hover {
  color: #2b2b2b;
  border: none;
}
.services_tabs.ui-tabs .ui-tabs-panel {
  padding: 0;
}
.projects_top {
  margin: 0 0 60px;
}
.about_number.projects_number {
  text-align: left;
}
.projects_category_block {
  position: relative;
}
.category_block.projects_category_block > div {
  display: inline-block;
  position: relative;
  width: 284px;
  vertical-align: text-bottom;
  height: 284px;
  overflow: hidden;
  margin: 0 -1px 2px;
}
.category_block.projects_category_block div a {
  padding: 0;
  display: flex;
}
.category_block.projects_category_block div a p {
  display: block;
  position: relative;
  margin: auto 50px;
  bottom: auto;
  left: auto;
}
.category_block.projects_category_block div a span {
  display: block;
  position: relative;
  left: auto;
  bottom: auto;
}
.category_block.projects_category_block div a > span.projects_category_title {
  margin: auto 50px;
  width: 100%;
}
.category_block.projects_category_block div a span.quantity_clients {
  font-size: 52px;
  font-weight: 400;
  margin: 20px 0;
  text-transform: none;
}
.category_block.projects_category_block div a span.quantity_clients span {
  font-size: 17px;
  font-weight: 700;
}
.all_projects.all_projects_page {
  margin: 60px 0;
  background: #f6f6f6;
  padding: 60px 0;
}
.project_block:nth-child(3n + 3) {
  margin: 0;
}
.all_projects.all_projects_page .project_desc {
  background: #fff;
}
.all_projects.all_projects_page .project_block:hover .project_desc {
  background: #f35c14;
}
.project_inner_top {
}
.project_inner_desc {
  margin: 50px 0;
}
.project_inner_left {
  float: left;
  width: 30%;
}
.project_inner_list {
}
.project_inner_list p {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}
.project_inner_list ol {
  color: #666;
  font-size: 15px;
  font-weight: 300;
  padding: 0;
  margin: 30px 0 50px;
}
.project_inner_list ol li {
  margin: 7px 0;
}
.fotorama__wrap .fotorama__thumb-border {
  display: none;
}
.fotorama__wrap .fotorama__nav__frame::before {
  position: absolute;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
}
.fotorama__nav-wrap {
  margin: 10px 0 0;
}
.fotorama__wrap .fotorama__nav__frame.fotorama__active::before,
.fotorama__wrap .fotorama__nav__frame:hover::before {
  background: rgba(255, 255, 255, 0);
}
.fotorama__wrap .fotorama__arr {
  position: absolute;
  background: none;
  top: 50%;
  margin-top: -16px;
  display: block;
  height: 40px;
  width: 40px;
  border: 1px solid #d9d9d9;
}
.fotorama__wrap .fotorama__arr--prev {
  left: 30px;
}
.fotorama__wrap .fotorama__arr--next {
  right: 30px;
}
.fotorama__wrap .fotorama__arr::before {
  display: block;
  font-family: "FontAwesome";
  color: #d9d9d9;
  text-align: center;
  font-size: 26px;
  line-height: 38px;
}
.order_link {
  background: rgba(0, 136, 208, 1);
  color: #fff;
  width: 220px;
  line-height: 40px;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 300;
  height: 40px;
  text-align: center;
  display: block;
  margin: 0px 0 15px;
  cursor: pointer;
}
.order_link:hover {
  background: rgba(0, 136, 208, 0.8);
  text-decoration: none;
}
.next_page {
  color: #2b2b2b;
  width: 220px;
  line-height: 40px;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 300;
  height: 40px;
  text-align: center;
  display: block;
  border: 1px solid #cacaca;
}
.next_page:hover {
  background: #f35c14;
  border: 1px solid #f35c14;
  color: #fff;
  text-decoration: none;
}
.pagination_inner {
  margin: 50px 0;
}
.pagination_inner .pagination_prev {
  float: left;
  width: 50%;
}
.pagination_inner .pagination_next {
  float: right;
  width: 50%;
  text-align: right;
}
.pagination_inner a {
  font-weight: 300;
  border-bottom: 1px solid #0088d0;
}
.pagination_inner a:hover {
  text-decoration: none;
  border-bottom: none;
}
.news_page_block {
}
.news_page_block.news_block a:nth-child(2n + 2) {
  float: right;
}
.news_page_block.news_block a {
  margin: 0 0 20px;
}
.pagination {
  margin: 50px 0;
  max-width: 939px;
}
.pagination .read_more {
  margin: 0 4px 0 0;
  float: right;
}
.pagination .pagination_block {
  margin: 0;
  display: flex;
}
.pagination .pagination_block > * {
  display: inline-block;
  font-size: 15px;
  line-height: 38px;
}
.pagination .pagination_block span {
  color: #999;
  margin: 0 20px 0 0;
}
.pagination .pagination_block a {
  color: #2b2b2b;
  width: 38px;
  text-align: center;
  border: 1px solid #d3d3e1;
  border-right: none;
}
.pagination .pagination_block a:first-of-type {
  border-radius: 2px 0 0 2px;
}
.pagination .pagination_block a:last-child {
  border-right: 1px solid #d3d3e1;
  border-radius: 0 2px 2px 0;
}
.pagination .pagination_block a:hover,
.pagination .pagination_block a.active {
  background: #eeeef0;
  color: #999;
  text-decoration: none;
}
.catalog_list_block {
  display: inline-block;
  width: 33%;
  vertical-align: top;
  padding: 0 20px 0 0;
  margin: 50px 0;
}
.catalog_list_title {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #ececec;
  line-height: 35px;
  min-height: 40px;
  margin: 0 0 30px;
  position: relative;
}
.catalog_list_title a {
  color: #000;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0 0 0 35px;
}
.catalog_list_title svg,
.catalog_list_title img {
  position: absolute;
  width: 25px;
  left: 0;
  top: 4px;
  fill: #0088d0;
}
.catalog_list_block ul,
.catalog_list_block ol {
  padding: 0;
  margin: 0;
}
.catalog_list_block ul li {
  padding: 0;
  margin: 20px 0;
}
.catalog_list_block ul li::before {
  display: none;
}
.catalog_list_block ul li a {
  color: #666;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
  position: relative;
  padding: 0 0 0 35px;
}
.catalog_list_block ul.horeca_ul {
}
.catalog_list_block ul.horeca_ul li {
}
.catalog_list_block ul.horeca_ul li a {
  line-height: 24px;
  display: block;
}
.catalog_list_block ul.horeca_ul li svg,
.catalog_list_block ul.horeca_ul li img {
  position: absolute;
  width: 25px;
  left: 0;
  top: 0;
  fill: #0088d0;
}
.catalog_list_block ol li {
  padding: 0;
  margin: 10px 0;
}
.catalog_list_block ol li a {
  color: #666;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
  position: relative;
}
.catalog_list_block ul li a:hover,
.catalog_list_block ol li a:hover {
  color: #0088d0;
}
.manufacturers_filter {
  text-align: right;
  margin: -80px 0 30px;
}
.manufacturers_filter > * {
  display: inline-block;
  vertical-align: top;
}
.manufacturers_filter form {
}
.manufacturers_filter form select {
  height: 40px;
  line-height: 40px;
  border: 1px solid #cacaca;
  margin: 0;
  background: none;
  color: #2b2b2b;
  font-weight: 700;
  font-size: 16px;
  padding: 0 50px 0 35px;
  border-radius: 4px;
}
.manufacturers_filter a {
  height: 40px;
  line-height: 40px;
  border: 1px solid #cacaca;
  margin: 0;
  background: none;
  color: #2b2b2b;
  font-weight: 700;
  font-size: 16px;
  padding: 0 35px;
  border-radius: 4px;
  text-align: center;
}
.manufacturers_filter form select,
.manufacturers_filter a {
  width: 280px;
  padding: 0 30px 0 35px;
  text-align: left;
}
.manufacturers_filter a {
  padding: 0 40px;
}
.manufacturers_search {
  position: relative;
  margin: 0 0 30px;
  width: 440px;
}
.manufacturers_search input[type="text"] {
  height: 45px;
  line-height: 45px;
}
.manufacturers_list {
}
.manufacturers_list_block {
  display: inline-block;
  vertical-align: top;
  width: 185px;
  margin: 0 0 50px;
}
.manufacturers_list_title {
  color: #0088d0;
  font-size: 100px;
  font-weight: 300;
}
.manufacturers_list_block ul {
  margin: 0;
  padding: 0;
}
.manufacturers_list_block ul li {
  margin: 10px 0;
  padding: 0;
}
.manufacturers_list_block ul li::before {
  display: none;
}
.manufacturers_list_block ul li a {
  color: #666;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
}
.manufacturers_list_block ul li a:hover {
  color: #0088d0;
}
.clients.manufacturers {
  margin: 0;
  padding: 50px 0 0;
}
#rus_manufacturers {
  margin: 50px 0 0;
  text-align: left;
}
#rus_manufacturers h2 {
  text-align: center;
}
#rus_manufacturers .manufacturers_list_block {
  width: 24%;
}
.reviews_top_block {
  margin: -88px 0 50px;
  padding: 0 0 0 420px;
  height: 40px;
}
.reviews_top_block span {
  padding: 0 0 0 20px;
}
.reviews_top_block .reviews_rating {
  margin: 0;
  float: left;
  color: #2b2b2b;
  font-size: 19px;
  font-weight: 300;
}
.reviews_top_block .reviews_rating .reviews_number {
  font-size: 40px;
  color: #e1e0e0;
  font-weight: 300;
  margin: 0 20px 0 0;
}
.reviews_top_block a.read_more {
  float: right;
  margin: 0;
  width: 200px;
}
.reviews_page_block {
}
.reviews_page_block .reviews_desc {
  font-style: italic;
}
.reviews_page_block .reviews_box {
  width: 100%;
  border: 1px solid #e5e5e5;
  display: block;
  margin: 10px 0;
  border-radius: 4px;
}
.reviews_page_block .reviews_box .reviews_top {
  margin: 0 0 20px;
}
.reviews_page_block .reviews_box .reviews_top > * {
  display: inline-block;
  position: relative;
  margin: 0 20px 0 0;
  top: auto;
  right: auto;
}
.reviews_page_block .reviews_box .reviews_top .reviews_name {
  font-weight: 700;
}
.reviews_page_block .reviews_box .reviews_top .reviews_data {
  color: #999;
  font-size: 15px;
  position: absolute;
  top: 0;
  right: 0;
}
.reviews_page_block .reviews_box .reviews_top .reviews_desc {
  font-size: 17px;
  color: #666;
  font-style: italic;
}
#reviews_form_block {
  background: #f6f6f6;
  padding: 30px 0 70px;
}
#reviews_form_block form {
  margin: 0 0 40px;
}
#reviews_form_block form div > label {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  display: inline-block;
  width: 110px;
  line-height: 50px;
}
.reviews_form_left {
  float: left;
  width: 40%;
}
.reviews_form_left > div {
  position: relative;
}
.reviews_form_left .reviews_rating {
  display: inline-block;
  width: 75%;
  margin: 0;
  font-size: 17px;
  color: #2b2b2b;
  font-weight: 300;
}
.reviews_form_left .reviews_rating input[type="checkbox"] + label i {
  color: #e0e0e0;
  font-size: 30px;
  cursor: pointer;
}
.reviews_form_left .reviews_rating input[type="checkbox"]:checked + label i {
  color: #f35c14;
}
.reviews_form_left input[type="email"],
.reviews_form_left input[type="text"] {
  background: #fff;
  display: inline-block;
  width: 75%;
  position: relative;
}
.reviews_form_left .question_box {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
}
.reviews_form_left .question_box::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 0;
  width: 50px;
  height: 50px;
  background: url(/images/question.png) no-repeat center;
}
.reviews_form_left .question_box_inner {
  display: none;
  position: absolute;
  right: -335px;
  top: -20px;
  max-width: 320px;
  background: #fff;
  padding: 20px;
  border: 1px solid #e0e0e0;
  box-shadow: 1px 1px 5px 0 #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 300;
}
.question_box_inner::before {
  content: "";
  display: block;
  position: absolute;
  left: -12px;
  top: 35px;
  border: none;
  height: 24px;
  width: 24px;
  background: url(/images/form-4.png) no-repeat 0 0;
}
.reviews_form_left .question_box:hover .question_box_inner {
  display: block;
}
#tabs-7 .reviews_form_left .question_box::before {
  right: 10px;
}
#tabs-7 .reviews_form_left .question_box_inner {
  right: -325px;
}
.reviews_form_left .reviews_rating span:last-of-type {
  margin: 0 0 0 10px;
}
.reviews_form_right {
  float: right;
  width: 60%;
  padding: 0 0 0 30px;
}
#reviews_form_block form .reviews_form_right label {
  display: block;
}
#reviews_form_block form .reviews_form_right textarea {
  background: #fff;
  height: 170px;
}
#reviews_form_block form input[type="submit"] {
  border-radius: 0px;
  margin: 30px 0 0 115px;
}
#reviews_form_block .reviews_block {
  display: block;
}
.clients.clients_page {
  margin: 60px 0 0;
  padding: 50px 0 0;
}
.clients_list_block li {
  font-size: 16px;
  font-weight: 300;
}
.clients_list_block li ul {
  margin: 0 0 0 10px;
}
.cooperation {
  padding: 20px 0 60px;
}
.cooperation_block {
  display: flex;
}
.cooperation_block div {
  width: 33.333%;
}
.cooperation_block div > * {
  display: inline-block;
  vertical-align: middle;
}
.cooperation_block p {
  margin: 0;
  font-weight: 700;
}
.cooperation_block svg,
.cooperation_block img {
  width: 60px;
  fill: #f35c14;
  margin: 0 20px 0 0;
}
.cooperation_block span {
  font-weight: 300;
  color: #9f9f9f;
  margin: 0 5px 0 0;
}
.cooperation_block span sup {
  font-size: 13px;
}
.contacts_map {
}
.contacts_map h2 {
  margin: 40px 0 0;
}
.contacts_map .contacts_address {
  display: flex;
  margin: 30px 0 50px;
}
.contacts_map .contacts_address > div {
  font-weight: 300;
  position: relative;
  padding: 0;
  margin: auto 50px auto 0;
  width: 25%;
}
.contacts_map .contacts_address > div:last-child {
  margin: 0;
}
.contacts_map .contacts_address > div > * {
  display: inline-block;
  vertical-align: middle;
}
.contacts_map .contacts_address svg,
.contacts_map .contacts_address img {
  width: 42px;
  fill: #2b2b2b;
  margin: 0 15px 0 0;
}
.contacts_map .contacts_address span {
  color: #999;
  display: block;
  font-size: 15px;
}
.contacts_map .contacts_address p {
  margin: 0;
}
.contacts_map .contacts_address p.bold a {
  color: #2b2b2b;
}
.contacts_map .contacts_address a {
}
.contacts_map h5 {
  font-size: 16px;
  font-weight: 400;
  margin: 30px 0 20px;
}
/* Стили для десктопной версии страницы контактов */
@media screen and (min-width: 768px) {
  /* Шахматное расположение элементов в обеих секциях */
  .contacts_map .contacts_address {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .contacts_map .contacts_address > div {
    width: 40%;
    margin: 0 5% 30px 0;
  }
  /* Выравнивание значков по вертикали */
  .contacts_map .contacts_address > div > * {
    display: inline-block;
    vertical-align: top;
  }
  /* Убираем правый отступ у второго элемента в каждой строке */
  .contacts_map .contacts_address > div:nth-child(2),
  .contacts_map .contacts_address > div:nth-child(4) {
    margin-right: 0;
  }
  /* Смещение для элементов второй строки (3 и 4) */
  .contacts_map .contacts_address > div:nth-child(3) {
    margin-left: 10%;
  }
}
.content404 {
  text-align: center;
}
.content404 a {
  width: 200px;
}
.content404 p {
  max-width: 670px;
  margin: 10px auto;
}
/*--End Page--*/
/*--Catalog--*/
.sidebar {
  float: left;
  width: 270px;
}
@media screen and (min-width: 768px) {
  .sidebar {
    display: block !important;
  }
}
.sidebar_menu ul li::before {
  display: none;
}
.sidebar_menu > ul {
  padding: 0;
  margin: 50px 0 0;
  border: 1px solid #e1e1e1;
}
.sidebar_menu > ul > li {
  padding: 0;
  line-height: 60px;
  margin: 0;
}
.sidebar_menu > ul > li a,
.sidebar_menu > ul > li > div {
  color: #000;
  display: block;
  font-size: 16px;
  font-weight: 300;
  height: 100%;
  border-bottom: 1px solid #e1e1e1;
  padding: 0 0 0 60px;
  background: #f6f6f6;
  position: relative;
}
.sidebar_menu > ul > li:nth-child(1) a {
  color: #f35c14;
}
.sidebar_menu > ul > li:nth-child(1) a:hover {
  color: #f35c14;
}
.sidebar_menu > ul > li:nth-child(1) a:hover span {
  color: #f35c14;
  border-bottom: 1px solid #f35c14;
}
.sidebar_menu > ul > li:nth-child(1) a svg {
  fill: #f35c14;
}
.sidebar_menu > ul > li a:hover,
.sidebar_menu > ul > li a.active {
  background: #fff;
  color: #0088d0;
  text-decoration: none;
}
.sidebar_menu > ul > li > a svg,
.sidebar_menu > ul > li > a img,
.sidebar_menu > ul > li > div svg,
.sidebar_menu > ul > li > div img {
  width: 20px;
  fill: #0088d0;
  display: block;
  vertical-align: middle;
  position: absolute;
  left: 25px;
  top: 0px;
  height: 100%;
}
.sidebar_menu > ul > li > a span {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}
.sidebar_menu > ul > li > a:hover span {
  border-bottom: 1px solid #0088d0;
}
.sidebar_menu > ul > li:last-child a {
  border: none;
}
.sidebar_menu > ul.assignment_menu > li {
  line-height: 45px;
}
.sidebar_menu > ul.assignment_menu > li > span {
  color: #000;
  font-weight: 700;
  padding: 0 0 0 30px;
}
.sidebar_menu > ul.assignment_menu > li a,
.sidebar_menu > ul.assignment_menu > li > div {
  color: #2b2b2b;
  background: none;
  border: none;
}
.sidebar_menu > ul.assignment_menu > li a:hover {
  color: #0088d0;
}
.sidebar_menu > ul.assignment_menu > li > a svg {
  fill: #2b2b2b;
}
.sidebar_menu > ul.assignment_menu > li > a:hover svg {
  fill: #0088d0;
}
.catalog_content {
  width: 75%;
  float: right;
  padding: 0 0 50px;
}
.catalog_category_block.category_block > div {
  display: inline-block;
  width: 311px;
  position: relative;
  margin: -1px;
  height: 311px;
}
.catalog_category_block.category_block div a {
  display: flex;
  padding: 0;
}

#categories-mobile div span.catalog_category_count {
  display: block;
  position: absolute;
  margin: auto 0;
  font-size: 17px;
  bottom: auto;
  left: auto;
  width: 100%;
  color: #fff;
}

#categories-mobile div span.catalog_category_title {
  display: block;
  position: absolute;
  margin: auto 0;
  font-size: 17px;
  text-transform: uppercase;
  bottom: 50%;
  width: 100%;
  color: #fff;
  vertical-align: middle;
  line-height: normal;
}

.catalog_category_block.category_block div span {
  display: block;
  position: relative;
  margin: auto 0px;
  bottom: auto;
  left: auto;
  width: 100%;
}
.filter_sorting {
  margin: 50px 0 0;
}
.filter_sorting form > div {
  display: inline-block;
  width: 309px;
  vertical-align: top;
}
.filter_sorting form > div span {
  color: #666;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  display: block;
  height: 20px;
  margin: 0 0 5px;
}
.filter_sorting form select,
.filter_sorting form label[for="in_stock"] {
  height: 40px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
}
.filter_sorting form select {
  background: #fff;
}
.filter_sorting form label[for="in_stock"] {
  position: relative;
  padding: 0 0 0 60px;
  border: 1px solid #eaeaea;
  background: #4ab171;
}
.filter_sorting form input[type="checkbox"]:checked + label[for="in_stock"] {
  background: #c4c4c4;
  border: 1px solid #c4c4c4;
}
.filter_sorting form input[type="checkbox"] + label::before {
  left: 28px;
  top: 12px;
}
.news_page_block::after,
.all_projects_block::after,
.catalog_product_list::after,
.pagination::after {
  clear: both;
  content: "";
  display: table;
}
.catalog_product_list .product_box,
.table_compare .product_box {
  display: block;
  background: #fff;
  border: 1px solid #eaeaea;
  padding: 10px;
  overflow: hidden;
  position: relative;
  text-align: left;
  font-size: 14px;
  float: left;
  width: 313px;
  margin: -1px 0px 0 -1px;
  min-height: 359px;
}
.catalog_product_list .product_gallery,
.table_compare .product_gallery {
  position: relative;
  height: 235px;
  margin: 0px 0 0;
}
.catalog_product_list .product_gallery img,
.table_compare .product_gallery img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-height: 195px;
}
.catalog_product_list .product_price_box,
.catalog_product_list .product_tag_box,
.table_compare .product_price_box {
  bottom: 0;
  height: 135px;
}

@media screen and (max-width: 374px) {
  .product_box:hover .product_price {
    margin: 117px -6px 0!important;
  }
  .catalog_product_list .product_price, .table_compare .product_price {
    margin: 50px 5px 0;
  }
}

.table_compare .product_color img,
.catalog_product_list .product_color img {
  display: inline-block;
  height: 15px;
  width: 15px;
  vertical-align: top;
  margin: 1px 0;
  border-radius: 50%;
}
.catalog_product_list .product_price_box .product_desc_hidden_attr,
.table_compare .product_price_box .product_desc_hidden_attr,
.products_of_day_list .product_price_box .product_desc_hidden_attr {
  width: 70px;
  bottom: 13px;
  text-align: right;
}
.sidebar h2 {
  font-size: 26px;
  margin: 40px 0 20px;
}
.filter_catalog {
  padding: 0px;
  margin: 20px 0 0;
  border: 1px solid #e1e1e1;
  position: relative;
}
.filter_catalog .open_menu {
  color: #000;
  font-weight: 700;
  position: relative;
  line-height: 40px;
  cursor: pointer;
}
.filter_catalog .open_menu::before {
  content: "\f107";
  display: block;
  font-family: "FontAwesome";
  position: absolute;
  height: 100%;
  width: 12px;
  top: 0px;
  right: 0px;
  line-height: 40px;
}
.open_menu.active::before {
  content: "\f106";
}
.filter_catalog > div {
  border-bottom: 1px solid #e1e1e1;
  padding: 10px 30px;
}
.filter_catalog > div .open_menu + .form {
  display: none;
}
.filter_catalog > div.filter_catalog_designer .open_menu + .form,
.filter_catalog > div.filter_catalog_country .open_menu + .form {
  max-height: 140px;
  overflow: auto;
}
.filter_catalog > div .form div {
  position: relative;
  margin: 2px;
}
.filter_catalog > div .form div label {
  display: block;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 300;
  padding: 0 0 0 25px;
  line-height: 26px;
}
.filter_catalog > div .form div input[type="checkbox"]:checked + label {
  color: #2b2b2b;
}
.filter_catalog > div.filter_catalog_color .form div label::before {
  display: none;
}
.filter_catalog > div.filter_catalog_color .form div {
  padding: 0;
  display: inline-block;
  margin: 4px 3px;
}
.filter_catalog > div.filter_catalog_color .form div label {
  padding: 0;
  line-height: normal;
  font-size: 0;
}
.filter_catalog > div.filter_catalog_color .form div label img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
}
.filter_catalog
  > div.filter_catalog_color
  .form
  div
  input[type="checkbox"]:checked
  + label
  img {
  box-shadow: 0 0 0 3px #0088d0;
  -webkit-box-shadow: 0 0 0 3px #0088d0;
}
.filter_reset {
  border: none !important;
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
}
.filter_reset span {
  color: #999;
  font-size: 22px;
  margin: 0 15px 0 0;
}
.filter_catalog .ui-slider .ui-slider-handle {
  background: #fff;
  border: 3px solid #0088d0;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  margin: 0 -7px;
}
.filter_catalog_price .range .ui-widget-content {
  margin: 10px 10px 20px;
}
.filter_catalog_price input[type="text"] {
  color: #2b2b2b;
}
.filter_catalog_price .ui-widget-content {
  background: #ececec;
}
.filter_catalog_price .ui-widget-header {
  background: #2b2b2b;
}
.filter_catalog_price .ui-slider-horizontal {
  height: 4px;
}
.filter_input_box > * {
  display: inline-block !important;
}
.filter_input_box span {
  color: #666;
}
.filter_input_box span:nth-child(3) {
  margin: 0 0 0 15px;
}
.filter_input_box input[type="text"] {
  background: #ececec;
  height: 30px;
  width: 60px;
  border-radius: 4px;
  margin: 0 0 0 10px;
  padding: 0 5px;
}
.filter_result {
  background: #f35c14;
  color: #fff;
  font-weight: 300;
  position: absolute;
  display: block;
  width: 315px;
  border: none;
  border-radius: 0 4px 4px 0;
  right: -350px;
  z-index: 1001;
  display: none;
}
.filter_result::before {
  content: "";
  position: absolute;
  display: block;
  border: 20px solid transparent;
  border-right: 20px solid #f35c14;
  left: -40px;
  top: -0px;
}
.filter_result a {
  color: #2b2b2b;
  border-bottom: 1px solid #2b2b2b;
  margin: 0 0 0 15px;
}
.filter_result a:hover {
  border: none;
  text-decoration: none;
}
.filter_result .filter_result_count {
}
.category_utp {
  text-align: center;
}
.category_utp > div {
  width: 20%;
}
.category_utp svg,
.category_utp img {
  fill: #0088d0;
  width: 60px;
  margin: 0 0 15px;
}
.category_utp span {
  display: block;
  font-size: 15px;
}
.filter_sorting_category {
}
.filter_sorting.filter_sorting_category form > div {
  width: auto;
}
.filter_sorting.filter_sorting_category form label {
  background: #fff;
  position: relative;
  padding: 0 40px;
  border: 1px solid #51bfff;
  line-height: 40px;
  display: block;
  font-weight: 400;
  cursor: pointer;
  margin: 0 10px 10px 0;
  overflow: auto;
}
.filter_sorting.filter_sorting_category
  form
  input[type="checkbox"]
  + label::before {
  border: none;
  left: 10px;
}
.filter_sorting form input[type="checkbox"]:checked + label {
  background: #0088d0;
  color: #fff;
  border: 1px solid #0088d0;
  font-weight: 700;
}
.filter_sorting form input[type="checkbox"]:checked + label > span {
  color: inherit;
}
.filter_sorting form input[type="checkbox"]:checked + label:before {
  background: #0088d0 url(/images/chek_blue.png) no-repeat 1px 2px;
}
.upsell {
  text-align: center;
  padding: 20px 0 60px;
  margin: 60px 0 0;
}
.manufacturers_logo {
  border: 1px solid #f0f0f0;
}
.manufacturers_logo_compact {
  max-width: 100px !important;
  max-height: 100px !important;
  width: auto !important;
  height: auto !important;
  margin: 10px;
}
.factory-paginated-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.factory-paginated-header .page_title {
  margin: 0;
  flex: 1;
}
.factory-paginated-header .manufacturers_logo_compact {
  margin-left: 20px;
}
.manufacturers_h2 {
  margin: 40px 0 0;
}
.manufacturers_h2_compact {
  margin: 10px 0 0;
}
.room_road {
}
.room_road ol {
  padding: 0;
}
.room_road ol li {
  display: inline-block;
  width: 38%;
  vertical-align: top;
  padding: 0 25px 0 35px;
}
.room_road ol li:first-child {
  width: 23%;
}
.room_road ol li:last-child {
  padding: 0 0 0 35px;
}
.room_road ol li::before,
.room_road ol li::after {
  color: #9f9f9f;
}
.room_road ol li::before {
  position: absolute;
  left: 0;
}
.content.content_compare {
  padding: 0 10px 50px;
}
.table_compare {
}
.table_compare tr {
}
.table_compare tr:nth-child(even) {
  background: #f6f6f6;
}
.table_compare tr td {
  border-right: 1px solid #eaeaea;
  border-left: 1px solid #eaeaea;
  padding: 15px 20px;
}
.table_compare tr:last-child td {
  border-bottom: 1px solid #eaeaea;
}
.table_compare tr:first-child td {
  border-top: 1px solid #eaeaea;
}
.table_compare tr:first-child td:first-child,
.table_compare tr.compare_price td:first-child {
  color: #000;
  font-weight: 700;
  font-size: 17px;
}
.table_compare tr:first-child td:first-child {
  vertical-align: bottom;
  padding: 0 20px 80px;
}
.table_compare tr.compare_price td {
  color: #f35c14;
  font-size: 20px;
  font-weight: 700;
}
.table_compare tr.compare_price td sup {
  font-size: 13px;
  margin: 0 0 0 3px;
}
.table_compare .product_box {
  float: none;
  border: none;
  width: 265px;
}
.table_compare .product_box:hover {
  box-shadow: none;
}
.table_compare .order_link,
.table_compare .read_more {
  width: 115px;
  display: inline-block;
  vertical-align: top;
  margin: 0 8px;
  height: 35px;
  line-height: 35px;
}
.filter_show {
  display: none;
  width: 250px;
  height: 50px;
  margin: 0 0 10px;
  background: #f0f0f0 url(/images/filter-icon.png) no-repeat 50px 16px;
  text-align: center;
  line-height: 50px;
  margin: 50px 0 0;
  color: #666;
}

.jspContainer {
  overflow: hidden;
  position: relative;
}
.jspPane {
  position: absolute;
}
.jspVerticalBar {
  position: absolute !important;
  top: 0;
  right: 0;
  width: 18px;
  height: 100%;
  background: none;
}
.jspHorizontalBar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background: red;
}
.jspVerticalBar *,
.jspHorizontalBar * {
  margin: 0;
  padding: 0;
}
.jspCap {
  display: none;
}
.jspHorizontalBar .jspCap {
  float: left;
}
.jspTrack {
  background: #e7e7e7;
  border-radius: 10px;
  position: relative;
}
.jspDrag {
  background: #e2ea7d;
  border: 1px solid #9dcb39;
  border-radius: 20px;
  position: relative;
  top: 0;
  left: 0;
  cursor: pointer;
}
.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
  float: left;
  height: 100%;
}
.jspArrow {
  background: #50506d;
  text-indent: -20000px;
  display: block;
  cursor: pointer;
}
.jspArrow.jspDisabled {
  cursor: default;
  background: #80808d;
}
.jspVerticalBar .jspArrow {
  height: 16px;
}
.jspHorizontalBar .jspArrow {
  width: 16px;
  float: left;
  height: 100%;
}
.jspVerticalBar .jspArrow:focus {
  outline: none;
}
.jspCorner {
  background: #eeeef4;
  float: left;
  height: 100%;
}
/*--End Catalog--*/
/*--Cart--*/
.cart_product_list {
}
.cart_product_list table {
  position: relative;
}
.cart_product_list table tr {
  border-top: 1px solid #eaeaea;
}
.cart_product_list table tr td {
  padding: 30px 50px;
  vertical-align: top;
}
.cart_product_list table tr td.cart_icon {
  width: 145px;
  padding: 30px 10px;
}
.cart_product_list table tr td.prod_about {
  width: 400px;
  padding: 30px 30px;
}
.cart_product_list table tr td.prod_about div {
  font-size: 14px;
  color: #999;
  font-weight: 300;
  margin: 0 0 10px 0;
  position: relative;
}
.cart_product_list table tr td.prod_about div span {
  color: #000;
  font-weight: 400;
}
.cart_product_list table tr td.prod_about .product_desc_title span {
  display: block;
}
.product_desc_title span.product_desc_title4 {
  width: 215px;
}
.cart_product_list table tr td.prod_about .product_desc_title span.presence {
  color: #fff;
  padding: 0 10px;
  font-size: 14px;
  width: auto;
  text-align: center;
  position: absolute;
  top: 3px;
  right: -10px;
  height: 19px;
  line-height: 1.3em;
}
.cart_product_list table tr td.prod_about .product_color {
  position: relative;
}
.cart_product_list table tr td.prod_about .product_color img {
  display: inline-block;
  height: 18px;
  width: 18px;
  vertical-align: top;
  margin: 0 5px 0 0;
  border-radius: 50%;
}
.cart_product_list table tr td.prod_about .product_complect .open_complect {
  color: #0088d0;
  cursor: pointer;
}
.cart_product_list
  table
  tr
  td.prod_about
  .product_complect
  .open_complect
  span {
  color: #0088d0;
  position: relative;
}
.cart_product_list
  table
  tr
  td.prod_about
  .product_complect
  .open_complect
  .product_complect_count::after {
  content: "\f107";
  display: block;
  font-family: "FontAwesome";
  position: absolute;
  height: 12px;
  width: 12px;
  top: 1px;
  right: -20px;
  line-height: normal;
}
.cart_product_list
  table
  tr
  td.prod_about
  .product_complect
  .open_complect.active
  .product_complect_count::after {
  content: "\f106";
}
.cart_product_list table tr td.prod_about .product_complect div {
  display: none;
}
.cart_product_list table tr td.prod_about .product_installation {
  position: absolute;
  right: 15px;
  font-style: italic;
  background: url(/images/driller.png) no-repeat 0 0 / 20px;
  padding: 1px 0 0 27px;
}
.cart_product_list table tr td.prod_price {
  width: 455px;
}
.cart_product_list table tr td.prod_price > * {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}
.cart_product_list table tr td.prod_price .product_price {
}
.cart_product_list table tr td.prod_price span {
  color: #999;
  margin: 0 15px;
  background: url(/images/control.png) no-repeat 0 0 / cover;
  font-size: 0;
  width: 10px;
  height: 10px;
}
.cart_product_list table tr td.prod_price input[type="number"] {
  height: 35px;
  line-height: 35px;
  width: 80px;
  padding: 0 0 0 10px;
  margin: 0;
}
.cart_product_list table tr td.prod_price2 {
  padding: 30px 0;
}
.cart_product_list table tr td.prod_price2 .product_price {
  margin: 0;
}
.cart_product_list table tr td.control {
  padding: 30px 0px 30px 2px;
}
.cart_product_list table tr td.control a {
  background: url(/images/control.png) no-repeat 0 0;
  width: 17px;
  height: 17px;
  display: block;
  margin: 5px 0 0;
}
.cart_product_list table tr td.prod_price3 p {
  text-align: right;
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
.cart_product_list table tr td.prod_price4 {
  padding: 30px 0;
}
.cart_product_list table tr td.prod_price4 .product_price {
  margin: 0;
  font-weight: 700;
  text-align: left;
}
.cart_form {
  margin: 0 0 60px;
}
.cart_form input[type="submit"] {
  margin: 30px 0 0px;
  font-size: 16px;
  display: block;
}
.cart_form label {
  color: #000;
  font-size: 16px;
  display: block;
  margin: 0 0 5px;
}
.cart_contacts {
}
.cart_contacts_form {
  width: 700px;
}
.cart_contacts_form > div {
  display: inline-block;
  width: 330px;
  margin: 0 15px 15px 0;
  vertical-align: top;
}
.cart_contacts_form span {
  color: #999;
  display: block;
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
}
.cart_payment select,
.cart_payment input,
.cart_payment textarea {
  background: #fff;
}
.cart_payment select {
  width: 330px;
  display: inline-block;
  margin: 0 20px 0 0;
}
.cart_payment textarea {
  height: 70px;
}
.cart_payment select + a {
  text-decoration: underline;
  font-weight: 300;
}
.cart_payment select + a:hover {
  text-decoration: none;
}
.legal_entity_check {
  margin: 30px 0 15px;
  position: relative;
}
.legal_entity_check label {
  font-weight: 300;
  text-transform: uppercase;
  padding: 0 0 0 30px;
  display: inline-block;
}
.legal_entity_check input[type="checkbox"] + label::before {
  top: 0;
}
.legal_entity {
  background: #f6f6f6;
  padding: 35px;
  display: none;
}
.legal_entity span {
  color: #999;
  font-size: 14px;
  font-style: italic;
  text-align: right;
  display: block;
}
.legal_entity_left {
  float: left;
  width: 55%;
}
.legal_entity_left > div {
  display: inline-block;
  width: 50%;
  margin: 0 -1px;
  vertical-align: top;
}
.legal_entity_left input {
  height: 34px;
  line-height: 32px;
}
.legal_entity_right {
  float: right;
  width: 44%;
}
.cart_delivery {
}
.cart_address {
  width: 670px;
}
.cart_address textarea {
  height: 180px;
}
.cart_delivery h2 {
  margin: 40px 0 15px;
}
.cart_delivery_tabs {
}
.cart_delivery_tabs > ul {
  padding: 0;
  margin: 0 0 20px;
}
.cart_delivery_tabs > ul li::before {
  display: none;
}
.cart_delivery_tabs > ul li {
  display: inline-block;
  vertical-align: top;
  min-width: 215px;
  margin: 0 5px 0 0;
}
.cart_delivery_tabs > ul li:first-child input[type="radio"] + label svg,
.cart_delivery_tabs > ul li:first-child input[type="radio"] + label img {
  width: 24px;
  top: 20px;
  left: 20px;
}
.cart_delivery_tabs input[type="radio"] + label {
  color: #999;
  border: 1px solid #999;
  height: 78px;
  border-radius: 4px;
  padding: 20px 30px 0 60px;
  font-weight: 700;
  cursor: pointer;
}
.cart_delivery_tabs input[type="radio"] + label span {
  display: block;
  font-size: 15px;
  font-weight: 300;
}
.cart_delivery_tabs li.active input[type="radio"] + label {
  color: #0088d0;
  border: 1px solid #0088d0;
}
.cart_delivery_tabs input[type="radio"] + label a {
  display: block;
  font-size: 15px;
  font-weight: 300;
  color: #999;
  text-decoration: underline;
}
.cart_delivery_tabs input[type="radio"] + label a:hover {
  text-decoration: none;
}
.cart_delivery_tabs li.active input[type="radio"] + label a,
.cart_delivery_tabs li.active input[type="radio"] + label span {
  color: #f35c14;
}
.cart_delivery_tabs input[type="radio"] + label svg,
.cart_delivery_tabs input[type="radio"] + label img {
  fill: #999;
  width: 30px;
  position: absolute;
  left: 15px;
  top: 15px;
}
.cart_delivery_tabs li.active input[type="radio"] + label svg {
  fill: #0088d0;
}
.tabs_content {
  display: none;
}
.tabs_content.active {
  display: block;
}
.read_more_hover {
}
.cart_map_address {
  display: flex;
  margin: 30px 0;
}
.cart_map_address > div {
  width: 33%;
}
.cart_map_address > div svg,
.cart_map_address > div img {
  display: inline-block;
  width: 40px;
  margin: 0 10px 0 0;
  vertical-align: middle;
}
.cart_map_address > div a {
  display: inline-block;
  vertical-align: middle;
}
#hidden_read_more {
  max-width: 655px;
  text-align: left;
  padding: 0 50px 30px;
  font-size: 14px;
}
#hidden_read_more h2 {
  text-align: center;
}
/*--End Cart--*/
/*--Product--*/
.top_product {
  margin: 60px 0 0;
}
.top_product h1 {
  margin: 0;
}
.top_product_left {
  float: left;
  width: 40%;
}
.top_product_right {
  float: right;
  width: 60%;
  padding: 0 10px 0 60px;
}
.top_product_right .product_article {
  color: #666;
  font-weight: 300;
  margin: 0 0 20px;
}
.top_product_info {
  float: left;
  width: 75%;
}
.top_product_right .product_price {
  margin: 0 0 20px 0;
  text-align: left;
  font-size: 34px;
  font-weight: 700;
}
.top_product_right .product_price span {
  display: inline-block;
  vertical-align: top;
}
.top_product_right .product_price .new_price {
  margin: 0 20px 0 0;
}
.top_product_right .product_price .new_price sup {
  font-size: 19px;
}
.top_product_right .product_price .old_price {
  color: #f35c14;
  font-size: 19px;
  text-decoration: line-through;
}
.top_product_tilte {
  color: #666;
  font-weight: 300;
  text-transform: uppercase;
}
.product_delivery {
  display: flex;
  margin: 10px 0 30px;
}

.product_delivery a span {
  color: #2b2b2b;
  font-family: "Roboto Condensed", sans-serif;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 24px;
}

.product_delivery > div {
  width: 33%;
}
.product_delivery > div > * {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 300;
}
.product_delivery svg,
.product_delivery img {
  fill: #0088d0;
  width: 35px;
  margin: 0 10px 0 0;
}
.top_product_right .product_color {
  position: relative;
  bottom: auto;
}
.top_product_right .product_color > div {
  display: inline-block;
  vertical-align: middle;
}
.top_product_right .product_color > div span {
  display: inline-block;
  margin: 1px;
  cursor: pointer;
}
.top_product_right .product_color > div span img {
  display: block;
  height: 26px;
  width: 26px;
  vertical-align: top;
  margin: 0;
  border-radius: 50%;
  border: 2px solid #fff;
}
.top_product_right .product_color > div span.active img {
  box-shadow: 0 0 0 3px #0088d0;
  -webkit-box-shadow: 0 0 0 3px #0088d0;
}
.top_product_right .product_size {
  margin: 0 0 30px 0;
}
.product_size select {
  background: #fff;
  font-weight: 700;
  font-size: 16px;
  width: 285px;
  margin: 10px 0 0;
}
.product_order {
  width: 340px;
}
.product_order .quantity-block button.quantity-arrow-plus {
  top: 5px;
}
.product_order .quantity-block button.quantity-arrow-minus {
  bottom: 5px;
}
.product_order_top {
  background: #eaeaea;
  color: #666;
  font-weight: 300;
  padding: 0 10px 0 30px;
  height: 40px;
  line-height: 40px;
  margin: 0 0 5px;
}
.product_order_top span {
  color: #000;
  font-weight: 700;
}
.product_add_cart {
}
.product_add_cart.hidden {
  visibility: hidden;
}
.product_add_cart a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  font-weight: 700;
}
.product_add_cart input {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  width: 95px;
  margin: 0 0 0 20px;
  border-radius: 2px;
}
.top_product_link {
  float: right;
  width: 25%;
  padding: 0 0 0 20px;
}
.top_product_link .product_showroomtag_text {
  padding: 5px;
  background-color: #f26b20;
  color: white;
  text-align: center;
}
.top_product_link .reviews_rating {
  margin: 10px 0 30px;
}
.top_product_link a {
  font-weight: 300;
  text-decoration: underline;
  display: block;
  margin: 10px 0;
}
.top_product_link a:hover {
  text-decoration: none;
}
.top_product_link hr {
  display: block;
  background: #ececec;
  border: none;
  height: 1px;
  margin: 30px 0;
}
.product_share {
  margin: 50px 0 0;
}
.product_share ul {
  margin: 0;
  padding: 0;
}
.product_share ul li {
  padding: 0;
}
.product_share ul li::before {
  display: none;
}
.product_tab {
  padding: 50px 0 75px;
}
.product_tab.scroll_link h2 {
  margin: 40px 0 15px;
}
.product_tab.scroll_link .upsell {
  margin: 0;
  padding: 0;
}
.product_tab.ui-tabs .ui-tabs-panel {
  padding: 30px 0 0;
}
.product_tab.ui-tabs .project_title {
  color: #0088d0;
}
.product_tab .all_projects_block .project_title {
  color: #0088d0;
}
.product_tab ul {
  padding: 0;
}
.product_tab > ul > li,
#tabs-7 ul > li {
  float: none;
  display: inline-block;
  vertical-align: bottom;
  line-height: 26px;
  margin: 0 10px 0 0;
}
.product_tab > ul > li:before,
#tabs-7 ul > li:before {
  display: none;
}
.product_tab > ul > li a,
#tabs-7 ul > li a {
  color: #2b2b2b;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: underline;
}
.product_tab > ul > li a:hover,
#tabs-7 ul > li a:hover {
  text-decoration: none;
}
#tabs-7 ul > li a {
  padding: 0 10px 35px 0;
}
#tabs-7 ul > li a .count {
  color: #a6a6a6;
}
#tabs-7 ul > li.ui-tabs-active a {
  color: #2b2b2b;
  font-size: 26px;
}
#tabs-7 h2 {
  color: #0088d0;
}
.reviews_desc_answer {
  margin: 30px 0 0;
  padding: 0 0 0 60px;
  background: url(/images/answer.png) no-repeat 20px 50px;
}
.answer {
  background: #f6f6f6;
  color: #666666;
  padding: 40px;
  font-size: 16px;
}
.answer_name {
  color: #999999;
  font-size: 13px;
  font-weight: 300;
}
.tab_color {
}
.product_tab .bold {
  color: #000;
}
.tab_color_block {
  display: inline-block;
  margin: 0 30px 0 0;
}
.tab_color_block:last-child {
  margin: 0;
}
.tab_color_block > div {
  height: 155px;
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
}
.tab_color_block > div img {
  display: block;
}
.tab_color_block > div span {
  display: block;
  color: #999;
  font-size: 15px;
  margin: 10px 0;
}
.tab_color_block > div:first-child {
  width: 155px;
}
.tab_color_block > div:last-child {
  background: #f6f6f6;
  padding: 30px 40px;
  margin: 0 0 0 -5px;
}
.color_block_image {
  width: 30px;
  height: 30px;
}
.characteristic_block {
  display: inline-block;
  vertical-align: top;
  width: 288px;
}
.product_tab .characteristic_block p {
  font-weight: 700;
}
.product_tab .characteristic_block p span {
  font-weight: 300;
  color: #666;
  display: block;
}
.characteristics-show-more {
  display: none;
}
.delivery_tab {
}
.delivery_tab_block {
  float: left;
  width: 50%;
}
.delivery_tab table {
}
.delivery_tab table tr {
}
.delivery_tab table tr td {
  padding: 20px 20px 20px 0;
  vertical-align: top;
}
.delivery_tab table tr td sup {
  font-size: 13px;
  margin: 0 0 0 5px;
}
.delivery_tab table tr td:last-child {
  font-size: 20px;
  font-weight: 300;
  width: 180px;
}
.delivery_tab table tr td svg,
.delivery_tab table tr td img {
  width: 35px;
  max-width: inherit !important;
  fill: #0088d0;
  margin: -10px 0 0;
}
.delivery_tab table tr td p {
  font-weight: 700;
  margin: 0 0 10px 0;
  background: #fff;
  position: relative;
}
.delivery_tab table tr td p span {
  background: #fff;
  position: relative;
  padding: 0 5px 0 0;
}
.delivery_tab table tr td p + span {
  font-weight: 300;
  color: #666;
  display: block;
  position: relative;
}
.delivery_tab table tr td p:before {
  content: "";
  width: 100%;
  height: 2px;
  border-bottom: 1px dotted;
  position: absolute;
  bottom: 2px;
  left: 15px;
}
.pay_tab {
  display: flex;
  margin: 30px 0 50px;
}
.pay_tab > div {
  width: 33%;
  font-weight: bold;
}
.pay_tab > div * {
  vertical-align: middle;
  display: inline-block;
}
.pay_tab > div span {
  margin: 0 0 0 10px;
  line-height: 18px;
}
.product_tab #reviews_form_block {
  background: #fff;
}
#reviews_form_block .reviews_rating input[type="checkbox"] + label::before {
  display: none;
}
.product_tab #tabs-1 {
  border-bottom: 1px solid #ececec;
  padding: 0 0 50px;
  margin: 0 0 50px;
}
.product_tab #tabs-2 {
  border-bottom: 1px solid #ececec;
  padding: 0 0 50px;
  margin: 0 0 50px;
}
.product_tab #tabs-3 {
  border-bottom: 1px solid #ececec;
  padding: 0 0 50px;
  margin: 0 0 20px;
}
.product_tab #tabs-4 {
  border-bottom: 1px solid #ececec;
  padding: 0 0 50px;
  margin: 0 0 50px;
}
.ui-tabs .ui-tabs-panel {
  padding: 0;
}
.thank_box {
}
.thank_box > div {
  width: 430px;
  margin: 65px;
}
.thank_box h3 {
}
.thank_box p {
  font-size: 17px;
  font-weight: 300;
  color: #666;
  margin: 40px 0 60px;
}
.thank_box > div > a {
  display: inline-block;
  width: 213px;
  vertical-align: middle;
  margin: 0;
  border-radius: 4px;
}
.thank_box .read_more {
  background: #f35c14;
  color: #fff;
  border: 1px solid #f35c14;
}
.thank_box .read_more:hover {
  background: #f35c14;
  opacity: 0.8;
  border: 1px solid #f35c14;
}
.thank_box .order_link {
}

.delivery_tabs {
  padding: 0 0 75px;
}
.delivery_tabs h3 {
  font-size: 26px;
  margin: 40px 0 20px;
}
.delivery_tabs h3.big_margin {
  margin: 75px 0 20px;
}
.delivery_tabs h3.big_margin2 {
  margin: 55px 0 20px;
}
.delivery_tabs h3 img {
  margin: 0px 20px -5px 0px;
}
.delivery_tabs > ul > li {
  color: #000;
  border: 1px solid #0088d0;
  opacity: 0.6;
  height: 78px;
  border-radius: 4px;
  padding: 20px 30px 0 75px;
  font-weight: 700;
  cursor: pointer;
  min-width: 180px;
  margin: 0 7px 5px 0;
}
.delivery_tabs > ul > li.active {
  opacity: 1;
}
.delivery_tabs > ul > li:nth-child(4),
.delivery_tabs > ul > li:nth-child(5) {
  padding: 30px 30px 0 85px;
}
.delivery_tabs > ul > li a {
  display: block;
  font-size: 15px;
  font-weight: 300;
  color: #0088d0;
  text-decoration: underline;
}
.delivery_tabs > ul > li span {
  display: block;
  color: #f35c14;
  font-size: 15px;
  font-weight: 300;
  margin: 5px 0 0;
}
.delivery_tabs > ul > li img {
  width: auto;
  height: 40px;
  display: block;
  position: absolute;
  left: 20px;
  top: 20px;
}
.tabs_content_left {
  float: left;
  width: 50%;
  padding: 0 30px 0 0;
}
.tabs_content_right {
  float: right;
  width: 50%;
  padding: 0 30px 0 0;
}
.content_text .delivery_tabs.cart_delivery_tabs table {
}
.content_text .delivery_tabs.cart_delivery_tabs table tr {
}
.content_text .delivery_tabs.cart_delivery_tabs table tr.big_padding td {
  padding: 20px 20px 0px 0;
}
.content_text .delivery_tabs.cart_delivery_tabs table tr td {
  padding: 0px 20px 0px 0;
  vertical-align: top;
  width: 75%;
}
.content_text .delivery_tabs.cart_delivery_tabs table tr td sup {
  font-size: 11px;
  margin: 0 0 0 5px;
  position: absolute;
}
.content_text .delivery_tabs.cart_delivery_tabs table tr td:last-child {
  font-size: 20px;
  font-weight: 300;
  width: 180px;
  color: #0088d0;
}
.content_text .delivery_tabs.cart_delivery_tabs table tr td p {
  font-weight: 300;
  margin: 0 0 10px 0;
  background: #fff;
  position: relative;
  color: #999;
  font-size: 17px;
}
.content_text .delivery_tabs.cart_delivery_tabs table tr td p.bold {
  color: #000;
  font-weight: 700;
}
.content_text .delivery_tabs.cart_delivery_tabs table tr td p span {
  background: #fff;
  position: relative;
  padding: 0 5px 0 0;
}
.content_text .delivery_tabs.cart_delivery_tabs table tr td p + span {
  font-weight: 300;
  color: #666;
  display: block;
  position: relative;
}
.content_text
  .delivery_tabs.cart_delivery_tabs
  table
  tr
  td[colspan="2"]
  p:before {
  display: none;
}
.content_text .delivery_tabs.cart_delivery_tabs table tr td p:before {
  content: "";
  width: 100%;
  height: 2px;
  border-bottom: 1px dotted #999;
  position: absolute;
  top: 15px;
  left: 15px;
}
.content_text .delivery_tabs.cart_delivery_tabs p,
.content_text .delivery_tabs.cart_delivery_tabs ul,
.content_text .delivery_tabs.cart_delivery_tabs ol {
  color: #2b2b2b;
}
.content_text .delivery_tabs.cart_delivery_tabs .italic {
  color: #666;
  margin: -15px 0px 30px 25px;
}
.content_text .delivery_tabs.cart_delivery_tabs p {
  margin: 0 0px 15px 0px;
}
.content_text .delivery_tabs.cart_delivery_tabs .tabs_content ul li {
  padding: 0 0px 0px 25px;
}
.content_text .delivery_tabs.cart_delivery_tabs .tabs_content ul li::before {
  margin: 0;
  position: absolute;
  top: 7px;
  left: 0;
  display: block;
}
.content_text .delivery_tabs.cart_delivery_tabs .tabs_content ol li {
  padding: 0 0px 0px 25px;
}
.content_text .delivery_tabs.cart_delivery_tabs .tabs_content ol li::before {
  margin: 0;
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  font-size: 13px;
}
.content_text .delivery_tabs.cart_delivery_tabs .tabs_content ol li::after {
  left: 15px;
  top: -3px;
  font-size: 8px;
}
.delivery_tabs.cart_delivery_tabs .cart_map_address > div svg,
.delivery_tabs.cart_delivery_tabs .cart_map_address > div img {
  vertical-align: top;
}
.content_text .delivery_tabs.cart_delivery_tabs .cart_map_address p.bold {
  margin: 0 0px 5px 0px;
  font-size: 17px;
}
.content_text .delivery_tabs.cart_delivery_tabs .cart_map_address > div a {
  font-size: 15px;
  font-weight: 300;
}
.content_text .delivery_tabs.cart_delivery_tabs .cart_map_address p.italic {
  color: #999;
  margin: 5px 0 0;
}
.content_search {
}
.content_search h1.page_title {
  margin: 40px 0 25px;
}
.content_search form {
  position: relative;
}
.content_search form input {
  background: #e1e1e1;
  padding: 0 170px 0 100px;
}
.content_search form .submit {
  position: absolute;
  right: 0;
  top: 0;
  background: #0088d0;
  color: #fff;
  font-weight: 300;
  font-size: 17px;
  border: none;
  font-family: "Roboto Condensed", sans-serif;
  height: 50px;
  width: 140px;
}
.content_search form p {
  color: #999;
  font-size: 15px;
  font-weight: 300;
}
.search_result {
  display: flex;
  background: #f6f6f6;
  margin: 50px 0 75px 0;
}
.search_result_title {
  padding: 40px 55px;
  background: #f1f1f1;
  width: 360px;
  height: 270px;
}
.search_result_title h2 {
  font-size: 26px;
  margin: 0 0 40px;
}
.search_result img {
  height: 60px;
}
.search_result > * {
}
.search_result ul {
  width: 25%;
  margin: 40px 0 0;
  padding: 0 50px;
}
.search_result ul li {
}
.search_result ul li::before {
  display: none;
}
.search_result ul li:first-child {
  margin: 0 0 20px;
}
.search_result ul li:first-child a {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
}
.search_result ul li a {
  color: #666;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
}
.search_result ul li a .count {
  color: #999;
}
.content_text_search {
  font-size: 15px;
  margin: 0 0 80px;
}
.calc_delivery {
  display: none;
}
/*--End Product--*/
/*--Footer--*/
.site_footer {
  font-size: 14px;
  margin: 0;
}
.footer_top {
  background: #1a1a1a;
  padding: 65px 0;
}
.footer_top .content > div[class*="footer_"] {
  float: left;
  width: 25%;
}
.footer_top .content > div ul {
  margin: 0 0 0 15px;
  padding: 0;
}
.footer_top .content > div ul li {
  padding: 6px 0;
  margin: 0;
}
.footer_top .content > div ul li::before {
  display: none;
}
.footer_top .content > div ul li a {
  color: #999;
  border-bottom: 1px solid #999;
  font-weight: 300;
  font-size: 14px;
}
.footer_top .content > div ul li a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
  text-decoration: none;
}
.footer_phone {
}
.footer_phone a {
  color: #f35c14;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  display: block;
}
.footer_phone a:hover {
  text-decoration: none;
}
.footer_address {
  color: #999;
  line-height: 22px;
  margin: 10px 0;
}
.footer_address a {
  color: #f35c14;
  display: block;
  text-decoration: underline;
}
.footer_address a:hover {
  text-decoration: none;
}
.footer_top .call_me {
  background: #f35c14;
  display: block;
  color: #fff;
  width: 215px;
  line-height: 40px;
  border-radius: 4px;
  padding: 0 0 0 35px;
  font-size: 16px;
  font-weight: 700;
}
.footer_top .call_me i {
  margin: 0 5px 0 0;
}
.footer_top .call_me:hover {
  opacity: 0.8;
  text-decoration: none;
}
.footer_bottom {
  background: #2b2b2b;
  color: #999;
  text-align: center;
  padding: 65px 0;
}
.social_link {
  margin: -85px 0 45px;
}
.social_link a {
  display: inline-block;
  height: 37px;
  width: 37px;
  margin: 0 5px;
  background-image: url(../images/social_link.png);
  background-repeat: no-repeat;
}
.social_link a.fb {
  background-position: 0 0;
}
.social_link a.vk {
  background-position: -59px 0;
}
.social_link a.inst {
  background-position: -119px 0;
}
.footer_bottom p {
}
.footer_bottom p a {
  color: #999;
  text-decoration: underline;
}
.footer_bottom p a:hover {
  text-decoration: none;
}
.footer_bottom p.copy {
  margin: 40px 0 0;
}
/*--End Footer--*/
.fancybox-inner .sidebar {
  width: 285px;
  text-align: left;
}

.order-form-1 {
  margin-top: -50px;
}

.order-form-1 .call_me_form {
  width: 100%;
}
.order-form-1 .row {
  text-align: center;
  width: 872px;
  margin: auto;
}

.order-form-1 .hidden_name {
  width: 580px!important;
}

.order-form-1 .row .error {
  margin: auto;
  width: 95%;
  padding: 10px;
}

.order-form-1 .row .error ul li::before {
  background:  rgba(243, 92, 20, 1)!important;
}

.order-form-1 .row-inline-block {
  display: inline-block;
  width: 300px;
  margin: 10px;
}

.order-form-1 .form-button {
  display: inline-block;
  width: 200px;
  text-align: left;
  padding: 10px;
}

.order-form-1 .form-button input {
  font-weight: bold;
  background: rgba(243, 92, 20, 1);
  color: #fff;
  width: 100%;
  height: 50px;
}

.order-form-1 .form-button input:hover {
  background: #d45115;
  text-decoration: none;
}

.form_answer .form_top {
  height: 46px;
  width: 100%;
  background: inherit;
  margin: 50px 0 0;
}

.no_hidden_form {
  padding: 12px 0 40px 0!important;
}

.category_mobile {
  display: none;
}

.factory-video {
  display: block;
  margin: 0 auto;
  width: 500px;
  height: 375px;
}

.main_navigation > ul > li:last-child ul.sub_menu{
  right: 0!important;
  left: auto!important;
}

.files-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.files-container .container-3d {
  display: inline-block;
}

.files-container .product_showroomtag {
  display: inline-block;
  margin: 15px 0 0 0;
}

.files-container .product_showroomtag_text {
  display: block;
  width: 153px;
  color: #FFFFFF;
  font-weight: bolder;
  font-size: 15px;
  line-height: 33px;
  text-align: center;
  margin: 0 auto;
  text-decoration: none;
  background: #f35c14;
  font-style: italic;
  border-radius: 2px;
}

span.rules {
  font-size: 14px;
  font-family: "Roboto Condensed", sans-serif;
}

span.rules a {
  font-size: 14px;
  font-family: "Roboto Condensed", sans-serif;
  text-decoration: underline;
  color: #0088d0!important;
}

/*--Mobile--*/
@media screen and (max-width: 1900px) {
  .middle_header > * {
    margin: 0 25px 0 0;
  }
  .middle_header form.searchform {
    width: 255px;
    margin: 5px 0 0 40px;
  }
  .contacts_header .top_phone {
    padding: 17px 35px 0;
  }
  .top_email {
    padding: 23px 25px 0;
  }
  .top_logo {
    margin: 0 0 0 40px !important;
  }
  .middle_header .call_me {
    width: 200px;
  }
}
@media screen and (max-width: 1599px) {
  #clients_block .owl-nav,
  #categories-mobile .owl-nav,
  #suppliers_block .owl-nav
  {
    width: 80%!important;
    left: 10%;
  }

  .site_header .top_navigation > ul,
  .site_header .main_navigation > ul,
  .content,
  .content_home {
    width: 100%;
    margin: 0 auto; /* Центрирование для всех контейнеров */
  }
  .top_logo {
    width: 150px;
  }
  .middle_header {
    height: 60px;
  }
  .middle_header form.searchform {
    height: 35px;
    margin: 0px 0 0 15px;
  }
  .middle_header .searchform button {
    top: 5px;
  }
  .contacts_header .top_phone {
    font-size: 19px;
    padding: 10px 15px 0;
  }
  .top_email {
    padding: 15px 20px 0;
  }
  .top_cart {
    padding: 15px 30px 0 50px;
  }
  .top_cart span {
    top: 17px;
  }
  .middle_header .call_me {
    width: 165px;
    line-height: 34px;
    padding: 0px 0 0 20px;
    font-size: 14px;
    height: 34px;
  }
  .middle_header form.searchform input[type="text"] {
    font-size: 15px;
  }
  .special_offer_block .content > div[class*="special_offer_"] {
    width: 42%;
  }
  .special_offer_right {
    margin: 0px 0 0 -2px;
    width: 57.9% !important;
  }
  .bread_crumbs .content {
    padding: 0 10px 0 0;
  }
  .cart_product_list table {
    max-width: 1140px;
  }
  .hidden_cart {
    left: -115px;
    top: 60px;
  }
  .top_logo img {
    margin: 8px 0 0;
  }
  .cart_delivery_tabs ymaps {
    max-width: 1024px;
  }
  .special_offer_right {
    width: 57.8% !important;
  }
  .catalog_product_list .product_box,
  .table_compare .product_box {
    width: 311px;
  }
  .pagination {
    max-width: 933px;
  }
  .project_block {
    margin: 0 24px 0 0;
  }
  .catalog_category_block.category_block > div {
    height: 310px;
    width: 310px;
  }
}

@media screen and (max-width: 1390px) {
  .top_logo2 {
    display: none;
  }
}

@media screen and (max-width: 1279px) {
  .main_navigation > ul > li:last-child ul.sub_menu{
    right: 0!important;
    left: auto!important;
  }

  .middle_header form.searchform {
    width: 240px;
  }
  .advantages1 > div {
    padding: 10px 20px 0 75px;
  }
  .special_offer_right {
    width: 57.8% !important;
  }
  .project_block {
    width: 31.9%;
  }
  .news_block a {
    width: 575px;
  }
  .news_img {
    width: 255px;
  }
  .catalog_category_block.category_block > div {
    height: 290px;
    width: 290px;
  }
  .catalog_product_list .product_box {
    width: 295px;
  }
  .filter_sorting form > div {
    width: 290px;
  }
  .pagination {
    max-width: 885px;
  }
}
@media screen and (max-width: 1199px) {
  .filter_sorting_category {
    display: none;
  }
  .middle_header > * {
    margin: 0 0px 0 0;
  }
  .top_navigation ul li a {
    padding: 0 55px 0 30px;
  }
  .main_navigation > ul > li > a {
    padding: 0 26px;
  }
  .advantages1 > div {
    padding: 10px 10px 0 75px;
  }
  .advantages2 > div {
    padding: 10px 10px 0 85px;
  }
  .project_block {
    width: 31.8%;
  }
  .news_block a {
    width: 555px;
  }
  .news_wrap {
    width: 300px;
  }
  .reviews_form_left input[type="email"],
  .reviews_form_left input[type="text"],
  .reviews_form_left .reviews_rating {
    width: 73%;
  }
  .catalog_category_block.category_block > div {
    height: 280px;
    width: 280px;
  }
  .filter_sorting form > div {
    width: 280px;
  }
  .catalog_product_list .product_box {
    width: 50%;
  }
  .table_compare {
    width: 100%;
    overflow-x: scroll;
  }
  .cart_product_list table tr td {
    padding: 30px 45px;
  }
  .upsell .catalog_product_list {
    max-width: 650px;
    margin: 0 auto;
  }
  .product_list_search.catalog_product_list .product_box {
    width: 295px;
  }
  .product_desc_title span.product_desc_title4 {
    width: 165px;
  }
}
@media screen and (max-width: 1151px) {
  .top_navigation ul li a,
  .top_navigation ul li.with_sub_menu a {
    padding: 0 30px 0 30px;
  }
  .top_navigation > ul > li.with_sub_menu > a::before {
    right: 10px;
  }
  .top_email {
    padding: 15px 5px 0 0;
    width: 55px;
  }
  .top_cart {
    padding: 15px 5px 0 0;
    font-size: 0;
    width: 55px;
  }
  .top_cart span {
    top: auto;
    position: relative;
    left: auto;
  }
  .top_cart .top_cart_count {
    position: absolute;
    right: 10px;
  }
  .top_logo {
    margin: 0 !important;
  }
  .main_navigation > ul > li > a {
    padding: 0 15px;
  }
  #home_slider .owl-nav {
    top: 40%;
  }
  #home_slider .owl-dots {
    bottom: 20px;
  }
  #home_slider .owl-nav button.owl-prev {
    left: 35px;
  }
  #home_slider .owl-nav button.owl-next {
    right: 35px;
  }
  .advantages1 > div {
    padding: 10px 0 0 70px;
  }
  .advantages1 > div.advantages1_1 svg,
  .advantages1 > div.advantages1_1 img {
    width: 55px;
  }
  .advantages1 > div svg,
  .advantages1 > div img {
    width: 60px;
  }
  .advantages1 > div.advantages1_4 svg,
  .advantages1 > div.advantages1_4 img {
    width: 50px;
  }
  .advantages1 > div span {
    font-size: 15px;
  }
  .category_block div a {
    padding: 0px 0 0 0;
  }
  .project_block {
    width: 31.6%;
  }
  .news_block a {
    width: 555px;
    float: none !important;
    margin: 0 auto 15px;
  }
  h1.page_title.page_title_news {
    margin: 40px 0 40px 40px;
  }
  .news_page_block {
    text-align: center;
  }
  .news_page_block.news_block a {
    width: 285px;
    float: none !important;
    margin: 10px;
    display: inline-block;
    text-decoration: none !important;
    text-align: left;
  }
  .news_page_block.news_block a .news_img,
  .news_page_block.news_block a .news_wrap {
    width: 100%;
    float: none;
  }
  .project_title {
    min-height: 66px;
  }
  .advantages2 > div {
    padding: 10px 0 0 55px;
  }
  .advantages2 > div svg,
  .advantages2 > div img {
    width: 50px;
  }
  .advantages2 > div span {
    font-size: 15px;
  }
  .article_number {
    top: 3px;
    right: -5px;
  }
  .product_price_box .product_desc_hidden_attr {
    text-align: right;
  }
  .product_color {
    right: 0;
  }
  .service_page {
    text-align: center;
  }
  .service_page > div:nth-child(3n + 3) {
    margin: 0px 20px 20px 0px;
  }
  .reviews_form_left input[type="email"],
  .reviews_form_left input[type="text"],
  .reviews_form_left .reviews_rating {
    width: 70%;
  }
  .catalog_content {
    width: 70%;
  }
  .catalog_category_block.category_block > div {
    height: 230px;
    width: 230px;
  }
  .filter_sorting form > div {
    width: 230px;
  }
  .contacts_map .contacts_address > div {
    margin: 0;
    width: 25%;
  }
  .contacts_map .contacts_address > div > * {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 0 5px;
  }
  .contacts_map .contacts_address svg,
  .contacts_map .contacts_address img {
    margin: 0 auto 10px;
  }
  .filter_sorting form select {
    padding: 0 30px 0 15px;
  }
  .filter_sorting form label[for="in_stock"] {
    padding: 0 0 0 45px;
  }
  .filter_sorting form input[type="checkbox"] + label::before {
    left: 15px;
  }
  .cart_product_list table tr td.prod_about {
    width: 340px;
  }
  .cart_product_list table tr td {
    padding: 30px 30px;
  }
  .top_product_right {
    padding: 0 10px 0 60px;
  }
  .product_delivery {
    display: block;
  }
  .product_delivery > div {
    width: 100%;
    margin: 0 0 10px;
  }
  .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    padding: 10px;
  }
  .tab_color_block {
    display: block;
    margin: 0 0 10px;
    width: 400px;
  }
  .tab_color_block > div:last-child {
    width: 245px;
  }
  ul.sub_menu.sub_menu_top {
    padding: 5px 5px 5px;
  }
  .delivery_tabs > ul > li img {
    left: 10px;
  }
  .delivery_tabs > ul > li {
    padding: 20px 10px 0 60px;
    margin: 0 0px 5px 0;
  }
  .delivery_tabs > ul > li:nth-child(4),
  .delivery_tabs > ul > li:nth-child(5) {
    padding: 30px 5px 0 65px;
  }
  .search_result_title {
    padding: 30px 20px;
    width: 270px;
  }
  .search_result ul {
    padding: 0 30px;
  }
  .search_result_title h2 {
    font-size: 24px;
  }
  #tabs-7 .reviews_form_left .question_box::before {
    right: 7px;
  }
  .cart_delivery_tabs ymaps {
    max-width: 900px;
  }
  .product_desc_title span.product_desc_title4 {
    width: 160px;
  }
}
@media screen and (max-width: 1023px) {
  .top_navigation ul li a,
  .top_navigation ul li.with_sub_menu a {
    padding: 0 25px;
  }
  .middle_header .call_me {
    margin: 0px 0 0 10px;
  }
  .main_navigation > ul > li > a {
    padding: 0 10px;
  }
  .category_block .owl-dots {
    margin: 20px 0 0;
  }
  .advantages2 > div {
    margin: 0 0 0 5px;
  }
  .project_block {
    width: 31.5%;
  }
  .price_table tr td:first-child {
    width: 55%;
  }
  .reviews_form_left {
    width: 45%;
  }
  .reviews_form_right {
    width: 55%;
  }
  .reviews_form_left input[type="email"],
  .reviews_form_left input[type="text"],
  .reviews_form_left .reviews_rating {
    width: 70%;
  }
  .room_road ol li {
    display: block;
    width: 100% !important;
    vertical-align: top;
    padding: 0;
  }
  .room_road ol li br {
    display: none;
  }
  .sidebar {
    width: 210px;
  }
  .filter_catalog > div {
    padding: 10px 10px;
  }
  .cart_product_list table tr td.prod_about {
    width: 300px;
  }
  .cart_product_list table tr td {
    padding: 30px 10px;
  }
  .delivery_tabs > ul > li {
    min-width: 140px;
  }
  #tabs-7 .reviews_form_left .question_box::before {
    right: 15px;
  }
  .filter_input_box span:nth-child(3) {
    margin: 0 0 0 5px;
  }
  .filter_input_box input[type="text"] {
    margin: 0 0 0 5px;
  }
}
@media screen and (max-width: 959px) {
  #clients_block .owl-nav button,
  #categories-mobile .owl-nav button,
  #suppliers_block .owl-nav button {
    bottom: -28px;
  }

  .order-form-1 .call_me_form {
    width: auto;
  }
  .order-form-1 .row {
    text-align: center;
    margin: auto;
    width: 100%!important;
  }

  .order-form-1 .hidden_name {
    width: 100%!important;
  }

  .order-form-1 .row-inline-block {
    display: block;
    width: auto;
    margin: 10px;
  }

  .order-form1 form{
    width: auto;
  }

  .order-form-1 .form-button {
    display: block;
    width: auto;
    text-align: center;
  }

  .top_navigation ul li a,
  .top_navigation ul li.with_sub_menu a {
    padding: 0 15px;
  }
  .top_navigation > ul > li.with_sub_menu > a::before {
    right: 0px;
  }
  .main_navigation > ul > li > a {
    padding: 0 5px;
  }
  .middle_header form.searchform {
    display: none;
  }
  .mobile_search {
    display: inline-block;
  }
  .middle_header form.searchform {
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    z-index: 2;
    margin: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  .middle_header .searchform button {
    height: 35px;
  }
  .middle_header form.searchform.active {
    opacity: 1;
    visibility: visible;
    bottom: -50px;
    height: 50px;
    left: 0;
  }
  .advantages1 {
    margin: 0 auto;
    padding: 60px 0 10px;
  }
  .advantages1 > div {
    margin: 0 15px 50px !important;
    width: 275px;
  }
  .special_offer_right a div {
    max-width: 300px;
  }
  .special_offer_block .content > div[class*="special_offer_"] {
    width: 49%;
  }
  .special_offer_right {
    width: 50.7% !important;
  }
  .special_offer_right a div {
    max-width: 300px;
  }
  .advantages2_block {
    padding: 60px 0 10px;
  }
  .advantages2 {
    width: 620px;
    margin: 0 auto;
  }
  .advantages2 > div {
    margin: 0 15px 50px !important;
    width: 270px;
    padding: 5px 0 0 60px;
  }
  .all_projects_block {
    text-align: center;
  }
  .project_block {
    width: 360px;
    float: none;
    display: inline-block;
    margin: 0 0;
    text-align: left;
    vertical-align: top;
  }
  .project_block:nth-child(3) {
    display: none;
  }
  .all_projects_block.mobile-compressed .project_block:nth-child(3) {
    display: block !important;
  }
  .project_title {
    min-height: 45px;
  }
  .all_projects.all_projects_page .project_block {
    display: block !important;
    margin: 0 auto 20px !important;
  }
  .product_tab > ul > li.ui-tabs-active a {
    font-size: 20px;
  }
  .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    padding: 3px;
  }
  .about_number_box {
    text-align: center;
  }
  .reviews_box {
    width: 49%;
    padding: 25px;
  }
  .reviews_box:nth-child(3) {
    display: none;
  }
  .cart_delivery_tabs ymaps {
    max-width: 800px;
  }
}

@media screen and (max-width: 899px) {
  .category_no_mobile {
    display: none;
  }
  .category_mobile {
    display: block;
  }

  .top_navigation ul li a,
  .main_navigation > ul > li > a {
    font-size: 15px;
  }
  .footer_top .call_me {
    padding: 0 0 0 15px;
    font-size: 14px;
    width: 155px;
  }
  .utp {
    display: block;
  }
  .category_utp.utp {
    display: flex;
  }
  .utp ul {
    width: 100%;
  }
  .about_number_box * {
    display: block;
  }
  .about_number_box span {
    margin: 0;
  }
  .about_number_box p {
    text-align: center;
  }
  .project_inner_left,
  .project_inner_right {
    float: none;
    width: 100%;
    margin: 50px 0;
    padding: 0;
  }
  .catalog_list_block {
    width: 32%;
    padding: 0 10px 0 0;
    margin: 30px 0;
  }
  .catalog_list_title a {
    font-size: 20px;
  }
  .manufacturers_filter {
    text-align: left;
    margin: 0px 0 30px;
  }
  .reviews_form_left,
  .reviews_form_right {
    width: 50%;
  }
  .cart_product_list table tr td.prod_price2 {
    padding: 30px 10px;
  }
  .cart_product_list table tr td.prod_price4 .product_price {
    text-align: center;
  }
  .cart_product_list table tr td.control {
    padding: 30px 0px 30px 0px;
    position: absolute;
    width: 50px !important;
    right: 0;
  }
  .cart_product_list table tr td {
    display: inline-block;
    width: 50% !important;
  }
  .cart_product_list table tr td.prod_about .product_installation {
    position: relative;
    right: auto;
  }
  .cart_product_list table tr td.prod_price3 p {
    text-align: left;
  }
  .characteristic_block {
    width: 252px;
  }
  .delivery_tabs > ul > li {
    min-width: 200px;
  }
  .search_result {
    display: block;
  }
  .search_result_title {
    padding: 30px 20px;
    width: 100%;
    height: auto;
    position: relative;
  }
  .search_result img {
    height: 50px;
    position: absolute;
    top: 20px;
  }
  .search_result_title h2 {
    margin: 0;
    padding: 0 0 0 60px;
  }
  .search_result ul {
    width: 33%;
    display: inline-block;
    vertical-align: top;
    margin: 40px -1px 0;
  }
  .top_navigation,
  .main_navigation {
    display: none;
  }
  .menu_toggle {
    display: block;
    margin: 7px 0 0;
  }
  .menu_toggle.active {
  }
  .menu_toggle.active .line.line-1 {
    display: none;
  }
  .menu_toggle.active .line.line-2 {
    top: 5px;
    transform: rotate(45deg);
  }
  .menu_toggle.active .line.line-3 {
    top: 5px;
    transform: rotate(-45deg);
  }
  .mobile_menu {
    display: block;
    left: -100%;
  }
  .mobile_menu.active {
    left: 0px;
    z-index: 99999999;
    top: 60px;
    max-height: 490px !important;
  }
  .mobile_menu_block.active {
    opacity: 1;
    left: 0px;
    box-shadow: 0 1px 5px 0 #ccc;
    -webkit-box-shadow: 0 1px 5px 0 #ccc;
  }
  .top_email {
    display: none;
  }
  #tabs-7 .reviews_form_left .question_box::before {
    right: 5px;
  }
  .cart_delivery_tabs ymaps {
    max-width: 600px;
  }

  /* Популярные разделы - адаптивность для планшетов */
  .popular_sections_block {
    width: 100%;
  }
  .popular_sections_left,
  .popular_sections_right {
    float: none;
    width: 100%;
    margin: 0 auto;
  }
  .popular_sections_chairs {
    margin: 0 auto 14px;
  }
  .popular_sections_bottom_row {
    display: block;
  }
  .popular_sections_sunbeds,
  .popular_sections_tables {
    float: none;
    margin: 0 auto 14px;
  }
  .popular_sections_umbrellas {
    margin: 0 auto;
  }
}
@media screen and (max-width: 799px) {
  #clients_block .owl-nav,
  #categories-mobile .owl-nav,
  #suppliers_block .owl-nav
  {
    width: 76%!important;
    left: 12%;
  }

  #clients_block .owl-nav button,
  #categories-mobile .owl-nav button,
  #suppliers_block .owl-nav button {
    bottom: -28px;
  }

  .special_offer_right a div {
    max-width: 250px;
  }
  .seo_text br {
    display: none;
  }
  .service_page > div {
    margin: 0 10px 10px 0 !important;
  }
  .reviews_form_left input[type="email"],
  .reviews_form_left input[type="text"],
  .reviews_form_left .reviews_rating {
    width: 68%;
  }
  .cart_map_address > div svg,
  .cart_map_address > div img {
    display: block;
    margin: 0 auto 10px;
  }
  .cart_map_address > div a {
    display: block;
    text-align: center;
  }
  .top_product_right {
    padding: 0 10px 0 20px;
  }
  .top_product h1 {
    font-size: 34px;
  }

  .delivery_tab_block {
    float: none;
    width: 100%;
  }
  .pay_tab {
    display: block;
  }
  .pay_tab > div {
    width: 100%;
    margin: 0 0 15px;
  }
  .pay_tab > div br {
    display: none;
  }
  .product_tab {
    padding: 0px 0 75px;
  }

  .product_list_search.catalog_product_list .product_box {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .site_header .top_navigation > ul > li:nth-child(4),
  .site_header .top_navigation > ul > li:nth-child(5) {
    display: none;
  }
  .site_header .main_navigation > ul > li:nth-child(5),
  .site_header .main_navigation > ul > li:nth-child(6) {
    display: none;
  }
  .contacts_header .top_phone:nth-child(2) {
    display: none;
  }
  .advantages1 > div {
    margin: 0 10px 50px !important;
    width: 255px;
  }
  .special_offer_block .content > div[class*="special_offer_"] {
    width: 100% !important;
    max-width: 523px !important;
    margin: 0 auto 1px;
    display: block;
  }
  .product_box {
    max-width: 350px;
    margin: 0 auto;
  }
  .project_block {
    margin: 0 0 10px;
  }
  .footer_top .call_me {
    width: 55px;
    line-height: 34px;
    padding: 0;
    font-size: 0;
    height: 34px;
    text-align: center;
  }
  .footer_top .call_me i {
    margin: 0;
    font-size: 20px;
    line-height: 34px;
  }
  ul.sub_menu {
    padding: 10px;
  }
  .main_navigation ul.sub_menu > li {
    max-width: 170px;
    width: auto;
  }
  .price_table td {
    padding: 15px;
  }
  .service_page > div {
    margin: 0 0px 10px 0 !important;
  }
  .order_form,
  .order_form form,
  .request-price-form,
  .request-price-form form {
    width: 100%;
  }
  .order_form_left,
  .request-price-form-left {
    float: none;
    width: 100%;
    padding: 0 5px;
  }
  .pagination .read_more {
    margin: 0 auto 30px;
    float: none;
  }
  .pagination .pagination_block {
    float: none;
    text-align: center;
  }
  .catalog_list_block {
    width: 49%;
  }
  .reviews_top_block {
    margin: 0 0 50px;
    padding: 0;
    height: auto;
  }
  .reviews_top_block .reviews_rating .reviews_number {
    padding: 0;
  }
  .reviews_form_left,
  .reviews_form_right {
    width: 100%;
    float: none;
    padding: 0;
  }
  #reviews_form_block form div > label {
    display: block;
  }
  #reviews_form_block form input[type="submit"] {
    margin: 30px 0 0 0;
  }
  .reviews_form_left input[type="email"],
  .reviews_form_left input[type="text"],
  .reviews_form_left .reviews_rating {
    width: 100%;
  }
  .cooperation_block div > * {
    display: block;
    text-align: center;
  }
  .cooperation_block svg,
  .cooperation_block img {
    margin: 0 auto 10px;
  }
  .contacts_map .contacts_address {
    display: block;
  }
  .contacts_map .contacts_address > div {
    width: 100%;
    padding: 0;
    margin: 0px 0 20px;
  }
  .contacts_map .contacts_address > div > * {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
  }
  .contacts_map .contacts_address svg,
  .contacts_map .contacts_address img {
    margin: 0;
  }
  .cart_contacts_form {
    width: 100%;
  }
  .cart_contacts_form > div {
    display: block;
    width: 100%;
    margin: 0 0 15px;
  }
  .cart_address {
    width: 100%;
  }
  .legal_entity_left,
  .legal_entity_right {
    float: none;
    width: 100%;
  }
  .cart_delivery_tabs ul li {
    min-width: 155px;
  }
  .sidebar {
    width: 285px;
    display: none;
    text-align: left;
    margin: 0 auto;
  }
  .sidebar .sidebar_menu {
    display: none;
  }
  .catalog_content {
    width: 100%;
  }
  .filter_show {
    display: block;
  }
  .characteristic_block {
    width: 190px;
  }
  .sidebar h2 {
    margin: 40px 10px 20px;
  }
  #sidebar_box .fancybox-button.fancybox-close-small {
    height: 60px;
    width: 60px;
  }
  .thank_box > div {
    margin: 30px;
  }
  .advantages2 {
    width: 100%;
  }
  .advantages2 > div {
    margin: 0 5px 50px !important;
  }
  .reviews_form_left .question_box::before {
    display: none;
  }
  .tabs_content_left,
  .tabs_content_right {
    float: none;
    width: 100%;
    padding: 0;
  }
  .filter_result {
    right: auto;
    border-radius: 4px;
    position: fixed;
    width: 275px;
    left: 11px;
    bottom: 10px;
  }
  .filter_result::before {
    display: none;
  }
  .filter_input_box input[type="text"] {
    width: 85px;
    margin: 0 0 0 10px;
  }
  .filter_input_box span:nth-child(3) {
    margin: 0 0 0 15px;
  }
}
@media screen and (max-width: 699px) {
  #clients_block .owl-nav,
  #categories-mobile .owl-nav,
  #suppliers_block .owl-nav
  {
    width: 74%!important;
    left: 13%;
  }

  .factory-video {
    width: 100%;
    height: auto;
    margin: 10px 0 10px 0;
  }

  #clients_block .owl-nav button,
  #categories-mobile .owl-nav button,
  #suppliers_block .owl-nav button {
    bottom: -28px;
  }

  .owl-carousel .owl-dots button.owl-dot {
    width: 20px!important;
    white-space: nowrap;
  }

  .top_product_left,
  .top_product_right {
    float: none;
    width: 100%;
    padding: 0;
    margin: 0 0 30px;
  }
  .top_product_left {
    max-width: 400px;
  }
  .cart_delivery_tabs ymaps {
    max-width: 500px;
  }
  /* Скрываем лишние хлебные крошки на мобильных */
  .bread_crumbs .mobile-hidden-breadcrumb {
    display: none !important;
  }
}

.contacts_reehouse .contacts_row {
  margin-top: 33px!important;
}

.showroom .contacts_row {
  margin-top: 35px!important;
}

@media screen and (max-width: 599px) {
  #clients_block,
  #categories-mobile,
  #suppliers_block
  {
    width: 86%!important;
    left: 6%;
  }

  .owl-carousel .owl-dots button.owl-dot {
    width: 20px!important;
    white-space: nowrap;
  }

  #clients_block .owl-nav,
  #categories-mobile .owl-nav,
  #suppliers_block .owl-nav
  {
    width: 80%!important;
  }


  #clients_block .owl-nav,
  #categories-mobile .owl-nav,
  #suppliers_block .owl-nav
  {
    width: 80%!important;
    left: 11%;
  }

  .top_logo img {
    height: 36px;
    margin: 0;
  }
  .middle_header {
    height: 120px;
  }
  .top_logo {
    margin: 0px auto !important;
    display: block;
    padding: 16px 0 16px;
  }
  .middle_header > * {
    height: auto;
  }
  .mobile_menu.active {
    height: -webkit-fill-available;
  }
  .contacts_header .top_phone {
    font-size: 15px;
    padding: 0px 15px 0;
  }
  .top_email,
  .top_cart,
  .mobile_search {
    padding: 3px 5px 0 0;
  }
  .top_cart .top_cart_count {
    right: 5px;
  }
  #home_slider.owl-carousel .owl-item img {
    display: block;
    width: auto;
    height: 200px;
    max-width: none;
  }
  .advantages1 > div span,
  .advantages2 > div span {
    font-size: 14px;
  }
  .advantages1 > div,
  .advantages2 > div {
    width: 235px;
  }
  .news_block a,
  .news_page_block.news_block a {
    width: 480px;
  }
  .news_img,
  .news_wrap {
    width: 240px;
  }
  .advantages2 {
    width: 100%;
  }
  .reviews_box:nth-child(2) {
    display: none;
  }
  .reviews_box {
    width: 100%;
  }
  .mobile_menu.active {
    top: 60px;
  }
  .price_table td,
  .price_table tr td:first-child {
    width: auto;
  }
  #rus_manufacturers .manufacturers_list_block {
    width: 49%;
  }
  .manufacturers_filter > * {
    display: block;
    margin: 0 0 10px;
  }
  .manufacturers_filter {
    margin: 0 0 10px;
  }
  .manufacturers_search {
    width: 100%;
  }
  .catalog_product_list .product_box {
    width: 311px;
    float: none;
    margin: -1px auto 0;
  }
  .legal_entity {
    padding: 15px;
  }
  .legal_entity_left > div {
    display: block;
    width: 100%;
    margin: 0;
  }
  .cart_product_list table tr td {
    display: block;
    width: 100% !important;
    text-align: left;
    padding: 20px;
  }
  .cart_product_list table tr td.control {
    margin: -80px 0 0;
  }
  .category_utp.utp {
    display: block;
  }
  .category_utp > div {
    width: 100%;
    text-align: left;
    margin: 0 0 20px;
  }
  .category_utp svg,
  .category_utp img {
    margin: 0 20px 0 0;
    display: inline-block;
    vertical-align: middle;
  }
  .category_utp span {
    display: inline-block;
    font-size: 15px;
    vertical-align: middle;
  }
  .filter_sorting.filter_sorting_category form > div {
    width: 280px;
    text-align: center;
  }
  .top_product_info,
  .top_product_link {
    float: none;
    width: 100%;
    padding: 0;
  }
  .characteristic_block {
    width: 100%;
  }
  /* Мобильное отображение характеристик в 2 колонки */
  .product_tab .characteristic_block p {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
    margin: 0;
  }
  .product_tab .characteristic_block p span {
    display: inline;
    flex: 0 0 50%;
    padding-right: 15px;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  /* Скрытие характеристик и кнопка "Показать все" */
  .characteristics-wrapper.collapsed {
    margin-bottom: -40px;
  }

  .product_tab #tabs-1 {
    padding: 0;
  }

  .characteristics-wrapper.collapsed .characteristic-item-hidden {
    display: none;
  }
  .characteristics-wrapper.collapsed h5.characteristic-item-hidden {
    display: none;
  }
  .characteristics-wrapper.collapsed .characteristic-item-blur {
    position: relative;
    overflow: hidden;
  }
  .characteristics-wrapper.collapsed .characteristic-item-blur::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 70%);
    pointer-events: none;
  }
  .characteristics-wrapper.expanded .characteristic-item-hidden {
    display: flex;
  }
  .characteristics-wrapper.expanded h5.characteristic-item-hidden {
    display: block;
  }
  .characteristics-wrapper.expanded .characteristic-item-blur::after {
    display: none;
  }
  .characteristics-show-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: none;
    border: none;
    color: #0088d0;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    padding: 29px 0 7px 0;
    width: 100%;
    font-family: 'Roboto Condensed', sans-serif;
  }
  .characteristics-show-more svg {
    transition: transform 0.3s ease;
  }
  .characteristics-wrapper.expanded + .characteristics-show-more svg {
    transform: rotate(180deg);
  }
  .top_product_right .product_color > div {
    display: block;
    margin: 0 0 10px;
  }
  .delivery_tab table tr td:last-child {
    width: 100px;
  }
  h1.page_title {
    font-size: 28px;
  }
  .reviews_page_block .reviews_box .reviews_top > * {
    display: block;
    position: relative;
    margin: 10px 0px 0 0;
    top: auto;
    right: auto;
  }
  .manufacturers_search input[type="text"] {
    line-height: normal;
  }
  .product_share {
    margin: 35px 0 0;
  }
  .search_result_title h2 {
    font-size: 22px;
  }
  .search_result img {
    top: 33px;
  }
  .search_result ul {
    width: 100%;
    display: block;
    margin: 20px 0 0 0;
    padding: 0 30px 20px;
  }
  .product_list_search.catalog_product_list .product_box {
    width: 295px;
  }
  .cart_product_list table tr td.prod_price {
    width: 345px !important;
    display: inline-block;
  }
  .cart_delivery_tabs ymaps {
    max-width: 400px;
  }
  .content_text .delivery_tabs.cart_delivery_tabs table tr td p:before {
    top: 17px;
    bottom: auto;
  }
  .cart_delivery_tabs ul li {
    display: block;
  }
  .delivery_tabs > ul > li:nth-child(5) {
    margin: 0 0 40px;
  }
  .cart_product_list table tr td.prod_price2 {
    padding: 20px 0;
  }
  .cart_product_list table tr td.prod_price2 .product_price,
  .cart_product_list table tr td.prod_price4 .product_price {
    text-align: right;
  }
  .filter_sorting.filter_sorting_category form label {
    margin: inherit;
    padding: 0 20px;
  }
}
@media screen and (max-width: 524px) {
  .project_block,
  .news_block a,
  .news_page_block.news_block a {
    width: 280px;
    text-decoration: none !important;
  }

  .news_block img {
    width: -webkit-fill-available;
  }

  .owl-carousel .owl-dots button.owl-dot {
    width: 20px!important;
    white-space: nowrap;
  }

  #clients_block .owl-nav,
  #categories-mobile .owl-nav,
  #suppliers_block .owl-nav
  {
    width: 72%!important;
    left: 15%;
  }

  #clients_block .owl-nav button,
  #categories-mobile .owl-nav button,
  #suppliers_block .owl-nav button {
    bottom: -21px;
  }

  .news_block a:hover span,
  .news_page_block.news_block a:hover span {
    text-decoration: none !important;
    border: none;
  }
  .all_projects.all_projects_page .project_block {
    width: 360px;
  }
  .news_img,
  .news_wrap {
    width: 100%;
    float: none;
  }
  .news_date {
    padding: 40px 0 10px 40px;
  }
  .news_title {
    padding: 0px 40px;
  }
  .news_block .read_more {
    bottom: 40px;
  }
  .footer_top .content > div[class*="footer_"] {
    min-height: 220px;
    width: 50%;
    margin: 0 0 20px;
  }
  .seo_block {
    padding: 65px 10px;
  }
  .about_number {
    display: block;
  }
  .about_number_box {
    width: 100%;
    text-align: left;
  }
  .about_number_box span {
    margin: 0;
    width: 100%;
  }
  .about_number_box * {
    display: inline-block;
  }
  .about_number_box p {
    text-align: left;
  }
  .services_tabs.ui-tabs .ui-tabs-nav li {
    margin: 0 20px 0 0;
  }
  .services_tabs.ui-tabs .ui-tabs-nav li h2 {
    font-size: 17px;
    margin: 25px 0;
  }
  .pagination .pagination_block span {
    display: none;
  }
  .reviews_top_block .reviews_rating {
    float: none;
  }
  .reviews_top_block a.read_more {
    float: none;
    margin: 20px 0 40px;
  }
  .cart_payment select + a {
    display: block;
    margin: 10px 0 0;
  }
  .cart_payment select {
    width: 100%;
    margin: 0;
  }
  /* Мобильные стили для фильтров и сортировки */
  .filter_sorting {
    display: inline-block;
    width: calc(40% - 4px);
    vertical-align: top;
    margin: 10px 0 0 0;
  }
  /* Скрываем заголовок "СОРТИРОВАТЬ ПО:" на мобильных */
  .filter_sorting .sorting-label {
    display: none;
  }
  /* Скрываем быстрые фильтры-ссылки на мобильных */
  .filter_sorting_category {
    display: none !important;
    margin: 0 !important;
  }
  .filter_show {
    width: calc(40% - 5px);
    margin: 10px 25px 20px 25px;
    display: inline-block;
    height: 66px;
    padding-top: 20px;
    background-position: center 12px;
    background-size: 20px 20px;
    vertical-align: top;
  }
  .filter_sorting form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  /* Скрываем div с заголовком на мобильных */
  .filter_sorting form > div:nth-child(1) {
    display: none;
  }
  /* Бейджик "В наличии" - сверху */
  .filter_sorting form > div:nth-child(3) {
    width: 100%;
    display: block;
    margin: 0 0 -1px 0;
    order: 1;
  }
  .filter_sorting form > div:nth-child(3) label[for="in_stock"] {
    height: 27px;
    line-height: 25px;
    padding: 0 0 0 35px;
    font-size: 13px;
  }
  .filter_sorting form > div:nth-child(3) input[type="checkbox"] + label::before {
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
  }
  /* Дропдаун "Популярные" - снизу */
  .filter_sorting form > div:nth-child(2) {
    width: 100%;
    display: block;
    margin: 0;
    order: 2;
  }
  .filter_sorting form > div:nth-child(2) select {
    height: 27px;
    line-height: 33px;
    padding: 0 0px 0 3px;
    font-size: 13px;
    margin-top: 11px;
  }
  .catalog_product_list.ajax_items_list {
    margin-top: 12px;
  }
  .page_prev {
    margin: 0 0 10px;
  }
  .align_right,
  .align_left {
    float: none;
    margin: 0 0 20px 0;
    display: block;
  }
  .thank_box > div {
    width: 280px;
    margin: 30px;
  }
  .thank_box > div > a {
    display: block;
    margin: 15px auto 0;
  }
  .cart_delivery_tabs ymaps {
    max-width: 300px;
  }
  .cart_product_list table tr td.prod_price2,
  .cart_product_list table tr td.prod_price4 {
    padding: 0px 70px 20px 0;
  }
}
@media screen and (max-width: 450px) {
  #clients_block .owl-nav,
  #categories-mobile .owl-nav,
  #suppliers_block .owl-nav
  {
    width: 64%!important;
    left: 19%;
  }

  #clients_block .owl-nav button,
  #categories-mobile .owl-nav button,
  #suppliers_block .owl-nav button {
    bottom: -21px;
  }

  .top_email,
  .top_cart,
  .mobile_search {
    width: 40px;
  }
  .top_email i,
  .top_cart i,
  .mobile_search svg,
  .mobile_search img {
    width: 25px;
  }
  .top_cart .top_cart_count {
    right: 0px;
  }
  .price_table td,
  .price_table tr td:first-child {
    width: 35%;
  }
  .price_table td {
    padding: 10px;
  }
  .all_projects.all_projects_page .project_block {
    width: 100%;
  }
  .cooperation_block svg,
  .cooperation_block img {
    width: 50px;
  }
  .cooperation_block p {
    font-size: 14px;
  }
  .category_utp span {
    width: 72%;
  }
  .catalog_list_block {
    display: block;
    width: 100%;
  }
  select,
  input[type="email"],
  input[type="password"],
  input[type="phone"],
  input[type="tel"],
  input[type="text"],
  input[type="number"],
  input[type="url"] {
    font-size: 14px;
    padding: 0 10px;
  }
  .tab_color_block {
    width: 100%;
  }
  .tab_color_block > div:last-child {
    width: 145px;
    padding: 15px;
    font-size: 16px;
  }
  .product_order_top {
    padding: 0 10px 0 15px;
  }
  .hidden_cart {
    left: -105px;
    top: 60px;
    width: 245px;
    padding: 20px;
  }
  .special_offer_block > div a::before {
    bottom: 5px;
    right: 5px;
  }
  .menu_toggle {
    margin: 7px 20px 0;
  }
  .cart_address input[type="text"] {
    padding: 0 30px;
  }
  .cart_product_list table tr td.prod_price {
    width: 280px !important;
  }
  .cart_delivery_tabs ymaps {
    max-width: 260px;
  }
  .delivery_tab table tr td:last-child {
    text-align: right;
    padding: 20px 0;
  }
  .delivery_tab table tr td p:before {
    top: 18px;
    left: 45px;
  }

  /* Популярные разделы - мобильная версия */
  /* Базовые стили для мобильной версии */
  .popular_sections_block {
    width: 100% !important;
    padding: 0 7px !important;
    box-sizing: border-box !important;
  }
  .popular_sections_bottom_row {
    display: block !important;
    width: 100% !important;
  }

  /* Размеры блоков на мобильных */

  /* Первый ряд: Зонты - горизонтальный на всю ширину */
  .popular_sections_umbrellas {
    width: 100% !important;
    min-height: 200px !important;
    height: 50vw !important;
    max-height: 300px !important;
    position: relative !important;
    float: left !important;
    margin: 0 0 7px 0 !important;
    padding-bottom: 0 !important;
  }
  .popular_sections_umbrellas > img {
    position: absolute !important;
    top: 33px !important;
    left: 57px !important;
    height: 80%;
    object-fit: cover !important;
  }
  .popular_sections_umbrellas .popular_sections_overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  /* Второй ряд: Столы и Стулья - квадратные блоки */
  .popular_sections_tables {
    width: calc(50% - 3.5px) !important;
    min-height: 150px !important;
    height: calc(50vw - 10px) !important;
    max-height: 250px !important;
    position: relative !important;
    float: left !important;
    margin: 0 7px 7px 0 !important;
    padding-bottom: 0 !important;
  }
  .popular_sections_tables > img {
    position: absolute !important;
    top: 24px !important;
    left: 19px !important;
    width: 123px;
    object-fit: cover !important;
  }
  .popular_sections_tables .popular_sections_overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  .popular_sections_chairs {
    width: calc(50% - 3.5px) !important;
    min-height: 150px !important;
    height: calc(50vw - 10px) !important;
    max-height: 250px !important;
    position: relative !important;
    float: left !important;
    margin: 0 0 7px 0 !important;
    padding-bottom: 0 !important;
  }
  .popular_sections_chairs .chairs_images_container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }
  .popular_sections_chairs .popular_sections_overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  /* Третий ряд: Шезлонги - горизонтальный на всю ширину */
  .popular_sections_sunbeds {
    width: 100% !important;
    min-height: 200px !important;
    height: 50vw !important;
    max-height: 300px !important;
    position: relative !important;
    float: left !important;
    margin: 0 !important;
    padding-bottom: 0 !important;
  }
  .popular_sections_sunbeds > img {
    position: absolute !important;
    top: -12px !important;
    left: -13px !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .popular_sections_sunbeds .popular_sections_overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  /* Изображения на мобильных - заполняют весь блок */
  .popular_sections_item img {
    object-fit: cover !important;
    object-position: center !important;
    left: 24px;
  }

  /* Изображения стульев на мобильных */
  .chairs_images_container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .chair_img_full {
    display: none !important;
  }
  .chair_img_1 {
    display: block !important;
    width: auto !important;
    height: 80% !important;
    object-fit: contain !important;
  }
  .chair_img_3 {
    display: none !important;
  }

  /* Overlay должен быть абсолютно позиционирован */
  .popular_sections_overlay {
    padding: 10px 15px !important;
    background: transparent !important;
    pointer-events: none;
  }

  /* Заголовки на мобильных - адаптивный размер */
  .popular_sections_title {
    font-size: 3.5vw !important; /* Масштабируется под ширину экрана */
    line-height: 1.2 !important;
    max-width: 90% !important;
  }

  /* Специальные позиции для заголовков на мобильных */
  .popular_sections_umbrellas .popular_sections_title {
    top: 10px !important;
    left: 42px !important;
  }
  .popular_sections_tables .popular_sections_title {
    top: 10px !important;
    left: 6px !important;
  }
  .popular_sections_chairs .popular_sections_title {
    top: 10px !important;
    left: 47% !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
  }
  .popular_sections_sunbeds .popular_sections_title {
    top: 10px !important;
    left: 112px !important;
  }

  .popular_sections_item:last-child {
    margin-bottom: 0 !important;
  }

  /* Минимальные размеры для очень маленьких экранов */
  @media screen and (max-width: 400px) {
    .popular_sections_title {
      font-size: 14px !important; /* Фиксированный размер для маленьких экранов */
    }
  }

  /* Для средних мобильных экранов */
  @media screen and (min-width: 401px) and (max-width: 599px) {
    .popular_sections_title {
      font-size: 16px !important;
    }
  }
}
@media screen and (max-width: 374px) {
  .order-form-1 {
    margin-top: 0;
  }

  body {
    min-width: 263px;
  }

  .project_block,
  .advantages2 > div,
  .news_block a,
  .bottom_logo {
    width: 100% !important;
  }

  .read_more {
    width: 122px!important;
  }

  .seo_block {
    padding: 0!important;
  }

  .content > div[class*="footer_"] {
    min-width: 50px!important;
  }

  .advantages1 > div {
    width: 95% !important;
  }

  #clients_block .owl-nav,
  #categories-mobile .owl-nav,
  #suppliers_block .owl-nav
  {
    width: 62%!important;
    left: 20%;
  }
  .contacts_header .top_phone {
    padding: 0px 5px 0;
  }

  .owl-carousel .owl-dots button.owl-dot {
    width: 10px!important;
    white-space: nowrap;
  }

  .contacts_header .top_phone span {
    font-size: 10px;
  }
  .menu_toggle {
    margin: 7px 10px 0;
  }
  .product_desc_title {
    font-size: 12px;
  }
  .product_desc_title span {
    font-size: 16px;
  }
  .product_price_box {
    bottom: 3px;
  }

  .product_box:hover .product_price {
    margin: 72px 0 0;
  }

  .product_price_box .product_desc_hidden_attr {
    bottom: 3px;
  }
  .reviews_box {
    padding: 10px;
  }
  .site_header .mobile_menu ul li a {
    font-size: 14px;
  }
  .service_page > div {
    width: 100%;
  }
  .category_block.service_page div a {
    padding: 0 0 0;
  }
  .bread_crumbs a,
  .bread_crumbs span {
    font-size: 13px;
    line-height: 35px;
    padding: 0 10px;
  }
  /* Скрываем лишние хлебные крошки на мобильных */
  .bread_crumbs .mobile-hidden-breadcrumb {
    display: none !important;
  }
  .fancybox-button.fancybox-close-small {
    padding: 0;
    width: 45px;
    height: 45px;
  }
  .call_me_form form {
    width: 290px;
  }
  .pagination .pagination_block > * {
    line-height: 33px;
    width: 33px !important;
  }
  .cooperation_block span {
    display: block;
  }
  .contacts_map .contacts_address > div > * {
    padding: 0 5px 0 0;
  }
  .catalog_product_list .product_box {
    width: 290px;
  }
  .product_order {
    width: 295px;
  }
  .product_add_cart input {
    width: 70px;
    margin: 0 0 0 5px;
  }
  .cart_product_list table tr td.prod_price {
    width: 250px !important;
  }
}
@media only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
  .mobile_menu.active {
    height: calc(100% - 60px);
  }
}
/*--End Mobile--*/

/* Hide google recaptcha badge, see: https://developers.google.com/recaptcha/docs/faq. */
.grecaptcha-badge {
  visibility: hidden;
}

/* Cart popup buttons */
#cart_ok .l-btn {
  width: calc(100% - 20px);
  margin: 10px;
}

#cart_ok .r-btn {
  width: calc(100% - 20px);
  margin: 10px;
}

.thank_box .read_more {
  width: 213px !important;
}

/* ========================================
   Мобильная шапка при скролле (адаптивное поведение)
   ======================================== */

/* Контейнер mobile-header-actions скрыт на всех разрешениях по умолчанию */
.middle_header .mobile-header-actions {
  display: none !important;
}

@media screen and (max-width: 599px) {
  /* Плавные переходы для всех изменений в шапке */
  .middle_header,
  .middle_header .top_logo,
  .middle_header .top_logo img,
  .middle_header .call_me,
  .middle_header .call_me i,
  .contacts_header,
  .top_cart {
    transition: all 0.3s ease-in-out;
  }
  
  /* Контейнер mobile-header-actions скрыт в обычном состоянии мобильных */
  .middle_header .mobile-header-actions {
    display: none !important;
  }
  
  /* Стандартный menu_toggle отображается в обычном состоянии */
  .middle_header > .menu_toggle {
    display: block;
  }
  
  /* Состояние шапки при скролле */
  body.header-scrolled {
    padding-top: 66px !important;
  }
  
  /* Важно: работает даже когда меню открыто */
  body.header-scrolled.active_menu {
    padding-top: 45px !important;
  }
  
  .site_header.header-scrolled .middle_header,
  .header-scrolled.header_container .middle_header {
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  /* Гарантируем высоту даже когда body.active_menu */
  body.active_menu .site_header.header-scrolled .middle_header,
  body.active_menu .header-scrolled.header_container .middle_header {
    height: 45px !important;
  }
  
  /* Логотип смещается налево и уменьшается */
  .site_header.header-scrolled .middle_header .top_logo,
  .header-scrolled.header_container .middle_header .top_logo {
    position: relative;
    left: 0;
    top: auto;
    transform: none;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 222px !important;
    flex-shrink: 0 !important;
    height: 66px !important;
  }
  
  .site_header.header-scrolled .middle_header .top_logo img,
  .header-scrolled.header_container .middle_header .top_logo img {
    height: 44px !important;
    width: 176px !important;
    margin: 0 !important;
    display: block !important;
  }
  
  /* Скрываем телефон и время работы */
  .site_header.header-scrolled .contacts_header,
  .header-scrolled.header_container .contacts_header {
    display: none !important;
  }
  
  /* Скрываем корзину */
  .site_header.header-scrolled .top_cart,
  .header-scrolled.header_container .top_cart {
    display: none !important;
  }
  
  /* Форма поиска скрыта по умолчанию в сжатой шапке */
  .site_header.header-scrolled .middle_header form.searchform,
  .header-scrolled.header_container .middle_header form.searchform {
    opacity: 0;
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  
  /* Скрываем стандартную лупу и кнопку обратного звонка */
  .site_header.header-scrolled .middle_header > .mobile_search,
  .header-scrolled.header_container .middle_header > .mobile_search {
    display: none !important;
  }
  
  .site_header.header-scrolled .middle_header > .call_me,
  .header-scrolled.header_container .middle_header > .call_me {
    display: none !important;
  }
  
  /* Скрываем стандартный menu_toggle при скролле */
  .site_header.header-scrolled .middle_header > .menu_toggle,
  .header-scrolled.header_container .middle_header > .menu_toggle {
    display: none !important;
  }
  
  /* Показываем контейнер с иконками при скролле */
  .site_header.header-scrolled .middle_header .mobile-header-actions,
  .header-scrolled.header_container .middle_header .mobile-header-actions {
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    gap: 0 !important;
    height: 66px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 348px !important;
    flex-shrink: 0;
  }
  
  /* Иконка лупы (поиск) */
  .site_header.header-scrolled .mobile-header-actions .mobile_search,
  .header-scrolled.header_container .mobile-header-actions .mobile_search {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 116px !important;
    height: 66px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    flex-shrink: 0;
  }
  
  /* Разделительные линии слева и справа */
  .site_header.header-scrolled .mobile-header-actions .mobile_search::before,
  .header-scrolled.header_container .mobile-header-actions .mobile_search::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 52px;
    background: #595959;
  }
  
  .site_header.header-scrolled .mobile-header-actions .mobile_search::after,
  .header-scrolled.header_container .mobile-header-actions .mobile_search::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 52px;
    background: #595959;
  }
  
  .site_header.header-scrolled .mobile-header-actions .mobile_search img,
  .site_header.header-scrolled .mobile-header-actions .mobile_search svg,
  .header-scrolled.header_container .mobile-header-actions .mobile_search img,
  .header-scrolled.header_container .mobile-header-actions .mobile_search svg {
    width: 44px !important;
    height: 44px !important;
    flex-shrink: 0;
  }
  
  /* Кнопка обратного звонка */
  .site_header.header-scrolled .mobile-header-actions .call_me,
  .header-scrolled.header_container .mobile-header-actions .call_me {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 116px !important;
    height: 66px !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 0 !important;
    line-height: 1 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    position: relative;
    flex-shrink: 0;
  }
  
  /* Разделительная линия справа */
  .site_header.header-scrolled .mobile-header-actions .call_me::after,
  .header-scrolled.header_container .mobile-header-actions .call_me::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 52px;
    background: #595959;
  }
  
  .site_header.header-scrolled .mobile-header-actions .call_me i,
  .header-scrolled.header_container .mobile-header-actions .call_me i {
    margin: 0 !important;
    font-size: 24px !important;
    line-height: 1 !important;
    color: #fff;
    background: rgba(243, 92, 20, 1);
    width: 70px !important;
    height: 44px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
  }
  
  /* Гамбургер меню в контейнере */
  .site_header.header-scrolled .mobile-header-actions .menu_toggle,
  .header-scrolled.header_container .mobile-header-actions .menu_toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    right: 0;
    top: auto;
    margin: 0;
    padding: 0 !important;
    cursor: pointer;
    pointer-events: auto;
    width: 116px !important;
    height: 66px !important;
    flex-shrink: 0;
  }
  
  /* Внутренний контейнер для гамбургера с исходными пропорциями */
  .site_header.header-scrolled .mobile-header-actions .menu_toggle::before,
  .header-scrolled.header_container .mobile-header-actions .menu_toggle::before {
    content: '';
    display: block;
    width: 28px;
    height: 22px;
    position: relative;
    margin: 0 auto;
  }
  
  .site_header.header-scrolled .mobile-header-actions .menu_toggle .line,
  .header-scrolled.header_container .mobile-header-actions .menu_toggle .line {
    display: block;
    background: #fff;
    width: 28px;
    height: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s;
  }
  
  .site_header.header-scrolled .mobile-header-actions .menu_toggle .line.line-1,
  .header-scrolled.header_container .mobile-header-actions .menu_toggle .line.line-1 {
    top: 50%;
    transform: translate(-50%, -10px);
  }
  
  .site_header.header-scrolled .mobile-header-actions .menu_toggle .line.line-2,
  .header-scrolled.header_container .mobile-header-actions .menu_toggle .line.line-2 {
    top: 50%;
    transform: translate(-50%, -1px);
  }
  
  .site_header.header-scrolled .mobile-header-actions .menu_toggle .line.line-3,
  .header-scrolled.header_container .mobile-header-actions .menu_toggle .line.line-3 {
    top: 50%;
    transform: translate(-50%, 8px);
  }
  
  /* Анимация гамбургера в крестик при открытии меню */
  .site_header.header-scrolled .mobile-header-actions .menu_toggle.active .line.line-1,
  .header-scrolled.header_container .mobile-header-actions .menu_toggle.active .line.line-1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .site_header.header-scrolled .mobile-header-actions .menu_toggle.active .line.line-2,
  .header-scrolled.header_container .mobile-header-actions .menu_toggle.active .line.line-2 {
    opacity: 0;
  }
  
  .site_header.header-scrolled .mobile-header-actions .menu_toggle.active .line.line-3,
  .header-scrolled.header_container .mobile-header-actions .menu_toggle.active .line.line-3 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  
  /* Мобильное меню при скролле */
  .site_header.header-scrolled .mobile_menu.active,
  .header-scrolled.header_container .mobile_menu.active {
    top: 45px !important;
  }
  
  /* Форма поиска при активации в сжатой шапке */
  .site_header.header-scrolled .middle_header form.searchform.active,
  .header-scrolled.header_container .middle_header form.searchform.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: 50px !important;
    z-index: 10000;
    background: #101d44;
  }
}

/* Оптимизация для средних экранов (401-570px) */
@media screen and (min-width: 401px) and (max-width: 570px) {
  /* Пропорциональное уменьшение элементов для средних экранов */
  /* Коэффициент уменьшения ~0.70 (чтобы уместиться в 414px) */
  
  .site_header.header-scrolled .middle_header .top_logo,
  .header-scrolled.header_container .middle_header .top_logo {
    width: 155px !important;
  }
  
  .site_header.header-scrolled .middle_header .top_logo img,
  .header-scrolled.header_container .middle_header .top_logo img {
    height: 31px !important;
    width: 123px !important;
  }
  
  /* Контейнер кнопок уменьшается */
  .site_header.header-scrolled .middle_header .mobile-header-actions,
  .header-scrolled.header_container .middle_header .mobile-header-actions {
    width: 243px !important;
  }
  
  /* Три кнопки пропорционально уменьшаются */
  .site_header.header-scrolled .mobile-header-actions .mobile_search,
  .header-scrolled.header_container .mobile-header-actions .mobile_search {
    width: 81px !important;
  }
  
  .site_header.header-scrolled .mobile-header-actions .call_me,
  .header-scrolled.header_container .mobile-header-actions .call_me {
    width: 81px !important;
  }
  
  .site_header.header-scrolled .mobile-header-actions .menu_toggle,
  .header-scrolled.header_container .mobile-header-actions .menu_toggle {
    width: 81px !important;
  }
  
  /* Размеры иконок уменьшаются пропорционально */
  .site_header.header-scrolled .mobile-header-actions .mobile_search img,
  .site_header.header-scrolled .mobile-header-actions .mobile_search svg,
  .header-scrolled.header_container .mobile-header-actions .mobile_search img,
  .header-scrolled.header_container .mobile-header-actions .mobile_search svg {
    width: 31px !important;
    height: 31px !important;
  }
  
  .site_header.header-scrolled .mobile-header-actions .call_me i,
  .header-scrolled.header_container .mobile-header-actions .call_me i {
    width: 49px !important;
    height: 31px !important;
    font-size: 18px !important;
  }
  
  /* Высота разделительных линий пропорционально уменьшается */
  .site_header.header-scrolled .mobile-header-actions .mobile_search::before,
  .site_header.header-scrolled .mobile-header-actions .mobile_search::after,
  .header-scrolled.header_container .mobile-header-actions .mobile_search::before,
  .header-scrolled.header_container .mobile-header-actions .mobile_search::after,
  .site_header.header-scrolled .mobile-header-actions .call_me::after,
  .header-scrolled.header_container .mobile-header-actions .call_me::after {
    height: 36px !important;
  }
  
  /* Гамбургер меню уменьшается */
  .site_header.header-scrolled .mobile-header-actions .menu_toggle::before,
  .header-scrolled.header_container .mobile-header-actions .menu_toggle::before {
    width: 22px !important;
    height: 18px !important;
  }
  
  .site_header.header-scrolled .mobile-header-actions .menu_toggle .line,
  .header-scrolled.header_container .mobile-header-actions .menu_toggle .line {
    width: 22px !important;
  }
}

/* Оптимизация для очень маленьких экранов (360px и меньше) */
@media screen and (max-width: 400px) {
  /* Пропорциональное уменьшение всех элементов для маленьких экранов */
  /* Коэффициент уменьшения ~0.64 (чтобы уместиться в 360px) */
  
  .site_header.header-scrolled .middle_header .top_logo,
  .header-scrolled.header_container .middle_header .top_logo {
    width: 142px !important;
  }
  
  .site_header.header-scrolled .middle_header .top_logo img,
  .header-scrolled.header_container .middle_header .top_logo img {
    height: 28px !important;
    width: 113px !important;
  }
  
  /* Контейнер кнопок уменьшается */
  .site_header.header-scrolled .middle_header .mobile-header-actions,
  .header-scrolled.header_container .middle_header .mobile-header-actions {
    width: 222px !important;
  }
  
  /* Три кнопки пропорционально уменьшаются */
  .site_header.header-scrolled .mobile-header-actions .mobile_search,
  .header-scrolled.header_container .mobile-header-actions .mobile_search {
    width: 74px !important;
  }
  
  .site_header.header-scrolled .mobile-header-actions .call_me,
  .header-scrolled.header_container .mobile-header-actions .call_me {
    width: 74px !important;
  }
  
  .site_header.header-scrolled .mobile-header-actions .menu_toggle,
  .header-scrolled.header_container .mobile-header-actions .menu_toggle {
    width: 74px !important;
  }
  
  /* Размеры иконок уменьшаются пропорционально */
  .site_header.header-scrolled .mobile-header-actions .mobile_search img,
  .site_header.header-scrolled .mobile-header-actions .mobile_search svg,
  .header-scrolled.header_container .mobile-header-actions .mobile_search img,
  .header-scrolled.header_container .mobile-header-actions .mobile_search svg {
    width: 28px !important;
    height: 28px !important;
  }
  
  .site_header.header-scrolled .mobile-header-actions .call_me i,
  .header-scrolled.header_container .mobile-header-actions .call_me i {
    width: 45px !important;
    height: 28px !important;
    font-size: 16px !important;
  }
  
  /* Высота разделительных линий тоже уменьшается */
  .site_header.header-scrolled .mobile-header-actions .mobile_search::before,
  .site_header.header-scrolled .mobile-header-actions .mobile_search::after,
  .header-scrolled.header_container .mobile-header-actions .mobile_search::before,
  .header-scrolled.header_container .mobile-header-actions .mobile_search::after,
  .site_header.header-scrolled .mobile-header-actions .call_me::after,
  .header-scrolled.header_container .mobile-header-actions .call_me::after {
    height: 33px !important;
  }
  
  /* Гамбургер меню уменьшается */
  .site_header.header-scrolled .mobile-header-actions .menu_toggle::before,
  .header-scrolled.header_container .mobile-header-actions .menu_toggle::before {
    width: 23px !important;
    height: 18px !important;
  }
  
  .site_header.header-scrolled .mobile-header-actions .menu_toggle .line,
  .header-scrolled.header_container .mobile-header-actions .menu_toggle .line {
    width: 23px !important;
  }
}

/* Мобильные стили для карточки товара */
@media screen and (max-width: 599px) {
  /* Отключаем выделение текста и подсветку при долгом нажатии на карточки товаров */
  .product_box {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 359px;
  }

  /* Отключаем hover-эффекты на мобильных устройствах */
  .product_box:hover,
  .products_of_day_list .product_box:hover {
    padding: 10px !important;
    overflow: hidden !important;
  }

  .product_box:hover>div,
  .products_of_day_list .product_box:hover>div {
    height: auto !important;
    z-index: auto !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    padding: 0 !important;
    position: relative !important;
  }

  .product_box:hover div.extended-bottom,
  .products_of_day_list .product_box:hover div.extended-bottom {
    display: none !important;
  }

  .product_box:hover .product_desc_attr,
  .product_box:hover .presence,
  .product_box:hover .product_price,
  .product_box:hover .product_tag_box,
  .products_of_day_list .product_box:hover .product_desc_attr,
  .products_of_day_list .product_box:hover .presence,
  .products_of_day_list .product_box:hover .product_price,
  .products_of_day_list .product_box:hover .product_tag_box {
    display: block !important;
  }

  .product_box:hover .product_desc_hidden_attr,
  .products_of_day_list .product_box:hover .product_desc_hidden_attr {
    display: none !important;
    opacity: 0 !important;
  }

  .product_box:hover .product_color,
  .products_of_day_list .product_box:hover .product_color {
    top: auto !important;
    bottom: 0 !important;
  }

  /* Делаем delivery-color-size flex-контейнером для изменения порядка */
  .delivery-color-size {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Порядок элементов на мобильных */
  .delivery-color-size .modifications {
    order: 1 !important; /* Модификации (цвет/размер) - первыми */
  }

  .delivery-color-size .product_order {
    order: 2 !important; /* product_order (В наличии + Купить) - вторым */
  }

  .delivery-color-size #delivery {
    order: 3 !important; /* Заголовок "Способы получения" - третьим */
  }

  .delivery-color-size .product_delivery {
    order: 4 !important; /* Иконки доставки - четвертыми */
  }

  /* Контейнер - занимает всю ширину родителя */
  .product_add_cart {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Кнопка "Купить" - растягивается на оставшееся место */
  .product_add_cart .order_link {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    height: 40px !important;
    line-height: 40px !important;
    font-size: 16px !important;
    margin: 0 !important;
  }

  /* Поле количества товара - фиксированная ширина */
  .product_add_cart .quantity-block {
    flex: 0 0 70px !important;
  }

  .product_add_cart .quantity-block .quantity-num {
    width: 70px !important;
    height: 40px !important;
    line-height: 40px !important;
    font-size: 16px !important;
  }

  /* Кнопки плюс/минус */
  .product_add_cart .quantity-block button {
    font-size: 16px !important;
  }

  /* Отступы для блока product_order когда он перемещён на мобильных */
  .product_order.mobile-reordered {
    display: block !important;
    width: 100% !important;
    margin: 20px 0 !important;
    float: none !important;
    clear: both !important;
  }

  /* Скрываем оригинальные ссылки на мобильных (они клонированы под кнопку "Купить") */
  .top_product_link .show_factory,
  .top_product_link .show_seria,
  .top_product_link .compare_link,
  .top_product_link .go_compare,
  .top_product_link > hr {
    display: none !important;
  }
  
  /* Отрицательный отступ для top_product_right */
  .top_product_right {
    margin: 0px 0 -40px !important;
  }
 
  /* Контейнер для ссылок "Весь товар фабрики" и "Показать всю серию" на мобильных */
  .product-links-mobile {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    margin-top: 35px !important;
    margin-bottom: 35px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-top: none !important;
    border-bottom: none !important;
  }
  
  .product-links-mobile a {
    display: inline-block !important;
    font-size: 18px !important;
    color: #0088d0 !important;
    text-decoration: underline !important;
    padding: 0 !important;
    line-height: 1.2 !important;
  }
  
  .product-links-mobile a:hover {
    text-decoration: none !important;
  }
  
  /* Ссылка "Показать всю серию" прижата к правой стороне */
  .product-links-mobile .show_seria {
    margin-left: auto !important;
  }

  /* Блок "Поделиться" после перемещения в блок "Оплата" */
  #tabs-5 .product_share.mobile-moved {
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid #eaeaea !important;
  }

  /* Блок "Способы получения товара" после перемещения перед "Оплатой" */
  .delivery-wrapper-mobile {
    margin-top: 20px !important;
    margin-bottom: -20px !important;
    padding-top: 0 !important;
    background: #fff !important;
    border-top: none !important;
  }
  
  .delivery-wrapper-mobile #delivery {
    margin-bottom: 15px !important;
    padding-top: 30px !important;
    border-top: none !important;
    font-size: 24px !important;
    color: #2b2b2b !important;
    font-weight: 400 !important;
  }
  
  .delivery-wrapper-mobile .product_delivery {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
  }
  
  /* Отступ от блока описания до блока доставки */
  #tabs-2 {
    margin-bottom: 20px !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
  }
  
  /* Отступ от "Показать всё" до заголовка "Выбран клиентами" */
  #tabs-2 + h2 {
    margin-top: 40px !important;
  }

  /* Отступ от блока доставки до блока оплаты */
  #tabs-5 {
    margin-top: 20px !important;
    padding-top: 0 !important;
    border-top: none !important;
  }

  /* Уменьшаем отступ на старом месте блока доставки (теперь там только modifications) */
  .delivery-color-size {
    margin-bottom: 10px !important;
  }

  .delivery-color-size .modifications {
    margin-top: 0 !important;
    padding-top: 10px !important;
  }

  /* Уменьшаем отступ над блоком вкладок (Описание, Вам пригодится и т.д.) */
  .product_tab {
    margin-top: 20px !important;
    padding-top: 0 !important;
  }
  
  .product_tab ul {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }
  
  /* Сворачиваемое описание на мобильных */
  #tabs-2 {
    position: relative !important;
  }
  
  #tabs-2 .content_text {
    position: relative !important;
  }
  
  #tabs-2 .content_text.collapsed {
    max-height: 7.5em !important; /* Примерно 5 строк */
    overflow: hidden !important;
    position: relative !important;
  }
  
  #tabs-2 .content_text.collapsed::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 1.5em !important; /* Высота размытия - примерно 1 строка */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1)) !important;
    pointer-events: none !important;
  }
  
  /* Кнопка "Показать всё" для описания */
  .description-toggle-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: none !important;
    border: none !important;
    color: #0088d0 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    padding: 10px 0 !important;
    margin: 5px 0 0 !important;
    width: 100% !important;
    font-family: 'Roboto Condensed', sans-serif !important;
  }
  
  .description-toggle-btn:hover {
    text-decoration: underline !important;
  }

  .description-toggle-btn svg {
    transition: transform 0.3s ease !important;
  }

  #tabs-2 .content_text:not(.collapsed) ~ .description-toggle-btn svg {
    transform: rotate(180deg) !important;
  }
  
  .description-toggle-btn.hidden {
    display: none !important;
  }

  /* Контейнер для абсолютного позиционирования ссылки "Сравнить" */
  .top_product_info {
    position: relative !important;
  }

  /* Ссылка "Сравнить" с абсолютным позиционированием справа от цены */
  .top_product_info .compare-mobile {
    position: absolute !important;
    top: 6px !important;
    right: 0 !important;
    font-size: 18px !important;
    color: #0088d0 !important;
    text-decoration: underline !important;
    white-space: nowrap !important;
    z-index: 10 !important;
    line-height: 1 !important;
  }

  .top_product_info .compare-mobile:hover {
    text-decoration: none !important;
  }

  /* Ссылка "Перейти к сравнению" с абсолютным позиционированием справа от цены */
  .top_product_info .go-compare-mobile {
    position: absolute !important;
    top: 6px !important;
    right: 0 !important;
    font-size: 12px !important;
    color: #0088d0 !important;
    text-decoration: underline !important;
    white-space: nowrap !important;
    z-index: 10 !important;
    line-height: 1 !important;
  }

  .top_product_info .go-compare-mobile:hover {
    text-decoration: none !important;
  }
}

/* Дополнительная оптимизация для узких экранов */
@media screen and (max-width: 340px) {
  /* Уменьшаем размер шрифта для маленьких экранов */
  .product_add_cart .order_link {
    font-size: 14px !important;
  }

  .product_add_cart .quantity-block {
    flex: 0 0 65px !important;
  }

  .product_add_cart .quantity-block .quantity-num {
    width: 65px !important;
    font-size: 14px !important;
  }

  .product_add_cart .quantity-block button {
    font-size: 14px !important;
    right: 8px !important;
  }
}

/* =============================================================================
   Блок "Товары дня" - Лидеры продаж / Новинки
   ============================================================================= */

.products_of_day {
  background: #ffffff;
  padding: 0 0;
  margin-top: 70px;
  text-align: center;
}

.products_of_day .content_home {
  width: 1270px;
  max-width: 98%;
  margin: 0 auto;
  box-sizing: border-box;
}

.products_of_day h2 {
  text-align: center;
  font-size: 24px;
  margin: 0 0 10px; /* Отступ от заголовка до табов - как в "Наши поставщики" */
}

/* Табы - выровнены по центру */
.products_of_day_tabs {
  margin-top: 17px;
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px; /* Отступ от табов до карточек - как в "Наши поставщики" */
}

.products_of_day_tab {
  padding: 15px 40px;
  font-size: 18px; /* Как заголовки в Популярных разделах (popular_sections_title) */
  font-weight: 400; /* Изменено с 700 на 400 - как у popular_sections_title */
  text-transform: uppercase;
  cursor: pointer;
  background: #e0e0e0; /* Светло-серый фон для неактивной вкладки */
  color: #ff6600; /* Оранжевый текст для неактивной вкладки */
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  min-width: 220px; /* Фиксированная минимальная ширина для десктопа */
  text-align: center; /* Центрируем текст */
}

.products_of_day_tab:first-child {
  border-radius: 0;
}

.products_of_day_tab:last-child {
  border-radius: 0;
}

.products_of_day_tab:hover {
  background: #d0d0d0;
}

.products_of_day_tab.active {
  background: #ff6600; /* Оранжевый фон для активной вкладки */
  color: #ffffff; /* Белый текст для активной вкладки */
}

/* Контент табов */
.products_of_day_content {
  display: none;
}

.products_of_day_content.active {
  display: block;
}

/* Список товаров - как в каталоге, на всю ширину контейнера */
.products_of_day_list {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
}

/* ===== ПОЛНАЯ КОПИЯ СТИЛЕЙ ИЗ КАТАЛОГА ДЛЯ "ТОВАРОВ ДНЯ" ===== */

/* Базовые стили карточки */
.products_of_day_list .product_box {
  display: block;
  background: #fff;
  border: 1px solid #eaeaea;
  padding: 10px;
  overflow: hidden;
  position: relative;
  text-align: left;
  font-size: 14px;
  flex: 1 1 25%;
  min-width: 0;
  box-sizing: border-box;
  min-height: 370px;
}

.products_of_day_list .product_box:hover {
  text-decoration: none;
}

.products_of_day_list .product_box span {
  display: block;
  font-weight: 300;
}

/* Плашки сверху */
.products_of_day_list .product_top {
  position: absolute;
  width: 100%;
  z-index: 100;
  overflow: hidden;
  height: 45px;
  left: 0;
  top: 0;
}

.products_of_day_list .label_left {
  position: absolute;
  left: -25px;
  top: -5px;
  background: #f36810;
  transform: rotate(-45deg);
  padding: 12px 25px 4px;
  color: #fff;
  font-weight: 700 !important;
  font-size: 12px;
}

.products_of_day_list .label_right {
  color: #999;
  font-size: 13px;
  font-weight: 300;
  position: absolute;
  right: 30px;
  top: 15px;
}

/* Галерея изображений - размеры как в каталоге */
.products_of_day_list .product_gallery {
  position: relative;
  height: 235px;
  margin: 0px 0 0;
}

.products_of_day_list .product_gallery img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-height: 195px;
}

.products_of_day_list .product_gallery,
.products_of_day_list span.product_img {
  display: flex!important;
}

.products_of_day_list .product_gallery img {
  object-fit: contain;
}

.products_of_day_list .product_gallery_inner {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99;
}

.products_of_day_list .product_box .product_gallery_box {
  position: static;
  float: left;
  height: 100%;
  width: 33%;
}

.products_of_day_list .product_box .product_gallery_box.product_gallery_box2 {
  width: 50%;
}

.products_of_day_list .product_box .product_gallery_box2 span.product_img_button {
  width: 50%;
}

/* Изображения при hover */
.products_of_day_list .product_img {
  opacity: 0;
  overflow: hidden;
  bottom: 0;
  top: 0;
  right: 0;
  z-index: -2;
  width: 100%;
  position: absolute;
  height: auto;
  left: 0;
  background: #fff;
}

/* Кнопки переключения изображений */
.products_of_day_list .product_box span.product_img_button {
  display: none;
  position: absolute;
  bottom: 20px;
  width: 33%;
}

.products_of_day_list .product_box .product_gallery_box .product_img_button:after {
  display: block;
  content: "";
  position: absolute;
  top: 1px;
  bottom: 2px;
  height: 3px;
  left: 1px;
  right: 1px;
  background: #e0e0e0;
  transition: background-color 0.2s;
}

.products_of_day_list .product_box .product_gallery:hover .product_img_button {
  display: block;
}

.products_of_day_list .product_box .product_gallery_box:hover .product_img_button:after {
  background: #8a8a8a;
}

/* Описание товара */
.products_of_day_list .product_desc {
  padding: 0 5px;
}

.products_of_day_list .product_desc_title span.product_desc_title2,
.products_of_day_list .product_desc_title span.product_desc_title4 {
  font-size: 18px;
  color: #2b2b2b;
}

.products_of_day_list .product_desc_title,
.products_of_day_list .product_desc_title3 {
  color: #999;
  font-size: 14px;
  margin: 0px 0px 20px;
}

.products_of_day_list .product_desc_attr {
  color: #0088d0;
}

.products_of_day_list .product_desc_attr span {
  color: #2b2b2b;
}

/* Скрытые атрибуты (показываются при hover) */
.products_of_day_list .product_box .product_desc_hidden_attr {
  color: #999;
  opacity: 0;
  display: none;
}

.products_of_day_list .product_desc_hidden_attr span.product_size span {
  color: #2b2b2b;
  display: inline-block;
  position: relative;
  padding: 0 5px 0 15px;
  font-size: 12px;
}

.products_of_day_list .product_desc_hidden_attr span.product_size span::before {
  content: "";
  display: block;
  background-image: url("../images/size.png");
  background-repeat: no-repeat;
  height: 15px;
  width: 15px;
  left: 0;
  top: 0px;
  position: absolute;
}

.products_of_day_list .product_desc_hidden_attr span.product_size span.arrow_l::before {
  background-position: 0 0;
  top: -1px;
}

.products_of_day_list .product_desc_hidden_attr span.product_size span.arrow_h::before {
  background-position: -14px -1px;
}

.products_of_day_list .product_desc_hidden_attr span.product_size span.arrow_w::before {
  background-position: -30px -1px;
}

.products_of_day_list .product_desc_hidden_attr span.product_size span.arrow_dp::before {
  background-position: -60px -1px;
}

.products_of_day_list .product_desc_hidden_attr span.product_size span.arrow_diameter::before {
  background-position: -45px -1px;
}

/* Блок цены */
.products_of_day_list .product_price_box {
  position: absolute;
  right: 15px;
  bottom: 0;
  height: 145px;
}

.products_of_day_list .product_tag_box {
  position: absolute;
  bottom: 0;
  height: 145px;
}

.products_of_day_list .product_tag_box > .tag_label {
  background-color: #f26b20;
  color: #fff;
  padding: 0 10px;
  height: 19px;
  line-height: 1.3em;
}

/* Наличие */
.products_of_day_list .presence {
  color: #fff;
  padding: 0px 10px;
  height: 19px;
  line-height: 1.3em;
  display: block;
  white-space: nowrap;
  width: fit-content;
}

.products_of_day_list .presence_yes {
  background: #4ab171;
}

.products_of_day_list .presence_no {
  background: #c4c4c4;
}

/* Цена */
.products_of_day_list .product_price {
  font-size: 24px;
  color: #2b2b2b;
  margin: 70px 0 0;
  text-align: right;
}

.products_of_day_list .product_price sup {
  font-size: 13px;
  margin: 0 0 0 5px;
}

/* Артикул */
.products_of_day_list .article_number {
  position: absolute;
  top: 0;
}

/* Артикул внутри extended-bottom при hover - relative позиционирование */
.products_of_day_list .product_box div.extended-bottom .article_number {
  position: relative !important;
  top: auto !important;
}

.products_of_day_list .article_number span {
  word-break: break-word;
  color: #2b2b2b;
  font-size: 12px;
  display: inline-block !important;
}

/* Цвета */
.products_of_day_list .product_color {
  position: absolute;
  bottom: 0;
}

.products_of_day_list .product_color img {
  display: inline-block;
  height: 18px;
  width: 18px;
  vertical-align: top;
  margin: 1px 0;
  border-radius: 50%;
}

/* Hover эффекты */
.products_of_day_list .product_box:hover .product_desc_attr,
.products_of_day_list .product_box:hover .presence,
.products_of_day_list .product_box:hover .product_price,
.products_of_day_list .product_box:hover .product_tag_box {
  display: none;
}

.products_of_day_list .product_box:hover .product_desc_hidden_attr {
  display: block;
  opacity: 1;
}

.products_of_day_list .product_box .product_gallery_box:hover .product_img {
  opacity: 1;
}

/* Специфичные переопределения удалены - используются стили каталога */

/* Карусель (Mobile) - скрыта по умолчанию на десктопе */
.products_of_day_carousel {
  display: none;
}

/* Адаптивность */
@media screen and (max-width: 1199px) {
  .products_of_day_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 899px) {
  .products_of_day {
    padding: 40px 0;
    margin-top: 50px;
  }

  /* На мобильных контейнер должен быть на 100% ширины */
  .products_of_day .content_home {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .products_of_day h2 {
    font-size: 24px; /* Стандартный размер для главной страницы мобильной версии */
    margin-bottom: 30px;
  }

  .products_of_day_tabs {
    margin-bottom: 30px;
  }

  .products_of_day_tab {
    padding: 12px 30px;
    font-size: 18px;
    min-width: 200px; /* Фиксированная минимальная ширина для планшетов */
    text-align: center;
  }

  .products_of_day_list .product_box {
    width: 48%;
    margin: 0 1% 20px 1%;
  }
}

/* Мобильная версия с каруселью */
@media screen and (max-width: 599px) {
  .products_of_day {
    padding: 30px 0;
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Предотвращаем горизонтальный скролл */
    box-sizing: border-box;
  }

  /* Контейнер на мобильных */
  .products_of_day .content_home {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    overflow-x: hidden !important; /* Предотвращаем расширение */
    box-sizing: border-box !important;
  }

  .products_of_day h2 {
    font-size: 24px;
    margin-bottom: 25px;
    line-height: 1.2;
    padding: 0 15px; /* Отступы по бокам */
  }

  .products_of_day_tabs {
    margin-bottom: 25px;
    gap: 0;
    padding: 0 15px; /* Отступы по бокам как у заголовка */
    display: flex;
    width: 100%;
    box-sizing: border-box;
  }

  .products_of_day_tab {
    padding: 10px 5px !important;
    font-size: 13px !important;
    flex: 0 0 50% !important; /* Ровно 50% внутри контейнера с отступами */
    width: 50% !important;
    max-width: 50% !important;
    min-width: 0 !important; /* Убираем min-width из десктопных стилей */
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box !important;
    letter-spacing: 0 !important; /* Убираем letter-spacing для экономии места */
  }

  /* Скрываем список на мобильных */
  .products_of_day_list {
    display: none;
  }

  /* Показываем карусель на мобильных */
  .products_of_day_carousel {
    display: block;
    position: relative;
    width: 100%;
    padding: 0 15px; /* Отступы по бокам для карусели */
    margin: 0;
    overflow: visible;
    box-sizing: border-box;
  }

  .products_of_day_carousel_container {
    position: relative;
    overflow: visible;
    padding: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .products_of_day_carousel_track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    touch-action: pan-y;
    will-change: transform;
  }

  .products_of_day_carousel_item {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Карточка товара в карусели - копия стилей каталога */
  .products_of_day_carousel_item .product_box {
    display: block;
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 10px;
    overflow: hidden;
    position: relative;
    text-align: left;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    /* Отключаем выделение текста при долгом нажатии на мобильных */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Отключаем подсветку при нажатии на iOS/Android */
    -webkit-tap-highlight-color: transparent;
    /* Разрешаем стандартный touch для прокрутки */
    touch-action: manipulation;
  }

  /* Применяем все стили каталога к карточкам в карусели */
  .products_of_day_carousel_item .product_gallery {
    position: relative;
    height: 235px;
    margin: 0;
  }

  .products_of_day_carousel_item .product_gallery img {
    display: block;
    margin: 0 auto;
    width: auto;
    height: auto;
    max-height: 195px;
    object-fit: contain;
  }

  .products_of_day_carousel_item .product_desc {
    padding: 0 5px;
  }

  .products_of_day_carousel_item .product_price_box {
    position: absolute;
    right: 15px;
    bottom: 0px;
    height: 135px;
  }

  .products_of_day_carousel_item .product_tag_box {
    position: absolute;
    bottom: 0px;
    height: 135px;
  }

  /* Стрелки навигации - как у #clients_block, поверх карточки */
  .products_of_day_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #d9d9d9;
    border-radius: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100; /* Высокий z-index чтобы быть поверх карточки */
    transition: all 0.2s ease;
    padding: 0;
  }

  .products_of_day_arrow:hover:not(:disabled) {
    border-color: #2b2b2b;
  }

  .products_of_day_arrow:hover:not(:disabled) svg {
    color: #2b2b2b;
  }

  .products_of_day_arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .products_of_day_arrow_left {
    left: 5px; /* Отступ от края карусели */
  }

  .products_of_day_arrow_right {
    right: 5px; /* Отступ от края карусели */
  }

  .products_of_day_arrow svg {
    width: 26px;
    height: 26px;
    color: #d9d9d9;
  }

  /* Индикаторы (полоски) - точно как у owl-carousel */
  .products_of_day_dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }

  .products_of_day_dot {
    width: 50px; /* Как у owl-carousel */
    height: 4px;
    border-radius: 0;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .products_of_day_dot.active {
    background: #0088d0; /* Синий цвет как у owl-carousel */
  }

  .products_of_day_dot:hover {
    background: #0088d0;
    opacity: 0.7;
  }
}

/* Очень узкие экраны */
@media screen and (max-width: 400px) {
  .products_of_day_tab {
    padding: 8px 15px;
    font-size: 14px;
    text-align: center; /* Центрируем текст */
  }

  .products_of_day_carousel_container {
    padding: 0; /* Убираем padding, чтобы карточки занимали всю ширину экрана */
  }

  .products_of_day_arrow {
    width: 35px;
    height: 35px;
  }

  .products_of_day_arrow svg {
    width: 18px;
    height: 18px;
  }
}

/* ========================================
   Стили для страницы контактов - новая верстка
   ======================================== */

/* Телефон офиса - оранжевый, жирный */
.office_phone a {
  color: #f35c14 !important;
  font-weight: bold;
}

/* Email офиса - синий, жирный */
.office_email {
  color: #0089d1 !important;
  font-weight: bold;
}

/* Адреса - подчеркивание */
.address_link {
  text-decoration: underline !important;
}

/* Серая подложка для 2-го блока */
.contacts_map.has_gray_bg {
  background-color: #f8f8f8;
  padding: 30px;
  margin-top: 30px;
  border-radius: 4px;
}

/* Мобильная версия */
@media screen and (max-width: 767px) {
  /* Заголовок "Контакты" крупнее подзаголовков */
  .page_title {
    font-size: 2em !important;
  }

  .contacts_map h2 {
    font-size: 1.5em !important;
  }

  /* "Офис ReeHouse Group в Москве" -> "Офис в Москве" */
  .contacts_map:first-of-type h2:after {
    content: " в Москве";
    font-size: inherit;
  }
  .contacts_map:first-of-type h2 {
    font-size: 0;
  }
}

/* Двухколоночная верстка */
.contacts_row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contacts_row .contacts_address {
  width: 55%;
  margin: 0;
}

.contacts_row .contacts_media {
  width: 42%;
  margin: 0;
}

.contacts_media h5 {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 20px;
}

.contacts_media iframe,
.contacts_media img,
.contacts_media .yandex_map {
  width: 100%;
  height: auto;
  min-height: 254px;
  border-radius: 4px;
}

/* Мобильная версия - вертикальное расположение */
@media screen and (max-width: 767px) {
  .contacts_row {
    flex-direction: column;
  }

  .contacts_row .contacts_address,
  .contacts_row .contacts_media {
    width: 100%;
  }

  .contacts_row .contacts_media {
    margin-top: 30px;
  }
}

/* Телефон салона - жирный, обычный цвет */
.salon_phone a {
  font-weight: bold;
  color: #2b2b2b !important;
  top: 10px;
  position: absolute;
}

/* Переопределяем шахматное расположение - блоки должны идти друг под другом */
.contacts_row .contacts_address {
  display: flex;
  flex-direction: column;
}

.contacts_row .contacts_address > div {
  width: 100% !important;
  margin: 0 0 25px 0 !important;
  display: flex;
  align-items: flex-start;
}

.contacts_row .contacts_address > div:last-child {
  margin-bottom: 0 !important;
}

.contacts_row .contacts_address > div > * {
  vertical-align: top;
}

.contacts_row .contacts_address svg,
.contacts_row .contacts_address img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  margin-right: 15px;
  fill: #2b2b2b;
}

.contacts_row .contacts_address > div > div,
.contacts_row .contacts_address > div > p {
  flex: 1;
}

/* Отступ слева для колонки с контактами */
.contacts_row .contacts_address {
  padding-left: 20px;
}

/* Увеличиваем отступ слева и компенсируем padding серого блока */
.contacts_row .contacts_address {
  padding-left: 40px;
}

/* Компенсируем padding серого блока (30px), чтобы иконки выровнялись */
.contacts_map.has_gray_bg .contacts_row .contacts_address {
  padding-left: 10px !important;  /* 40px - 30px = 10px */
}

/* Выравниваем заголовки над текстовым блоком */
.contacts_map h2 {
  padding-left: 40px;
}

/* Компенсируем padding серого блока для заголовков */
.contacts_map.has_gray_bg h2 {
  padding-left: 10px;
}

/* Отступ от заголовка до контактной информации */
.contacts_row {
  margin-top: 50px;
}

/* Ссылки адресов - обычный цвет с подчеркиванием */
.address_link,
.contact_item a.address_link {
  color: inherit !important;
  text-decoration: underline !important;
}

.address_link:hover,
.contact_item a.address_link:hover {
  color: inherit !important;
  text-decoration: underline !important;
}

/* Первая буква заглавная, остальные строчные */
.text_capitalize {
  text-transform: capitalize;
}

/* Отступ слева для текста Контакты в заголовках */
.text_capitalize {
  margin-left: 57px;
}

/* Вертикальное расположение иконки телефона и надписи */
.phone_vertical {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.phone_vertical svg {
  width: 40px !important;
  height: 40px !important;
  margin-bottom: 10px !important;
}

.phone_vertical > div {
  width: 100% !important;
}

.phone_vertical > div span {
  display: block !important;
  font-size: 12px !important;
  color: #999 !important;
  margin-bottom: 5px !important;
}

/* Отмена вертикального расположения - возврат к исходному */
.phone_vertical {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.phone_vertical svg {
  width: auto !important;
  height: auto !important;
  margin-bottom: 0 !important;
}

.phone_vertical > div {
  width: auto !important;
}

.phone_vertical > div span {
  display: inline !important;
  font-size: inherit !important;
  color: inherit !important;
  margin-bottom: 0 !important;
}

.label_under_icon {
  left: -3px;
  position: absolute;
  top: 42px;
}

.showroom_photo {
  position: relative;
  top: -38px !important;
}

.sclads {
  margin-top: -290px!important;
  height: 325px!important;
}


/* Разные заголовки для десктопа и мобилки */
.mobile_title {
  display: none;
}

.desktop_title {
  display: inline;
}

/* Мобильная версия */
@media (max-width: 768px) {
  .mobile_title {
    display: inline;
  }
  
  .desktop_title {
    display: none;
  }
  
  /* Размер шрифта "Контакты" больше, чем подзаголовки */
  .contacts_map h1.page_title {
    font-size: 28px !important;
  }
  
  .contacts_map h2 {
    font-size: 18px !important;
  }
  
  .contacts_map h2 .text_capitalize {
    font-size: 24px !important;
    font-weight: bold !important;
  }
}

/* Исправления для мобильной версии */
@media (max-width: 768px) {
  /* Убираем дублирование "В Москве" - отключаем ::after */
  .contacts_map h2::after {
    content: none !important;
  }
  
  /* Убираем жирный шрифт у "Контакты |" */
  .contacts_map h2 .text_capitalize {
    font-size: 24px !important;
    font-weight: normal !important;
  }
}

/* Отмена margin-left для .text_capitalize в мобильной версии */
@media (max-width: 768px) {
  .text_capitalize {
    margin-left: 0 !important;
  }
}

/* Отмена position:relative для .showroom_photo в мобильной версии */
@media (max-width: 768px) {
  .showroom_photo {
    position: static !important;
  }
}

/* Отмена margin-top для .sclads в мобильной версии */
@media (max-width: 768px) {
  .sclads {
    margin-top: 0 !important;
  }
}

/* Отмена min-height для медиа в мобильной версии */
@media (max-width: 768px) {
  .contacts_media iframe,
  .contacts_media img,
  .contacts_media .yandex_map {
    min-height: auto !important;
  }
}

.contacts_map.has_gray_bg h2 {
  position: relative;
  top: 38px;
}


/* Margin для заголовков в мобильной версии */
@media (max-width: 768px) {
  .contacts_map.has_gray_bg h2 {
    position: relative;
    top: 20px;
  }

}

/* Одинаковые отступы над заголовками всех блоков контактов */
.contacts_map {
  margin-top: 50px;
}

.contacts_map:first-of-type {
  margin-top: 0;
}

/* Для десктопа убираем верхний отступ у первого блока */
.content > .contacts_map:first-child {
  margin-top: 0;
}

.has_gray_bg_container {
  position: relative;
  top: -68px;
}

.has_gray_bg_container .contacts_address {
  margin-top: 24px;
}

.has_white_bg_container {
  position: relative;
  top: -12px;
  height: 491px!important;
}

.has_white_bg_container .showroom_photo {
  position: relative;
  top: -73px !important;
}

.office_phone, .office_email,.showroom .address_link, .call_action {
  top: 10px;
  position: relative;
}
.salon {
  height: 340px!important;
}

@media (min-width: 1530px) {
  .salon {
    height: 360px !important;
  }
}


.contacts_map.has_gray_bg {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(52vw - 50%);
}

.salon .showroom_photo {
  width: 43%;
  margin-right: -6px;
}

@media (max-width: 768px) {
  .sclads {
    height: 366px !important;
  }

  .contacts_map h2 {
    padding-left: 20px;
  }

  .contacts_address {
    padding-left: 14px!important;
  }

  .call_action {
    top: 1px;
  }

  .salon {
    height: 526px !important;
  }

  .salon .showroom_photo {
    width: 100% !important;
    margin-right: 0 !important;
  }
}