.sidebar {
  min-width: 280px;
  max-width: 280px;
  margin-right: 58px;
  margin-bottom: 60px;
}

.sidebar_title {
  background-image: -webkit-gradient(linear, left top, right top, from(#f7f7f7), to(#eeeeee));
  background-image: linear-gradient(90deg, #f7f7f7 0%, #eeeeee 100%);
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 85px;
  min-width: 100%;
  max-width: 100%;
  border: 1px solid transparent;
  text-align: left;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-left: 26px;
  padding-right: 40px;
  position: relative;
}

.sidebar_title.tc {
  text-align: center;
  margin-bottom: 6px;
}

.sidebar_title.tc span {
  margin-left: auto;
  margin-right: auto;
}

.sidebar_title i {
  min-width: 20px;
  max-width: 20px;
  height: 11px;
  background: url("../images/menub.svg") no-repeat center center/20px auto;
  margin-right: 20px;
}

.sidebar_title span {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #202020;
  font-family: "Lato", sans-serif;
}

.sidebar_title .ic {
  position: absolute;
  right: 18px;
  bottom: 0;
  height: 70px;
}

.sidebar_title .ic img {
  width: auto;
  height: 90px;
  margin-top: -21px;
  margin-right: -15px;
}

.sidebar_title.sidebar_title_small span {
  font-size: 17px;
}

.sidebar_content {
  border: 1px solid #eeeeee;
  border-radius: 4px;
  padding: 8px;
}

.sidebar_content.nopadding {
  padding: 0;
}

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

.sidebar_menu_links li:last-child {
  margin-bottom: 0;
}

.sidebar_menu_links li a {
  border: 1px solid #eeeeee;
  border-radius: 3px;
  position: relative;
  padding: 14px 40px 14px 20px;
  display: block;
  position: relative;
  font-size: 17px;
  line-height: 20px;
  font-weight: 400;
  color: #232323;
}

.sidebar_menu_links li a:before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-left: 3px solid #074ed4;
  border-bottom: 3px solid transparent;
  right: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 0;
  -webkit-transition: .2s;
  transition: .2s;
}

.sidebar_menu_links li a:hover {
  border: 1px solid #074ed4;
  color: #074ed4;
}

.sidebar_menu_links li a:hover:before {
  opacity: 1;
}

.sidebar_menu_links li a.active {
  color: #ffffff;
  border: 1px solid #074ed4;
  background: #074ed4;
}

.sidebar_menu_links li a.active:before {
  opacity: 1;
  border-left: 3px solid #ffffff;
}

.sidebar_menu_links .main_nav_level1 {
  border: 1px solid #eeeeee;
  margin-top: -5px;
  border-top: none;
  padding-top: 10px;
  padding-bottom: 10px;
}

.sidebar_menu_links .main_nav_level1 li {
  margin-bottom: 0;
}

.sidebar_menu_links .main_nav_level1 li a {
  padding-left: 49px;
  position: relative;
  font-size: 16px;
  border: none;
  padding-top: 10px;
  padding-bottom: 10px;
}

.sidebar_menu_links .main_nav_level1 li a:before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 5px;
  height: 5px;
  border: none;
  background: url("../images/arrow-1.svg") no-repeat center center/4px auto;
  opacity: 1;
  left: 30px;
  right: initial;
  top: 19px;
  -webkit-transition: .2s;
  transition: .2s;
}

.sidebar_menu_links .main_nav_level1 li a:hover:before {
  background: url("../images/arrow-1.svg") no-repeat center center/4px auto;
}

.brand_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #eeeeee;
  border-radius: 4px 4px 0 0;
  border-bottom: 2px solid #074ed4;
  margin-bottom: 35px;
}

.brand_box_left {
  min-width: 240px;
  max-width: 240px;
  padding: 20px 30px 30px;
  position: relative;
  border-right: 1px solid #eeeeee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.page_content {
  min-width: calc(100% - 338px);
  max-width: calc(100% - 338px);
}

.brand_box_logo {
  margin-bottom: auto;
  width: 100%;
}

.brand_box_more {
  margin: auto auto 0 auto;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #074ed4;
  border-bottom: 1px dashed #074ed4;
}

.brand_box_more:hover {
  color: #161616;
  border-bottom: 1px dashed #161616;
}

.brand_box_more span {
  display: none;
}

.brand_box_more span.active {
  display: block;
}

.brand_box_right_text {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 8;
}

.brand_box_right_text.active {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2000;
}

.brand_box_right {
  padding: 30px 40px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #0e0e0e;
}

.brand_box_right a {
  color: #074ed4;
  text-decoration: underline !important;
}

.brand_box_right a:hover {
  color: #161616;
}

.filter_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.filter_line_choice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.filter_line_label {
  font-size: 14px;
  margin-right: 8px;
  font-weight: 400;
  color: #282828;
}

.filter_line_ic {
  min-width: 13px;
  max-width: 13px;
  margin-right: 6px;
}

.filter_line_select .nice-select {
  padding: 0;
  border: none;
  height: initial;
  width: initial;
}

.nice-select {
  white-space: wrap;
}

.filter_line_select .current {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #282828;
  position: relative;
  padding-right: 20px;
  display: block;
  width: 100%;
}

.filter_line_select .current:before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-top: 3px solid #161616;
  border-right: 3px solid transparent;
  right: 0;
  top: 50%;
  margin-top: -2px;
}

.filter_line_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: calc(33.33% - 10px);
  max-width: calc(33.33% - 10px);
}

@media screen and (max-width: 768px) {
  .filter_line_info {
    min-width: 100%;
    max-width: 100%;
  }
}

.filter_line_info .val {
  font-size: 14px;
  font-weight: 500;
  margin-left: 15px;
  color: #2c2c2c;
  font-family: "HelveticaNeueCyr";
}

.brand_list .accii_catalog .item_wrap {
  min-width: calc(33.33% - 16px);
  max-width: calc(33.33% - 16px);
}

.pager_wrap {
  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;
  margin-bottom: 60px;
}

.pager_wrap a,
.pager_wrap span {
  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;
  margin: 0 1px;
  width: 35px;
  min-width: 35px;
  max-width: 35px;
  height: 35px;
  border: 1px solid transparent;
  font-family: "HelveticaNeueCyr";
  border-radius: 5px;
  font-size: 17px;
  font-weight: 500;
  color: #2c2c2c;
}

.pager_wrap a:hover {
  border: 1px solid #074ed4;
  color: #074ed4;
}

.pager_wrap a.active {
  border: 1px solid #074ed4;
  background: #074ed4;
  color: #ffffff;
}

.pager_wrap .btn {
  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;
  margin: 0 5px;
  width: 35px;
  height: 35px;
  min-width: 35px;
  max-width: 35px;
  background: url("../images/pages-arrow-left.svg") no-repeat center center/6px auto;
  margin-left: 10px;
  margin-right: 10px;
}

.pager_wrap .btn.btn_next {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.pager_wrap .btn:hover {
  background: url("../images/pages-arrow-leftr.svg") no-repeat center center/9px auto;
}

.brands_alphabet_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.brands_alphabet_line .btn {
  min-width: 41px;
  max-width: 41px;
  height: 41px;
  border-radius: 5px;
  border: none;
  background: #e5e5e5;
  margin-right: 9px;
  margin-bottom: 9px;
}

.brands_alphabet_line .btn span {
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.033em;
  color: #2c2c2c;
  font-family: "Lato", sans-serif;
}

.brands_alphabet_line .btn:hover {
  background: #074ed4;
}

.brands_alphabet_line .btn:hover span {
  color: #ffffff;
}

.brands_alphabet_list {
  padding-bottom: 40px;
}

.brands_alphabet_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 30px;
}

.brands_alphabet_ic {
  min-width: 60px;
  max-width: 60px;
  height: 60px;
  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;
  border-radius: 5px;
  background: #074ed4;
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  color: #ffffff;
  font-family: "HelveticaNeueCyr";
  text-transform: uppercase;
  margin-right: 20px;
}

.brands_alphabet_imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.brands_alphabet_imgs .item {
  margin-left: 20px;
  -webkit-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-bottom: 15px;
  min-width: calc(25% - 20px);
  max-width: calc(25% - 20px);
  padding: 15px 20px 35px;
  border: 1px solid transparent;
}

.brands_alphabet_imgs .item:hover {
  border: 1px solid #074ed4;
}

.brands_alphabet_imgs .item:hover .item_text {
  color: #074ed4;
}

.brands_alphabet_imgs .item_img {
  height: 106px;
  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;
  margin-bottom: 15px;
}

.brands_alphabet_imgs .item_img img {
  width: initial;
  max-width: 100%;
  max-height: 100%;
}

.brands_alphabet_imgs .item_text {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #2c2c2c;
  -webkit-transition: .2s;
  transition: .2s;
}

.cart_redline {
  padding: 40px 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#2771fb), to(#074ed4));
  background-image: linear-gradient(90deg, #2771fb 0%, #074ed4 100%);
}

.cart_redline_df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.cart_redline_title {
  font-size: 32px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

.cart_redline .btn {
  height: 41px;
  padding: 0 45px;
  background: #ffffff;
  border-radius: 5px;
}

.cart_redline .btn span {
  font-size: 15px;
  font-weight: 400;
  color: #2b2b2b;
  margin-left: 6px;
  margin-right: 6px;
}

.cart_redline .btn i {
  height: 15px;
  max-width: 15px;
  min-width: 15px;
  margin-left: 6px;
  margin-right: 6px;
}

.cart_redline .btn.btn_update i {
  position: relative;
  top: 2px;
}

.cart_redline .btn.btn_clear i {
  position: relative;
  top: -2px;
}

.cart_redline .btn:hover span {
  color: #074ed4;
}

.cart_goods {
  padding-top: 50px;
}

.cart_goods_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  padding: 15px 25px 15px 25px;
  margin-bottom: 5px;
  -webkit-transition: .2s;
  transition: .2s;
}

.cart_goods_line .lab {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  color: #909090;
  margin-bottom: 7px;
}

.cart_goods_line:hover {
  border: 1px solid #074ed4;
}

.cart_goods_img {
  height: 85px;
  width: 85px;
  min-width: 85px;
  max-width: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cart_goods_img img {
  width: initial;
  max-width: 100%;
  max-height: 100%;
}

.cart_goods_headline {
  min-width: 390px;
  max-width: 390px;
  margin-right: 30px;
}

.cart_goods_title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #272727;
  margin-top: 15px;
  margin-bottom: 10px;
  display: block;
}

.cart_goods_title:hover {
  color: #074ed4;
}

.cart_goods_subtitle {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  color: #4d4d4d;
}

.cart_goods_cost {
  padding-top: 15px;
  min-width: 130px;
  max-width: 130px;
}

.cart_goods_cost .val {
  font-size: 14px;
  line-height: 1.2;
  padding-top: 5px;
  font-weight: 500;
  color: #2c2c2c;
  font-family: "HelveticaNeueCyr";
}

.cart_goods_cost .val span {
  font-size: 17px;
  font-family: "HelveticaNeueCyr";
}

.cart_goods_calc {
  padding-top: 15px;
  min-width: 145px;
  max-width: 145px;
}

.cart_goods_calc .cartcalc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 32px;
  background-color: #ffffff;
  border: 1px solid #dedede;
  border-radius: 1px;
  width: 92px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 5px;
}

.cart_goods_calc .cartcalc button {
  min-width: 22px;
  max-width: 22px;
  height: 22px;
  border: none;
  background-color: #ffffff;
  border: 1px solid #074ed4;
  border-radius: 3px;
  color: #074ed4;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  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;
}

.cart_goods_calc .cartcalc button.ccalc-minus {
  padding-bottom: 2px;
}

.cart_goods_calc .cartcalc button:hover {
  background: #074ed4;
  color: #ffffff;
}

.cart_goods_calc .cartcalc button.disable {
  border: 1px solid #dedede;
  color: #dedede;
  background: #ffffff;
  cursor: default;
}

.cart_goods_calc .cartcalc input {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 22px;
  border: none;
  text-align: center;
}

.cart_goods_total {
  padding-top: 15px;
  min-width: 125px;
  max-width: 125px;
}

.cart_goods_total .val {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #2c2c2c;
  padding-top: 2px;
  font-family: "HelveticaNeueCyr";
}

.cart_goods_total .val span {
  font-size: 18px;
}

.cart_goods_storage {
  min-width: 67px;
  max-width: 67px;
  padding-top: 43px;
  font-size: 14px;
  line-height: 9px;
  font-weight: 400;
  color: #409337;
}

.cart_goods_remove {
  margin-left: auto;
  min-width: 14px;
  max-width: 14px;
  height: 18px;
  margin-top: 38px;
  background: url("../images/cart-clearg.svg") no-repeat center center/100% auto;
  border: none;
  -webkit-transition: .2s;
  transition: .2s;
}

.cart_goods_remove:hover {
  background: url("../images/cart-clear.svg") no-repeat center center/100% auto;
  cursor: pointer;
}

.cart_goods_remove span {
  display: none;
}

.cart_goods_all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 100%;
  margin-bottom: 30px;
}

.cart_goods_anonim {
  background: #272727;
  min-width: 587px;
  max-width: 587px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 22px 42px;
}

.cart_goods_anonim .ic {
  min-width: 68px;
  max-width: 68px;
  margin-right: 30px;
}

.cart_goods_anonim .btn {
  height: 35px;
  padding: 0 20px;
  border-radius: 2px;
  background: #151515;
  margin-top: auto;
  margin-bottom: 3px;
}

.cart_goods_anonim .btn i {
  min-width: 14px;
  max-width: 14px;
  margin-right: 12px;
}

.cart_goods_anonim .btn span {
  font-size: 13px;
  position: relative;
  top: -1px;
  font-weight: 400;
  color: #ffffff;
}

.cart_goods_anonim .btn:hover {
  background: #3e3e3e;
}

.cart_goods_info {
  background: #074ed4;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 22px 50px;
}

.cart_goods_info .ic {
  min-width: 60px;
  max-width: 60px;
  margin-right: 20px;
}

.cart_goods_anonim_head {
  min-width: 253px;
  max-width: 253px;
  margin-right: 17px;
}

.cart_goods_anonim_head .tit {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 700;
  color: #ffffff;
  font-family: "Lato", sans-serif;
}

.cart_goods_anonim_head .text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #d7d7d7;
}

.cart_goods_info_thing {
  min-width: 135px;
  max-width: 135px;
}

.cart_goods_info_thing .lab {
  font-size: 15px;
  line-height: 16px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 8px;
}

.cart_goods_info_thing .val {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
  font-family: "HelveticaNeueCyr";
}

.cart_goods_info_cost .tit {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 8px;
}

.cart_goods_info_cost .val {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  font-family: "HelveticaNeueCyr";
}

.cart_goods_info_cost .val span {
  font-size: 28px;
}

.cart_goods_info_delivery {
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  color: #a4c2f9;
}

.present_pack {
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 50px 25px 140px;
  background: url("../images/cart-upakovka.svg") no-repeat 42px 25px/48px auto;
  margin-bottom: 20px;
}

.present_pack_head {
  min-width: 690px;
  max-width: 690px;
  padding-right: 50px;
}

.present_pack_head .tit {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #000000;
  font-family: "Lato", sans-serif;
  margin-bottom: 10px;
}

.present_pack_head .text {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: #292929;
}

.present_pack_form .tit {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
  font-family: "Lato", sans-serif;
}

.present_pack_form .df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.present_pack_form .checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 20px;
}

.present_pack_form .checkbox+label {
  position: relative;
  padding: 0 0 0 70px;
  cursor: pointer;
  font-size: 16px;
  line-height: 29px;
  font-weight: 500;
  color: #2c2c2c;
  font-family: "HelveticaNeueCyr";
}

.present_pack_form .checkbox+label:after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #414141;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.present_pack_form .checkbox+label:before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 59px;
  height: 29px;
  border: 1px solid #dedede;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 14.5px;
  left: 0;
  top: 0;
}

.present_pack_form .checkbox:checked+label:after {
  left: 34px;
  background: #074ed4;
}

.cart_title {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px solid #074ed4;
  margin-bottom: 30px;
}

.cart_title .title {
  font-size: 26px;
  line-height: 41px;
  font-weight: 400;
  color: #131313;
  font-family: "HelveticaNeueCyr";
}

.cart_title .df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 420px;
  max-width: 420px;
}

.cart_title .ic {
  margin-left: 35px;
}

.cart_title .ic img {
  height: 66px;
  width: auto;
}

.cart_title .text {
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  color: #666666;
  margin-top: 6px;
}

.cart_form_user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #e4e4e4;
  border-radius: 2px;
  padding: 35px 55px;
}

.cart_form_user .form_control:nth-child(1) {
  min-width: 395px;
  max-width: 395px;
  margin-right: 30px;
}

.cart_form_user .form_control:nth-child(2) {
  min-width: 315px;
  max-width: 315px;
  margin-right: 30px;
}

.cart_form_user .form_control:nth-child(3) {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.cart_delivery_title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #131313;
  margin-bottom: 25px;
}

.cart_form_user .form_control .lab,
.cart_delivery_form .form_control .lab {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #212121;
  margin-bottom: 12px;
}

.cart_form_user .form_control .lab span,
.cart_delivery_form .form_control .lab span {
  color: #0c4dd3;
}

.cart_form_user .form_control input,
.cart_delivery_form .form_control input {
  padding: 0 20px;
  height: 45px;
  border: 1px solid #d3d3d3;
  -webkit-box-shadow: inset 1px 2px 4px 0px rgba(208, 208, 208, 0.44);
  box-shadow: inset 1px 2px 4px 0px rgba(208, 208, 208, 0.44);
  border-radius: 1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  font-size: 17px;
  -webkit-transition: .2s;
  transition: .2s;
}

.cart_form_user .form_control input:focus,
.cart_delivery_form .form_control input:focus {
  border: 1px solid #272727;
  -webkit-box-shadow: inset 1px 2px 4px 0px rgba(208, 208, 208, 0.44);
  box-shadow: inset 1px 2px 4px 0px rgba(208, 208, 208, 0.44);
}

.area_delivery .nice-select .current {
  font-size: 17px;
}

.area_delivery .nice-select .current:before {
  content: '';
  position: absolute;
  z-index: 1;
  right: 15px;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(90deg);
  transform: translate(0, -50%) rotate(90deg);
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-left: 3px solid #161616;
  border-bottom: 3px solid transparent;
  -webkit-transition: .2s;
  transition: .2s;
}

.area_delivery .nice-select.open .current:before {
  -webkit-transform: translate(0, -50%) rotate(-90deg);
  transform: translate(0, -50%) rotate(-90deg);
}

.cart_delivery_df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cart_delivery_radio {
  min-width: 365px;
  max-width: 365px;
  background-color: #ebebeb;
  border: 1px solid #c9c9c9;
  border-radius: 1px;
}

.cart_delivery_radio .item {
  padding: 20px 25px;
  padding-right: 110px;
  padding-left: 68px;
  background-color: #ffffff;
  border-bottom: 1px solid #c9c9c9;
  border-radius: 1px;
  position: relative;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  color: #1f1f1f;
  -webkit-transition: .2s;
  transition: .2s;
  cursor: pointer;
}

.cart_delivery_radio .item .ch {
  position: absolute;
  left: 25px;
  top: 22px;
  width: 19px;
  height: 19px;
  z-index: 1;
  background-color: #ffffff;
  border: 1px solid #c9c9c9;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cart_delivery_radio .item .ch:after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 7px;
  height: 7px;
  background-color: #074ed4;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
  -webkit-transition: .2s;
  transition: .2s;
}

.cart_delivery_radio .item:before {
  content: '';
  position: absolute;
  z-index: 1;
  left: -1px;
  right: -1px;
  top: 0;
  bottom: -1px;
  border: 1px solid #074ed4;
  z-index: 2;
  opacity: 0;
  -webkit-transition: .2s;
  transition: .2s;
}

.cart_delivery_radio .item:hover:before {
  opacity: 1;
}

.cart_delivery_radio .item:last-child {
  border-bottom: none !important;
}

.cart_delivery_radio .item.active {
  background: #074ed4;
  color: #ffffff;
  border-bottom: 1px solid #074ed4;
}

.cart_delivery_radio .item.active .ch {
  border: 1px solid #074ed4;
}

.cart_delivery_radio .item.active .ch:after {
  opacity: 1;
}

.cart_delivery_form {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.cart_delivery_form_title {
  font-size: 22px;
  line-height: 42px;
  font-weight: 400;
  color: #131313;
  font-family: "HelveticaNeueCyr";
  padding: 23px 53px;
  border: 1px solid #e5e5e5;
  border-left: none;
}

.cart_delivery_box_df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 23px 53px;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.area_delivery {
  margin-right: 40px;
}

.area_delivery .nice-select {
  width: 100%;
  padding: 0 15px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.area_delivery .nice-select .current {
  display: block;
}

.form_control textarea {
  min-height: 95px;
}

.cart_delivery_form .form_control {
  min-width: 100%;
  max-width: 100%;
}

.cart_delivery_form .date_delivery {
  min-width: 202px;
  max-width: 202px;
}

.cart_delivery_form .date_delivery input {
  padding-left: 46px;
  background: url("../images/date.svg") no-repeat 15px center/16px auto;
}

.cart_delivery_form .area_delivery {
  min-width: 395px;
  max-width: 395px;
}

.nice-select .option {
  font-size: 14px;
  line-height: 20px;
  padding: 5px 10px;
  background: #ffffff;
}

.cart_delivery_form .form_control {
  margin-bottom: 22px;
}

.cart_delivery_marker {
  position: absolute;
  top: 25px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 15px;
  height: 20px;
  font-size: 10px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background: #64a342;
}

.j_tabs_box {
  display: none;
}

.j_tabs_box.j_tabs_box1 {
  display: block;
}

.cart_delivery_form .area_delivery.area_deliverylong {
  margin-right: 0;
  min-width: 415px;
  max-width: 415px;
}

.cart_delivery_form .date_delivery.date_delivery_long {
  min-width: 220px;
  max-width: 220px;
}

.area_delivery_title {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #090909;
  padding-left: 19px;
  background: url(../images/location.svg) no-repeat left center/8px auto;
  margin-bottom: 8px;
}

.area_delivery_addr {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 8px;
}

.area_delivery_onmap {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #074ed4;
  border-bottom: 1px dashed #074ed4;
  margin-bottom: 20px;
}

.area_delivery_onmap:hover {
  color: #161616;
  border-bottom: 1px solid transparent;
}

.area_delivery_plans_title {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #090909;
  padding-left: 19px;
  background: url("../images/contacts-time.svg") no-repeat left center/10px auto;
  margin-bottom: 9px;
}

.area_delivery_plans_sheet {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  color: #2c2c2c;
}

.j_tabs_box4_info {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #666666;
  padding-left: 32px;
  background: url("../images/infor.svg") no-repeat left 11px/16px auto;
  padding: 10px 0 0px 32px;
  border-top: 1px solid #e5e5e5;
  position: relative;
  top: 11px;
}

.j_tabs_box,
.cart_delivery_box_df {
  min-height: 100%;
}

.cart_radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto;
  margin-left: -17px;
  margin-right: -17px;
}

.cart_radio .item {
  min-width: calc(50% - 34px);
  max-width: calc(50% - 34px);
  margin-left: 17px;
  margin-right: 17px;
  background-color: #ffffff;
  border: 1px solid #c9c9c9;
  border-radius: 2px;
  margin-bottom: 26px;
  -webkit-transition: .2s;
  transition: .2s;
}

.cart_radio .item:hover {
  border: 1px solid #074ed4;
}

.cart_radio .item .radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 20px;
}

.cart_radio .item .radio+label {
  position: relative;
  padding: 25px 25px 25px 65px;
  cursor: pointer;
  width: 100%;
  display: block;
  -webkit-transition: .2s;
  transition: .2s;
}

.cart_radio .item .radio+label .title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #1f1f1f;
  margin-top: -1px;
  margin-bottom: 8px;
  -webkit-transition: .2s;
  transition: .2s;
}

.cart_radio .item .radio+label .text {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  color: #1b1b1b;
  -webkit-transition: .2s;
  transition: .2s;
}

.cart_radio .item .radio+label:after {
  content: '';
  position: absolute;
  top: 25px;
  left: 25px;
  width: 19px;
  height: 19px;
  background-color: #ffffff;
  border: 1px solid #ababab;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: .2s;
  transition: .2s;
}

.cart_radio .item .radio:checked+label {
  background: #074ed4;
}

.cart_radio .item .radio:checked+label .title,
.cart_radio .item .radio:checked+label .text {
  color: #ffffff;
}

.cart_radio .item .radio:checked+label:after {
  background: #074ed4;
  border: 6px solid #ffffff;
}

.cart_radio .item.disable {
  background: #f5f5f5 !important;
  border: 1px solid #c9c9c9 !important;
  position: relative;
}

.cart_radio .item.disable:before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.cart {
  padding-bottom: 35px;
}

.cart_agree {
  background: #f5f5f5;
  padding: 50px 0 55px;
}

.cart_agree .checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 20px;
}

.cart_agree .checkbox+label {
  position: relative;
  padding: 0 0 0 28px;
  cursor: pointer;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #212121;
}

.cart_agree .checkbox+label a {
  color: #074ed4;
}

.cart_agree .checkbox+label:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 15px;
  height: 15px;
  border: 1px solid #cbcbcb;
  background: #ffffff url("../images/checbox.svg") no-repeat center center/9px auto;
  -webkit-transition: .2s;
  transition: .2s;
}

.cart_agree .checkbox:checked+label:after {
  border: 1px solid #074ed4;
  background: #074ed4 url("../images/checbox.svg") no-repeat center center/9px auto;
}

.cart_agree .checkbox+label a:hover {
  color: #161616;
}

.cart_agree_df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cart_agree_left {
  min-width: 625px;
  max-width: 625px;
  margin-right: 65px;
}

.cart_agree_left textarea {
  resize: vertical;
  height: 95px;
  min-height: 95px;
  background-color: #ffffff;
  border: 1px solid #dedede;
  border-radius: 1px;
  padding: 10px 20px;
  font-size: 17px;
}

.cart_agree_check {
  margin-bottom: 15px;
}

.cart_agree_left_title {
  padding-top: 20px;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  color: #212121;
  margin-bottom: 15px;
}

.cart_agree {
  padding-bottom: 30px;
}

.cart_agree_right {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.cart_agree_right .btn {
  height: 75px;
  background-color: #074ed4;
  background-image: -webkit-gradient(linear, left top, right top, from(#2771fb), to(#074ed4));
  background-image: linear-gradient(90deg, #2771fb 0%, #074ed4 100%);
  -webkit-box-shadow: 1px 4px 10px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 1px 4px 10px 0px rgba(0, 0, 0, 0.18);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 100%;
  max-width: 100%;
  margin-bottom: 45px;
  position: relative;
}

.cart_agree_right .btn:before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  opacity: 0;
  background-color: #074ed4;
  background-image: -webkit-gradient(linear, left top, right top, from(#074ed4), to(#074ed4));
  background-image: linear-gradient(90deg, #074ed4 0%, #074ed4 100%);
  -webkit-transition: .2s;
  transition: .2s;
}

.cart_agree_right .btn.btn_disable {
  cursor: default;
}

.cart_agree_right .btn.btn_disable:before {
  opacity: 1;
  background-color: #074ed4;
  background-image: -webkit-gradient(linear, left top, right top, from(#d7d7d7), to(#b6b6b6));
  background-image: linear-gradient(90deg, #d7d7d7 0%, #b6b6b6 100%);
}

.cart_agree_right .btn.btn_disable .ic {
  background: #ffffff url("../images/arrow-moreg.svg") no-repeat center center/4px auto;
}

.cart_agree_right .btn span {
  font-size: 18px;
  line-height: 0px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  font-family: Inter;
  margin-right: 35px;
  position: relative;
  z-index: 2;
}

.cart_agree_right .btn .ic {
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  border-radius: 5px;
  background: #ffffff url("../images/arrow-morer.svg") no-repeat center center/4px auto;
  position: relative;
  z-index: 2;
}

.cart_agree_right .btn:hover:before {
  opacity: 1;
}

.cart_agree_info {
  font-size: 14px;
  line-height: 32px;
  font-weight: 400;
  color: #161616;
}

.cart_agree_info span {
  color: #074ed4;
}

.cart_empty {
  text-align: center;
}

.cart_empty_img {
  margin-bottom: 10px;
  padding-top: 50px;
}

.cart_empty_img img {
  width: 455px;
  margin: 0 auto;
}

.cart_empty_title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #074ed4;
  margin-bottom: 10px;
}

.cart_empty_text {
  font-size: 18px;
  font-weight: 400;
  color: #1a1a18;
  line-height: 1.3;
  margin-bottom: 10px;
}

.super_search_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 55px;
  background: #eeeeee;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.super_search_title {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  color: #272727;
  min-width: 220px;
  max-width: 220px;
}

.super_search_box {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  background: #ffffff;
  -webkit-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.03);
  border-radius: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.super_search_input {
  min-width: 430px;
  max-width: 430px;
}

.super_search_input input {
  width: 100%;
  height: 29px;
  border: none;
  border-right: 1px solid #d1d1d1;
  padding: 0 15px 0 55px;
  background: url("../images/searchr.svg") no-repeat 16px center/14px auto;
  font-size: 16px;
}

.super_search_select {
  min-width: 275px;
  max-width: 275px;
  padding-right: 0;
}

.super_search_select .nice-select {
  height: 29px;
  border: none;
  width: 100%;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  color: #161616;
}

.super_search_select .nice-select:before {
  content: '';
  position: absolute;
  z-index: 1;
  right: 2px;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(90deg);
  transform: translate(0, -50%) rotate(90deg);
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-left: 3px solid #161616;
  border-bottom: 3px solid transparent;
}

.super_search_select .nice-select .current {
  font-size: 16px;
}

.super_search_btn {
  min-width: 31px;
  max-width: 31px;
  height: 31px;
  margin-left: auto;
  border-radius: 5px;
  background: #074ed4 url("../images/arrow-more.svg") no-repeat center center/3px auto;
}

.super_search_btn:hover {
  background: #082d72 url("../images/arrow-more.svg") no-repeat center center/3px auto;
}

.super_search_btn span {
  display: none;
  -webkit-transition: .2s;
  transition: .2s;
}

.pb70 {
  padding-bottom: 70px;
}

.catalog_main_box {
  border: 1px solid #eeeeee;
  border-radius: 15px;
  margin-bottom: 37px;
}

.catalog_main_headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 109px;
  background-image: linear-gradient(113deg, #2771fb 36%, #074ed4 63%);
  border: 1px solid #ffffff;
  border-radius: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 220px;
  padding-right: 60px;
  margin-bottom: 35px;
}

.catalog_main_headline .ic {
  position: absolute;
  min-width: 160px;
  max-width: 160px;
  height: 123px;
  bottom: 0;
  left: 32px;
  z-index: 1;
}

.catalog_main_headline .ic img {
  width: auto;
  max-width: initial;
  height: 123px;
}

.catalog_main_headline .title {
  font-size: 28px;
  line-height: 51px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-right: 30px;
  -webkit-transition: .2s;
  transition: .2s;
  font-family: "Lato", sans-serif;
}

.catalog_main_headline .title:hover {
  color: #161616;
}

.catalog_main_headline .val {
  height: 32px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 24px;
  background: #161616;
  font-size: 14px;
  font-family: "HelveticaNeueCyr";
  font-weight: 500;
  color: #ffffff;
}

.catalog_main_headline .btn {
  margin-left: auto;
  min-width: 31px;
  max-width: 31px;
  height: 31px;
  margin-left: auto;
  border-radius: 5px;
  background: #161616 url("../images/arrow-more.svg") no-repeat center center/3px auto;
}

.catalog_main_headline .btn:hover {
  background: #ffffff url("../images/arrow-moreb.svg") no-repeat center center/3px auto;
}

.catalog_main_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 60px 20px;
}

.catalog_main_list .item {
  margin-right: 12px;
  margin-bottom: 12px;
  padding: 10px 20px;
  padding-right: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #eeeeee;
  border-radius: 10px;
}

.catalog_main_list .item .ic {
  min-width: 38px;
  max-width: 38px;
  height: 38px;
  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;
  margin-right: 11px;
}

.catalog_main_list .item .ic img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

.catalog_main_list .item .subtitle {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  color: #272727;
  -webkit-transition: .2s;
  transition: .2s;
}

.catalog_main_list .item:hover {
  border: 1px solid #074ed4;
}

.catalog_main_list .item:hover .subtitle {
  color: #074ed4;
}

.catalog_main_promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 0 60px;
}

.catalog_main_promo .btn {
  height: 110px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 60px;
  min-width: calc(50% - 20px);
  max-width: calc(50% - 20px);
  background-image: -webkit-gradient(linear, left top, right top, from(#f7f7f7), to(#eeeeee));
  background-image: linear-gradient(90deg, #f7f7f7 0%, #eeeeee 100%);
  border: 1px solid #ffffff;
  border-radius: 15px;
}

.catalog_main_promo .btn .ic {
  min-width: 31px;
  max-width: 31px;
  height: 31px;
  margin-left: auto;
  border-radius: 5px;
  background: #074ed4 url("../images/arrow-more.svg") no-repeat center center/4px auto;
}

.catalog_main_promo .btn span {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #272727;
}

.catalog_main_promo .btn:hover {
  background: #161616;
}

.catalog_main_promo .btn:hover span {
  color: #ffffff;
}

.cat_brand_slider_wrap {
  background: url("../images/catb.jpg") no-repeat center top/cover;
  padding: 55px 0 50px;
}

.cat_brand_slider_df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cat_brand_slider_headline {
  min-width: 280px;
  max-width: 280px;
  padding-right: 20px;
  margin-bottom: 45px;
}

.cat_brand_slider_headline .title {
  font-size: 46px;
  line-height: 1.2;
  font-weight: 600;
  color: #0e0e0e;
  font-family: "Lato", sans-serif;
}

.cat_brand_slider_headline .subtitle {
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.cat_brand_slider_text {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #2c2c2c;
}

.cat_brand_look .btn_white span {
  font-family: 'Calibri', sans-serif;
}

.cat_brand_slider_box {
  position: relative;
  padding-left: 110px;
  padding-right: 110px;
}

.cat_brand_slider_box .swiper-slide {
  background: #ffffff;
  padding: 30px 10px 25px;
  border: 1px solid #ffffff;
  -webkit-transition: .2s;
  transition: .2s;
}

.cat_brand_slider_box .swiper-slide:hover {
  border: 1px solid #074ed4;
}

.cat_brand_slider_box .swiper-slide:hover .text {
  color: #074ed4;
}

.cat_brand_slider_box .text {
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  color: #2c2c2c;
  -webkit-transition: .2s;
  transition: .2s;
}

.cat_brand_slider_box .btn_sl {
  width: 42px;
  height: 42px;
  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;
  background: #074ed4 url("../images/arrow-more.svg") no-repeat center center/5px auto;
  border-radius: 50%;
  -webkit-transition: .2s;
  transition: .2s;
}

.cat_brand_slider_box .btn_sl:hover {
  background: #082d72 url("../images/arrow-more.svg") no-repeat center center/5px auto;
}

.cat_brand_slider_box .btn_sl.swiper-button-prev {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  left: 50%;
  margin-left: -800px;
}

.cat_brand_slider_box .btn_sl.swiper-button-next {
  right: 50%;
  margin-right: -800px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.cat_brand_look {
  text-align: center;
  padding-top: 42px;
}

.cat_brand_look .btn {
  height: 50px;
  border-radius: 25px;
  padding: 0 80px;
  -webkit-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.1);
}

.cat_brand_look .btn span {
  font-size: 14px;
  text-transform: uppercase;
}

.category_buttons {
  padding-bottom: 40px;
}

.category_buttons .catalog_main_list {
  padding: 0;
}

.page_content .accii_catalog {
  padding-top: 0;
}

.sidebar_menu_links.sidebar_menu_links_cat li.main_nav_submenu>a {
  padding-left: 48px;
}

.sidebar_menu_links.sidebar_menu_links_cat li.main_nav_submenu>a.active {
  background: #074ed4;
  color: #ffffff;
}

.sidebar_menu_links.sidebar_menu_links_cat li.main_nav_submenu>a.active:before {
  border-left-color: #ffffff;
}

.sidebar_menu_links.sidebar_menu_links_cat>li>a {
  padding-left: 18px;
}

.sidebar_menu_links.sidebar_menu_links_cat>li>a:before {
  display: none;
}

.sidebar_menu_links.sidebar_menu_links_cat li.main_nav_submenu>a:before {
  opacity: 1;
  left: 32px;
  top: 19px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  display: block;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-left: 3px solid #074ed4;
  border-bottom: 3px solid transparent;
}

.header_nav_submenu {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.header_nav_submenu>ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header_nav_submenu>ul>li>a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 60px;
  padding: 0 25px;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: w;
}

.header_nav_submenu>ul>li>a:hover,
.header_nav_submenu>ul>li>a.active {
  color: o;
}

.header_nav_submenu>ul>li>a:hover:before,
.header_nav_submenu>ul>li>a.active:before {
  border-left-color: o;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.header_nav_submenu>ul>li>a:before {
  content: '';
  position: absolute;
  z-index: 1;
  right: 0;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-left: 3px solid w;
  border-bottom: 3px solid transparent;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: .2s;
  transition: .2s;
}

.main_nav_level1 {
  display: none;
  left: 0;
  top: 100%;
  margin-top: 6px;
}

.sidebar_banner {
  padding-top: 37px;
  margin-bottom: 37px;
}

.cat_cat_textpage_box {
  -webkit-box-shadow: 1px 4px 38px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 1px 4px 38px 0px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  padding-bottom: 45px;
  position: relative;
  background: #ffffff;
}

.cat_cat_textpage_box h2 {
  padding: 35px 70px;
  padding-right: 380px;
  font-size: 26px;
  line-height: 38px;
  font-weight: 700;
  color: #0e0e0e;
  font-family: "Lato", sans-serif;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 30px;
}

.cat_cat_textpage_box p {
  padding: 0 70px;
  padding-right: 380px;
  margin-bottom: 15px;
  font-family: Calibri;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  color: #0e0e0e;
}

.cat_cat_textpage_box .ic {
  position: absolute;
  bottom: 0;
  right: 70px;
  width: 277px;
}

.cat_cat_textpage_box strong {
  font-weight: 700;
}

.cat_cat_textpage_box a {
  text-decoration: underline !important;
  color: #074ed4;
}

.cat_cat_textpage_box a:hover {
  color: #161616;
}

.j_polzun .noUi-base {
  margin-top: 20px;
}

.j_polzun .noUi-handle:before,
.j_polzun .noUi-handle:after {
  display: none;
}

.j_polzun .noUi-handle {
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 15px;
  height: 15px;
}

.j_polzun .noUi-horizontal {
  height: 4px;
  background: #ededed;
}

.j_polzun .noUi-connects {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 0px);
}

.j_polzun .noUi-connect {
  background: #074ed4;
}

.j_polzun .noUi-horizontal .noUi-handle {
  right: -10px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  background: #074ed4;
}

.cat_filter_headline {
  border-bottom: 1px solid #eeeeee;
  padding: 20px 65px;
  background: #ffffff url("../images/filter.svg") no-repeat 26px 23px/19px auto;
  cursor: pointer;
  position: relative;
}

.cat_filter_headline:before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 20px;
  background-color: #074ed4;
  border-radius: 1px;
  right: 23px;
  top: 23px;
  background: #074ed4 url("../images/arrow-more.svg") no-repeat center center/3px auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: .2s;
  transition: .2s;
}

.cat_filter_title {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: #074ed4;
  text-transform: uppercase;
}

.cat_filter_subtitle {
  line-height: 20px;
  font-weight: 700;
  font-size: 14px;
  color: #222222;
  text-transform: uppercase;
}

.filter_button {
  padding: 15px 27px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  color: #151515;
  position: relative;
  -webkit-transition: .2s;
  transition: .2s;
  border-bottom: 1px solid #eeeeee;
}

.filter_button:before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 20px;
  right: 28px;
  top: 12px;
  background: #ffffff url("../images/arrow-moreb.svg") no-repeat center center/3px auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  border: 1px solid #eeeeee;
  border-radius: 1px;
  -webkit-transition: 0s;
  transition: 0s;
}

.filter_button:hover {
  color: #074ed4;
  cursor: pointer;
}

.filter_button:hover:before {
  border: 1px solid #074ed4;
  background: #ffffff url("../images/arrow-morer.svg") no-repeat center center/3px auto;
}

.filter_button.active:before {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.filter_container {
  padding: 20px 28px;
  display: none;
}

.active .filter_container {
  display: block;
}

.j_polzun_wrap .df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.j_polzun_wrap .df span {
  font-size: 13px;
  font-weight: 400;
  color: #2c2828;
  font-family: "HelveticaNeueCyr";
  margin-right: 8px;
}

.j_polzun_wrap .df input {
  min-width: 65px;
  max-width: 65px;
  height: 33px;
  background-color: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 1px;
  text-align: center;
  margin-right: 8px;
  font-size: 13px;
  font-weight: 400;
  color: #2c2828;
  font-family: "HelveticaNeueCyr";
}

.filter_box_check .checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 20px;
}

.filter_box_check .checkbox+label {
  position: relative;
  padding: 1px 0 0 28px;
  cursor: pointer;
  font-size: 13px;
  line-height: 30px;
  font-weight: 400;
  color: #2c2828;
  font-family: "HelveticaNeueCyr";
}

.filter_box_check .checkbox+label:hover {
  color: #074ed4;
}

.filter_box_check .checkbox+label:after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0px;
  width: 16px;
  height: 16px;
  border: 1px solid #b0a5a5;
  border-radius: 4px;
  background: #ffffff url("../images/checbox.svg") no-repeat center center/8px auto;
  -webkit-transition: .2s;
  transition: .2s;
}

.filter_box_check .checkbox:checked+label:after {
  background: #074ed4 url("../images/checbox.svg") no-repeat center center/8px auto;
  border: 1px solid #063dad;
}

.filter_container {
  max-height: 336px;
  border-bottom: 1px solid #eeeeee;
}

.filter_container input {
  height: 33px;
  background-color: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 1px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  color: #2c2828;
  font-family: "HelveticaNeueCyr";
}

.filter_btns {
  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;
  padding: 15px 28px;
}

.filter_btns .btn_reset {
  width: 19px;
  height: 19px;
  min-width: 19px;
  max-width: 19px;
  background: url("../images/closer.svg") no-repeat center center/8px auto;
  border: 1px solid #074ed4;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.filter_btns .btn_reset:hover {
  background: #ffffff url("../images/closeb.svg") no-repeat center center/8px auto;
  border: 1px solid #161616;
}

.filter_btns .btn_submit {
  min-width: calc(100% - 40px);
  max-width: calc(100% - 40px);
  height: 39px;
  background-image: linear-gradient(113deg, #2771fb 23%, #074ed4 76%);
  border: 1px solid transparent;
  border-radius: 3px;
}

.filter_btns .btn_submit span {
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "HelveticaNeueCyr";
}

.filter_btns .btn_submit:hover {
  background-image: linear-gradient(113deg, #0b49bd 23%, #06307e 76%);
}

.category_filter_unit_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 17px 30px;
  background-image: -webkit-gradient(linear, left top, right top, from(#f7f7f7), to(#eeeeee));
  background-image: linear-gradient(90deg, #f7f7f7 0%, #eeeeee 100%);
  border: 1px solid #ffffff;
  border-radius: 4px;
  padding-right: 55px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.category_filter_unit_head .btn {
  width: 25px;
  min-width: 25px;
  max-width: 25px;
  height: 25px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  margin-left: auto;
  background: #ffffff url("../images/arrow-moreb.svg") no-repeat center center/3px auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.category_filter_unit_head .btn:hover {
  background: #ffffff url("../images/arrow-morer.svg") no-repeat center center/3px auto;
}

.category_filter_unit_title {
  padding-left: 33px;
  background: url("../images/filter.svg") no-repeat left center/14px auto;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #074ed4;
  margin-right: 5px;
  text-transform: uppercase;
}

.category_filter_unit_subtext {
  font-family: "Lato", sans-serif;
  font-size: 11px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #161616;
  text-transform: uppercase;
}

.category_filter_unit_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 30px;
}

.category_filter_unit_text {
  font-size: 16px;
  font-weight: 400;
  color: #282828;
}

.category_filter_unit_btn .btn {
  padding: 0 20px;
  height: 33px;
  border: 1px solid #074ed4;
  border-radius: 3px;
}

.category_filter_unit_btn .btn span {
  font-size: 13px;
  color: #074ed4;
}

.category_filter_unit_btn .btn i {
  min-width: 13px;
  max-width: 13px;
  height: 13px;
  background: url("../images/filter-cancel.svg") no-repeat center center/100% auto;
  border: 1px solid transparent;
  border-radius: 2px;
  margin-right: 10px;
  -webkit-transition: .2s;
  transition: .2s;
}

.category_filter_unit_btn .btn:hover {
  background: #074ed4;
}

.category_filter_unit_btn .btn:hover span {
  color: #ffffff;
}

.category_filter_unit_btn .btn:hover i {
  background: url("../images/filter-cancelw.svg") no-repeat center center/100% auto;
}

.category_filter_unit {
  margin-bottom: 25px;
}

.catalog_item_sliders {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 550px;
  max-width: 550px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.catalog_item_slider_menu {
  min-width: 80px;
  max-width: 80px;
  margin-right: 12px;
}

.catalog_item_slider_menu .swiper-container {
  height: 430px;
}

.catalog_item_slider_menu .swiper-slide {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #eeeeee;
  border-radius: 3px;
}

.catalog_item_slider_menu .swiper-slide:hover {
  border: 1px solid #161616;
}

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

.catalog_item_slider_menu .swiper-slide-thumb-active {
  border: 1px solid #074ed4;
}

.catalog_item_slider_big {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: calc(100% - 98px);
  min-width: calc(100% - 98px);
  margin-bottom: 30px;
}

.catalog_item_slider_big .swiper-slide {
  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;
  margin: auto;
}

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

.catalog_item_slider_big .swiper-container {
  border: 1px solid #eeeeee;
  border-radius: 3px;
  height: 450px;
}

.sl_btn_th {
  width: 100%;
  height: 20px;
  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;
  position: static;
  margin: 0;
}

.sl_btn_th:before {
  content: '';
  z-index: 1;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 5px solid #074ed4;
  border-bottom: 5px solid transparent;
}

.sl_btn_th.swiper-button-prev {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  margin-bottom: 10px;
}

.sl_btn_th.swiper-button-next {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-top: 10px;
}

.catalog_item_slider_big_info {
  font-size: 12px;
  line-height: 15px;
  font-weight: 400;
  color: #6d6d6d;
  margin-top: 15px;
}

.catalog_item_tabs .j_tabs_box {
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
  min-height: initial;
}

.catalog_item_tabs .j_tabs_headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 20px;
  margin-top: 0;
}

.catalog_item_tabs .j_tabs_headline .btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 0 22px;
  position: relative;
  margin-right: 45px;
}

.catalog_item_tabs .j_tabs_headline .btn span {
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  color: #161616;
  font-family: "Lato", sans-serif;
}

.catalog_item_tabs .j_tabs_headline .btn .ic {
  background: #074ed4;
  height: 17px;
  border: 1px solid #ffffff;
  border-radius: 3px;
  padding: 0 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 9px;
  font-size: 10px;
  line-height: 48px;
  font-weight: 500;
  color: #ffffff;
  font-family: "HelveticaNeueCyr";
}

.catalog_item_tabs .j_tabs_headline .btn:before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: transparent;
  -webkit-transition: .2s;
  transition: .2s;
}

.catalog_item_tabs .j_tabs_headline .btn:hover:before {
  height: 1px;
  background: #074ed4;
}

.catalog_item_tabs .j_tabs_headline .btn:hover span {
  color: #074ed4;
}

.catalog_item_tabs .j_tabs_headline .btn.active:before {
  height: 2px;
  background: #074ed4;
}

.catalog_item_tabs .j_tabs_headline .btn.active span {
  color: 074ed4;
}

.catalog_item_tabs .j_tabs_headline .btn.disable .ic {
  background: #cccccc;
  color: #ffffff;
}

.j_tabs_box {
  display: none;
}

.j_tabs_box.j_tabs_box1 {
  display: block;
}

.catalog_item_tabs {
  min-width: 100%;
  max-width: 100%;
}

.catitem_textpage p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.catitem_textpage p strong,
.catitem_textpage p b {
  font-weight: 700;
}

.catitem_textpage p a {
  color: #074ed4;
  text-decoration: underline !important;
}

.catitem_textpage h4 {
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.catitem_textpage h3 {
  font-size: 24px;
  line-height: 22px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.catitem_textpage h2 {
  font-size: 28px;
  line-height: 22px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.catitem_textpage p a:hover {
  color: #161616;
}

.catitem_textpage_18 {
  border-top: 1px solid #eaeaea;
  padding: 24px 0;
  padding-left: 53px;
  background: url("../images/18plus.svg") no-repeat left center/40px auto;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #2c2c2c;
}

.catitem_textpage_18 strong {
  font-weight: 700;
}

.catitem_textpage_18-2 {
  border-top: 1px solid #eaeaea;
  padding: 24px 0;
  padding-left: 53px;
  background: url("../images/18plus-2.svg") no-repeat left center/40px auto;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #2c2c2c;
}

.catitem_textpage_18-2 strong {
  font-weight: 700;
}

.catitem_textpage_18-3 {
  border-top: 1px solid #eaeaea;
  padding: 24px 0;
  padding-left: 53px;
  background: url("../images/18plus-3.svg") no-repeat left center/40px auto;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #2c2c2c;
}

.catitem_textpage_18-3 strong {
  font-weight: 700;
}

.catitem_characters_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #2c2c2c;
  padding-bottom: 10px;
  margin-bottom: 10px;
  margin-top: 0;
  border-bottom: 1px solid #eaeaea;
}

.catitem_characters_line:last-child {
  border-bottom: none;
}

.catitem_characters_line .name {
  min-width: 250px;
  max-width: 250px;
  padding-right: 20px;
}

.catitem_characters_line .val {
  font-weight: 400;
}

.catitem_posts .rat_info,
.catalog_item_info_top .rat_info {
  margin-right: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catitem_posts .rat_info span,
.catalog_item_info_top .rat_info span {
  width: 12px;
  min-width: 12px;
  max-width: 12px;
  height: 12px;
  background: url("../images/rating-star.svg") no-repeat center center/12px auto;
  margin-right: 1px;
}

.catitem_posts .rat_info span.active,
.catalog_item_info_top .rat_info span.active {
  background: url("../images/rating-starg.svg") no-repeat center center/12px auto;
}

.catitem_posts_headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 28px;
}

.catitem_posts_headline_title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #232323;
  margin-right: 15px;
}

.catitem_posts_headline_value {
  padding: 0 10px;
  height: 28px;
  background-color: #074ed4;
  border-radius: 3px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 15px;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #ffffff;
  font-family: "HelveticaNeueCyr";
}

.catitem_posts_headline_val {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #232323;
  font-family: "HelveticaNeueCyr";
}

.catitem_posts_headline_stars {
  margin-right: 10px;
}

.catitem_post {
  border: 1px solid #ebebeb;
  border-radius: 5px;
  padding: 23px 40px;
  margin-bottom: 6px;
}

.catitem_post_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 15px;
}

.catitem_post_title .rat_info {
  margin-bottom: 8px;
}

.catitem_post_title .name {
  font-size: 15px;
  line-height: 16px;
  font-weight: 400;
  color: #232323;
}

.catitem_post_title_date {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #a9a9a9;
}

.catitem_post_text {
  padding-top: 15px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #232323;
}

.catitem_posts_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 30px;
}

.catitem_posts_buttons .btn_wtor {
  height: 46px;
  border-radius: 23px;
  padding: 0 50px;
}

.catitem_posts_buttons .btn_wtor span {
  color: #161616;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}

.catitem_posts_buttons .btn_wtor:hover span {
  color: #ffffff;
}

.catitem_posts_buttons .btn_to_post {
  height: 46px;
  border-radius: 3px;
  padding: 0 50px;
}

.catitem_posts_buttons .btn_to_post span {
  font-weight: 700;
}

.catalog_item_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalog_item_info {
  padding-left: 65px;
}

.catalog_item_info h1 {
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
  color: #2c2c2c;
  font-family: helveticaneuecyr;
  margin-bottom: 20px;
}

.catalog_item_info_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 25px;
  border-bottom: 2px solid #074ed4;
}

.catalog_item_info_top .article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 25px;
}

.catalog_item_info_top .name {
  font-size: 12px;
  font-weight: 400;
  color: #7d7d7d;
  font-family: "HelveticaNeueCyr";
}

.catalog_item_info_top .val {
  font-size: 12px;
  font-weight: 400;
  color: #7d7d7d;
  font-family: "HelveticaNeueCyr";
  margin-left: 6px;
}

.catalog_item_info_top .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.catalog_item_info_top .catitem_posts_headline_val {
  font-size: 12px;
  font-family: "HelveticaNeueCyr";
  font-weight: 500;
  line-height: 1;
}

.catalog_item_info_top .catitem_posts_headline_stars {
  margin-left: 10px;
  margin-right: 7px;
}

.catalog_item_office {
  padding: 20px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #181818;
  font-family: "HelveticaNeueCyr";
  border-bottom: 1px solid #eeeeee;
}

.catalog_item_office .name {
  margin-bottom: 8px;
}

.catalog_item_office .val {
  font-weight: 700;
}

.catalog_item_office_country {
  margin-right: 60px;
}

.catitem_chort_desription {
  padding-top: 18px;
}

.catitem_chort_desription .text {
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 10px;
}

.catitem_chort_desription .link {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #074ed4;
  border-bottom: 1px dashed #074ed4;
}

.catitem_chort_desription .link:hover {
  color: #161616;
  border-bottom: 1px dashed #161616;
}

.catalog_item_info_main {
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  margin-top: 25px;
  background: #64a342;
  overflow: hidden;
  margin-bottom: 20px;
}

.catalog_item_info_main_wrap {
  background: #ffffff;
  padding: 25px 45px;
  border-radius: 8px;
}

.catalog_item_info_main_cost {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.catalog_item_info_main_cost .name {
  font-size: 12px;
  line-height: 13px;
  font-weight: 400;
  color: #2c2c2c;
  margin-right: 18px;
}

.catalog_item_info_main_cost .val {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: #2c2c2c;
  font-family: "HelveticaNeueCyr";
}

.catalog_item_info_main_cost .val span {
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .catalog_item_info_main_cost {
    flex-wrap: wrap;
  }

  .catalog_item_info_main_cost .name {
    min-width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }

  .catalog_item_info_main_cost .val {
    font-size: 24px;
  }
}

.catalog_item_info_main_cost .del {
  font-size: 24px;
  font-weight: 700;
  color: #074ed4;
  margin-left: 15px;
  font-family: "HelveticaNeueCyr";
  margin-bottom: 0;
  margin-top: auto;
}

.catalog_item_info_main_cost .del strong {
  text-decoration: line-through;
}

.catalog_item_info_main_cost .del span {
  font-size: 20px;
}

.catalog_item_info_main_control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.catalog_item_info_main_control .btn_red {
  height: 46px;
  margin-right: 30px;
  padding: 0 40px;
}

.catalog_item_info_main_control .btn_red.disable {
  cursor: default;
  background: #ececec !important;
}

.catalog_item_info_main_control .btn_red.disable:before {
  display: none;
}

.catalog_item_info_main_control .btn_red.disable span {
  color: #9c9c9c;
}

.catalog_item_info_main_control .btn_red span {
  font-size: 12px;
  font-weight: 700;
  font-family: 'Inter';
}

.catalog_item_info_main_control .favor .val {
  padding-left: 35px;
  background: url("../images/favorite.svg") no-repeat left center/20px auto;
  font-size: 11px;
  line-height: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: #262626;
  font-family: 'Inter';
  -webkit-transition: .2s;
  transition: .2s;
}

.catalog_item_info_main_control .favor:hover .val,
.catalog_item_info_main_control .favor.active .val {
  color: #074ed4;
  background: url("../images/favoriter.svg") no-repeat left center/20px auto;
}

.super_search_btn span {
  text-transform: uppercase;
}

.about_main_links .btn span {
  font-weight: 700;
}

.catalog_item_info_main_address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalog_item_info_main_address .store {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #5d9725;
  margin-right: 20px;
  white-space: nowrap;
}

.catalog_item_info_main_address .store.nostorage {
  color: #161616;
}

.catalog_item_info_main_address .val {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  color: #161616;
  padding-left: 15px;
  background: url("../images/location.svg") no-repeat left center/7px auto;
}

.catalog_item_info_main_address .val:hover {
  color: #074ed4;
}

.catalog_item_info_main_delivery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalog_item_info_main_delivery .name {
  font-family: Inter;
  font-size: 10px;
  line-height: 1.7;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  padding-left: 30px;
  margin-right: 40px;
  background: url("../images/delivery.svg") no-repeat left center/16px auto;
}

.catalog_item_info_main_delivery .btn_more {
  padding-left: 27px;
  background: url("../images/info.svg") no-repeat left center/14px auto;
  height: 14px;
}

.catalog_item_info_main_delivery .btn_more span {
  font-size: 13px;
  line-height: 32px;
  font-weight: 400;
  color: #ffffff;
  padding-right: 17px;
  background: url("../images/arrow-more.svg") no-repeat right center/3px auto;
}

.catalog_item_info_main_delivery .btn_more:hover {
  background: url("../images/infoy.svg") no-repeat left center/14px auto;
}

.catalog_item_info_main_delivery .btn_more:hover span {
  color: #c6ffa8;
  background: url("../images/arrow-morey.svg") no-repeat right center/3px auto;
}

.catalog_item_info_main_consult {
  position: relative;
}

.consult_select {
  position: absolute;
  top: 90px;
  left: 40px;
  width: 323px;
  z-index: 9;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 0;
  display: none;
}

.consult_select a {
  display: block;
  padding: 8px 20px;
  margin-bottom: 0;
  color: #161616;
  border-bottom: 1px solid #ededed;
}

.consult_select a:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.consult_select a:hover {
  background: #074ed4;
  color: #ffffff;
}

.catalog_item_info_main_consult {
  background-image: -webkit-gradient(linear, left top, right top, from(#f7f7f7), to(#eeeeee));
  background-image: linear-gradient(90deg, #f7f7f7 0%, #eeeeee 100%);
  border-radius: 5px;
  padding: 20px 132px 27px 40px;
  margin-bottom: 27px;
  position: relative;
}

.catalog_item_info_main_consult .ic {
  position: absolute;
  width: 95px;
  z-index: 1;
  right: 20px;
  top: 15px;
}

.catalog_item_info_main_consult .nice-select {
  height: 40px;
  float: none;
  width: 100%;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
  cursor: pointer;
  margin: auto;
  font-size: 16px;
  font-weight: 400;
  color: #232323;
  padding-right: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catalog_item_info_main_consult .nice-select.open:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.catalog_item_info_main_consult .nice-select .current {
  width: 100%;
  display: block;
  margin: auto;
  font-size: 16px;
  font-weight: 400;
  color: #232323;
  padding-right: 10px;
}

.catalog_item_info_main_consult .consult_title {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.catalog_item_info_main_consult .nice-select:after {
  background: url("../images/arrow-moreb.svg") no-repeat center center/4px auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 13px;
  right: 20px;
}

.cat_item_brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 25px 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 50px;
}

.cat_item_brand_logo {
  min-width: 157px;
  max-width: 157px;
  margin-right: 30px;
}

.cat_item_brand_head .lab {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 6px;
}

.cat_item_brand_head .name {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #2c2c2c;
  -webkit-transition: .2s;
  transition: .2s;
}

.cat_item_brand .ic {
  position: relative;
  height: 24px;
  background: #ffffff;
  border-radius: 5px;
  min-width: 24px;
  max-width: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #161616;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .2s;
  transition: .2s;
}

.cat_item_brand .ic:before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-left: 4px solid #161616;
  border-bottom: 4px solid transparent;
  -webkit-transition: .2s;
  transition: .2s;
}

.cat_item_brand:hover {
  border: 1px solid #074ed4;
}

.cat_item_brand:hover .cat_item_brand_head .name {
  color: #074ed4;
}

.cat_item_brand:hover .ic {
  background: #074ed4;
  border: 1px solid #074ed4;
}

.cat_item_brand:hover .ic:before {
  border-left: 4px solid #ffffff;
}

.catitem_back .btn {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #2c2c2c;
  padding-left: 42px;
  background: url("../images/back-arrow.svg") no-repeat left center/23px auto;
}

.catitem_back .btn strong {
  font-weight: 700;
}

.catitem_back .btn:hover {
  color: #074ed4;
}

.catitem_informations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.catitem_informations_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: calc(50% - 5px);
  max-width: calc(50% - 5px);
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  padding: 23px 40px;
  position: relative;
}

.catitem_informations_link .ic {
  position: absolute;
  height: 24px;
  background: #ffffff;
  border-radius: 5px;
  min-width: 24px;
  max-width: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
  top: 20px;
  right: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #074ed4;
  border: 1px solid #074ed4;
  -webkit-transition: .2s;
  transition: .2s;
}

.catitem_informations_link .ic:before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-left: 4px solid #ffffff;
  border-bottom: 4px solid transparent;
  -webkit-transition: .2s;
  transition: .2s;
}

.catitem_informations_link:hover {
  border: 1px solid #074ed4;
}

.catitem_informations_link:hover .title {
  color: #074ed4;
}

.catitem_informations_ic {
  min-width: 88px;
  max-width: 88px;
  height: 88px;
  margin-right: 20px;
}

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

.catitem_informations_head {
  padding-right: 40px;
}

.catitem_informations_head .title {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #000000;
  margin-bottom: 9px;
  -webkit-transition: .2s;
  transition: .2s;
}

.catitem_informations_head .text {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #292929;
}

.catitem_promo_boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 50px;
}

.catitem_promo_boxes .j_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}

.catitem_promo_boxes .j_item {
  padding-right: 30px;
  min-width: 290px;
  max-width: 290px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catitem_promo_boxes .j_item_img {
  min-width: 60px;
  max-width: 60px;
  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;  
  margin-right: 20px;
}

.catitem_promo_boxes .j_item_img img {
  width: 70px;
  height: 100%;
}

.catitem_promo_boxes .j_item_content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.catitem_promo_boxes .j_item_text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #2c2c2c;
}

.catitem_promo_boxes_title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #000000;
  font-family: "Lato", sans-serif;
  min-width: 260px;
  max-width: 260px;
  padding-right: 20px;
}

.catitem_also {
  padding: 45px 0 55px;
  background: #f6f6f6;
}

.catitem_also_headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catitem_also_headline .title {
  text-transform: uppercase;
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  color: #2c2c2c;
  font-family: "Lato", sans-serif;
  margin-bottom: 25px;
  margin-right: auto;
}

.catitem_also_headline .sl_btn {
  position: relative;
  border-radius: 5px;
  min-width: 36px;
  max-width: 36px;
  height: 36px;
  margin-right: 0;
  margin-left: 9px;
  right: 0;
  left: initial;
}

.catitem_also_headline .sl_btn.swiper-button-disabled {
  background: #161616;
}

.catitem_also .item_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
  padding: 25px 20px;
  border: 1px solid #ffffff;
  position: relative;
}

.catitem_also .item_wrap:hover {
  border: 1px solid #074ed4;
}

.catitem_also .item_img {
  min-width: 135px;
  max-width: 135px;
  height: 155px;
  margin-right: 20px;
}

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

.catitem_also .item_img_marker {
  position: absolute;
  left: 0;
  top: 0;
  height: 19px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 15px;
  font-size: 8px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catitem_also .item_text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #272727;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  margin-bottom: 13px;
  height: 48px;
  -webkit-transition: .2s;
  transition: .2s;
}

.catitem_also .item_text:hover {
  color: #074ed4;
}

.catitem_also .item_cost {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.catitem_also .item_cost .main {
  min-width: 95px;
  max-width: 95px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: #2c2c2c;
  font-family: "HelveticaNeueCyr";
}

.catitem_also .item_cost .main span {
  font-size: 14px;
}

.catitem_also .item_cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catitem_also .item_cart .btn {
  padding: 0 25px;
  border-radius: 3px;
  height: 32px;
  margin-right: 15px;
}

.catitem_also .item_cart .btn span {
  font-size: 14px;
}

.catitem_also .item_favorit {
  min-width: 17px;
  max-width: 17px;
  height: 16px;
  background: url("../images/favorite.svg") no-repeat center center/17px auto;
  cursor: pointer;
}

.catitem_also .item_favorit:hover {
  background: url("../images/favoriter.svg") no-repeat center center/17px auto;
}

.catitem_also .item_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.catitem_also .item_info .storage {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  color: #5d9725;
  margin-right: 30px;
  white-space: nowrap;
}

.catitem_also .item_rating {
  margin-right: 15px;
  margin-bottom: 0;
}

.catitem_also .delivery {
  font-size: 10px;
  line-height: 20px;
  font-weight: 400;
  color: #ffffff;
  padding: 0 12px;
  background: #64a342;
}

.catitem_posts_form {
  border: 1px solid #e9e9e9;
  border-radius: 2px;
  position: relative;
  margin-bottom: 30px;
  display: none;
}

.catitem_posts_form .btn_close_form {
  position: absolute;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  top: 20px;
  right: 30px;
  background: url("../images/menu-closeg.svg") no-repeat center center/12px auto;
  border: 1px solid #d7d7d7;
}

.catitem_posts_form .btn_close_form:hover {
  border: 1px solid #074ed4;
  background: url("../images/menu-closer.svg") no-repeat center center/12px auto;
}

.catitem_posts_form_title {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #161616;
  font-family: "Lato", sans-serif;
  padding: 25px 60px 22px 40px;
  border-bottom: 1px solid #ebebeb;
}

.catitem_posts_form_title strong {
  font-weight: 700;
  color: #074ed4;
}

.catitem_posts_form_rating {
  min-width: 160px;
  max-width: 160px;
}

.catitem_posts_form_rating .simple_rating {
  position: relative;
  display: inline-block;
}

.catitem_posts_form_rating .simple_rating_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.catitem_posts_form_rating .simple_rating_item {
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
}

.catitem_posts_form_rating .simple_rating_label {
  width: 18px;
  margin-right: 3px;
  height: 18px;
}

.catitem_posts_form_rating .simple_rating_label svg {
  width: 100%;
}

.catitem_posts_form_rating .simple_rating_label svg .cls-r {
  fill: #dadada;
}

.catitem_posts_form_rating .simple_rating_label:hover svg .cls-r,
.catitem_posts_form_rating .simple_rating_label:hover~.simple_rating_label svg .cls-r {
  fill: #074ed4;
  opacity: 0.7;
}

.catitem_posts_form_rating .simple_rating_item:checked+.simple_rating_label~.simple_rating_label svg .cls-r,
.catitem_posts_form_rating .simple_rating_item:checked+.simple_rating_label svg .cls-r {
  fill: #074ed4;
}

.catitem_posts_form_rating .rat_tit {
  font-size: 15px;
  line-height: 16px;
  font-weight: 400;
  color: #373737;
  margin-bottom: 10px;
}

.catitem_posts_form_rating .rat_tit span {
  color: #074ed4;
}

.catitem_posts_form_rating .rat_inform {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #3b3b3b;
  padding-top: 10px;
}

.catitem_posts_form_content {
  padding: 20px 40px;
}

.catitem_posts_form_df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.catitem_posts_form_ps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form_control {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 25px;
}

.form_control .lab {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #373737;
  margin-bottom: 10px;
}

.form_control .lab span {
  color: #074ed4;
}

.form_control input {
  padding: 0 15px;
  border: 1px solid #dedede;
  border-radius: 1px;
  width: 100%;
  height: 40px;
  line-height: 1.2;
  font-size: 16px;
}

.form_control textarea {
  padding: 10px 15px;
  border: 1px solid #dedede;
  border-radius: 1px;
  width: 100%;
  height: 70px;
  line-height: 1.2;
  font-size: 16px;
  resize: vertical;
}

.form_control_100 {
  min-width: 100%;
  max-width: 100%;
}

.form_control_50 {
  min-width: calc(50% - 12px);
  max-width: calc(50% - 12px);
}

.catitem_posts_form_ps_left {
  min-width: 255px;
  max-width: 255px;
  margin-right: 30px;
}

.catitem_posts_form_ps_left .btn_red {
  height: 54px;
  width: 100%;
  margin-bottom: 15px;
}

.catitem_posts_form_ps_left .btn_red span {
  font-size: 14px;
  font-weight: 700;
}

.catitem_posts_form_ps_info {
  font-size: 11px;
  line-height: 13px;
  font-weight: 400;
  color: #232323;
  padding-top: 5px;
}

.catitem_posts_form_ps_info a {
  color: #074ed4;
}

.catitem_posts_form_ps_info a:hover {
  color: #161616;
}

.catitem_together_df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catitem_together {
  background: #f6f6f6;
  padding: 40px 0 50px;
}

.catitem_together_headline {
  min-width: 335px;
  max-width: 335px;
  padding-top: 30px;
  padding-right: 30px;
}

.catitem_together_headline .title {
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  color: #2c2c2c;
  font-family: "Lato", sans-serif;
}

.catitem_together_headline .subtitle {
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  color: #2c2c2c;
  font-family: "Lato", sans-serif;
  margin-bottom: 30px;
}

.catitem_together_headline .con_panel {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
}

.catitem_together_headline .con_panel .sl_btn {
  position: relative;
  left: 0;
  right: initial;
  top: 0;
  margin: 0;
  min-width: 43px;
  max-width: 43px;
  margin-right: 9px;
  border-radius: 5px;
  height: 43px;
}

.catitem_together_headline .text {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #292929;
}

.catitem_together_slider .swiper-container {
  padding-left: 1px;
}

.catitem_together_slider {
  min-width: calc(100% - 335px);
  max-width: calc(100% - 335px);
  overflow: hidden;
}

.catitem_together_slider .item_wrap {
  display: block;
  padding: 25px 33px;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid transparent;
  margin-bottom: 0;
  -webkit-transition: .2s;
  transition: .2s;
}

.catitem_together_slider .item_wrap:hover {
  border: 1px solid #074ed4;
}

.catitem_together_slider .swiper-slide {
  margin-bottom: 0;
}

.catitem_together_slider .swiper-container {
  height: 100%;
}

.catitem_together_slider .item_img {
  height: 202px;
  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;
  margin-bottom: 20px;
}

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

.catitem_together_slider .item_cost {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: #2c2c2c;
  font-family: "HelveticaNeueCyr";
  margin-bottom: 13px;
}

.catitem_together_slider .item_cost span {
  font-size: 14px;
}

.catitem_together_slider .item_title {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #272727;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  height: 40px;
  -webkit-transition: .2s;
  transition: .2s;
}

.catitem_together_slider .item_title:hover {
  color: #074ed4;
}

.catitem_together_slider .item_rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}

.catitem_together_slider .item_buttons_status {
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  color: #5d9725;
  margin-bottom: 15px;
}

.item_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.item_buttons .btn {
  min-width: 34px;
  max-width: 34px;
  height: 34px;
  content: '+';
  background: #074ed4;
  border-radius: 3px;
  margin-left: auto;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  padding-bottom: 2px;
}

.item_buttons .btn:hover {
  background: #082d72;
}

.item_buttons .btn.nostore {
  cursor: default;
  background: #161616;
}

.contacts_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 29px;
  border-bottom: 1px solid #eaeaea;
}

.contacts_main .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 20px;
}

.contacts_main .ic {
  min-width: 36px;
  max-width: 36px;
  margin-right: 25px;
}

.contacts_main .item_addr {
  min-width: 490px;
  max-width: 490px;
}

.contacts_main .item_plans {
  min-width: 360px;
  max-width: 360px;
}

.contacts_main .lab {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #090909;
  margin-bottom: 6px;
}

.contacts_main .item_addr_text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 5px;
}

.contacts_main .item_addr_link {
  display: inline-block;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  color: #074ed4;
  border-bottom: 1px dashed #074ed4;
}

.contacts_main .item_addr_link:hover {
  color: #161616;
  border-bottom: 1px dashed #161616;
}

.contacts_main .item_phone_text a {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  color: #2c2c2c;
}

.contacts_message {
  padding: 30px 0 40px;
}

.contacts_message_headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.contacts_message_headline .title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #2c2c2c;
  min-width: 340px;
  max-width: 340px;
}

.contacts_message_headline .subtitle {
  padding-top: 4px;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 400;
  color: #2c2c2c;
}

.contacts_message_df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contacts_message_df .btn {
  margin-right: 40px;
}

.contacts_message_df .btn .ic {
  min-width: 36px;
  max-width: 36px;
  height: 36px;
  margin-right: 20px;
  border-radius: 5px;
  border: 1px solid #074ed4;
  -webkit-transition: .2s;
  transition: .2s;
}

.contacts_message_df .btn .text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #2c2c2c;
}

.contacts_message_df .btn .ic_wa {
  background: url("../images/whatsappr.svg") no-repeat center center/18px auto;
}

.contacts_message_df .btn .ic_tg {
  background: url("../images/telegramr.svg") no-repeat center center/18px auto;
}

.contacts_message_df .btn .ic_vk {
  background: url("../images/vkr.svg") no-repeat center center/18px auto;
}

.contacts_message_df .btn .ic_in {
  background: url("../images/instagramr.svg") no-repeat center center/16px auto;
}

.contacts_message_df .btn:hover .text {
  color: #074ed4;
}

.contacts_message_df .btn:hover .ic_wa {
  background: #074ed4 url("../images/whatsapp.svg") no-repeat center center/18px auto;
}

.contacts_message_df .btn:hover .ic_tg {
  background: #074ed4 url("../images/telegram.svg") no-repeat center center/18px auto;
}

.contacts_message_df .btn:hover .ic_vk {
  background: #074ed4 url("../images/vk.svg") no-repeat center center/18px auto;
}

.contacts_message_df .btn:hover .ic_in {
  background: #074ed4 url("../images/insta.svg") no-repeat center center/16px auto;
}

.favorit_red_wrap {
  background-color: #074ed4;
  padding: 30px 58px;
  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;
}

.favorit_red_list {
  font-size: 16px;
  line-height: 29px;
  font-weight: 500;
  color: #ffffff;
  font-family: "HelveticaNeueCyr";
  background: url("../images/favorite-list.svg") no-repeat left center/38px auto;
  padding-left: 60px;
  min-width: 605px;
  max-width: 605px;
}

.favorit_red_cookies {
  padding: 3px 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #ffffff;
  padding-left: 70px;
  background: url("../images/cookies.svg") no-repeat left center/46px auto;
}

.favorit_filter_df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid #074ed4;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.favorit_filter_goods {
  padding-left: 57px;
  position: relative;
  font-size: 16px;
  line-height: 37px;
  font-weight: 400;
  color: #242424;
  min-width: 340px;
  max-width: 340px;
}

.favorit_filter_goods strong {
  font-size: 16px;
  font-family: "HelveticaNeueCyr";
  font-weight: 500;
  color: #242424;
}

.favorit_filter_goods:before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 37px;
  height: 37px;
  left: 0;
  border-radius: 50%;
  background: #074ed4 url("../images/favoritew.svg") no-repeat center center/17px auto;
}

.favorit_filter_clear {
  margin-right: 48px;
}

.favorit_filter_clear .btn {
  padding: 0 25px;
  height: 38px;
  border: 1px solid #074ed4;
  border-radius: 4px;
}

.favorit_filter_clear .btn span {
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
  color: #1e1e1e;
  padding-left: 25px;
  background: url("../images/favorite-clear.svg") no-repeat left center/13px auto;
}

.favorit_filter_clear .btn:hover {
  background: #074ed4;
  border: 1px solid #074ed4;
}

.favorit_filter_clear .btn:hover span {
  background: url("../images/favorite-clearw.svg") no-repeat left center/13px auto;
  color: #ffffff;
}

.index_main {
  margin-bottom: 10px;
}

.index_main_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  margin-left: -100px;
  margin-right: -100px;
}

.index_main_left {
  background-image: linear-gradient(113deg, #2771fb 0%, #074ed4 99%);
  border: 1px solid #ffffff;
  border-radius: 10px 0px 0px 10px;
  min-width: 872px;
  max-width: 872px;
  position: relative;
  overflow: hidden;
  padding: 30px 100px 30px;
  margin-right: 8px;
}

.index_main_left.index_main_left_slider {
  padding: 0;
  background: transparent;
  height: 100%;
  overflow: hidden;
}

.index_main_catalog .ic {
  position: absolute;
  min-width: 450px;
  max-width: 450px;
  right: 20px;
  z-index: 2;
  bottom: 0;
}

.index_main_catalog {
  padding-right: 370px;
}

.index_main_catalog .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  margin-bottom: 18px;
}

.index_main_catalog .subtitle {
  font-family: "Lato", sans-serif;
  font-size: 45px;
  line-height: 46px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 25px;
}

.index_main_catalog .btn {
  height: 45px;
  border: 1px solid #ffffff;
  -webkit-box-shadow: 1px 4px 9px 0px rgba(30, 30, 30, 0.25);
  box-shadow: 1px 4px 9px 0px rgba(30, 30, 30, 0.25);
  border-radius: 22.8px;
  background: #ffffff;
  padding: 0 50px;
  position: relative;
  margin-bottom: 25px;
}

.index_main_catalog .btn span {
  padding-right: 20px;
  font-size: 13px;
  line-height: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: #272727;
}

.index_main_catalog .btn .ic {
  min-width: 33px;
  max-width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #161616 url("../images/arrow-more.svg") no-repeat center center/4px auto;
  top: 50%;
  right: 0;
  -webkit-transform: translate(-5px, -50%);
  transform: translate(-5px, -50%);
  -webkit-transition: .2s;
  transition: .2s;
}

.index_main_catalog .btn:hover .ic {
  background: #074ed4 url("../images/arrow-more.svg") no-repeat center center/4px auto;
}

.index_main_catalog .btn:hover span {
  color: #074ed4;
}

.index_main_catalog .text {
  font-size: 15px;
  line-height: 19px;
  font-weight: 400;
  color: #ffffff;
  width: auto;
  margin-right: -100px;
}

.index_main_right {
  min-width: calc(100% - 880px);
  max-width: calc(100% - 880px);
}

.index_main_right .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: linear-gradient(113deg, #272727 0%, #3c3c3c 99%);
  border: 1px solid #ffffff;
  border-radius: 0px 10px 10px 0px;
  height: 196px;
  margin-bottom: 10px;
  -webkit-transition: .2s;
  transition: .2s;
}

.index_main_right .item.item_last,
.index_main_right .item:last-child {
  margin-bottom: 0;
}

.index_main_right .item.item_last .ic img {
  width: 172px;
}

.index_main_right .item .ic {
  min-width: 192px;
  max-width: 192px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.index_main_right .item .ic img {
  width: 100%;
}

.index_main_right .item:hover {
  background-image: linear-gradient(113deg, #0d0d0d 0%, #2a2a2a 99%);
}

.index_main_right .item:hover .ic_link {
  width: 49px;
}

.index_main_right .content {
  padding-top: 25px;
  padding-right: 63px;
  position: relative;
  min-width: calc(100% - 190px);
  max-width: calc(100% - 190px);
  margin-left: 192px;
}

.index_main_right .content .title {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  margin-bottom: 10px;
  padding-right: 62px;
}

.index_main_right .content .subtitle {
  font-family: "Lato", sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 15px;
}

.index_main_right .content .text {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  color: #d2d2d2;
}

.index_main_right .ic_link {
  position: absolute;
  width: 41px;
  height: 41px;
  background: #074ed4 url("../images/arrow-more.svg") no-repeat center center/4px auto;
  z-index: 1;
  top: 30px;
  right: 0;
  -webkit-transition: .2s;
  transition: .2s;
}

.index_promo {
  padding: 45px 0 30px;
}

.index_promo_title {
  text-align: center;
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2c2c2c;
  text-transform: uppercase;
  margin-bottom: 53px;
  font-family: "Lato", sans-serif;
}

.index_promo_title strong {
  color: #074ed4;
}

.index_promo_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  margin-left: -110px;
  margin-right: -110px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

.index_promo_box .item {
  min-width: calc(33.33% - 20px);
  max-width: calc(33.33% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: -webkit-gradient(linear, left top, right top, from(#f7f7f7), to(#eeeeee));
  background-image: linear-gradient(90deg, #f7f7f7 0%, #eeeeee 100%);
  border: 1px solid #ffffff;
  border-radius: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 150px;
  position: relative;
  margin-bottom: 20px;
  padding-top: 0px;
  padding-right: 45px;
  padding-bottom: 0px;
  padding-left: 35px;
}

.index_promo_box .item:hover .ic {
  background: #082d72 url("../images/arrow-more.svg") no-repeat center center/4px auto;
}

.index_promo_box .title {
  margin-right: 10px;
  font-size: 27px;
  line-height: 32px;
  font-weight: 700;
  color: #272727;
  text-transform: uppercase;
}

.index_promo_box .icon {
  position: relative;
  margin-left: auto;
  margin-right: 25px;
}

.index_promo_box .icon img {
  width: auto;
  height: 123px;
  margin-top: -17px;
}

.index_promo_box .ic {
  min-width: 31px;
  max-width: 31px;
  height: 31px;
  margin-left: auto;
  border-radius: 5px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background: #074ed4 url("../images/arrow-more.svg") no-repeat center center/4px auto;
  -webkit-transition: .2s;
  transition: .2s;
}

.popular_categ {
  padding: 37px 0 65px;
}

.popular_categ_title {
  font-size: 30px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #074ed4;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 35px;
  font-family: "Lato", sans-serif;
}

.popular_categ_title span {
  font-size: 22px;
  color: #2c2c2c;
  display: block;
}

.popular_categ_box {
  margin-left: -14px;
  margin-right: -14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.popular_categ_box .item {
  max-width: calc(20% - 28px);
  min-width: calc(20% - 28px);
  margin: 0 14px 28px;
  padding: 30px 35px;
  border: 1px solid #e4e4e4;
  border-radius: 15px;
}

.popular_categ_box .item:hover {
  border: 1px solid #074ed4;
}

.popular_categ_box .item:hover .text {
  color: #074ed4;
}

.popular_categ_box .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  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;
}

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

.popular_categ_box .text {
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
  color: #272727;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: .2s;
  transition: .2s;
  font-family: "Lato", sans-serif;
}

.popular_categ_link {
  text-align: center;
  position: relative;
  z-index: 8;
}

.popular_categ_link .btn {
  margin: 0 auto;
  width: 305px;
  height: 51px;
  border: 1px solid #074ed4;
  -webkit-box-shadow: 1px 4px 16px 0px rgba(0, 0, 0, 0);
  box-shadow: 1px 4px 16px 0px rgba(0, 0, 0, 0);
  border-radius: 25.5px;
}

.popular_categ_link .btn span {
  font-size: 14px;
  line-height: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: #2a2a2a;
}

.popular_categ_link .btn:hover {
  background: #074ed4;
}

.popular_categ_link .btn:hover span {
  color: #ffffff;
}

.index_sertificate_df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 55px 0 65px;
}

.index_sertificate {
  background: #272727;
}

.index_sertificate_box {
  min-width: 540px;
  max-width: 540px;
}

.index_sertificate_box .title {
  font-size: 42px;
  line-height: 49px;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  margin-bottom: 20px;
}

.index_sertificate_box .text {
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 26px;
}

.index_sertificate_box .buts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.index_sertificate_box .buts .btn {
  height: 52px;
  border-radius: 26px;
  background: #074ed4;
  padding: 0 80px 0 50px;
  position: relative;
  margin-right: 30px;
}

.index_sertificate_box .buts .btn:before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 38px;
  height: 38px;
  background: #272727 url("../images/arrow-more.svg") no-repeat center center/4px auto;
  border-radius: 50%;
  top: 7px;
  right: 7px;
}

.index_sertificate_box .buts .btn span {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

.index_sertificate_box .buts .btn:hover {
  background: #053694;
}

.index_sertificate_box .buts .info {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  color: #bababa;
}

.index_sertificate_img {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.index_sertificate_img img {
  width: 546px;
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -110px;
}

.about.pt80 {
  padding-top: 80px;
  padding-bottom: 10px;
}

.about.pt80 .about_main_right {
  padding-top: 22px;
}

.about.pt80 h2 {
  font-size: 38px;
  line-height: 47px;
  font-weight: 700;
}

.about.pt80 .about_main_text {
  font-size: 17px;
}

.about_main_preferences {
  margin-bottom: 35px;
}

.about_main_preferences .j_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about_main_preferences .j_item {
  min-width: calc(50% - 10px);
  max-width: calc(50% - 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_main_preferences .j_item_img {
  min-width: 96px;
  max-width: 96px;
  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;
  overflow: hidden;
  margin-right: 15px;
}

.about_main_preferences .j_item_img img {
  width: 100%;
}

.about_main_preferences .j_item_content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.about_main_preferences .j_item_title {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #000000;
  font-family: "Myriad";
}

.about_main_preferences .j_item_text {
  font-size: 30px;
  line-height: 11px;
  font-weight: 700;
  color: #2c2c2c;
  font-family: "Lato", sans-serif;
  white-space: nowrap;
}

.about_main_preferences .j_item_text span {
  font-size: 22px;
}

.about_main_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 35px;
}

.about_main_links .btn {
  margin-right: 10px;
  padding: 0 40px;
  height: 44px;
}

.about_main_links .btn span {
  text-transform: uppercase;
  font-size: 12px;
}

.btn_red2 {
  background: #074ed4;
}

.btn_red2 span {
  color: #ffffff;
  text-transform: uppercase;
}

.btn_red2:hover {
  background: #053694;
}

.textpage {
  padding-bottom: 50px;
}

.textpage h1 {
  font-size: 32px;
  line-height: 47px;
  font-weight: 700;
  text-transform: uppercase;
  color: #2c2c2c;
  font-family: "Lato", sans-serif;
  padding-bottom: 27px;
  margin-bottom: 35px;
  border-bottom: 2px solid #074ed4;
}

.textpage h2 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  margin-bottom: 15px;
}

.textpage h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  margin-bottom: 15px;
}

.textpage h4 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  margin-bottom: 15px;
}

.textpage h6 {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 12px;
}

.textpage p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 15px;
}

.textpage hr {
  margin-top: 30px;
  margin-bottom: 30px;
}

.textpage img {
  width: auto;
}

.textpage strong {
  font-weight: 700;
}

.textpage a {
  color: #074ed4;
  text-decoration: underline !important;
}

.textpage a:hover {
  color: #161616;
}

.textpage ul,
.textpage ol {
  margin-bottom: 10px;
}

.textpage ul li,
.textpage ol li {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 5px;
}

.textpage ol {
  margin-left: 15px;
}

.textpage ol li {
  list-style: decimal;
}

.textpage ul li {
  position: relative;
  padding-left: 19px;
  background: url("../images/pages-arrow-rightr.svg") no-repeat left 8px/4px auto;
}

.new_main {
  background: #272727;
  padding: 45px 0 55px;
}

.new_main .cont {
  position: relative;
}

.new_main .title {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.new_main .text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #ffffff;
}

.new_main_df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.new_main_df .ic {
  position: relative;
  min-width: 395px;
  max-width: 395px;
}

.new_main_df .ic img {
  position: absolute;
  z-index: 1;
  bottom: -55px;
  right: 0;
  width: 570px;
  left: -210px;
  margin-left: 270px;
}

.oncart {
  position: fixed;
  z-index: 9;
  right: 40px;
  top: 20px;
  width: 329px;
  height: 107px;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background: #ffffff;
  padding: 15px 25px;
}

.oncart .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.oncart .j_item_img {
  min-width: 50px;
  max-width: 50px;
  margin-right: 20px;
}

.oncart .j_item_title {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #074ed4;
  font-family: "HelveticaNeueCyr";
  margin-bottom: 10px;
}

.oncart .j_item_text {
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  color: #272727;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

.oncart .btn_close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 14px;
  height: 14px;
  z-index: 2;
  background: url("../images/menu-closeb.svg") no-repeat center center/100% auto;
}

.oncart .btn_close:hover {
  background: url("../images/menu-closer.svg") no-repeat center center/100% auto;
}

.filter_line_searchwrap .filter_line {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.filter_line_searchwrap .filter_line_look {
  margin-right: 60px;
  padding-left: 55px;
  position: relative;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #242424;
  font-family: "HelveticaNeueCyr";
}

.filter_line_searchwrap .filter_line_look:before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 37px;
  height: 37px;
  left: 0;
  top: -10px;
  background: #074ed4 url("../images/search.svg") no-repeat center center/14px auto;
  border-radius: 50%;
}

.filter_line_searchwrap .filter_line_look strong {
  font-weight: 700;
}

.filter_line_searchwrap .filter_line_choice {
  margin-left: 0;
}

.mb25 {
  margin-bottom: 25px;
}

.search_result p {
  font-size: 17px;
  line-height: 24px;
  font-weight: 400;
  color: #141414;
  padding-bottom: 25px;
  border-bottom: 1px solid #e7e7e7;
}

.search_result p strong {
  font-weight: 700;
  font-weight: 900;
}

.filter_line_searchwrap {
  padding-top: 30px;
}

.modal_dialog {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.modal_header {
  background-color: #272727;
  padding: 30px 60px;
}

.modal_header_top {
  position: relative;
}

.modal_header_top .title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  color: #ffffff;
  font-family: "HelveticaNeueCyr";
  margin-bottom: 25px;
}

.modal_header_top .close {
  position: absolute;
  top: 0;
  min-width: 21px;
  max-width: 21px;
  height: 21px;
  background: url("../images/menu-close.svg") no-repeat center center/21px auto;
  z-index: 1;
  right: -30px;
  top: 0px;
}

.modal_header_top .close:hover {
  background: url("../images/menu-closer.svg") no-repeat center center/21px auto;
}

.modal_header_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal_header_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 425px;
  max-width: 425px;
  margin-right: 55px;
}

.modal_header_info .ic {
  min-width: 93px;
  max-width: 93px;
  height: 93px;
  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;
  background: #ffffff;
  border-radius: 3px;
  margin-right: 25px;
  padding: 10px;
}

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

.modal_header_info .info {
  padding-top: 3px;
}

.modal_header_info .info .tit {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 8px;
}

.modal_header_info .info .text {
  font-size: 11px;
  line-height: 22px;
  font-weight: 400;
  color: #cccccc;
}

.modal_header_calc {
  padding-top: 7px;
}

.modal_header_calc .cost {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
  font-family: "HelveticaNeueCyr";
  margin-bottom: 10px;
}

.modal_header_calc .cost span {
  font-size: 14px;
}

.modal_header_calc .lab {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  color: #cdcdcd;
  margin-bottom: 7px;
}

.modal_header_calc .cartcalc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 91px;
  background-color: #ffffff;
  border-radius: 3px;
  height: 32px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  padding: 0 5px;
}

.modal_header_calc .cartcalc .btn {
  min-width: 22px;
  max-width: 22px;
  height: 22px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #074ed4;
  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;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #ffffff;
  border-radius: 1px;
}

.modal_header_calc .cartcalc .btn.ccalc-minus {
  padding-bottom: 2px;
}

.modal_header_calc .cartcalc .btn:hover {
  background: #161616;
}

.modal_header_calc .cartcalc .btn.disable {
  border: 1px solid #dedede;
  color: #dedede;
  background: #ffffff;
}

.modal_header_calc .cartcalc input {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 22px;
  text-align: center;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #2c2c2c;
  font-family: "HelveticaNeueCyr";
}

.modal_form {
  padding: 25px 60px 35px;
  background: #ffffff;
}

.modal_form .form_control {
  margin-bottom: 20px;
}

.modal_form input,
.modal_form textarea {
  height: 45px;
}

.modal_form input:focus,
.modal_form textarea:focus {
  border: 1px solid #161616;
}

.modal_form textarea {
  resize: vertical;
  height: 110px;
}

.modal_form .mform_df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.modal_form .mform_df .form_control {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.modal_form .mform_df .form_control.form_control_full {
  min-width: 100%;
  max-width: 100%;
}

.modal_form .mform_df .form_control_phone {
  min-width: 255px;
  max-width: 255px;
  margin-left: 30px;
}

.modal_form .modal_form_buts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  
  padding-top: 10px;
  margin-bottom: 18px;
}

.modal_form .modal_form_buts .btn {
  height: 60px;
  background-color: #074ed4;
  background-image: -webkit-gradient(linear, left top, right top, from(#2771fb), to(#074ed4));
  background-image: linear-gradient(90deg, #2771fb 0%, #074ed4 100%);
  -webkit-box-shadow: 1px 4px 10px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 1px 4px 10px 0px rgba(0, 0, 0, 0.18);
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 285px;
  max-width: 285px;
  margin-bottom: 0;
  position: relative;
  margin-right: 30px;
}

.modal_form .modal_form_buts .btn:before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  opacity: 0;
  background-color: #074ed4;
  background-image: -webkit-gradient(linear, left top, right top, from(#074ed4), to(#053184));
  background-image: linear-gradient(90deg, #074ed4 0%, #053184 100%);
  -webkit-transition: .2s;
  transition: .2s;
}

.modal_form .modal_form_buts .btn.btn_disable {
  cursor: default;
}

.modal_form .modal_form_buts .btn.btn_disable:before {
  opacity: 1;
  background-color: #074ed4;
  background-image: -webkit-gradient(linear, left top, right top, from(#d7d7d7), to(#b6b6b6));
  background-image: linear-gradient(90deg, #d7d7d7 0%, #b6b6b6 100%);
}

.modal_form .modal_form_buts .btn.btn_disable .ic {
  background: #ffffff url("../images/arrow-moreg.svg") no-repeat center center/4px auto;
}

.modal_form .modal_form_buts .btn span {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  font-family: Inter;
  margin-right: 23px;
  position: relative;
  z-index: 2;
}

.modal_form .modal_form_buts .btn .ic {
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  border-radius: 5px;
  background: #ffffff url("../images/arrow-morer.svg") no-repeat center center/4px auto;
  position: relative;
  z-index: 2;
}

.modal_form .modal_form_buts .btn:hover:before {
  opacity: 1;
}

.modal_form .recaptcha_wrap {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.modal_form .modal_form_info {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #0d0d0d;
}
.modal_form_info{overflow:hidden;padding-bottom:7px;}
.modal_form_info input[type=checkbox]{display:block;float:left;width:16px;height:16px;margin:0 10px 0 0;padding:0}
.modal_form_info span{display:block;float:left;width:calc(100% - 28px);}

.modal_form .modal_form_info a {
  color: #074ed4;
}

.modal_form .modal_form_info a:hover {
  color: #161616;
}

.modal_header_subtitle {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: #ffffff;
  font-family: "HelveticaNeueCyr";
  margin-top: -22px;
  margin-bottom: 15px;
}

.modal_header_good {
  padding-left: 20px;
}

.modal_header_good .text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #ffffff;
  position: relative;
  margin-bottom: 8px;
}

.modal_header_good .text:before {
  content: '';
  position: absolute;
  z-index: 1;
  left: -20px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 5px solid #074ed4;
  border-bottom: 5px solid transparent;
  top: 5px;
}

.modal_header_good .articular {
  font-size: 11px;
  line-height: 1.4;
  font-weight: 400;
  color: #cccccc;
}

.modal_dialog_order_send {
  height: 230px;
  background: #ffffff url("../images/sendok.webp") no-repeat left center/281px auto;
  position: relative;
}

.modal_dialog_order_send .close {
  position: absolute;
  top: 0;
  min-width: 21px;
  max-width: 21px;
  height: 21px;
  background: url("../images/menu-closeb.svg") no-repeat center center/21px auto;
  z-index: 1;
  right: 30px;
  top: 30px;
}

.modal_dialog_order_send .close:hover {
  background: url("../images/menu-closer.svg") no-repeat center center/21px auto;
}

.modal_dialog_order_send .modal_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding-left: 300px;
  padding-right: 80px;
}

.modal_dialog_order_send .order_send_title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 300;
  color: #222222;
  font-family: "HelveticaNeueCyr";
  margin-bottom: 20px;
}

.modal_dialog_order_send .order_send_title span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #074ed4;
  font-family: "HelveticaNeueCyr";
}

.modal_dialog_order_send .order_send_text {
  font-size: 17px;
  line-height: 24px;
  font-weight: 400;
  color: #252525;
}

.j_search_reset {
  display: none;
}

.error_fof .error_info {
  padding-top: 80px;
}

.ui-datepicker {
  width: 202px;
  border: 1px solid #dedede;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #ffffff;
  padding: 10px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  display: none;
}

.ui-datepicker-month,
.ui-datepicker-year {
  border: none;
  font-size: 16px;
  font-family: "HelveticaNeueCyr";
  margin-bottom: 10px;
  font-weight: 700;
}

.ui-datepicker-month option,
.ui-datepicker-year option {
  font-size: 16px;
  font-family: "HelveticaNeueCyr";
  font-weight: 700;
}

.ui-datepicker-month {
  margin-right: 25px;
}

.ui-datepicker-calendar thead tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 180px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-width: 180px;
  max-width: 180px;
}

.ui-datepicker-calendar thead tr th {
  text-align: center;
}

.ui-datepicker-calendar tbody tr {
  margin-top: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 180px;
  max-width: 180px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
  font-size: 16px;
  font-family: "HelveticaNeueCyr";
}

.ui-datepicker-calendar tbody tr td {
  text-align: center;
  min-width: 15px;
  max-width: 15px;
  color: #bcbcbc;
}

.ui-datepicker-calendar tbody tr td a {
  color: #161616;
  font-family: "HelveticaNeueCyr";
}

.ui-datepicker-calendar tbody tr td a:hover {
  color: #074ed4;
}

.ui-datepicker-calendar tbody tr td a.ui-state-active {
  font-weight: 700;
}

.cat_brand_slider_box .text {
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  .pager_wrap .btn {
    margin-left: 5px;
    margin-right: 5px;
  }
}

.fancybox-button--play {
  display: none;
}

.catalog_item_info_top .catitem_posts_headline_val span {
  display: none;
}

.catalog_item_info_top .rating {
  cursor: pointer;
}

.catalog_item_tabs .j_tabs_headline {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 40px;
}

.catalog_item_tabs .j_tabs_box {
  padding-top: 10px;
}

.catalog_item_main {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 25px;
}

.j_tabs_box2 .catitem_textpage_18 {
  border-top: none;
  margin-top: -10px;
}

.catalog_item_tabs .j_tabs_box2 {
  padding-bottom: 0;
}

.item_plans_text {
  line-height: 1.2;
}

.index_page .header_nav_wrap {
  border-bottom: none;
}

.about_main_address {
  color: #2c2c2c;
  display: block;
}

.about_main_address:hover {
  color: #074ed4;
}

.index_sertificate_box .buts .btn {
  z-index: 5;
}

.index_main_slider {
  position: relative;
}

.index_main_slider .swiper-pagination-bullets {
  z-index: 999;
  bottom: 20px;
}

.index_main_slider .swiper-pagination-bullet {
  height: 8px;
  width: 20px;
  background: transparent;
  opacity: 1;
  border-radius: 1px;
  margin: 0 3px;
  position: relative;
  cursor: pointer;
}

.index_main_slider .swiper-pagination-bullet:before {
  content: '';
  position: absolute;
  z-index: 1;
  height: 2px;
  background: #161616;
  left: 0;
  top: 3px;
  width: 100%;
}

.index_main_slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 55px;
}

.index_main_slider .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background: #074ed4;
}

@media screen and (min-width: 992px) {

  .catalog_item_slider_big .sl_btn,
  .catalog_item_slider_big .sl_btn {
    opacity: 0;
  }

  .catalog_item_slider_big .sl_btn.swiper-button-next:before,
  .catalog_item_slider_big .sl_btn.swiper-button-next:before {
    margin-left: 2px;
  }

  .catalog_item_slider_big .sl_btn.swiper-button-prev:before,
  .catalog_item_slider_big .sl_btn.swiper-button-prev:before {
    margin-left: 2px;
  }

  .catalog_item_slider_big:hover .sl_btn,
  .catalog_item_slider_big:hover .sl_btn {
    opacity: 1;
  }
}

@media screen and (max-width: 992px) {

  .page_content {
    min-width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .cart_delivery_form .area_delivery {
    min-width: 100%;
  }

  .modal_dialog {
    max-width: 96%;
  }

  .present_pack_form,
  .cart_radio .item,
  .cart_agree_check {
    position: relative;
  }
}


.captcha-container{
		transform: scale(0.86);
        transform-origin: left top;
    }
    
.notovar{
  padding-bottom: 20px;
}