@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.head30 {
  color: #0042A6;
  font-weight: bold;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 105;
  padding: 30px 10px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: visibility 0.3s ease 0s;
  -o-transition: visibility 0.3s ease 0s;
  transition: visibility 0.3s ease 0s;
  visibility: hidden;
}

.popup::before {
  content: '';
  background-color: rgba(0, 52, 122, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.popup.show {
  visibility: visible;
  overflow: auto;
}

.popup.show::before {
  opacity: 1;
}

.popup.show .popup__body {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.popup._active {
  overflow: auto;
  visibility: visible;
}

.popup._active::before {
  opacity: 1;
}

.popup._active .popup__body {
  -webkit-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.2s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

._name_form {
  text-align: center;
  color: #013f72;
  font-size: 30px;
  font-weight: bold;
}

.popup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.popup__body {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #fff;
  width: 100%;
  max-width: 432px;
  border-radius: 10px;
  overflow: hidden;
}

.popup_form_ttx .popup__body {
  display: flex;
  background: white;
  width: 100%;
  max-width: max-content;
}

.popup__body_ttx-image {
  background: #0042A6;
}

.popup__body_ttx-image_inner {
  min-height: 100%;
  display: flex;
  min-width: 400px;
  overflow: hidden;
  position: relative;
  align-items: center;
}

.thx_form_header {
  font-weight: bold;
  font-size: 25px;
  line-height: 34px;
  color: #0042A6;
}

.popup__body_ttx-image_inner-obj {
  position: absolute;
  max-width: 500px;
  left: 10%;
}

.popup__close {
  width: 32px;
  height: 32px;
  position: absolute;
  font-size: 32px;
  cursor: pointer;
  z-index: 30;
  top: 24px;
  right: 24px;
}

.popup__close:before {
  content: '\e90f';
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.popup__close:hover:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

/*Формы*/
.pattern-form {
  text-align: center;
  display: inline-block;
  width: 100%;
  max-width: 432px;
  background: #fff;
  padding: 49px 46px 55px;
  border: 1px solid #d3d3d3;
}

.pattern-form h3 {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 28px;
  font-family: 'Open Sans', sans-serif;
  color: #00347a;
  font-weight: normal;
}

.pattern-form form {
  display: block;
  width: 100%;
}

.pattern-form .input {
  display: block;
  width: 100%;
  text-align: center;
  color: #969696;
}

.pattern-form .input option {
  text-align: center;
  color: #969696;
}

.pattern-form select.input {
  text-align-last: center;
}

.pattern-form button.btn {
  box-shadow: none !important;
}

._error .input,
._error .input_checkbox {
  border-color: red;
}

._error.checkbox_block ._after_form_politika {
  color: red;
}

.pattern-form .input {
  display: block;
  width: 100%;
  text-align: center;
}

.input {
  display: block;
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  box-shadow: none !important;
  font-family: 'Gilroy-Regular', sans-serif;
  color: #003fba;
  font-size: 20px;
  padding-left: 15px;
  padding-right: 15px;
  border: 1px solid #cccccc;
  box-sizing: border-box;
  border-radius: 12px;
  text-align: center;
  height: 66px;
  line-height: 66px;
  margin-top: 10px;
  transition: 0.4s ease;
}

.checkbox_block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.input_checkbox {
  color: #b9b9b9;
  border-color: #b9b9b9;
}

._after_form_politika {
  font-size: 9px;
  line-height: 12px;
  color: #b9b9b9;
  padding-left: 5px;
}

button[type='submit'].btn {
  width: 100%;
  border: 0 !important;
  outline: none !important;
  margin-top: 10px;
  padding-bottom: 2px;
  display: inline-block;
  font-family: 'Gilroy-ExtraBold', sans-serif;
  color: #0042a0;
  position: relative;
  z-index: 3;
  font-size: 25px;
  height: 70px;
  font-weight: bold;
}

.btn {
  display: inline-flex;
  position: relative;
  width: auto;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  align-items: center;
  justify-content: center;
  background: #fecb1b;
  min-height: 66px;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.4s ease;
}

.pattern-form select.input {
  text-align-last: center;
}

.pattern-form .input {
  display: block;
  width: 100%;
  text-align: center;
}

.subscribe-form-item_footer {
  margin: 10px auto 0;
}

.subscribe-form-item__control--input-email::-webkit-input-placeholder {
  color: #e6e6e6;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

:focus:-moz-placeholder {
  color: transparent;
}

:focus:-ms-input-placeholder {
  color: transparent;
}

select.input {
  padding-right: 65px;
  padding-left: 15px;
  background: url(../images/select-arrow.svg) no-repeat calc(100% - 40px)
    center/25px auto;
}

.h_blog_btn_header {
  text-decoration: none;
  display: block;
  border: 1px solid #a6a6a6;
  box-sizing: border-box;
  border-radius: 20px;
  color: #a6a6a6;
  padding: 8px 20px;
}

.input + .jq-selectbox__select {
  display: none;
}

.catalog_product_center-more_info {
  display: flex;
  align-items: center;
  color: #013f72;
  padding-top: 10px;
}

.catalog_product_center-more_info-offices {
  width: 40%;
}

.catalog_product_center-more_info-tel {
  width: 60%;
}

.catalog_product_center-more_info-tel-a {
  text-decoration: none;
  font-weight: bold;
}

.catalog_product_center-presents {
  display: flex;
  flex-wrap: wrap;
}

.catalog_product_center-presents-block {
  margin: 3px 3px;
  position: relative;
  cursor: default;
}

.catalog_product_center-presents-block_top {
  display: flex;
  align-items: center;
  border: 1px solid #c4c4c4;
  width: 168px;
  padding: 10px 12px;
  border-radius: 40px;
  height: 56px;
}

.catalog_product_center-presents-block_top-left_img {
  max-width: 45px;
}

.catalog_product_center-presents-block_top-right {
  padding-left: 10px;
  color: #164191;
  font-size: 12px;
}

.catalog_product_center-presents-block_bottom {
  zoom: 0;
  display: none;
  width: 240px;
  height: auto;
  padding: 10px 20px;
  position: absolute;
  background: #ffffff;
  box-shadow: 0 1px 66px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  color: #494949;
  bottom: 90%;
  left: 60%;
  z-index: 10;
}

.catalog_product_center-presents-block_top:hover
  .catalog_product_center-presents-block_bottom {
  display: block;
}

._icon_currency {
  font-size: 24px;
  font-weight: normal;
}

.catalog_product_right .c_s_l_oldcost._fix_block_price-old_price-throughline {
  font-size: 14px;
  color: #d0d0d0;
  font-weight: 300;
}

.catalog_product_right ._fix_block_price-old_price {
  text-align: left;
  max-width: 168px;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.catalog_product_right-fix_block_price {
  max-width: 285px;
  width: 100%;
  height: auto;
  background: #ffffff;
  border: 1px solid #ebebeb;
  box-sizing: border-box;
  border-radius: 7px;
  position: relative;
  margin: auto;
  padding: 20px 0;
}

.catalog_product_right-fix_block_price_icon {
  position: absolute;
  width: 30px;
  height: 23px;
  font-family: Roboto, serif;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #fecb1b;
  transform: rotate(45deg);
  right: 10px;
  top: 10px;
}

.catalog_product_right_fix_block_price_top {
  font-weight: bold;
  font-size: 40px;
  line-height: 54px;
  text-align: center;
  color: #0042A6;
}

.catalog_product_right-fix_block_price .timer_desc {
  font-weight: bold;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  color: #0042A6;
}

#CDT._timer_for_sales_product {
  border-top: 1px solid #ebebeb;
  padding-top: 10px;
  margin-top: 10px;
}

.catalog_product_right-fix_block_price #CDT .caption {
  color: #0042A6;
}

.catalog_product_right-fix_block_price #CDT .number {
  color: #0042A6;
}

.catalog_product_btn-new_prin_btn {
  padding: 18px 15px;
  background: #ffffff;
  border: 1px solid #0042A6;
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  border-radius: 7px;
  font-weight: bold;
  font-size: 15px;
  line-height: 20px;
  color: #0042A6;
  display: flex;
  align-items: center;
  margin-top: 20px;
  height: 66px;
  text-decoration: none;
  cursor: pointer;
  max-width: 285px;
  width: 100%;
  transition: all 0.2s ease;
}

.demopotacheometer_btn {
  height: 76px;
}

._catalog_product_center-presents-block-forAll {
  position: absolute;
  top: 12px;
  right: 15%;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.catalog_product_btn-new_prin_btn._yellow_btn {
  height: 90px;
  background: #fecb1b;
  color: #0042A6;
  border: 1px solid #fecb1b;
  transition: all 0.2s ease;
}

.catalog_product_btn-new_prin_btn-text {
  padding-left: 10px;
}

.catalog_product_btn-new_prin_btn-text-with-note-container {
  width: 100%;
}

.catalog_product_btn-new_prin_btn-text-with-note {
  text-align: center;
}

.catalog_product_btn-new_prin_btn-note {
  text-align: center;
  font-size: 12px;
  font-weight: normal;
}

.catalog_product_btn-new_prin_btn:hover {
  background: #0042A6;
  color: #fff;
  transition: all 0.2s ease;
}

.catalog_product_btn-new_prin_btn._yellow_btn:hover {
  color: #fecb1b;
  border: 1px solid transparent;
}

.catalog_product_btn-new_prin_btn._recomended_accesories:hover {
  background: #fecb1b;
  color: #0042A6;
  border: 1px solid transparent;
}

.catalog_product_btn-new_prin_btn-ico {
  width: 35px;
}

._ico_buywithmanaget:before {
  content: url('/templates/new_prin/images/product/product_buy_with_manager.svg');
  transition: all 0.2s ease;
}

.catalog_product_btn-new_prin_btn:hover ._ico_buywithmanaget:before {
  content: url('/templates/new_prin/images/product/product_buy_with_manager_y.svg');
  transition: all 0.2s ease;
}

._ico_consultation:before {
  content: url('/templates/new_prin/images/product/product_consultation.svg?id=1');
  transition: all 0.2s ease;
}

.catalog_product_btn-new_prin_btn:hover ._ico_consultation:before {
  content: url('/templates/new_prin/images/product/product_consultation_w.svg?id=1');
  transition: all 0.2s ease;
}

._ico_testdrive:before {
  content: url('/templates/new_prin/images/product/product_test_drive.svg');
  transition: all 0.2s ease;
}

.catalog_product_btn-new_prin_btn:hover ._ico_testdrive:before {
  content: url('/templates/new_prin/images/product/product_test_drive_w.svg');
  transition: all 0.2s ease;
}

._ico_leasing:before {
  content: url('/templates/new_prin/images/product/product_leasing.svg');
  transition: all 0.2s ease;
}

.catalog_product_btn-new_prin_btn:hover ._ico_leasing:before {
  content: url('/templates/new_prin/images/product/product_leasing_w.svg');
  transition: all 0.2s ease;
}

._ico_trade_in:before {
  content: url('/templates/new_prin/images/product/product_trade_in.svg');
  transition: all 0.2s ease;
}

.catalog_product_btn-new_prin_btn:hover ._ico_trade_in:before {
  content: url('/templates/new_prin/images/product/product_trade_in_w.svg');
  transition: all 0.2s ease;
}

._ico_demopokaz:before {
  content: url('/templates/new_prin/images/product/product_demo_view.svg');
  transition: all 0.2s ease;
}

.catalog_product_btn-new_prin_btn:hover ._ico_demopokaz:before {
  content: url('/templates/new_prin/images/product/product_demo_view_w.svg');
  transition: all 0.2s ease;
}

._ico_utilizaciya:before {
  content: url('/templates/new_prin/images/product/product_utilizaciya.svg');
  transition: all 0.2s ease;
}

.catalog_product_btn-new_prin_btn:hover ._ico_utilizaciya:before {
  content: url('/templates/new_prin/images/product/product_utilizaciya_w.svg');
  transition: all 0.2s ease;
}

._ico_demopo:before {
  content: url('/templates/new_prin/images/product/product_demopo.svg');
  transition: all 0.2s ease;
}

._ico_demopotacheometer:before {
  content: url('/templates/new_prin/images/product/tacheometer.svg');
  transition: all 0.2s ease;
}

.catalog_product_btn-new_prin_btn:hover ._ico_demopo:before {
  content: url('/templates/new_prin/images/product/product_demopo_w.svg');
  transition: all 0.2s ease;
}

.catalog_product_btn-new_prin_btn:hover ._ico_demopotacheometer:before {
  content: url('/templates/new_prin/images/product/tacheometer_w.svg');
  transition: all 0.2s ease;
}

._ico_buyonprinmarket:before {
  content: url('/templates/new_prin/images/product/product_buy_on_prinmarket.svg');
  transition: all 0.2s ease;
}

.catalog_product_btn-new_prin_btn:hover ._ico_buyonprinmarket:before {
  content: url('/templates/new_prin/images/product/product_buy_on_prinmarket_w.svg');
  transition: all 0.2s ease;
}

._ico_utilizaciya:before {
  content: url('/templates/new_prin/images/product/product_utilizaciya.svg');
  transition: all 0.2s ease;
}

.catalog_product_btn-new_prin_btn:hover ._ico_utilizaciya:before {
  content: url('/templates/new_prin/images/product/product_utilizaciya_w.svg');
  transition: all 0.2s ease;
}

._ico_rassrochka:before {
  content: url('/templates/new_prin/images/product/product_rassrochka.svg');
  transition: all 0.2s ease;
}

.catalog_product_btn-new_prin_btn:hover ._ico_rassrochka:before {
  content: url('/templates/new_prin/images/product/product_rassrochka_w.svg');
  transition: all 0.2s ease;
}

._ico_get_ls7:before {
  content: url('/templates/new_prin/images/product/product_get_ls7.svg');
  transition: all 0.2s ease;
}

.catalog_product_btn-new_prin_btn:hover ._ico_get_ls7:before {
  content: url('/templates/new_prin/images/product/product_get_ls7_y.svg');
  transition: all 0.2s ease;
}

.h3_title_form_popup {
  display: none;
}

.new_main_directions {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 60px;
  background: #fff;
  box-shadow: -1px 0 12px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  overflow: hidden;
}

.new_main_directions_item {
  flex: 1 1 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  padding: 22px 0;
  color: #0042A6;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}

.new_main_directions_item:nth-child(n + 2) {
  border-left: 1px solid #bebebe;
}

.new_main_directions_item:hover {
  background: #0042A6;
  color: #fff;
  transition: all 0.2s ease;
}

.new_main_directions_pic {
  height: 75px;
  padding: 0 22px;
  overflow: hidden;
  align-items: center;
  display: flex;
  width: 95px;
}

._ico_survey_equipment-main:before {
  content: url('/templates/new_prin/images/main/survey_equipment-main.svg');
  transition: all 0.2s ease;
}

.new_main_directions_item:hover ._ico_survey_equipment-main:before {
  content: url('/templates/new_prin/images/main/survey_equipment-main_w.svg');
  transition: all 0.2s ease;
}

._ico_prinnet-main:before {
  content: url('/templates/new_prin/images/main/prinnet-main.svg');
  transition: all 0.2s ease;
}

.new_main_directions_item:hover ._ico_prinnet-main:before {
  content: url('/templates/new_prin/images/main/prinnet-main_w.svg');
  transition: all 0.2s ease;
}

._ico_service-main:before {
  content: url('/templates/new_prin/images/main/service-main.svg');
  transition: all 0.2s ease;
}

.new_main_directions_item:hover ._ico_service-main:before {
  content: url('/templates/new_prin/images/main/service-main_w.svg');
  transition: all 0.2s ease;
}

._ico_learning-main:before {
  content: url('/templates/new_prin/images/main/learning-main.svg');
  transition: all 0.2s ease;
}

.new_main_directions_item:hover ._ico_learning-main:before {
  content: url('/templates/new_prin/images/main/learning-main_w.svg');
  transition: all 0.2s ease;
}

.new_main_directions_text {
  flex: 1 1 0;
  padding: 0 5px 0 0;
}

.new_catalog_main-table_block {
  margin-top: 35px;
}

.new_catalog_main-table {
  margin-top: 125px;
}

.new_catalog_main-table_name {
  font-weight: 800;
  font-size: 40px;
  line-height: 54px;
  text-align: center;
  color: #0042A6;
}

.new_catalog_main-table_items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.new_catalog_main-table_item {
  width: calc(33% - 15px);
  margin: 15px 0;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  box-sizing: border-box;
  border-radius: 20px;
  padding-bottom: 45px;
  color: #0042A6;
  overflow: hidden;
  position: relative;
  transition: all 0.2s ease;
}

.new_catalog_main-table_item:hover {
  background: #0042A6;
  color: #fff;
  transition: all 0.2s ease;
}

.new_catalog_main-table_item-inner {
  padding: 0 20px;
}

.new_catalog_main-table_item-inner_link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.new_catalog_main-table_item-inner_image {
  text-align: center;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}

.new_catalog_main-table_item-inner_name {
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  margin-top: 10px;
  display: block;
  text-decoration: none;
  color: #0042A6;
}

.new_catalog_main-table_item:hover .new_catalog_main-table_item-inner_name {
  color: #fff;
}

.new_catalog_main-table_item-inner_list {
  font-weight: normal;
  font-size: 15px;
  line-height: 29px;
  text-align: center;
  margin-top: 20px;
}

.new_catalog_main-table_item-inner_list-item {
  display: block;
  text-decoration: none;
  color: #0042A6;
  z-index: 100;
  position: relative;
}

.new_catalog_main-table_item:hover
  .new_catalog_main-table_item-inner_list-item {
  color: #fff;
}

.new_catalog_main-table_item-inner_list-item:hover {
  text-decoration: underline;
}

.new_blog_page_main {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
}

.new_blog_page_left_article_item {
  width: calc(50% - 80px);
  padding: 0;
  margin: 10px 40px;
  height: auto;
  position: relative;
  border: 1px solid #e5e5e5;
  border-radius: 15px;
  overflow: hidden;
}

.new_blog_page_main_left_article_item {
  width: calc(32% - 10px);
  padding: 0 0 20px;
  margin: 5px;
  height: auto;
  top: 0;
  position: relative;
}

.new_blog_page_left_article_item__inner {
  top: 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.new_blog_page_main_left_article_item:hover
  .new_blog_page_left_article_item__inner {
  box-shadow: 7px 15px 28px rgb(0 0 0 / 25%);
  position: relative;
  top: -10px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.new_main_prin_hear_you-image__sliderBlock {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
}

.new_main_prin_hear_you-image__sliderBlock__item {
  height: 210px;
  width: 210px;
}

.new_main_prin_hear_you-image__sliderBlock__item__link {
  height: 100%;
  display: block;
}

.new_main_prin_hear_you-image__sliderBlock__item__link__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new_main_history_prin-image__sliderBlock {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
}

.new_main_history_prin-image__sliderBlock__item {
  width: 252px;
  height: 175px;
}

.new_main_history_prin-image__sliderBlock__item__link {
  display: block;
  height: 100%;
}

.new_main_history_prin-image__sliderBlock__item__link__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lSSlideOuter.mob_gal {
  display: none;
}

#blogs_menu_main {
  margin-top: 30px;
}

.new_blog_main {
  max-width: 1260px;
  width: 100%;
  margin: 110px auto 0 auto;
}

.new_blog_page_left_article_item_foto_a {
  width: 100%;
  height: 100%;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  background-size: cover;
}

.new_blog_page_left_article_item__inner__top {
  padding: 20px;
  border: 1px solid #e5e5e5;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.new_blog_page_left_article_item_descr {
  padding-bottom: 20px;
  min-height: 120px;
}

.new_blog_page_left_article_item_descr_name_a_span {
  color: #434242;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
}

.new_blog_page_left_article_item_descr_name {
  text-align: left;
}

.new_blog_page_left_article_item_foto {
  width: 100%;
  height: 220px;
  display: flex;
  text-align: center;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  align-items: center;
  position: relative;
  background-size: cover;
}

.new_blog_page_left_article_item_link {
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 100;
  top: 0;
}

.new_id_blogs_main_name,
.new_id_blogs_main_name:hover {
  margin: 50px auto 10px;
  display: block;
  text-decoration: none;
  font-weight: 800;
  font-size: 40px;
  line-height: 54px;
  text-align: center;
  color: #0042A6;
}

.new_id_blogs_additional_text,
.new_id_blogs_additional_text:hover {
  font-size: 20px;
  text-align: center;
  display: block;
  text-decoration: none;
  color: #0042A6;
  width: max-content;
  margin: 10px auto 50px auto;
}

.new_blog_more {
  display: block;
  text-decoration: none;
  color: #0042A6;
  background: #ffcf0c;
  width: max-content;
  padding: 15px 30px;
  border-radius: 7px;
  margin: 0 auto;
  font-weight: bold;
  font-size: 15px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 25%);
  transition: all 0.2s ease;
}

.new_blog_more:hover {
  color: #ffcf0c;
  background: #0042A6;
  transition: all 0.2s ease;
}

.new_block_blue_blog_art {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: linear-gradient(to top, #4165959c, transparent);
}

.new_blog_page_left_article_item_blogs_data {
  width: 20%;
  text-align: right;
  color: #c7c8c8;
  font-size: 12px;
}

.new_main_slider_about {
  max-width: 1260px;
  width: 100%;
  margin: 125px auto 0 auto;
}

.new_main_slider_about_name {
  font-weight: 800;
  font-size: 40px;
  line-height: 54px;
  text-align: center;
  color: #0042A6;
  margin: 0 auto 50px auto;
}

.new_main_serices_prin {
  max-width: 1260px;
  width: 100%;
  margin: 125px auto 0 auto;
}

.new_main_serices_prin-name {
  font-weight: 800;
  font-size: 40px;
  line-height: 54px;
  text-align: center;
  color: #0042A6;
  margin: 0 auto 50px auto;
}

.new_main_serices_prin-image {
  text-align: center;
}

.new_main_serices_prin-image-obj {
  width: 100%;
  max-width: 1260px;
}

.new_main_prin_hear_you {
  max-width: 1260px;
  width: 100%;
  margin: 125px auto 0 auto;
}

.new_main_prin_hear_you-name {
  font-weight: 800;
  font-size: 40px;
  line-height: 54px;
  text-align: center;
  color: #0042A6;
  margin: 0 auto 50px auto;
}

.new_main_prin_hear_you-image {
  margin-top: 30px;
  text-align: center;
}

.new_main_prin_hear_you-image-obj {
  width: 100%;
  max-width: 1260px;
}

.lSSlideWrapper .lSAction > a {
  background-color: rgba(26, 26, 26, 0.3);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 50%;
  height: 58px;
  width: 58px;
  display: block;
  top: 50%;
  cursor: pointer;
  position: absolute;
  z-index: 99;
  margin-top: -16px;
  -webkit-transition: background-color 0.35s linear 0s;
  transition: background-color 0.35s linear 0s;
}

.lSSlideWrapper .lSAction > a:hover {
  background-color: #005ce0;
}

.lSSlideWrapper .lSAction > .lSPrev {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyOSAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAuOTM5MzM5IDEwLjkzOTNDMC4zNTM1NTIgMTEuNTI1MSAwLjM1MzU1MiAxMi40NzQ5IDAuOTM5MzM5IDEzLjA2MDdMMTAuNDg1MyAyMi42MDY2QzExLjA3MTEgMjMuMTkyNCAxMi4wMjA4IDIzLjE5MjQgMTIuNjA2NiAyMi42MDY2QzEzLjE5MjQgMjIuMDIwOCAxMy4xOTI0IDIxLjA3MTEgMTIuNjA2NiAyMC40ODUzTDQuMTIxMzIgMTJMMTIuNjA2NiAzLjUxNDcyQzEzLjE5MjQgMi45Mjg5MyAxMy4xOTI0IDEuOTc5MTkgMTIuNjA2NiAxLjM5MzRDMTIuMDIwOCAwLjgwNzYxMSAxMS4wNzExIDAuODA3NjExIDEwLjQ4NTMgMS4zOTM0TDAuOTM5MzM5IDEwLjkzOTNaTTI5IDEwLjVMMiAxMC41VjEzLjVMMjkgMTMuNVYxMC41WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+);
  left: 15px;
}

.lSSlideWrapper .lSAction > .lSNext {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyOSAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTI4LjA2MDcgMTMuMDYwN0MyOC42NDY0IDEyLjQ3NDkgMjguNjQ2NCAxMS41MjUxIDI4LjA2MDcgMTAuOTM5M0wxOC41MTQ3IDEuMzkzNEMxNy45Mjg5IDAuODA3NjExIDE2Ljk3OTIgMC44MDc2MTEgMTYuMzkzNCAxLjM5MzRDMTUuODA3NiAxLjk3OTE5IDE1LjgwNzYgMi45Mjg5MyAxNi4zOTM0IDMuNTE0NzJMMjQuODc4NyAxMkwxNi4zOTM0IDIwLjQ4NTNDMTUuODA3NiAyMS4wNzExIDE1LjgwNzYgMjIuMDIwOCAxNi4zOTM0IDIyLjYwNjZDMTYuOTc5MiAyMy4xOTI0IDE3LjkyODkgMjMuMTkyNCAxOC41MTQ3IDIyLjYwNjZMMjguMDYwNyAxMy4wNjA3Wk0wIDEzLjVIMjdWMTAuNUgwVjEzLjVaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=);
  right: 15px;
}

/* Sliders */
.light-container {
  margin: 0 auto;
  width: 960px;
}

.lSSlideOuter {
  border-radius: 9px;
  box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.25);
}

ul.light-slider {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.light-slider li {
  margin: 0;
  padding: 0;
}

.lSSlideWrapper .lSAction > a {
  background-color: rgba(26, 26, 26, 0.3);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 50%;
  height: 58px;
  width: 58px;
  display: block;
  top: 50%;
  cursor: pointer;
  position: absolute;
  z-index: 99;
  margin-top: -16px;
  -webkit-transition: background-color 0.35s linear 0s;
  transition: background-color 0.35s linear 0s;
}

.lSSlideWrapper .lSAction > a:hover {
  background-color: #005ce0;
}

.lSSlideWrapper .lSAction > .lSPrev {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyOSAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAuOTM5MzM5IDEwLjkzOTNDMC4zNTM1NTIgMTEuNTI1MSAwLjM1MzU1MiAxMi40NzQ5IDAuOTM5MzM5IDEzLjA2MDdMMTAuNDg1MyAyMi42MDY2QzExLjA3MTEgMjMuMTkyNCAxMi4wMjA4IDIzLjE5MjQgMTIuNjA2NiAyMi42MDY2QzEzLjE5MjQgMjIuMDIwOCAxMy4xOTI0IDIxLjA3MTEgMTIuNjA2NiAyMC40ODUzTDQuMTIxMzIgMTJMMTIuNjA2NiAzLjUxNDcyQzEzLjE5MjQgMi45Mjg5MyAxMy4xOTI0IDEuOTc5MTkgMTIuNjA2NiAxLjM5MzRDMTIuMDIwOCAwLjgwNzYxMSAxMS4wNzExIDAuODA3NjExIDEwLjQ4NTMgMS4zOTM0TDAuOTM5MzM5IDEwLjkzOTNaTTI5IDEwLjVMMiAxMC41VjEzLjVMMjkgMTMuNVYxMC41WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+);
  left: 15px;
}

.lSSlideWrapper .lSAction > .lSNext {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyOSAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTI4LjA2MDcgMTMuMDYwN0MyOC42NDY0IDEyLjQ3NDkgMjguNjQ2NCAxMS41MjUxIDI4LjA2MDcgMTAuOTM5M0wxOC41MTQ3IDEuMzkzNEMxNy45Mjg5IDAuODA3NjExIDE2Ljk3OTIgMC44MDc2MTEgMTYuMzkzNCAxLjM5MzRDMTUuODA3NiAxLjk3OTE5IDE1LjgwNzYgMi45Mjg5MyAxNi4zOTM0IDMuNTE0NzJMMjQuODc4NyAxMkwxNi4zOTM0IDIwLjQ4NTNDMTUuODA3NiAyMS4wNzExIDE1LjgwNzYgMjIuMDIwOCAxNi4zOTM0IDIyLjYwNjZDMTYuOTc5MiAyMy4xOTI0IDE3LjkyODkgMjMuMTkyNCAxOC41MTQ3IDIyLjYwNjZMMjguMDYwNyAxMy4wNjA3Wk0wIDEzLjVIMjdWMTAuNUgwVjEzLjVaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=);
  right: 15px;
}

.new_main_offices_prin {
  max-width: 1260px;
  width: 100%;
  margin: 125px auto 0 auto;
}

.new_main_offices_prin-name {
  font-weight: 800;
  font-size: 40px;
  line-height: 54px;
  text-align: center;
  color: #0042A6;
  margin: 0 auto 50px auto;
}

#new_advantages {
  margin-top: 50px;
  margin-right: -30px;
  margin-left: -30px;
}

.new_row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.new_row .new_column-2 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 15px;
  padding-left: 15px;
}

#new_advantages > .new_column-2 {
  padding: 0 30px 30px;
}

.new_advantages-line {
  position: relative;
  display: inline-block;
}

.new_advantages-header {
  font-size: 20px;
  font-weight: 700;
  color: #0042A6;
}

.new_advantages-line:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 150px;
  background-color: #0042A6;
  right: -160px;
  top: 50%;
  margin-top: 1px;
}

.new_advantages-header {
  font-size: 20px;
  font-weight: 700;
  color: #0042A6;
}

.new_img-responsive {
  width: 100%;
  height: auto;
}

.new_advantages-header > span {
  display: inline-block;
  vertical-align: top;
}

.new_advantages-number + span {
  line-height: 1.45em;
  padding-top: 15px;
  padding-left: 15px;
}

.new_advantages-number {
  font-size: 110px;
  line-height: 110px;
  font-weight: 800;
}

.new_advantages-list {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#new_advantages.new_row .new_card {
  height: auto;
  padding: 40px;
  max-width: 450px;
  box-shadow: 1px 4px 17px 0 rgba(0, 0, 0, 0.25);
}

.new_row .new_card {
  display: block;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  height: 100%;
}

.new_advantages-list li {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0 0 70px;
  padding: 0 0 30px;
  position: relative;
}

.new_advantages-list li:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 72px;
  background-color: #0042A6;
  left: 0;
  top: 100%;
}

#new_advantages.new_row .new_card .new_card-header {
  font-weight: 800;
  margin-top: 0;
  font-size: 25px;
  line-height: 1.4em;
  text-align: left;
}

.new_row .new_card .new_card-header {
  display: block;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin: 30px 0;
}

#new_advantages.new_row .new_card .new_card-body {
  padding: 0;
}

.new_row .new_card .new_card-body {
  display: block;
  padding: 0 80px 100px;
}

.new_main_history_prin {
  max-width: 1260px;
  width: 100%;
  margin: 125px auto 0 auto;
}

.new_main_history_prin-name {
  font-weight: 800;
  font-size: 40px;
  line-height: 54px;
  text-align: center;
  color: #0042A6;
  margin: 0 auto 50px auto;
}

.new_main_history_prin-image {
  text-align: center;
}

.new_main_history_prin-image-obj {
  width: 100%;
  max-width: 1260px;
}

.new_main_history_prin-btn {
  margin: 50px auto;
  width: max-content;
}

.new_light-slider_image {
  width: 100%;
}

.new_c_s_l_sale {
  font-weight: bold;
  font-size: 25px;
  line-height: 34px;
  color: #fecb1b;
  width: 100%;
  z-index: 10;
}

.catalog_section_item_icon_block_left {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  z-index: 10;
  padding: 5px 0 0 10px;
}

.catalog_section_item_icon_block_right {
  position: absolute;
  top: 0;
  right: 10px;
  width: 70%;
  z-index: 10;
  padding: 5px 0 0 10px;
  text-align: right;
}

.new_status_left {
  margin: 5px 0;
}

.new_status_right {
  border: 1px solid #d7d7d7;
  box-sizing: border-box;
  border-radius: 5px;
  font-weight: bold;
  font-size: 10px;
  line-height: 14px;
  color: #0042A6;
  padding: 3px 5px;
  margin: 5px 0 5px auto;
  width: max-content;
  background: #fff;
}

.new_status_image {
  width: 100%;
  max-width: 25px;
}

.category_item_currency_from {
  font-weight: normal;
  font-size: 15px;
  line-height: 20px;
  color: #0042A6;
}

.category_item_currency {
  font-weight: normal;
  font-size: 15px;
  line-height: 20px;
  color: #0042A6;
}

.new_c_s_l_oldcost {
  display: inline-block;
  position: absolute;
  color: #b8b3ad;
  font-size: 14px;
  font-weight: bold;
  margin: 3px 0;
  top: 0;
}

.new_c_s_l_acost {
  font-weight: bold;
  font-size: 25px;
  line-height: 34px;
  color: #0042A6;
}

.new_c_s_l_pic {
  position: relative;
  width: 100%;
  height: 190px;
  text-align: center;
  overflow: hidden;
}

.new_c_s_l_compare {
  width: 40px;
  padding-top: 18px;
}

.new_c_s_l_cost {
  flex: 1 1 0;
  position: relative;
  padding-top: 18px;
}

.new_catalog_section_item {
  position: relative;
  /* width: 244px; */
  max-height: 300px;
  margin: 5px;
}

.catalog_section_items .new_catalog_section_item {
  width: calc(33.33% - 10px);
}

.new_catalog_section_item-inner {
  height: 300px;
  border: 1px solid #f1f0ef;
  border-radius: 5px;
  padding: 0 0 10px;
}

.new_catalog_section_item:hover .new_descr_short {
  display: block;
}

.new_catalog_section_item:hover .new_catalog_section_item-inner {
  position: relative;
  height: auto;
  z-index: 100;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  width: 100%;
  transition: all 0.25s ease-out;
}

.new_catalog_section_item:hover .new_to_item_product {
  display: block;
}

.new_descr_short {
  z-index: 101;
  width: calc(100% + 2px);
  display: none;
  padding: 0 15px;
  text-align: left;
  border-top: none;
  font-size: 11px;
  margin: -1px;
  box-sizing: border-box;
  border-radius: 5px;
}

.new_descr_short p {
  margin: 5px 0;
}

.new_descr_short_btn {
  font-weight: bold;
  display: none;
  position: absolute;
  bottom: 100px;
  left: 12px;
  border: none;
  background: #0042A6;
  color: white;
  border-radius: 50%;
  padding: 5px;
  width: 30px;
  height: 30px;
  font-size: 15px;
}

.new_to_item_product {
  display: none;
  z-index: 10;
  top: 150px;
  background: #fecb1b;
  position: absolute;
  color: #00489d;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  padding: 10px 20px;
  left: 33%;
  font-weight: bold;
  text-decoration: none;
}

._font10 {
  font-size: 10px;
}

.cat_prod_dop_section-blog_items {
  display: flex;
  flex-wrap: wrap;
}

.cat_prod_dop_section-blog_item {
  width: calc(33% - 40px);
  height: 350px;
  padding: 0;
  margin: 20px;
  position: relative;
  display: flex;
}

.cat_prod_dop_section-blog_item-inner {
  border: 1px solid #bebebe;
  border-radius: 15px;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  top: 0;
  height: 350px;
  position: relative;
}

.cat_prod_dop_section-blog_item:hover .cat_prod_dop_section-blog_item-inner {
  box-shadow: 7px 15px 28px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: -10px;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.section-characteristics {
  background: #0042A6;
  position: relative;
  z-index: 3;
  margin-top: 150px;
  border-radius: 10px;
  padding: 20px;
}

.section-characteristics .new_container-characteristics {
  position: relative;
  z-index: 2;
}

.new_container-characteristics {
  max-width: 100%;
  position: relative;
  padding: 10px;
  border-radius: 10px;
  border: 5px solid #fff;
}

.new_row-characteristics {
  width: 100%;
  display: flex;
}

.characteristics {
  display: flex;
  min-height: 490px;
}

.characteristics__image {
  display: inline-block;
  width: 578px;
  margin-top: -55px;
}

.characteristics__image img {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
}

.characteristics__info {
  display: inline-block;
  width: calc(100% - 578px);
  position: relative;
  padding-left: 60px;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 55px;
  padding-bottom: 50px;
}

.characteristics__info h2 {
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
  color: #ffffff;
}

.new_characteristics-btn {
  display: inline-flex;
  position: relative;
  width: auto;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  align-items: center;
  justify-content: center;
  background: #fecb1b;
  min-height: 66px;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.4s ease;
}

.characteristics__info .new_characteristics-btn {
  min-width: 284px;
  padding-right: 86px;
  padding-left: 8px;
  min-height: 73px;
  margin-top: 64px;
}

.new_characteristics-btn::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  background: linear-gradient(180deg, #fff500 49.32%, #ffb800 100%);
  transition: 0.4s ease;
}

.characteristics__info .new_characteristics-btn span {
  padding-bottom: 1px;
}

.new_characteristics-btn span {
  display: inline-block;
  font-family: 'Gilroy-ExtraBold', sans-serif;
  color: #0042a0;
  position: relative;
  z-index: 3;
  font-size: 25px;
}

.characteristics__info .new_characteristics-btn::after {
  content: '';
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 74px;
  height: 55px;
  border-left: 2px solid #0042a0;
  background: url(/templates/new_prin/images/product/download-icon.svg)
    no-repeat calc(50% - 1px) calc(50% - 1px) / 32px auto;
  z-index: 3;
}

.new_product_recomended_accesories {
  background: #0042A6;
  border-radius: 10px;
  padding: 40px 20px 20px;
  margin-top: 120px;
}

._hidden {
  display: none;
}

.new_head_t_c {
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
  text-align: center;
  color: #ffffff;
}

.new_head_t_c a {
  color: #fff;
}

.new_head_t_c a:hover,
.new_head_t_c a:visited {
  color: #fff;
}

.new_iframe_suit {
  width: 100%;
  height: 500px;
}

.new_iframe_suit::-webkit-scrollbar {
  width: 0;
}

.new_iframe_recomended {
  width: 100%;
  height: 470px;
}

.new_iframe_recomended::-webkit-scrollbar {
  width: 0;
}

.new_product_recomended_accesories-btn_inner {
  max-width: max-content;
  margin: 40px auto;
  display: block;
}

.new_product_recomended_accesories-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.new_product_recomended_accesories-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease-out;
}
.new_product_recomended_accesories-content {
  display: none;
  height: 470px;
  position: relative;
}

.spin-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
}

.spin-wrapper .spinner {
  position: absolute;
  height: 60px;
  width: 60px;
  border: 3px solid transparent;
  border-top-color: #fff;
  top: 50%;
  left: 50%;
  margin: -30px;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

.spinner:before,
.spinner:after {
  content: '';
  position: absolute;
  border: 3px solid transparent;
  border-radius: 50%;
}

.spinner:before {
  border-top-color: #ffcf0c;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  animation: spin 3s linear infinite;
}

.spinner:after {
  border-top-color: #0042A6;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  animation: spin 4s linear infinite;
}

.catalog_product_right_block_price_block {
  max-width: 285px;
  width: 100%;
  height: auto;
  background: #ffffff;
  border: 1px solid #ebebeb;
  box-sizing: border-box;
  border-radius: 7px;
  position: relative;
  margin: auto;
  padding: 20px 0;
}

.catalog_product_right_block_price_block_inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog_product_right_block_price_pair {
  width: fit-content;
}

.catalog_product_cost {
  color: #0042A6;
  font-size: 30px;
  font-weight: bold;
}

.catalog_product_right_block_old_price {
  position: relative;
  font-size: 15px;
}

.catalog_product_right_block_old_price {
  display: inline-block;
  color: #b8b3ad;
  margin: 3px 0;
  top: 0;
}

.catalog_product_right_block_old_price_throughline {
  text-decoration: line-through;
}

#cases_for_product .blog_page_left_article_item_descr_name_a {
  font-size: 16px;
}
/*Блок Лид-магнит*/
.lead-magnet_container {
  /*display: none;*/
  /*width: 100%;
  height: 498px;*/
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 1px 0;
}

.lead-magnet {
  width: 100%;
  height: 438px;
  background: #0042A6;
  border-radius: 10px;
}

.new-btn {
  display: flex;
  position: relative;
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 77px;
  margin-top: 18px;
  text-decoration: none;
  border: 0px;
  text-align: center;
  text-decoration: none;
  color: #004271;
  font-family: "OpenSans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  background: #FECB1B;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px !important;
  cursor: pointer;
  outline: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.3s ease;
}

.new-btn span {
  display: inline-block;
  font: inherit;
  color: inherit;
  padding-top: 1px;
}

.new-btn:hover {
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  background: #0042A6;
  color: #fff;
}

.new-btn:focus,
.new-btn.focus {
  outline: none;
}


.section-pdf-file {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(100vw - 20px);
  margin-top: 120px;
}

.section-pdf-file * {
  box-sizing: border-box;
  text-align: left;
}

.pdf-file {
  display: block;
  width: 100%;
  padding: 16px;
  background: #004271;
  border-radius: 10px;
}

.pdf-file__content {
  display: flex;
  width: 100%;
  position: relative;
  min-height: 405px;
  border: 2px solid #FFFFFF;
  border-radius: 10px;
}

.pdf-media {
  display: inline-flex;
  position: relative;
  min-height: 100%;
  padding-left: 15px;
  width: 560px;
}

.pdf-media img {
  display: block;
  width: calc(100% - 4px);
  position: absolute;
  left: 14px;
  bottom: 10px;
}

.pdf-info {
  display: inline-block;
  width: 585px;
  max-width: calc(100% - 560px);
  padding-left: 52px;
  padding-right: 60px;
  padding-top: 16px;
  padding-bottom: 22px;
  margin-top: auto;
  margin-bottom: auto;
}

.pdf-info h3 {
  display: block;
  font-family: "OpenSans", sans-serif;
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
  color: #fff;
}

.pdf-info .new-btn {
  display: inline-flex;
  padding-left: 78px;
  padding-right: 78px;
  margin-top: 36px;
  margin-right: auto;
  width: auto;
}

.pdf-info .new-btn .btn-icon {
  display: inline-flex;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 46px;
}

.pdf-info .new-btn .btn-icon svg {
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
}

.pdf-info .new-btn .btn-icon svg * {
  transition: all 0.3s ease;
}

.pdf-info .new-btn:hover .btn-icon svg * {
  fill: #0057cf;
}

.pdf-info .new-btn:hover {
  background: #FECB1B;
  color: #0057cf;
}

/*Форма лид магнита*/
input.new-input {
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  box-shadow: none !important;
}

input.new-input::-webkit-outer-spin-button,
input.new-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

input.new-input::placeholder {
  opacity: 1 !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input.new-input[type=number] {
  -moz-appearance: textfield !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input.new-input::-moz-placeholder {
  background: transparent !important;
  padding-left: 0px !important;
}

.new-input {
  display: block;
  width: 100%;
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  box-shadow: none !important;
  font-family: "Gilroy-Regular", sans-serif;
  font-weight: normal;
  color: #003FBA;
  font-size: 18px;
  padding-left: 15px;
  padding-right: 15px;
  border: 1px solid #ACACAC;
  box-sizing: border-box;
  border-radius: 17px;
  box-sizing: border-box;
  text-align: center;
  height: 67px;
  line-height: 67px;
  padding-top: 0px;
  margin-top: 19px;
  transition: 0.4s ease;
}
.new-input::placeholder {
  font: inherit !important;
  color: #969696 !important;
}
.new-input:focus::placeholder {
  color: transparent !important;
}

select.new-input {
  padding-right: 65px;
  padding-left: 15px;
  background: url(../img/select-arrow.svg) no-repeat calc(100% - 26px) calc(50% + 2px)/23px auto;
}
select.new-input:invalid {
  color: #919191 !important;
}

.pdf-form {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.pdf-form__media {
  display: inline-block;
  position: relative;
  width: calc(50% + 5px);
  overflow: hidden;
  min-height: 100%;
  background: #004271;
}

.pdf-form__media img {
  display: block;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 24px);
  height: auto;
}

.pdf-form__form {
  display: inline-block;
  position: relative;
  width: calc(50% - 5px);
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 26px;
  padding-bottom: 37px;
}

.contact-form {
  display: block;
  width: 100%;
}

.contact-form h2 {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 30px;
  line-height: 41px;
  font-family: "OpenSans", sans-serif;
  font-weight: 700;
  color: #013F72;
}

.contact-form p {
  display: block;
  width: 100%;
  text-align: center;
  font-family: "OpenSans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #013F72;
  margin-top: 16px;
}

.contact-form form {
  display: block;
  width: 100%;
  /*max-width: 249px;*/
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 10px;
}

.contact-form form .new-btn {
  height: 67px;
  border-radius: 17px !important;
  font-family: "Gilroy-Bold", sans-serif;
  font-weight: normal;
  color: #0042A6;
  margin-top: 19px;
}

.contact-form form .new-btn:hover {
  background: #FECB1B;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0);
}


@media (max-width: 1200px) {

.pdf-media {
  width: 540px;
}

.pdf-info {
  max-width: calc(100% - 540px);
  padding-left: 42px;
  padding-right: 30px;
}

.pdf-info .new-btn {
  margin-top: 28px;
}

}

@media (max-width: 1000px) {

.pdf-file__content {
  flex-wrap: wrap;
  min-height: auto;
}

.pdf-media {
  width: 100%;
  padding-top: 50px;
}

.pdf-media img {
  display: block;
  width: 476px;
  max-width: calc(100% - 20px);
  position: relative;
  left: calc(50% - 2px);
  transform: translateX(-50%);
  bottom: auto;
}

.pdf-info {
  width: 100%;
  max-width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 45px;
  padding-top: 26px
}

.pdf-info h3 {
  text-align: center;
  width: 100%;
}

.pdf-info .new-btn {
  margin-left: 0px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}



.pdf-form__media {
  display: none
}

.pdf-form__form {
  width: 100%;
}

}

@media (max-width: 768px) {

.pdf-media img {
  width: 408px;
}

}

@media (max-width: 480px) {

.section-pdf-file {
  max-width: calc(100vw - 30px);
}

.pdf-media {
  padding-top: 38px;
}

.pdf-media img {
  width: 368px;
}

.pdf-info {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 35px;
  padding-top: 20px
}

.pdf-info h3 {
  font-size: 21px;
  line-height: 28px;
}

.pdf-info .new-btn {
  margin-top: 24px
}

.pdf-form__form {
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 28px;
  padding-bottom: 45px;
}

.contact-form .new-input {
  margin-top: 11px;
}

.contact-form form .new-btn {
  margin-top: 11px;
}

}

.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0px;
  top: 0px;
  background: rgba(0, 87, 207, 0.9);
  opacity: 0;
  pointer-events: none;
  z-index: -222;
  transition: opacity 0.4s ease;
}

.overlay._active {
  cursor: pointer;
  pointer-events: auto;
  position: fixed;
  opacity: 1;
  z-index: 105;
  transition: opacity 0.4s ease;
}

.modal {
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 898px;
  max-width: calc(100% - 22px);
  background: #fff;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: -2;
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  transition: opacity 0.3 ease;
}
.modal._active {
  opacity: 1;
  z-index: 9999999;
}

.modal h4 {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 18px;
}


@media (max-width: 1200px) {

}

@media (max-width: 1000px) {

.modal {
  width: 442px;
}

}

@media (max-width: 768px) {

}

@media (max-width: 480px) {


}
/* Формы Б24 */

.modal-b24 .pattern-form{
  padding: 14px 35px 20px;
}
.modal-b24-2 .pattern-form{
  padding: 14px 20px 20px;
}
.modal-b24-2 .pattern-form{
  text-align: left;
}
div.b24-form-wrapper.b24-form-shadow{
  border-radius: 0;
  box-shadow: none;
}
div.b24-form .b24-form-control-container{
  text-align: left;
}
div.b24-window-scrollable{
  overflow: hidden;
  border-radius: 5px;
  padding: 7px;
}
div.b24-form .b24-form-wrapper, .b24-form-wrapper .b24-form-btn{
  border-radius: 17px;
}
.b24-form-wrapper .b24-form-btn{
  background-color: #FECB1B;
  color: #0042A6;
  font-family: "Gilroy-Bold", sans-serif;
  font-weight: 700;
  font-size: 18px;
  /*box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);*/
  min-height: 64px;
}
.modal-b24-2 .b24-form-wrapper .b24-form-btn{
  min-height: 60px;
}
.b24-form-wrapper .b24-form-btn:hover{
  /*box-shadow: 0px 0px 0px rgb(0 0 0 / 25%);*/
  background-color: #0042A6;
  color: #ffffff;
}
div.b24-form .b24-form-wrapper{
  padding: 10px;
}
div.b24-form .b24-form-wrapper{
  padding: 0;
}
div.b24-form .b24-form-content .b24-form-control-container input, div.b24-form .b24-form-content .b24-form-control-container textarea{
  border: 0.8px solid #D0D0D0;
  border-radius: 17px;
  text-align: center;
  color: #B9B9B9;
  background-color: #fff;
}
.modal-b24-2 div.b24-form .b24-form-content .b24-form-control-container textarea{
  text-align: left;
}
div.b24-form .b24-form-content .b24-form-control-container input:focus, div.b24-form .b24-form-content .b24-form-control-container textarea:focus {
  color: #0042A6;;
  border-color: #0042A6;;
  transition: 0.3s ease;
}
div.b24-window-panel.b24-window-panel-pos-center{
    height: 490px;
    top: 50%;
    margin-top: -245px;
}

div.b24-form .b24-form-header-title{
  color: #013F72;
  font-family: "OpenSans", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 25px;
}
div.b24-form .b24-form-header-description{
  color: #013F72;
  font-family: "OpenSans", sans-serif;
  opacity: 1;
  margin-bottom: 10px;
}
div.b24-form .b24-form-dropdown-container{
  height: 170px;
  border-radius: 10px;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
div.popup.modal-b24-bs .b24-form-dropdown-container{
  height: auto;
  max-height: 290px !important;
}
div.popup.modal-b24-bs .popup__body,
div.popup.modal-b24-bs .pattern-form{
  max-width: 460px;
}
div.b24-form .b24-form-field-datetime .b24-form-dropdown-container{
  height: auto;
}
div.b24-form .vdpCellContent{
  font-size: 1.2em;
  width: 1.657em;
  height: 1.457em;
  line-height: 1.457em;
}
div.b24-form .b24-form-control-list-selector-item-title{
  color: #013F72;
}
div.b24-form form{
  display: block;
}
div.b24-form .b24-form-field .b24-form-control-container.b24-form-control-icon-after input{
  padding-right: 10px;
}
div.b24-form .b24-form-state-container .b24-form-success{
  background-color: #ffffff;
}
div.b24-form .b24-form-dropdown-container::-webkit-scrollbar { width: 0; }
div.b24-form .b24-form-padding-side{
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 0;
}
div.b24-form .b24-form-control-alert-message{
  /* display: none; */
}
div.b24-form .b24-form-control-alert {
  margin-bottom: 15px !important;
}
div.b24-form .b24-form-icon-remove{
  display: none;
}
div.b24-form .b24-form-sign{
  display: none;
}
span.b24-form-field-agreement-link {
  font-weight: 700;
  text-decoration: underline;
}
@media screen and (max-width: 575px) {
    div.b24-window-panel.b24-window-panel-pos-center{
    height: 530px;
    max-width: 380px;
    }
    .b24-window .b24-window-panel {
        overflow: revert;
    }
    .b24-form .b24-window-panel>div>.b24-window-scrollable{
        bottom: auto;
    }
    div.b24-form .b24-form-header-title{
      font-size: 22px;
    }
    div.b24-form form{
      max-width: 320px;
    }
    div.b24-form .b24-form-header-description{
      /*display: none;*/

    }
    div.modal-b24 .pattern-form .b24-form-header-title, 
    div.modal-b24-2 .pattern-form .b24-form-header-title{
      font-size: 25px;
      line-height: 25px;
    }
    div.modal-b24 div.b24-form form, 
    div.modal-b24-2 div.b24-form form{
      max-width: 345px;
    }
}
@media (max-width: 512px){
    .b24-form .b24-window .b24-window-scrollable {
    padding-bottom: 20px;
    }
}

/*Конец блока и формы лид магнита*/

/* Всплывающая форма подписаться Б24 */
.peresvoni_hide {
  display: none;
}

.popup.popup_right._active {
  overflow-x: hidden;
  height: auto;
  bottom: 0;
  width: auto;
  right: 0;
  left: inherit;
  top: inherit;
  z-index: 9999990;
}

.popup.popup_right._active::before {
  opacity: 0;
  height: auto;
  width: auto;
}

.popup_form_unisender .pattern-form {
  background: linear-gradient(145.79deg, #1061E6 5.25%, #3878FE 96.57%);
  border: 2px solid #FFFFFF;
  box-sizing: border-box;
  box-shadow: 4px 7px 17px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}

.popup_form_unisender .pattern-form:before {
  content: url("/templates/new_prin/images/form/_unisender_letter_tl.png");
  position: absolute;
  left: calc(0px - 80px);
  top: -35px;
}

.popup_form_unisender .pattern-form:after {
  content: url("/templates/new_prin/images/form/_unisender_letter_br.png");
  position: absolute;
  right: calc(0px - 87px);
  bottom: 45px;
}

.popup_form_unisender .popup__body {
  border-radius: 20px;
  overflow: inherit;
}

.popup_right .popup__content.modal-b24-footer {
  justify-content: end;
  align-items: end;
}

.popup_form_unisender_close {
  position: absolute;
  top: -30px;
  right: 0;
  filter: invert(.2);
  cursor: pointer;
}

.popup_form_unisender ._name_form {
  font-weight: bold;
  font-size: 35px;
  line-height: 131.18%;
  text-align: center;
  color: #FFFFFF;
}

.popup_form_unisender ._h3_form._default_form {
  font-weight: normal;
  font-size: 25px;
  line-height: 34px;
  text-align: center;
  color: #FFFFFF;
  text-shadow: none;
}

._popup_form_unisender_image {
  position: absolute;
  top: -30px;
  left: calc(50% - 49px);
}

._popup_form_unisender_image_obj {
  width: 100%;
}

.popup_form_unisender .pattern-form .input,
.popup_form_unisender button[type="submit"].btn {
  max-width: 250px;
  margin: 10px auto;
  display: block;
  font-size: 18px;
}

.form_unisender_mobile_btn {
  display: block;
  position: fixed;
  bottom: -100%;
}

.form_unisender_mobile_btn._active {
  display: flex;
  bottom: 0;
  width: 263px;
  height: 63px;
  background: linear-gradient(145.79deg, #1061E6 5.25%, #3878FE 96.57%);
  border: 2px solid #FFFFFF;
  box-sizing: border-box;
  box-shadow: 4px 7px 17px rgba(0, 0, 0, .25);
  border-radius: 20px 20px 0px 0px;
  z-index: 100;
  left: calc(50% - 130px);
  right: 0;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 15px;
  line-height: 131.18%;
  text-align: center;
  color: #FFFFFF;
}

.form_unisender_mobile_btn_icon_close {
  position: absolute;
  right: 5%;
}
.popup__content.modal-b24-footer div.b24-form .b24-form-wrapper{
  background-color: transparent;
  padding: 0;
}
.popup__content.modal-b24-footer div.b24-form div.b24-form-control-container input{
  background-color: white;
  max-width: 250px;
  margin: 0 auto;
  height: 66px;
}
.popup__content.modal-b24-footer div.b24-form .b24-form-btn-block{
  max-width: 250px;
  margin: 0 auto;
}
.popup__content.modal-b24-footer div.b24-form .b24-form-btn-block button{
  height: 66px;
}
.popup__content.modal-b24-footer div.b24-form .b24-form-header-padding{
  padding: 0;
}
.popup__content.modal-b24-footer div.b24-form .b24-form-sign, .popup__content.modal-b24-footer div.b24-form .b24-form-control-alert-message{
  display: none;
}
.popup__content.modal-b24-footer div.b24-form .b24-form-control-label{
  font-size: 18px;
}
.popup__content.modal-b24-footer div.b24-form .b24-form-padding-side{
  padding-top: 0;
  padding-bottom: 0;
}
.popup__content.modal-b24-footer div.b24-form .b24-form-field{
  margin-bottom: 0;
}
.popup__content.modal-b24-footer div.b24-form .b24-form-control-alert {
  margin-bottom: 0 !important;
}
.b24-window-mounts .b24-window-popup.b24-window-popup-p-center{
  z-index: 9999999999999999 !important;
}
.popup.popup_right.popup_form_unisender._active{
  z-index: 99999999999999 !important;
}
.popup__content.modal-b24-footer div.b24-form .b24-form-control-container{
  text-align: center;
}
.subscribe_form div.b24-form .b24-form-wrapper,
.blog_page_subsribe div.b24-form .b24-form-wrapper{
  background-color: transparent;
}
.subscribe_form div.b24-form .b24-form-state-container .b24-form-success{
  background-color: #eee;
}
.blog_page_subsribe div.b24-form .b24-form-state-container .b24-form-success{
  background-color: transparent;
}
div.b24-form .b24-form-recaptcha{
  display: none;
}
.subscribe_form div.b24-form div.b24-form-control-container input,
  .blog_page_subsribe div.b24-form div.b24-form-control-container input {
  height: 42px;
  line-height: 40px;
  border: #e7e7e7 1px solid;
  border-radius: 5px;
  background: #fff;
  padding: 0 10px;
  color: #0042A68a;
  font-size: 13px;
  font-weight: bold;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.subscribe_form div.b24-form div.b24-form-control-container input:focus,
  .blog_page_subsribe div.b24-form div.b24-form-control-container input:focus{
	border: 1px solid #0042A6; 
  box-shadow: 0px 0px 10px 1px #0042A6;
}
.subscribe_form div.b24-form .b24-form-control-label,
.blog_page_subsribe div.b24-form .b24-form-control-label{
  display: none;
}
.subscribe_form div.b24-form .b24-form-padding-side,
  .blog_page_subsribe div.b24-form .b24-form-padding-side {
  padding-left: 0px;
  padding-right: 0px;
}
.subscribe_form .b24-form-header-padding,
  .blog_page_subsribe .b24-form-header-padding {
  padding: 0;
}
.subscribe_form .b24-form-wrapper .b24-form-btn,
  .blog_page_subsribe .b24-form-wrapper .b24-form-btn{
  color: #fff;
  background: #0042A6;
  border: #0042A6 1px solid;
  font-size: 12px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  min-height: 1px;
  padding: 14px 35px;
  box-shadow: none;
} 
.subscribe_form .b24-form-wrapper .b24-form-btn:hover,
  .blog_page_subsribe .b24-form-wrapper .b24-form-btn:hover{
  color: #0042A6;
  background: #fff;
}
.subscribe_form .b24-form-state-icon.b24-form-success-icon,
  .blog_page_subsribe .b24-form-state-icon.b24-form-success-icon{
  display: none;
}
.subscribe_form .b24-from-state-on .b24-form-state-container{
  height: 215px;
}
.blog_page_subsribe .b24-from-state-on .b24-form-state-container{
  height: 145px;
  opacity: 1;
  top: 20px;
  border-radius: 4px;
}
.blog_page_subsribe .b24-form-success .b24-form-state-text{
  margin-bottom: 0;
}
.blog_page_subsribe div.b24-form{
  max-height: 170px;
  max-width: 200px;
  margin: 0 auto 0;
}
.blog_page_subsribe.b24 .blog_page_subsribe_form{
  bottom: 8px;
}
.blog_page_subsribe .b24-form-field,
.blog_page_subsribe div.b24-form .b24-form-control-alert {
  margin-bottom: 5px !important;
}
.blog_page_subsribe .b24-form-field.b24-form-field-agreement.b24-form-control-agreement{
  overflow: auto;
  height: 46px;
  margin-bottom: 0;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.blog_page_subsribe .b24-form-field.b24-form-field-agreement.b24-form-control-agreement::-webkit-scrollbar { width: 0; }
.blog_page_subsribe.b24>img:nth-child(1){
  display: block;
}
.blog_page_subsribe.b24>img:nth-child(2){
  display: none;
}
@media screen and (max-height: 720px) and (min-width: 550px){
  .popup_form_unisender ._name_form {
    font-size: 24px;
    line-height: 109.18%;
  }
  .popup_form_unisender ._h3_form._default_form {
    font-size: 21px;
    line-height: 26px;
  }
  .popup_form_unisender .popup__body{
    max-width: 400px;
  }
  .popup_form_unisender._active{
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 1300px){
  .blog_page_subsribe.b24>img:nth-child(1){
    display: none;
  }
  .blog_page_subsribe.b24>img:nth-child(2){
    display: block;
  }
}
@media screen and (max-width: 1120px){
  .subscribe_form .b24-from-state-on .b24-form-state-container{
    height: 240px;
  }
}
@media screen and (max-width: 1000px){
  .blog_page_subsribe .b24-from-state-on .b24-form-state-container{
    height: 133px;
    opacity: 1;
    top: 20px;
  }
  .blog_page_subsribe .b24-form-success .b24-form-state-text{
    font-size: 16px;
  }
  .blog_page_subsribe div.b24-form{
    margin: 0px 10px 0;
    max-height: 159px;
  }
  .blog_page_subsribe .b24-form-wrapper .b24-form-btn {
    font-size: 11px;
    padding: 14px 0px;
  }
  .blog_page_subsribe .b24-form-field-agreement .b24-form-field-agreement-link{
    font-size: 10px;
  }
  .blog_page_subsribe .b24-form-field.b24-form-field-agreement.b24-form-control-agreement{
    max-height: 40px;
  }
}
@media screen and (max-width: 575px){
  .subscribe_form div.b24-form form {
    max-width: initial;
  }
}
@media (max-width: 550px) {
  .popup__content.modal-b24-footer div.b24-form{
    max-height: 210px;
  }
  .popup__content.modal-b24-footer div.b24-form .b24-form-control-label{
    font-size: 12px;
  }
  .popup__content.modal-b24-footer div.b24-form div.b24-form-control-container input, .popup__content.modal-b24-footer div.b24-form .b24-form-btn-block  button{
    height: 47px;
    font-size: 12px;
    min-height: 47px;
    line-height: 19px;
  }
  .popup__content.modal-b24-footer .b24-form-field-agreement .b24-form-field-agreement-link.b24-form-field-agreement .b24-form-field-agreement-link{
    font-size: 9px;
  }
  .popup__content.modal-b24-footer .b24-form-field-agreement .b24-form-control-container{
    line-height: 9px;
  }
  .popup.popup_right._active {
    left: 0;
  }
  .popup_form_unisender._active {
    margin: 0 20px;
    max-width: 90%;
    max-height: 85%;
    height: 100%;
    overflow: hidden;
    top: 15%;
  }
  .popup_form_unisender .popup__content.modal-b24-footer {
    min-height: 85%;
  }

  ._popup_form_unisender_image {
    max-width: 60px;
  }

  ._popup_form_unisender_image {
    top: -30px;
    left: calc(50% - 30px);
  }

  .popup_form_unisender ._name_form {
    font-size: 20px;
  }

  .popup_form_unisender ._h3_form._default_form {
    font-size: 15px;
    line-height: 15px;
  }

  .popup_form_unisender .pattern-form .input,
  .popup_form_unisender button[type="submit"].btn {
    height: 47px;
    font-size: 12px;
    min-height: 47px;
  }
}
/* Конец всплывающая форма подписаться Б24 */

@media (max-width: 1200px) {
  .catalog_product_btn-new_prin_btn-text {
    font-size: 12px;
  }

  .catalog_product_btn-new_prin_btn-text-with-note {
    font-size: 12px;
  }

  .catalog_product_btn-new_prin_btn-note {
    font-size: 10px;
  }
}

@media (max-width: 1100px) {
  ._catalog_product_center-presents-block-forAll {
    top: 35px;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
  }
}

@media (max-width: 1000px) {
  .light-container {
    padding: 0 5px;
    width: 100%;
  }

  .catalog_products {
    flex-wrap: wrap;
    justify-content: center;
  }

  .catalog_product_btn-new_prin_btn {
    margin: 20px auto 0;
  }
}

@media (max-width: 850px) {
  .catalog_section_items .new_catalog_section_item {
    width: calc(50% - 10px);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }

  .cat_prod_dop_section-blog_item {
    width: calc(50% - 40px);
  }
}

@media (max-width: 768px) {
  .new_main_history_prin-image__sliderBlock {
    display: none;
  }

  ._catalog_product_center-presents-block-forAll {
    right: 0;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
  }

  #new_advantages {
    margin-right: 0;
    margin-left: 0;
  }

  #new_advantages > .new_column-2 {
    padding: 0 10px 30px;
  }

  .new_advantages-header {
    font-size: 10px;
  }

  .new_row .new_column-3,
  .new_row .new_column-2 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 10px;
    padding-left: 10px;
  }

  .new_advantages-number {
    font-size: 55px;
    line-height: 55px;
  }

  .new_advantages-list li {
    margin: 0 0 30px;
    padding: 0 0 10px;
  }

  .new_blog_page_main_left_article_item {
    width: 100%;
  }

  .new_blog_page_main_left_article_item {
    margin: 0;
  }

  .new_blog_page_left_article_item_descr_name_a_span {
    font-size: 16px;
    font-weight: normal;
  }

  .new_blog_page_left_article_item_descr {
    padding-bottom: 15px;
    min-height: auto;
  }

  .new_catalog_main-table_name,
  .new_id_blogs_main_name,
  .new_main_offices_prin-name,
  .new_main_slider_about_name,
  .new_main_serices_prin-name,
  .new_main_history_prin-name,
  .new_main_prin_hear_you-name {
    font-size: 25px;
    line-height: 35px;
    margin: 0 auto 30px auto;
  }

  .new_id_blogs_main_name {
    font-size: 25px;
    line-height: 35px;
    margin: 0 auto;
  }

  .new_id_blogs_additional_text {
    margin: 5px auto 30px auto;
  }

  .new_blog_main {
    margin: 80px auto 0 auto;
  }

  .new_main_slider_about,
  .new_main_serices_prin,
  .new_main_prin_hear_you,
  .new_main_offices_prin,
  .new_main_history_prin {
    margin: 90px auto 0 auto;
  }

  .przv_future_button_call {
    bottom: 70px !important;
  }
}

@media (max-width: 550px) {
  .catalog_section_items .new_catalog_section_item {
    width: calc(100% - 10px);
    max-width: 350px;
    margin: 5px auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }

  .cat_prod_dop_section-blog_item {
    width: calc(100% - 40px);
  }

  #cases_for_product .blog_page_left_article_item_foto {
    margin: 0 auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .block_section_out {
    padding: 0 15px;
  }

  .pattern-form {
    padding: 30px 18px 30px;
}

  .new_main_directions_item:nth-child(n + 2),
  .new_main_directions_item:last-child {
    border-left: none;
  }

  .new_main_directions_item:nth-child(n) {
    border-bottom: 1px solid #e6e6e6;
  }

  .new_catalog_main-table_items {
    display: block;
  }

  .new_catalog_main-table_item {
    width: 100%;
  }

  .new_blog_page_main {
    display: block;
  }

  .new_blog_page_main_left_article_item {
    width: 100%;
  }

  .new_blog_page_main_left_article_item {
    margin: 0;
  }

  .new_main_prin_hear_you-image__sliderBlock {
    display: none;
  }

  .lSSlideOuter.mob_gal {
    display: block;
  }

  .catalog_product_center-more_info {
    display: block;
  }

  .catalog_product_center-more_info-offices {
    margin: 10px auto;
    width: 100%;
    max-width: 190px;
  }

  .catalog_product_center-more_info-tel {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .catalog_product_center-presents-block {
    width: calc(100%/2 - 6px);
  }
  .catalog_product_center-presents-block_top {
    max-width: 155px;
  }
}
@media (max-width: 358px) {
  .catalog_product_center-presents-block {
    width: 100%;
  }
  .catalog_product_center-presents-block_top {
    max-width: 100%;
  }
}
/* Cookies */

.popup-cookies {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 582px;
  right: 0px;
  bottom: 0px;
  padding-left: 34px;
  padding-right: 34px;
  padding-top: 19px;
  padding-bottom: 19px;
  background: #FFFFFF;
  border: 1px solid #ECECEC;
  border-radius: 20px 0px 0px 0px;


  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.popup-cookies.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 104;
}

.popup-cookies__text {
  display:  inline-block;
  width: calc(100% - 97px);
  padding-top: 1px;
  padding-right: 16px;
  font-size: 15px;
  line-height: 20px;
  font-family: "OpenSans", sans-serif;
  font-weight: 400;
  color: #4D4D4D;
}

.popup-cookies__text .ref {
  display: inline-block;
  position: relative;
  font: inherit;
  color: #4D4D4D;
  transition: all 0.3s ease;
}

.popup-cookies__text .ref::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0px;
  bottom: 2px;
  width: 100%;
  height: .5px;
  background: #4D4D4D;
  transition: all 0.3s ease;
}

.popup-cookies__text .ref:hover {
  color: #004271;
}

.popup-cookies__text .ref:hover::before {
  opacity: 0;
}

.popup-cookies .new-btn {
  display: inline-flex;
  width: 97px;
  padding-left: 10px;
  padding-right: 10px;
  min-width: auto;
  height: 41px;
  margin-top: 0px;
  box-shadow: none;
}

.popup-cookies .new-btn span {
  font-family: "OpenSans", sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 25px;
  color: #00489D;
  transition: all 0.3s ease;
}

.popup-cookies .new-btn:hover span {
  color: #fff;
}

@media (max-width: 1200px) {

}

@media (max-width: 1000px) {

.popup-cookies {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 0px;
  justify-content: center;
}

.popup-cookies__text {
  width: auto;
  max-width: calc(100% - 97px);
  padding-right: 20px
}

}

@media (max-width: 768px) {

.popup-cookies {
  flex-wrap: wrap;
  padding-top: 14px;
  padding-bottom: 14px;
}

.popup-cookies__text {
  max-width: calc(100% - 65px);
  font-size: 13px;
  line-height: 16px;
}

.popup-cookies .new-btn {
  width: 65px;
}

}
.agreement-text h2{
  text-align: center;
  color: #0042A6;
}
/* Section-verification-main */

.section-verification-main {
  position: relative;
  padding-top: 88px;
  padding-bottom: 84px;
  background: linear-gradient(208.23deg, #0066FF 2.21%, #00489D 44.58%), #00489D;
}

.verification-main {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 640px;
  padding-left: 20px;
  padding-right: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.verification-main * {
  font-family: "Open Sans", sans-serif;
}

.verification-main h1 {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 50px;
  line-height: 68px;
  font-weight: 800;
}

.verification-main__contacts {
  display: inline-flex;
  width: 100%;
  flex-direction: column;
  margin-top: 38px;
}

.verification-main__contacts p {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin-top: 2px;
}

.verification-main__contacts .ref {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #fff;
  margin-top: 6px;
  font-weight: 700;
  font-size: 25px;
  line-height: 34px;
  text-decoration: underline;
  text-decoration-thickness: .5px;
  text-underline-offset: 0.4em;
}

.verification-main__contacts .ref:hover {
  color: #FFCF0C;
  text-decoration: none;
}

.verification-main__contacts .ref.verification-main__contacts-number {
  font-size: 40px;
  line-height: 54px;
  text-decoration: none;
}


@media (max-width: 1200px) {

}

@media (max-width: 1000px) {

}

@media (max-width: 768px) {

}

@media (max-width: 480px) {

.section-verification-main {
  padding-top: 58px;
  padding-bottom: 54px;
}


.verification-main h1 {
  font-size: 30px;
  line-height: 41px;
}

.verification-main__contacts {
  margin-top: 25px;
}

.verification-main__contacts .ref {
  font-size: 15px;
  line-height: 20.5px;
}

.verification-main__contacts p {
  font-size: 10px;
  line-height: 14px;
}

.verification-main__contacts .ref.verification-main__contacts-number {
  font-size: 20px;
  line-height: 27px;
}




}

/* Section-verification-request */

.section-verification-request {
  position: relative;
  width: 100%;
  padding-top: 68px;
  padding-bottom: 104px;
}

.verification-request {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.verification-request__result {
  display: inline-block;
  position: absolute;
  right: 0px;
  top: 0px;
  height: 226px;
  width: 384px;
  max-width: 424px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);

  
}

.verification-request__result a{
  position: absolute;
  top: 106px;
  left: 115px;
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  font-family: "OpenSans", sans-serif;
  font-weight: 400;
  color: #0855B0;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 0.35em;
  text-decoration-thickness: 0.5px;  
}

.verification-request__result a:hover {
  color: #FFCF0C;
  text-decoration: none !important;
}

.verification-request-item {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 424px;
  padding: 46px;
  padding-top: 32px;
  padding-bottom: 60px;
  margin-bottom: 38px;

  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}

.verification-request-item p {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  font-family: "OpenSans", sans-serif;
  font-weight: 400;
  color: #4D4D4D;
  margin-top: 20px;
}

.verification-request-item  h3 {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 25px;
  line-height: 34px;
  font-family: "OpenSans", sans-serif;
  font-weight: 700;
  color: #00489D;
  margin-top: 7px;
}

.verification-request-item__form {
  display: block;
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.verification-request-item__form-scrin {
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: calc(100% + 65px);
  margin-top: 22px;
}

.verification-request-item .new-btn {
  width: 100%;
  height: 62px;
  margin-top: 15px;
  color: #00489D;
}

.verification-request-item .new-btn span {
  padding-top: 0px;
  
}

.verification-request-item .new-btn:hover {
  color: #fff;
}

@media (max-width: 1200px) {

}

@media (max-width: 1250px) {

.verification-request {
  width: 100%;
  max-width: 424px;
  margin-left: auto;
  margin-right: auto;
}

.verification-request__result {
  right: auto;
  position: relative;
  max-width: 100%;
  margin-bottom: 38px;
}

.verification-request-item {
  max-width: 100%;
}

}

@media (max-width: 768px) {

}

@media (max-width: 480px) {

.section-verification-request {
  padding-top: 42px;
  padding-bottom: 60px;
}

.verification-request__result {
  margin-bottom: 28px;
}

.verification-request__result a{
  width: 100%;
  left: 0px;
}

.verification-request-item {
  padding-top: 22px;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 42px;
  margin-bottom: 28px;
}

.verification-request-item p {
  font-size: 10px;
  line-height: 14px;
  margin-top: 14px;
}

.verification-request-item  h3 {
  font-size: 25px;
  line-height: 34px;
}

.verification-request-item__form-scrin {
  min-width: calc(100% + 45px);
  margin-top: 15px;
}


}