@charset "UTF-8";

.color_primary {
  color: #1b4f9b;
}

.color_secondary {
  color: #2977e8;
}

.color_danger {
  color: #c00;
}

.color_warning {
  color: orange;
}

.color_white {
  color: #fff;
}

.color_black {
  color: #121212;
}

.color_light {
  color: #f5f5f5;
}

.color_light_gray {
  color: #d5d5d5;
}

.color_green {
  color: #009688;
}

.bg_primary {
  background-color: #1b4f9b;
}

.bg_secondary {
  background-color: #2977e8;
}

.bg_danger {
  background-color: #c00;
}

.bg_warning {
  background-color: orange;
}

.bg_white {
  background-color: #fff;
}

.bg_black {
  background-color: #121212;
}

.bg_light {
  background-color: #f5f5f5;
}

.bg_light_gray {
  background-color: #d5d5d5;
}

.bg_green {
  background-color: #009688;
}

input {
  outline: none;
}

:active,
:hover,
:focus {
  outline: 0;
  outline-offset: 0;
}

.btn {
  line-height: 1.2;
  padding: 0.8rem 1rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  -o-transition: all 0.1s;
  transition: all 0.1s;
  -webkit-transition: all 0.1s;
  cursor: pointer;
}

.btn:hover {
  -o-transition: all 0.1s;
  transition: all 0.1s;
  -webkit-transition: all 0.1s;
}

.btn-sm {
  cursor: pointer;
  text-transform: uppercase;
  padding: .3rem .8rem;
}

.btn_primary {
  background-color: #1b4f9b;
  border: #1b4f9b;
  color: #fff;
}

.btn_primary:hover {
  background-color: #174281;
  border: #174281;
  color: #fff;
}

.btn_outline_primary {
  background-color: #fff;
  border: 1px solid #1b4f9b;
  color: #1b4f9b;
}

.btn_outline_primary:hover {
  background-color: rgba(27, 79, 155, 0.1);
  border: 1px solid #174281;
  color: #174281;
}

.btn_secondary {
  background-color: #2977e8;
  border: #2977e8;
  color: #fff;
}

.btn_secondary:hover {
  background-color: #2263c1;
  border: #2263c1;
  color: #fff !important;
}

.btn_outline_secondary {
  background-color: #fff;
  border: 1px solid #2977e8;
  color: #2977e8;
}

.btn_outline_secondary:hover {
  background-color: rgba(41, 119, 232, 0.1);
  border: 1px solid #2263c1;
  color: #2263c1 !important;
}

.btn_danger {
  background-color: #c00;
  border: #c00;
  color: #fff;
}

.btn_danger:hover {
  background-color: #aa0000;
  border: #aa0000;
  color: #fff !important;
}

.btn_outline_danger {
  background-color: #fff;
  border: 1px solid #c00;
  color: #c00;
}

.btn_outline_danger:hover {
  background-color: rgba(204, 0, 0, 0.1);
  border: 1px solid #aa0000;
  color: #aa0000;
}

.btn_warning {
  background-color: orange;
  border: orange;
  color: #fff;
}

.btn_warning:hover {
  background-color: #d58a00;
  border: #d58a00;
  color: #fff;
}

.btn_outline_warning {
  background-color: #fff;
  border: 1px solid orange;
  color: orange;
}

.btn_outline_warning:hover {
  background-color: rgba(255, 165, 0, 0.1);
  border: 1px solid #d58a00;
  color: #d58a00;
}

.btn_white {
  background-color: #fff;
  border: #fff;
  color: #fff;
}

.btn_white:hover {
  background-color: #d5d5d5;
  border: #d5d5d5;
  color: #fff;
}

.btn_outline_white {
  background-color: #fff;
  border: 1px solid #fff;
  color: #fff;
}

.btn_outline_white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #d5d5d5;
  color: #d5d5d5;
}

.btn_black {
  background-color: #121212;
  border: #121212;
  color: #fff;
}

.btn_black:hover {
  background-color: #0f0f0f;
  border: #0f0f0f;
  color: #fff;
}

.btn_outline_black {
  background-color: #fff;
  border: 1px solid #121212;
  color: #121212;
}

.btn_outline_black:hover {
  background-color: rgba(18, 18, 18, 0.1);
  border: 1px solid #0f0f0f;
  color: #0f0f0f;
}

.btn_light {
  background-color: #f5f5f5;
  border: #f5f5f5;
  color: #fff;
}

.btn_light:hover {
  background-color: #cccccc;
  border: #cccccc;
  color: #fff;
}

.btn_outline_light {
  background-color: #fff;
  border: 1px solid #f5f5f5;
  color: #f5f5f5;
}

.btn_outline_light:hover {
  background-color: rgba(245, 245, 245, 0.1);
  border: 1px solid #cccccc;
  color: #cccccc;
}

.btn_light_gray {
  background-color: #d5d5d5;
  border: #d5d5d5;
  color: #fff;
}

.btn_light_gray:hover {
  background-color: #b2b2b2;
  border: #b2b2b2;
  color: #fff;
}

.btn_outline_light_gray {
  background-color: #fff;
  border: 1px solid #d5d5d5;
  color: #d5d5d5;
}

.btn_outline_light_gray:hover {
  background-color: rgba(213, 213, 213, 0.1);
  border: 1px solid #b2b2b2;
  color: #b2b2b2;
}

.btn_green {
  background-color: #009688;
  border: #009688;
  color: #fff;
}

.btn_green:hover {
  background-color: #007d71;
  border: #007d71;
  color: #fff;
}

.btn_outline_green {
  background-color: #fff;
  border: 1px solid #009688;
  color: #009688;
}

.btn_outline_green:hover {
  background-color: rgba(0, 150, 136, 0.1);
  border: 1px solid #007d71;
  color: #007d71;
}

body {
  color: #4b4b4b;
}

body.overflow {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Archive', sans-serif;
  font-weight: bold;
}

h1 {
  font-size: 1.44rem;
  margin-bottom: 1.44rem;
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

h4 {
  font-size: 0.8333333333rem;
}

a {
  text-decoration: none;
  color: #1b4f9b;
}

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

.mfp-iframe-holder .mfp-content {
  max-width: 90% !important;
  height: 90% !important;
}

.fm-panel {
  display: none;
}

section {
  padding: 3rem 0;
}

.mobile_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  background-color: #fff;
  padding: 1rem 0;
  z-index: 999;
  text-align: center;
}

.mobile_header.out {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.mobile_header .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mobile_header i {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  background-color: #1b4f9b;
  border: 2px solid #1b4f9b;
  padding: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 2.074rem;
  height: 2.074rem;
  border-radius: 8px;
  margin: auto;
}

.mobile_footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  background-color: #1b4f9b;
 
  z-index: 900;
 
  -webkit-box-shadow: 0px 3px 7px 4px #121212;
  box-shadow: 0px 3px 7px 4px #121212;
}
.mobile_footer .mobile_footer_wrapper{
  position: relative;
}
.mobile_footer .mobile_footer_controls{
  padding: 0.8333333333rem 0 0.6666666667rem;
  background-color: #1b4f9b;
  z-index: 3147483647;
  width: 100%;
 
}
.mobile_footer .row {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.mobile_footer i {
  font-size: 1.44rem;
  color: #fff;
}

 .mobile_footer .mobile_footer_search_form{
  display: none;
  position: relative;  
  width: 100%;
  padding: .3rem .5rem;
  background-color: #1b4f9b;
  /* transform: translateY(100%); */
}
.mobile_footer .mobile_footer_search_form i{
  font-size: 1.44rem;
  color: #174281;
}

.mobile_footer .mobile_footer_search_form.show{
display: block;
  /* transform: translateY(0); */
}

.mobile_main_menu {
  display: block;
  position: fixed;
  width: 0;
  height: 100%;
  top: 0;
  z-index: 9999;
  left: 0;
  background-color: rgba(18, 18, 18, 0.8);
  overflow: hidden;
}

.mobile_main_menu .search .btn {
  background-color: #205fba;
}

.mobile_main_menu .search .btn {
  color: #fff;
}

.mobile_main_menu ul {
  margin: 0;
  padding: 0;
}

.mobile_main_menu ul li {
  list-style: none;
}

.mobile_main_menu.open {
  width: 100%;
}

.mobile_main_menu.open .mobile_main_menu__wrapper {
  left: 0;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.mobile_main_menu .mobile_main_menu__wrapper {
  position: absolute;
  left: -200%;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  background-color: #fff;
  width: 75%;
  margin-right: auto;
  height: 100%;
  padding: 1rem;
  font-size: 1rem;
}

.mobile_main_menu .mobile_main_menu__wrapper ul li {
  padding: 0.5rem;
  text-transform: uppercase;
  font-weight: 600;
}

.mobile_main_menu .mobile_main_menu__close {
  text-transform: uppercase;
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  color: #4b4b4b;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header {
  position: relative;
}

header ul {
  margin: 0;
  padding: 0;
}

header ul li {
  list-style: none;
}

header .header_top {
  padding: 1.2rem 0;
}

header .header_top .social_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  font-size: 2.48rem;
  font-weight: bold;
}

header .header_top .social_links a {
  line-height: 1;
  margin: 0 1rem;
}

header .header_top .phone {
  line-height: 1;
  font-family: 'Archive', sans-serif;
}

header .header_top .phone a {
  color: #c00;
  font-size: 1.728rem;
  font-weight: 800;
}

header .header_top .phone a:hover {
  color: #aa0000;
}

header .header_top .phone i {
  color: #4b4b4b;
  font-size: 1.7rem;
  margin-right: 0.5rem;
}

header .main_menu {
  background-color: #1b4f9b;
  padding: .2rem 0;
  position: absolute;
  z-index: 10;
  top: 0;
  left: -100%;
  margin-top: 5rem;
}

header .main_menu .row {
  justify-content: space-between;
  align-items: center;
}

header .main_menu.open {
  left: 0;`
}

header .main_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

header .main_menu ul li {
  /*padding-right: 1.728rem;*/
}

header .main_menu ul li a {
  color: #fff;
  padding: 17px 15px;
}

header .main_menu ul li a:hover {
  background-color: #2977e8;
}

header .main_menu .header_search_form {
  background: rgba(255, 255, 255, 0.2);
}

header .main_menu .header_search_form .form-control {
  color: #fff !important;
  background: none;
  border: 0;
}

header .main_menu .header_search_form i {
  color: #fff !important;
}

header .main_menu .header_search_form .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

header .main_menu .header_search_form .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

header .main_menu .header_search_form .form-control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

header .main_menu .header_search_form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

header .header_bottom .search i {
  margin: 0;
}

.content_wrapper {
  padding-top: 5rem;
  overflow-x: auto;
}

.main {
  padding-top: 1rem;
}

aside {
  border: 1px solid #d5d5d5;
  padding: 0;
}

.side_menu {
  position: fixed;
  width: 0;
  height: 100%;
  top: 0;
  z-index: 1000;
  background-color: rgba(18, 18, 18, 0.8);
  overflow: hidden;
  right: 0;
  text-transform: uppercase;
}

.side_menu ul {
  margin: 0;
  padding: 0;
}

.side_menu ul li {
  list-style: none;
}

.side_menu .side_menu__wrapper {
  position: absolute;
  right: 0;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  background-color: #f5f5f5;
  width: 0;
  margin-right: auto;
  height: 100%;
  font-size: 1rem;
  overflow-y: auto;
  padding: 1rem 0;
  margin-left: 100%;
}

.side_menu.open {
  width: 100%;
}

.side_menu.open .side_menu__wrapper {
  padding: 1rem;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  width: 75%;
}

.side_menu .side_menu__close {
  text-transform: uppercase;
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  color: #4b4b4b;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.side_menu .slogan__header {
  text-transform: uppercase;
  position: absolute;
  z-index: 100;
  background-color: #f5f5f5;
  top: 0;
  left: -200%;
  margin-top: 5rem;
}

.side_menu .side_menu__title {
  background-color: #1b4f9b;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
}

.side_menu ul {
  list-style: none;
}

.side_menu .outer {
  margin-bottom: 0;
  padding: 1rem;
}

.side_menu .outer .level1 {
  position: relative;
}

.side_menu .outer .level1>a {
  color: #4b4b4b;
  font-weight: bold;
  padding: .5rem;
  display: inline-block;
  text-transform: uppercase;
}

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

.side_menu .outer .level1 .top_level_item a {
  color: #4b4b4b;
  font-weight: bold;
  padding: .5rem;
  display: inline-block;
  text-transform: uppercase;
  max-width: 85%;
  font-size: 0.85rem;
}

.side_menu .outer .level1 .top_level_item .sub-plus {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  font-size: 1.44rem;
  padding: .5rem;
  cursor: pointer;
  background-color: #f5f5f5;
  border-radius: 4px;
  border: 2px solid #1b4f9b;
}

.side_menu .outer .level1 .top_level_item .sub-plus.plus::after {
  position: absolute;
  top: -10px;
  content: '+';
  color: #1b4f9b;
  font-size: 1.3rem;
  font-weight: 700;
}

.side_menu .outer .level1 .top_level_item .sub-plus.minus::after {
  position: absolute;
  top: -8px;
  content: '-';
  color: #1b4f9b;
  font-size: 1.3rem;
  font-weight: 700;
}

.side_menu .outer .level1>.inside {
  display: none;
  padding-left: .5rem;
  margin-bottom: 1rem;
}

.side_menu .outer .level1.current .top_level_item>a {
  color: #1b4f9b;
}

.side_menu .outer .level1.active>.inside {
  display: inline-block;
}

.side_menu .outer .level1.active>a {
  color: #1b4f9b;
}

.side_menu .outer .level2>a {
  display: inline-block;
  color: #4b4b4b;
  font-size: 0.8rem;
}

.side_menu .outer .level2>a:hover {
  color: #1b4f9b;
}

.side_menu .outer .level2.current>a {
  color: #1b4f9b;
}

.side_menu .level2 .inside {
  display: none;
}

.side_menu .level2.active .inside {
  display: block;
}

.contacts_page .contacts_block {
  height: 100%;
  padding: 1rem;
  background-color: #f5f5f5;
}

footer {
  margin-bottom: 3rem;
}

footer .footer_block {

  margin: .5rem 0;
}

footer a {
  color: #fff;
}

footer .footer_top {
  background: #1b4f9b;
  padding: 2rem 0;
  color: #fff;
}

footer .footer_top a {

  color: #fff;
}

footer .footer_top a:hover {
  color: #2977e8;
}


footer .footer_top a i {
  margin-right: .5rem;
  /* color: #fff; */
}

footer .footer_top .contacts .contact {

  /* margin-bottom: .3rem; */
  font-size: 1.2rem;
}

footer .footer_top .contacts i {

  margin-right: .5rem;
}

footer .footer_top .addresses {
  color: #fff;
}

footer .footer_top .footer_title {
  color: #fff;
  font-weight: 400;
}

footer .footer_top .addresses .address {
  color: #fff;
  /* margin-bottom: .3rem; */
  display: flex;
}

footer .footer_top .addresses .address i {
  margin-right: .5rem;
  line-height: 2;
}

footer .footer_top .hours {
  color: #fff;
  margin: 0;
  padding: 0;
  list-style: none;
}

footer .footer_top .hours li {
  /* margin-bottom: .3rem; */
}

footer .footer_top .social_links {

  text-align: center;
}

footer .footer_top .social_links a:hover {
  color: #2977e8 !important;

}

footer .footer_top .social_links a i {
  color: #fff;
  font-size: 2rem;
}

footer .footer_top .social_links a i:hover {
  color: #2977e8;

}

footer .footer_bottom {
  background-color: #2977e8;
  padding: 1rem 0;
}


footer .footer_bottom .copy {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}

footer .footer_bottom .user_agreement {
  text-decoration: underline;
}

.breadcrumbs {
  font-size: 0.85rem;
}

.breadcrumbs .breadcrumb-item a {
  color: #4b4b4b;
}

.breadcrumbs .breadcrumb-item.active {
  color: #1b4f9b;
}

.text {
  margin-bottom: 1.728rem;
}

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

.nav-tabs {
  /*border-bottom: 1px solid #d5d5d5;*/
}

.card_tabs {
  border-left: 1px solid #d5d5d5;
  border-right: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
  padding: 2rem;
}

.nav-tabs .nav-link {
  /*background-color: #1b4f9b;
  color: #fff;*/
  margin-right: 0.5rem;
  width: 47%;
  margin-top: 5px;
  background-color: #ebeced;
  color: #4b4b4b;
  border-left: 1px solid #d5d5d5;
  border-right: 1px solid #d5d5d5;
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
  font-weight: 500;
}

.nav-tabs .nav-link.active {
  background-color: #2977e8;
  color: #fff;
  border-color: #2977e8;
  font-weight: 500;
  /*background-color: #f8f9fa!important;
    color: #4b4b4b;
    border-left: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
    border-top: 1px solid #d5d5d5;
    border-bottom: 1px solid #f8f9fa;
    font-weight: 500;*/
}

.product_сard .product_card_top .header {
  text-transform: uppercase;
  font-size: 1.728rem;
  margin-bottom: 2.074rem;
  font-weight: 800;
}

.product_сard .product_card_top .product_gallery img {
  border: 1px solid #cccccc;
}

.product_сard .product_card_top .product_gallery .main_image {
  margin-bottom: .5rem;
  padding: .5rem;
}

.product_сard .product_card_top .product_gallery .mini_image {
  /* padding: 0 3px; */
}

.product_сard .product_card_top .product_consultation {
  border: 1px solid #d5d5d5;
  padding: 1rem;
  height: 100%;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.product_сard .product_card_top .product_consultation .title {
  font-family: 'Archive', sans-serif;
  font-size: 1.2rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.product_сard .product_card_top .product_consultation .subtitle {
  font-family: 'Archive', sans-serif;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: .9rem;
}

.product_сard .product_card_top .product_consultation .btn {
  margin-bottom: 1rem;
}

.product_сard .product_card_top .product_consultation .phone {
  line-height: 1;
  text-align: center;
  color: #c00;
  font-size: 1.728rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: block;
}

.product_сard .product_card_top .product_consultation .phone:hover {
  color: #2263c1;
}

.product_сard .product_card_top .product_consultation .social_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: center;
  font-size: 2.976rem;
  font-weight: bold;
}

.product_сard .product_card_top .product_consultation .social_links a {
  line-height: 1;
}

.product_сard .product_card_top .product_info {
  border: 1px solid #d5d5d5;
  padding: 1rem;
  margin-bottom: 1rem;
  height: 100%;
}

.product_сard .product_card_top .product_info .price {
  font-weight: 800;
  font-size: 1.728rem;
  text-align: center;
  font-family: 'Archive', sans-serif;
}

.product_сard .product_card_top .product_info .price .digits {
  color: #c00;
  padding: 0 0.3333333333rem;
}

.product_сard .product_card_top .product_info .in_stock {
  margin-bottom: 0.3rem;
  text-align: center;
}

.product_сard .product_card_top .product_info .in_stock .title {
  font-weight: 800;
  text-transform: uppercase;
  margin-right: 0.3333333333rem;
}

.product_сard .product_card_top .product_info .in_stock.yes .title {
  color: #009688;
}

.product_сard .product_card_top .product_info .in_stock.not .title {
  color: #c00;
}

.product_сard .product_card_top .product_info .chars_table {
  margin-bottom: 1rem;
  font-size: .8rem;
}

.product_сard .product_card_top .product_info .chars_table .chars_title {
  font-size: .9rem;
}

.product_сard .product_card_top .product_info .product_advantages .advantage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.6rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: .8rem;
}

.product_сard .product_card_top .product_info .product_advantages .advantage:last-child {
  margin-bottom: 0;
}

.product_сard .product_card_top .product_info .product_advantages .advantage i {
  font-size: 1.2rem;
  border-radius: 50%;
  padding: 1rem;
  width: 2.48rem;
  height: 2.48rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
}

.product_сard .product_content {
  /* margin-top: 2.48rem; */
}

.product_сard .product_content img {
  max-width: 100%;
  border: 1px solid #d5d5d5;
  padding: 1rem;
  margin-bottom: 1rem;
  height: auto;
}

.how_we_work .step {
  text-align: center;
  margin-bottom: 1.44rem;
}

.how_we_work .step i {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  color: #1b4f9b;
}

.how_we_work .step .title {
  text-align: center;
  font-size: .8rem;
}

.how_we_work .step:hover i {
  color: #2977e8;
}

.company_advantages .advantage {
  text-align: center;
  margin-bottom: 1.44rem;
}

.company_advantages .advantage i {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  color: #1b4f9b;
}

.company_advantages .advantage .title {
  text-align: center;
  font-size: .8rem;
}

.company_advantages .advantage:hover i {
  color: #2977e8;
}

.seo_catalogue_menu {
  margin-bottom: 1.44rem;
}

.seo_catalogue_menu a {
  background-color: #1b4f9b;
  color: white;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  margin-bottom: 1rem;
  min-height: 6rem;
  font-weight: 600;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -o-transition: all 0.1s;
  transition: all 0.1s;
  -webkit-transition: all 0.1s;
  flex-direction: column;
}

.seo_catalogue_menu a:hover {
  background-color: #2977e8;
  /* border: 1px solid #1b4f9b; */
  color: #fff;
  -o-transition: all 0.1s;
  transition: all 0.1s;
  -webkit-transition: all 0.1s;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 3px 8px, rgba(0, 0, 0, 0.15) 0 2px 7px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 3px 8px, rgba(0, 0, 0, 0.15) 0 2px 7px;
}

.seo_catalogue_menu .preview_link {
  padding: 1rem;
  line-height: 1;
}

.seo_catalogue_menu .preview_card .title {
  padding: 1rem;
  line-height: 1;
  min-height: 4.3rem;
  display: flex;
  align-items: center;
}

#mse2_sort .sort span {
  color: #fff;
}


.filters .filter_slider_label {
 display: inline!important;
} 



.filters .dropdown {
  padding: .3rem 0;
}



.filters .filter_button {

  border: 1px solid #174281;
  background-color: #174281;
  color: #fff;
  margin: 0 .1rem;
  font-weight: 400;
  text-transform: lowercase;
}

.filters .filter_button span {

  color: #fff;
}

.filters .filter_button.active {
  border: 1px solid #2977e8;
  background-color: #2977e8;
  color: #fff !important;
}

.filters .filter_button.active span {

  color: #fff !important;
}

.products_list_filter {
  padding: 1rem;
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #d5d5d5;
}

.products_list_filter .filter_control {
  padding: 0.3333333333rem 0;
}

.products_list_filter .control_button {
  position: relative;
  padding: .3rem 0.6rem;
  margin-left: .3rem;
  color: #fff;
}

.products_list_filter .control_button.active {
  background-color: #2977e8;
}

.products_list_filter .control_button input {
  width: 0;
  position: absolute;
  height: 0;
  z-index: -1;
}

.products_list_filter .control_button i {
  margin-left: .3rem;
}

.products_list .rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.44rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -0.5rem 1.44rem;
}

.products_list .list_row {
  width: 100%;

}

.products_list .list_row .product {
  position: relative;
  margin: .5rem;
  border: 1px solid #d5d5d5;
  padding: .5rem;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.products_list .list_row .product .produc_label_new {
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
}

.products_list .list_row .product .product_image {
  margin-bottom: 0;
}

.products_list .list_row .product .product_title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1b4f9b;
  min-height: 5rem;
  padding: 0 0.5rem;
  margin: 0.5rem 0;
  text-transform: uppercase;
  word-break: break-word;
}

.products_list .list_row .product .rating {
  display: flex;
  align-items: center;
  justify-content: center;

}

.products_list .list_row .product .article {
  text-align: center;
  /* font-weight: 600; */
  margin: 0.5rem 0;
  padding: 0 0.5rem;
  word-break: break-word;
  min-height: 1rem;
}

.products_list .list_row .product .price {
  margin: 0.5rem 0;
  padding: 0 0.5rem;
  font-family: 'Archive', sans-serif;
  text-align: center;
}

.products_list .list_row .product .price .digits {
  color: #c00;
  font-weight: 700;
  font-size: 1.5rem;
  margin-right: 0.3333333333rem;
}

.products_list .list_row .product .price .currency {
  font-weight: 600;
  font-size: 1rem;
}

.products_list .list_row .product .buttons_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0.5rem 0;
  text-align: center;
}

.products_list .list_row .product .buttons_block .more_button {
  width: 100%;
  margin-bottom: 0.5rem;
}

.products_list .list_row .product .buttons_block .one_click_buy {
  line-height: 1;
  padding-right: 5px;
}

.products_list .list_row .product .buttons_block .one_click_buy:hover {
  color: #2977e8;
}

.products_list .list_row .product:hover {
  -o-transition: all 0.1s;
  transition: all 0.1s;
  -webkit-transition: all 0.1s;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 3px 8px, rgba(0, 0, 0, 0.15) 0 2px 7px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 3px 8px, rgba(0, 0, 0, 0.15) 0 2px 7px;
}

.products_list.list_view .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

.products_list.list_view .product .produc_label_new img {
  max-width: 30px;
}

.products_list.list_view .product .block_1 {
  width: 30%;
}

.products_list.list_view .product .block_2 {
  width: 70%;
  min-height: auto;
}

.products_list.list_view .product .block_3 {
  width: 100%;
}

.products_list.list_view .product .block_4 {
  width: 100%;
}

.products_list.list_view .product .product_title {
  min-height: auto;
}

.products_list.list_view .product .rating {
  justify-content: start;

}

.products_list.list_view .product .article {
  margin: 0.5rem 0;
  padding: 0 0.5rem;

  text-align: left;
}

.products_list.list_view .product .price {
  margin: 0.5rem 0;
  padding: 0 0.5rem;

  text-align: left;
}

.products_carousel {
  padding: 0 40px;
}

.products_carousel .slick_prev,
.products_carousel .slick_next {
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  margin-top: -25px;
  cursor: pointer;
  z-index: 10;
}

.products_carousel .slick_prev::after,
.products_carousel .slick_prev::before,
.products_carousel .slick_next::after,
.products_carousel .slick_next::before {
  display: block;
  position: absolute;
  content: '';
  width: 40px;
  height: 2px;
  background: #aeaeae;
  -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.products_carousel .slick_prev {
  left: 0;
}

.products_carousel .slick_prev::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 5px;
  top: 10px;
}

.products_carousel .slick_prev::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 5px;
  bottom: 10px;
}

.products_carousel .slick_next {
  right: 0;
}

.products_carousel .slick_next::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 5px;
  top: 10px;
}

.products_carousel .slick_next::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 5px;
  bottom: 10px;
}

.prodicts_hits_carousel {
  opacity: 0;
}

.__jivoMobileButton {
  left: -15px !important;
  bottom: 40px !important;
}

.button_aeee {
  width: 55px !important;
  height: 55px !important;
  border-radius: 55px !important;
  margin-bottom: 60px !important;
}

.info_price {
  padding: 0px 4px;
  text-transform: none;
  font-weight: 700;
  font-size: 0.6rem;
  border: 2px solid #999;
  border-radius: 15px;
  font-family: var(--bs-font-sans-serif);
  color: #999;
  margin-left: 5px;
  vertical-align: text-top;
  background-color: #fff;
}
.marketplace-link{
    color:black;
}
.rating {
    line-height:1;
}

.rating .digits{
    color:#01b933;
    font-weight: bold;
}
.stars {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  color: #ff9800;
}

.stars:before {
  content: "\2606\2606\2606\2606\2606";
}

.stars:after {
  content: "\2605\2605\2605\2605\2605";
  position: absolute;
  left: 0;
  overflow: hidden;
  width: var(--w, 50%);
  color: #ff9800;
  word-wrap: normal;
}


@media (min-width: 768px) {
  .mobile_main_menu .mobile_main_menu__wrapper {
    width: 62%;
  }

  .product_сard .product_content img {
    max-width: 50%;
    float: right;
    margin: 5px 10px;
  }

  .products_list.tile_view .list_row {
    width: 50%;
  }

  .products_list.list_view .list_row {
    width: 50%;
  }
}

@media (min-width: 992px) {
  h1 {
    font-size: 1.728rem;
  }

  h2 {
    font-size: 1.44rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  h4 {
    font-size: 1rem;
  }

  header .main_menu {
    position: relative;
    display: block;
    left: 0;
    margin-top: 0;
  }

  header .main_menu ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .content_wrapper {
    padding-top: 1.728rem;
  }

  .main {
    padding-top: 0;
  }

  .side_menu {
    width: 100%;
    position: relative;
  }

  .side_menu .side_menu__wrapper {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .side_menu .side_menu__close {
    display: none;
  }

  .side_menu {
    position: relative;
    display: block;
    left: 0;
    margin-top: 0;
  }

  .nav-tabs .nav-link {
    width: auto;
  }

  .how_we_work .step {
    margin-bottom: 0;
  }

  .company_advantages .advantage {
    margin-bottom: 0;
  }

  .products_list.tile_view .list_row {
    width: 33.333%;
  }

  .products_list.list_view .list_row {
    width: 100%;
  }

  .products_list .inner_block {
    padding: 0 .5rem;
  }

  .products_list.list_view .product_image {
    margin-bottom: 0;
  }

  .products_list.list_view .product .block_1 {
    width: 15%;
    margin-bottom: 0;
  }

  .products_list.list_view .product .block_2 {
    width: 40%;
  }

  .products_list.list_view .product .block_3 {
    width: 25%;
  }

  .products_list.list_view .product .block_4 {
    width: 20%;
  }

  .products_list.list_view .product .product_image img {
    /* max-height: 68px; */
  }
}

@media (min-width: 1200px) {
  .products_list.tile_view .list_row {
    width: 33.333%;
  }

  footer {
    margin-bottom: 0;
  }

  .fm-panel {
    display: block;
  }
}

@media (min-width: 1700px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1440px;
  }
}

/* ---- Иконки мессенджеров: PNG вместо Font Awesome (2026-09-07) ---- */
.social_links a img,
.mobile_footer a img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: opacity .15s ease;
  -o-transition: opacity .15s ease;
  transition: opacity .15s ease;
}

.social_links a:hover img,
.mobile_footer a:hover img {
  opacity: .75;
}

/* без этого строчный интерлиньяж <a> добавляет место под базовую линию
   и картинка съезжает ниже оптического центра ряда */
.social_links a,
.mobile_footer a {
  line-height: 0;
}

header .header_top .social_links a img {
  width: 40px;
  height: 40px;
}

.product_сard .product_card_top .product_consultation .social_links a img {
  width: 48px;
  height: 48px;
}

footer .footer_top .social_links a img {
  width: 32px;
  height: 32px;
}

/* Мобильная нижняя панель.
   Круглые иконки оптически мельче линейных глифов Font Awesome при одном боксе:
   лупа и трубка занимают квадрат по диагонали, круг — только вписанную окружность.
   28px уравнивает их на глаз (23px — геометрически, но выглядит мельче). */
.mobile_footer a img {
  width: 28px;
  height: 28px;
}

/* Одна схема выравнивания для FA-глифов и PNG: у первых vertical-align baseline,
   у вторых middle — из-за этого картинки стояли на 2,4px ниже соседей. */
.mobile_footer .mobile_footer_controls .row > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mobile_footer .mobile_footer_controls .row > [class*="col-"] i {
  display: block;
  line-height: 1;
}

/* Кнопка «консультация»: класс m-xl-0 снимает верхний gutter ряда (g-2 = 8px),
   а при align-items:center центрируется margin-box — колонка вставала на 4px выше. */
@media (min-width: 1200px) {
  header .header_top .row > .m-xl-0 {
    margin-top: var(--bs-gutter-y) !important;
  }
}
