@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: " ";
  content: none;
}

.container-fluid {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  display: inline-block;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

input {
  outline: none;
}

ul {
  list-style: none;
}

html::-webkit-scrollbar {
  background-color: #000;
  width: 5px;
}
html::-webkit-scrollbar-thumb {
  background-color: #da1a00;
  width: 3px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Golos Text", sans-serif;
  background: #fff;
  color: #1a1a1a;
}
.city {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    padding: 20px;
    max-width: 90%;
    width: auto; /* Автоматическая ширина */
    max-height: 90%; /* Ограничение максимальной высоты */
    height:auto;
    overflow-y: auto; /* Добавляем прокрутку, если содержимое больше окна */
    text-align: center;
}

.city-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.city-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.city-list a {
    color: #022ed9;
    text-decoration: none;
    padding: 10px 15px;
    /*border: 1px solid #ddd;*/
    /*border-radius: 5px;*/
    transition: background 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.city-list a:hover {
    background: #022ed9;
    color: #fff;
}
.select-city-link span {
    color: #1a1a1a;
}
.select-city-link span:hover {
    color: #022ed9;
}
/* Анимация появления */
.city.show {
    animation: fadeIn 0.3s ease-in-out;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
.popup-fade {
    display: none;
}
.popup-fade:before {
    content: '';
    background: #000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: 9999;
}
.popup {
    position: fixed;
    top: 20%;
    left: 25%;
    padding: 20px;
    width: 50%;
    background: #fff;
    border: 1px solid orange;
    border-radius: 4px;
    z-index: 99999;
    opacity: 1;
}
.popup-open {
    font-size: 14px;
    color: #aeaeae;
    text-decoration: dashed;
    text-decoration-line: underline;
}
.popup-close {
    position: absolute;
    top: 3px;
    right: 10px;
}

.main_section {
  margin-bottom: 140px;
}

.wrapper {
  overflow: hidden;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
  color: #aeaeae;
  content: "|";
}

.breadcrumb_block {
  margin-bottom: 20px;
}

.breadcrumb li,
.breadcrumb li a {
  color: #aeaeae;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.breadcrumb li a {
  padding: 0 3px;
}

.breadcrumb li:last-child::before {
  padding-right: 3px;
}

.article_title {
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}

/* The container must be positioned relative: */
.custom-select {
  position: relative;
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.inactive_product_item {
    opacity: 0.5;
}

.select-selected {
  color: #022ed9;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.select-selected.active {
  display: none !important;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div {
  padding: 9px 0px 9px 19px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.select-selected {
  color: #aeaeae;
  position: relative;
  cursor: pointer;
  transition: all ease-in 0.1s;
}
.select-selected:hover {
  color: #022ed9;
}
.select-selected:hover::before {
  background: url(../images/select_active_arrow.svg) no-repeat center;
}
.select-selected::before {
  content: "";
  position: absolute;
  right: -15px;
  top: 2px;
  width: 10px;
  height: 10px;
  background: url(../images/select_noactive.svg) no-repeat center;
  background-size: cover;
}
.select-selected.select-arrow-active::before {
  background: url(../images/select_active_arrow.svg) no-repeat center;
}

.select-arrow-active {
  color: #022ed9;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Style items (options): */
.select-items {
  position: absolute;
  top: 100%;
  left: -100%;
  right: 0;
  z-index: 99;
  width: 210px;
  border: 1px solid #f0f0f0;
  background: #fff;
}

.same-as-selected {
  position: relative;
}
.same-as-selected::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../images/selected_arrows.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

#hide_headphone_types {
  display: none;
}

.checkbox_wrapper {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 35px;
  z-index: 23;
  cursor: pointer;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all ease-in 0.1s;
}
.checkbox_wrapper:nth-child(n+9) {
  display: none;
}
.checkbox_wrapper.active {
  display: flex !important;
}
.checkbox_wrapper .blue {
  color: #022ed9;
}
.checkbox_wrapper:hover span {
  color: #022ed9;
}
.checkbox_wrapper span {
  padding-top: 4px;
}

/* Hide the browser's default checkbox */
.checkbox_wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  border: 1.5px solid #1a1a1a;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox_wrapper input:checked ~ .checkmark:after {
  display: block;
}

.checkbox_wrapper input:checked ~ .checkmark {
  border: 1.5px solid #022ed9;
}

/* Style the checkmark/indicator */
.checkbox_wrapper .checkmark:after {
  left: 0px;
  right: 0;
  bottom: 0;
  margin: auto;
  top: 0px;
  width: 16px;
  height: 16px;
  background: #022ed9;
}

.more {
  color: #aeaeae;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-bottom: 1px solid #aeaeae;
  transition: all ease-in 0.1s;
    margin-bottom: 20px;
}
.more:hover {
  color: #022ed9;
  border-color: #022ed9;
}

.mobile_titles {
  display: none;
}

.rate {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.star_block {
  margin-bottom: 40px;
}

.swiper_arrows {
  margin-bottom: 40px;
}

.rate:not(:checked) > input {
  position: absolute;
  transform: scale(0);
}

.rate:not(:checked) > label {
  float: right;
  width: 32px;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 32px;
  color: rgb(174, 174, 174);
}

.rate:not(:checked) > label:before {
  content: "★ ";
}

.rate > input:checked ~ label {
  color: #ffc700;
}

.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
  color: #deb217;
}

.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
  color: #c59b08;
}

.file-area {
  width: 100%;
  position: relative;
}
.file-area input[type=file] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}
.file-area input[type=file]:focus {
  outline: none;
}
.file-area .file-dummy {
  width: 100%;
  padding: 30px;
  border: 1px dashed #aeaeae;
  background: #fcfdff;
  text-align: center;
  transition: background 0.3s ease-in-out;
}
.file-area .file-dummy .success {
  display: none;
}
.file-area:hover .file-dummy {
  background: rgba(255, 255, 255, 0.1);
}
.file-area .default {
  gap: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.file-area .img_type {
  color: #aeaeae;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.file-area .img_count {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 5px;
}
.file-area .img_count span {
  color: #022ed9;
}
.file-area input[type=file]:focus + .file-dummy {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline: -webkit-focus-ring-color auto 5px;
}
.file-area input[type=file]:valid + .file-dummy {
  border-color: rgba(0, 255, 0, 0.4);
  background-color: rgba(0, 255, 0, 0.3);
}
.file-area input[type=file]:valid + .file-dummy .success {
  display: inline-block;
}
.file-area input[type=file]:valid + .file-dummy .default {
  display: none !important;
}

header .catalog_btn {
  gap: 10px;
  padding: 16px 30px;
  background: #cbfd77;
  transition: all ease-in 0.1s;
}
header .catalog_btn:hover {
  background: #b8ff40;
}
header .catalog_btn.active {
  background: #b8ff40;
}
header .header_block {
  padding-top: 20px;
  margin-bottom: 30px;
}
header .cat_img .close_cat {
  display: none;
}
header .cat_img.active .close_cat {
  display: block;
}
header .cat_img.active .open_cat {
  display: none;
}
header .cat_btn_text {
  color: #1a1a1a;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
header .catalog_search input {
  height: 54px;
  padding-left: 30px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: 1px solid #cbfd77;
  width: 100%;
  display: block;
  width: 540px;
}
header .catalog_search input::-moz-placeholder {
  color: #aeaeae;
  font-size: 16px;
  font-style: normal;
}
header .catalog_search input::placeholder {
  color: #aeaeae;
  font-size: 16px;
  font-style: normal;
}
header .catalog_search button {
  padding: 18px;
  background: #cbfd77;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in 0.1s;
}
header .catalog_search button:hover {
  background: #b8ff40;
}
header .header_links {
  gap: 60px;
}
header .header_links li a {
  color: #1a1a1a;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
header .catalog_open {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: 444;
  background-color: #fff;
  width: 100%;
  transition: all ease-in 0.1s;
  transform: scale(0);
  transition: all ease-in 0.1s;
}
header .catalog_open.active {
  transform: scale(1);
}
header .catalog_menus {
  gap: 30px;
  flex: 0 0 auto;
  /*width: 25%;*/
  padding-right: 40px;
  border-right: 1px solid #f0f0f0;
  padding-bottom: 150px;
  margin-right: 30px;
    position: relative;
}
header .catalog_menus.second_menu, header .catalog_menus.third_menu, header .catalog_menus.fourth_menu {
    display: none;
    position: absolute;
    right: calc(-100% - 80px);
    top: 0;
}
header .catalog_menus li {
  display: flex;
  align-items: center;
  justify-content: space-between;
    width: 349px;
}
header .catalog_menus li > a {
  display: flex;
  gap: 40px;
  align-items: center;
}
header .catalog_menus li.active > a .cat_name {
  color: #022ed9;
}
header .catalog_menus li.active > .arrow {
  transform: scale(1);
}
header .catalog_menus .cat_name {
  color: #1a1a1a;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all ease-in 0.1s;
}
header .catalog_menus .arrow {
  transform: scale(0);
  transition: all ease-in 0.1s;
  margin-top: 3px;
}
header .catalog_menus .cat_subtitle {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 30px;
}
header .search_result_block {
  position: absolute;
  top: 54px;
  width: 100%;
  padding: 30px;
  right: 0;
  z-index: 3;
  background-color: #fff;
  transform: scale(0);
  transition: all ease-in-out 0.2s;
}
header .search_result_block.active {
  transform: scale(1);
}
header .tel_types {
  margin-bottom: 25px;
  gap: 18px;
}
header .tel_types a {
  color: #022ed9;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
header .result_item {
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .result_name {
  color: #1a1a1a;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.navs {
  margin-bottom: 40px;
}
.navs .navs_swiper {
  margin: 0 20px;
  position: relative;
}
.navs .nav_title {
  display: inline-block;
  font-size: 16px;
  color: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 11px 0;
}
.navs .swiper-slide.big_word {
  width: 265px !important;
  margin: 0;
}
.navs .swiper-slide.last_word {
  width: 206px !important;
  margin: 0;
}
.navs .swiper-slide {
  flex: 0 0 auto;
  width: auto;
  margin: 0 20px;
}
.navs .nav_pagination {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.navs .nav_pagination .nav_prev,
.navs .nav_pagination .nav_next {
  position: absolute;
  cursor: pointer;
  width: 20px;
  height: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.navs .nav_pagination .nav_next {
  right: -5px;
}
.navs .nav_icon path {
  fill: rgb(240, 240, 240);
}
.navs .nav_icon:hover path {
  fill: rgb(174, 174, 174);
}

.banner {
  margin-bottom: 80px;
}
.banner .banner_block {
  padding: 150px;
  background: url(../images/banner.png) no-repeat center;
  background-size: cover;
}
.banner .banner_title {
  color: #022ed9;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
}
.banner .banner_desc {
  color: #1a1a1a;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.product_item {
  border: 1px solid #f0f0f0;
  border-bottom-color: transparent;
  position: relative;
  transition: all ease-in 0.1s;
}
.product_item .product_button {
  border: 1px solid #cbfd77;
}
.product_item:hover {
  border: 1px solid #cbfd77;
}
.product_item:hover .hover_block {
  transform: scale(1);
}
.product_item:hover .product_button {
  border: none;
  border-top: 1px solid #cbfd77;
}
.product_item .product_img img {
  width: 100%;
}

.hover_block {
  transform: scale(0);
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  gap: 13px;
  transition: all ease-in 0.2s;
}
.hover_block.block {
  transform: scale(1);
}

.solar_block {
  gap: 20px;
}

.solar_text {
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.discount_number {
  padding: 6px 10px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: #022ed9;
  display: inline-block;
}

.product_body {
  padding-left: 30px;
}

.rates {
  gap: 10px;
}

.rate_number {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.rate_desc {
  color: #aeaeae;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.product_rate {
  gap: 20px;
  margin-bottom: 10px;
}

.swiper_arrows {
  gap: 40px;
}

.product_desc {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  min-height: 95px;
  max-width: 293px;
  margin-bottom: 12px;
}
.product_desc a {
    color: #1a1a1a;
}

.buy_btn {
    gap: 10px;
    background: #cbfd77;
    padding: 10px 20px;
    transition: all ease-in 0.1s;
    border: none;
}
.buy_btn:hover {
  background: #b8ff40;
}

.product_price {
  padding: 10px 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.buy_text {
  color: #1a1a1a;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.previous:hover path,
.next:hover path {
  stroke: rgb(2, 46, 217);
}

.product .title {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
}
.product .product_block {
  margin-bottom: 140px;
}

.category .category_title {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
}
.category .category_item {
  flex: 0 0 auto;
  width: 33.33333%;
  padding: 33px 0 210px 37px;
  position: relative;
  overflow: hidden;
}
.category .category_item.green {
  background: radial-gradient(94.02% 60.29% at 79.9% 47.64%, #fff 0%, #cbfd77 100%);
}
.category .category_item.blue {
  background: radial-gradient(76.27% 54.83% at 72.5% 50%, #3961ff 0%, #0028c4 100%);
}
.category .category_item.blue .category_name,
.category .category_item.blue .category_count {
  color: #fff;
}
.category .category_item:hover .category_arrow {
  transform: scale(1);
}
.category .category_name {
  color: #1a1a1a;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 15px;
}
.category .category_count {
  color: #1a1a1a;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.category .category_img {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
}
.category .category_arrow {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 3;
  transform: scale(0);
  transition: all ease-in 0.2s;
}

.service .service_block {
  gap: 70px;
}
.service .service_name {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
}
.service .service_desc_items {
  gap: 15px;
  margin-bottom: 140px;
}
.service .service_desc_items p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.service .service_more_btn {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 17px 72px;
  background: #cbfd77;
  color: inherit;
  transition: all ease-in 0.1s;
}
.service .service_more_btn:hover {
  background: #b8ff40;
}
.session {
    fill:#cbfd77;
}

.session .compare {
    fill:#cbfd77;
    /*fill:#022ed9;*/
}
.session_active {
    /*fill:#cbfd77;*/
    fill:#022ed9;
}
.session:hover {
    fill:#b8ff40;
}

footer {
  background: #022ed9;
  padding: 55px 0 30px 0;
}
footer .footer_logo {
  margin-bottom: 55px;
}
footer .footer_top {
  padding-bottom: 80px;
  margin-bottom: 22px;
  border-bottom: 1px solid #3961ff;
}
footer .footer_links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .footer_links li a {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all ease-in 0.2s;
  border-bottom: 1px solid transparent;
}
footer .footer_links li a:hover {
  border-bottom: 1px solid #fff;
}
footer .footer_bottom {
  gap: 860px;
}
footer .footer_bottom_name {
  color: #f0f0f0;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
footer .footer_website {
  color: #f0f0f0;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.not_found {
  margin-bottom: 100px;
}
.not_found .not_found_img {
  margin-bottom: 60px;
}
.not_found .not_found_desc {
  color: #1a1a1a;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 510px;
  text-align: center;
  margin-bottom: 35px;
}
.not_found .not_found_btn {
  padding: 17px 20px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #022ed9;
  transition: all ease-in 0.2s;
}
.not_found .not_found_btn:hover {
  background: #0028c4;
}

.about .about_title {
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
}
.about .about_img {
  margin-bottom: 60px;
}
.about .about_stats_block {
  gap: 150px;
}
.about .stat_number {
  color: #022ed9;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 15px;
}
.about .stat_desc {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 320px;
}

.article .article_tab_block {
  gap: 10px;
}
.article .tab_item {
  padding: 11px 17px;
  border: 1.5px solid #022ed9;
  transition: all ease-in 0.2s;
  color: #022ed9;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.article .tab_item:nth-child(n+9) {
  display: none;
}
.article .tab_item:hover, .article .tab_item.active {
  background-color: #022ed9;
  color: #fff;
}
.article #hide_all_tabs {
  display: none;
}
.article .see_all {
  color: #aeaeae;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  transition: all ease-in 0.1s;
}
.article .see_all:hover {
  color: #0028c4;
}
.article .all_tabs {
  display: block;
}
.article .article_tab_block {
  gap: 15px;
  margin-bottom: 50px;
}
.article .article_img {
  margin-bottom: 20px;
}
.article .article_date {
  color: #aeaeae;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}
.article .article_name {
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}
.article .article_desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}
.article .article_more {
  color: #aeaeae;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all ease-in 0.1s;
}
.article .article_more:hover {
  color: #0028c4;
}

.article .article_title.article_page {
  margin-bottom: 50px;
}
.article .article_banner_block {
  padding: 75px 0 75px 63px;
  background: url(../images/article_bg.png) no-repeat center;
  background-size: cover;
  margin-bottom: 40px;
}
.article .banner_date {
  color: #aeaeae;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}
.article .banner_desc {
  max-width: 705px;
  margin-bottom: 35px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.article .banner_buttons {
  gap: 10px;
}
.article .banner_btn {
  padding: 11px 20px;
  border: 1.5px solid #aeaeae;
  color: #aeaeae;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.article .content_block {
  background: #fcfdff;
  padding: 45px 0 73px 63px;
}
.article .content_name {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
}
.article .content_wrapper {
  gap: 235px;
}
.article .content_item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.article .content_item p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.phone .phone_block {
  gap: 100px;
  margin-bottom: 80px;
}
.phone .phone_item {
  display: flex;
  gap: 120px;
}
.phone .phone_number {
  color: #022ed9;
  font-size: 72px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 30px;
}
.phone .phone_name {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}
.phone .phone_desc {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}
.phone .phone_desc p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.phone .phone_screen_block {
  gap: 10px;
}
.phone .screen_item {
  padding: 11px 20px;
  color: #022ed9;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: 1.5px solid #022ed9;
}
.phone .screen_block {
  gap: 120px;
}
.phone .phone_screen_name {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 30px;
}
.phone .phone_screen_desc {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.phone_banner .phone_banner_block {
  padding: 79px 25px 79px 100px;
  background: radial-gradient(743.9% 103.07% at 88.75% 47.59%, #d8ff96 0%, #cbfd77 100%);
}
.phone_banner .phone_banner_title {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}
.phone_banner .phone_banner_desc {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 50px;
}
.phone_banner .phone_banner_left {
  flex: 0 0 auto;
  width: 45%;
}
.phone_banner .phone_banner_btn {
  padding: 17px 70px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #022ed9;
  transition: all ease-in 0.1s;
}
.phone_banner .phone_banner_btn:hover {
  background-color: #0028c4;
}
.phone_banner .phone_banner_img {
  position: absolute;
  bottom: -50px;
  right: 0;
  z-index: 3;
}

.filter .sort_block {
  gap: 8px;
  margin-bottom: 20px;
}
.filter .filter_part {
  flex: 0 0 auto;
  width: 20%;
}
.filter .filter_block {
  gap: 40px;
}
.filter .filter_title {
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 25px;
}
.filter .filter_title sup {
  color: #aeaeae;
  font-size: 25px;
}
.filter .checkbox_items {
  gap: 10px;
}
.filter .filter_main_title {
  color: #022ed9;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
}
.filter .filter_wrapper {
  gap: 40px;
  margin-bottom: 30px;
}
.filter .filter_item_name {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 30px;
}
.filter .show_all {
  color: #aeaeae;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  transition: all ease-in 0.1s;
  display: inline-block;
  margin-bottom: 50px;
}
.filter .show_all:hover {
  color: #0028c4;
}
.filter .apply {
  padding: 15px 33px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #022ed9;
  transition: all ease-in 0.1s;
}
.filter .apply:hover {
  background: #0028c4;
}
.filter .reset {
  gap: 10px;
  color: #aeaeae;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all ease-in 0.1s;
}
.filter .reset:hover .reset_txt {
  color: #022ed9;
}
.filter .reset:hover .reset_svg path {
  stroke: #022ed9;
}
.filter .range_inputs {
  gap: 15px;
  margin-bottom: 10px;
}
.filter .range_inputs input {
  border: 1px solid #aeaeae;
  height: 40px;
  text-align: center;
  border-radius: 0;
}
.filter .range_inputs input::-moz-placeholder {
  color: #aeaeae;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.filter .range_inputs input::placeholder {
  color: #aeaeae;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.filter .range_inputs input:focus {
  color: #022ed9;
  border: 1px solid #022ed9;
  outline: none;
  box-shadow: none;
}
.filter .irs--round .irs-from,
.filter .irs--round .irs-to,
.filter .irs--round .irs-single,
.filter .irs--round .irs-min,
.filter .irs--round .irs-max {
  display: none !important;
}
.filter .irs--round .irs-handle {
  border-radius: 0;
  background: #022ed9;
  width: 20px;
  height: 20px;
  border: none;
}
.filter .irs--round .irs-bar {
  top: 35px;
  background: #022ed9;
}
.filter .line {
  background: #aeaeae;
  width: 12px;
  height: 1px;
}
.filter .product_part .product_item {
  flex: 0 0 auto;
  width: 25%;
}

.pagination .pagination_block {
  gap: 150px;
}
.pagination .pagination_more {
  padding: 17px 45px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #022ed9;
  transition: all ease-in 0.1s;
}
.pagination .pagination_more:hover {
  background: #0028c4;
}
.pagination .pagination_numbers {
  gap: 15px;
}
.pagination .pagination_numbers a {
  color: inherit;
  text-align: center;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all ease-in 0.1s;
}
.pagination .pagination_numbers span {
  color: inherit;
  text-align: center;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all ease-in 0.1s;
}
.pagination .pagination_numbers a:hover, .pagination .pagination_numbers span.active {
  color: #022ed9;
}

.detail_swiper {
  margin-bottom: 40px;
}

.mySwiper2 {
    max-width: 550px;
}
.detail_swiper .detail_title {
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 65px;
}
.detail_swiper .detail_block {
  gap: 60px;
}
.detail_swiper .swiper_main_img,
.detail_swiper .thumb_img {
  text-align: center;
}
.detail_swiper .swiper-slide-thumb-active .thumb_img {
  border: 1px solid #cbfd77;
}
.detail_swiper .thumb_img {
  height: 62px;
  max-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in 0.1s;
  cursor: pointer;
  border: 1px solid transparent;
}
.detail_swiper .thumb_img:hover {
  border: 1px solid #cbfd77;
}
.detail_swiper .thumb_img img {
  max-height: 50px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
.detail_swiper .bottom_arrow {
  position: absolute;
  bottom: 0px;
  left: 40px;
  z-index: 3;
}
.detail_swiper .detail_part {
  flex: 0 0 auto;
  width: calc(50% - 35px);
}
.detail_swiper .swiper_part {
  gap: 10px;
}
.detail_swiper .mySwiper {
  flex: 0 0 auto;
  width: 15.7%;
}
.detail_swiper .product_rate {
  margin-bottom: 20px;
}
.detail_swiper .detail_name {
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}
.detail_swiper .full_view {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
  max-height: 60px;
  overflow: hidden;
  transition: all ease-in-out 0.3s;
}
.detail_swiper .full_view.active {
  overflow: auto;
  max-height: unset;
}
.detail_swiper #small_viewer {
  display: none;
}
.detail_swiper .full_view_btn {
  color: #aeaeae;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-bottom: 1px solid #aeaeae;
  margin-bottom: 20px;
  transition: all ease-in 0.2s;
}
.detail_swiper .full_view_btn:hover {
  color: #0028c4;
  border-bottom-color: #0028c4;
}
.detail_swiper .old_price {
  color: #aeaeae;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: line-through;
  margin-bottom: 10px;
}
.detail_swiper .new_price_block {
  gap: 20px;
  margin-bottom: 20px;
}
.detail_swiper .new_price {
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.detail_swiper .price_discount {
  padding: 7px 13px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: #022ed9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail_swiper .show_offer {
  gap: 10px;
    padding: 10px 20px;
  background: #cbfd77;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
  transition: all ease-in 0.1s;
}
.detail_swiper .show_offer:hover {
  background: #b8ff40;
}
.detail_swiper .result_title {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}
.detail_swiper .result_title span {
  border-bottom: 1px solid #1a1a1a;
}
.detail_swiper .result_title a {
  border-bottom: 1px solid #1a1a1a;
    color: #1a1a1a;
}
.detail_swiper .detail_extra_block {
  gap: 0px;
}
.detail_swiper .detail_extra_block p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.detail_tab .tab_navigation {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  gap: 5px;
}
.detail_tab .tab_navigation li {
  cursor: pointer;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all ease-in 0.1s;
  padding: 17px 25px;
}
.detail_tab .tab_navigation a {
    color: black;
}
.detail_tab .tab_navigation li:hover, .detail_tab .tab_navigation li.active {
  background: #022ed9;
  color: #fff;
}
.detail_tab .tab_navigation li:hover a, .detail_tab .tab_navigation li.active {
  /*background: #022ed9;*/
  color: #fff;
}
.detail_tab .tab_navigation .active a {
    color: #fff;
}
.detail_tab .tab_content_wrapper {
  width: 100%;
}
.detail_tab .tab_content {
  display: none;
}
.detail_tab .tab_content.active {
  display: block;
}
.detail_tab .tab_price_item {
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 30px;
}
.detail_tab .price_name {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}
.detail_tab .tab_price_logo {
  gap: 20px;
}
.detail_tab .logo_name {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}
.detail_tab .logo_desc {
  color: #aeaeae;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.detail_tab .tab_price_desc {
  max-width: 466px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.detail_tab .salary_top_part {
  gap: 10px;
  margin-bottom: 5px;
}
.detail_tab .salary_count {
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.detail_tab .salary_discount {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 5px;
  background: #022ed9;
}
.detail_tab .salary_block {
  gap: 50px;
}
.detail_tab .salary_block.second {
  gap: 100px;
}
.detail_tab .salary_old_price {
  color: #aeaeae;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: line-through;
}
.detail_tab .all_character {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 30px;
}
.detail_tab .character_title {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 40px;
}
.detail_tab .character_table {
  width: 100%;
  margin-bottom: 40px;
}
.detail_tab .character_table tr {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.detail_tab .character_table tr:last-child, .detail_tab .character_table tr:first-child {
  border: none;
}
.detail_tab .character_table tr.main_row {
  border-bottom: 1px solid #f0f0f0;
}
.detail_tab .character_table tr.bottom_row {
  border-bottom: none;
}
.detail_tab .character_table tr td {
  padding: 20px 0;
  color: #aeaeae;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.detail_tab .character_table tr td a {
  color: #022ed9;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-bottom: 1px solid #022ed9;
}
.detail_tab .character_table tr td:first-child {
  border-right: 1px solid #f0f0f0;
  padding-right: 30px;
  width: 450px;
}
.detail_tab .character_table tr td:last-child {
  padding-left: 65px;
}


.short_char_table {
    width: 80%;
    margin-bottom: 5px;
}
.short_char_table tr td {
    padding: 5px 0;
    color: #aeaeae;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.detail_tab .description_title {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 50px;
}
.detail_tab .description_desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 50px;
}
.detail_tab .review_block {
  gap: 120px;
}
.detail_tab .review_right {
  flex: 0 0 auto;
  width: 17%;
}
.detail_tab .otziv_btn {
  padding: 17px 50px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #022ed9;
  transition: all ease-in 0.1s;
  margin-bottom: 35px;
}
.detail_tab .otziv_btn:hover {
  background: #0028c4;
}
.detail_tab .review_otsenka {
  gap: 20px;
  margin-bottom: 15px;
}
.detail_tab .small_otziv {
  color: #aeaeae;
  font-family: Golos Text;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.detail_tab .buyer_left {
  gap: 30px;
  margin-bottom: 40px;
}
.detail_tab .buyer_name {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}
.detail_tab .buyer_reviews {
  gap: 15px;
}
.detail_tab .review_description_wrap {
  margin-bottom: 30px;
}
.detail_tab .review_detail {
  display: flex;
  gap: 3px;
  align-items: center;
}
.detail_tab .item_name {
  color: #aeaeae;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.detail_tab .item_value {
  color: #1a1a1a;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.detail_tab .otziv_name {
  color: #aeaeae;
  font-family: Golos Text;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}
.detail_tab .review_images {
  gap: 20px;
  margin-top: 30px;
}
.detail_tab .otziv_value {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.detail_tab .review_top_part {
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 50px;
}
.detail_tab .put_desc {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}
.detail_tab .otziv_headphone_block {
  gap: 20px;
  padding: 10px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 40px;
}
.detail_tab .head_text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.detail_tab .otziv_form_title {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 40px;
}
.detail_tab .otziv_star_title {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 18px;
}
.detail_tab .otziv_star_title span {
  color: #022ed9;
}
.detail_tab .impression_title {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}
.detail_tab .reviews_form {
  gap: 40px;
}
.detail_tab .reviews_form .review_textarea {
  width: 100%;
  height: 100px;
  min-height: 100px;
  border: 1px solid #f0f0f0;
  outline: none;
  padding: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.detail_tab .reviews_form .review_textarea::-webkit-resizer {
  display: none;
}
.detail_tab .reviews_form .review_textarea:focus {
  border: 1px solid #022ed9;
}
.detail_tab .input_name {
  margin-bottom: 20px;
  color: #aeaeae;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.detail_tab .submit_button {
  gap: 40px;
}
.detail_tab .submit_desc {
  color: #aeaeae;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.detail_tab .submit_desc a {
  color: #aeaeae;
  border-bottom: 1px solid #aeaeae;
}
.detail_tab .put_review_btn {
  margin: 0;
}
.detail_tab .photo_label {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}
.detail_tab .instruction_block {
  gap: 20px;
  margin-bottom: 20px;
}
.detail_tab .instruction_desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 415px;
}
.detail_tab .video_block {
  gap: 20px;
}
.detail_tab .video_block .video_desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 30px;
}

.container {
  max-width: 1440px;
  padding: 0;
  margin: 0 auto;
}

@media (max-width: 1480px) {
  .container {
    max-width: 1140px;
  }
  .category .category_img {
    top: 10px;
    right: -46px;
  }
  .detail_tab .otziv_btn {
    padding: 17px 30px;
  }
  .detail_swiper .bottom_arrow {
    bottom: -30px;
  }
  .filter .apply {
    padding: 12px 20px;
  }
  .detail_swiper .mySwiper {
    width: 20%;
  }
  .product_img {
    margin-top: 20px;
  }
  .phone_banner_img img {
    width: 90%;
  }
  .article_item {
    flex: 0 0 auto;
    width: 31%;
  }
  .phone_rigt {
    flex: 0 0 auto;
    width: 45%;
  }
  .phone_banner .phone_banner_img {
    bottom: -25px;
    right: -101px;
  }
  .phone_img img {
    width: 100%;
  }
  .article .content_wrapper {
    gap: 0;
    justify-content: space-between;
  }
  .article .article_tab_block {
    flex-wrap: wrap;
  }
  .about_img img,
  .article .article_img img {
    width: 100%;
  }
  .service_image img {
    width: 100%;
  }
  .service_desc_img {
    flex: 0 0 auto;
    width: 50%;
  }
  .about .about_stats_block {
    gap: 100px;
  }
  header .catalog_btn {
    padding: 16px 25px;
  }
  header .catalog_search input {
    width: 380px;
  }
  header .header_links {
    gap: 25px;
  }
  .product_img img {
    width: 100%;
  }
  .product_price {
    padding: 15px 11px;
    font-size: 16px;
  }
  .buy_btn {
    padding: 10px 18px;
  }
  .product_price {
    padding: 10px 11px;
  }
  .product_desc {
    font-size: 14px;
    min-height: 50px;
  }
  .product .product_block {
    margin-bottom: 100px;
  }
  .product_body {
    padding: 0 10px;
  }
  .buy_text {
    display: none;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .video_item {
    flex: 0 0 auto;
    width: calc(50% - 15px);
  }
  .video_item iframe {
    width: 100%;
  }
  .detail_tab .review_right {
    display: none;
  }
  .tab_content .main_section {
    margin-bottom: 0;
  }
  .detail_tab .submit_button {
    flex-wrap: wrap;
    gap: 25px;
  }
  header .header_block .header_links {
    display: none !important;
  }
  .detail_tab .review_block {
    flex-direction: column;
    gap: 25px;
  }
  .detail_tab .tab_navigation {
    margin-bottom: 30px;
  }
  .detail_swiper .mySwiper,
  .detail_swiper .bottom_arrow {
    display: none;
  }
  .tab_price_item {
    flex-wrap: wrap;
    gap: 20px 0;
  }
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 0;
    background-color: transparent;
    border: 1px solid #022ed9;
    opacity: 1;
  }
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #022ed9;
  }
  .filter_buttons {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start !important;
  }
  .phone .screen_block {
    gap: 40px;
  }
  .phone_banner .phone_banner_block {
    padding: 79px 25px 79px 42px;
  }
  .about .about_img {
    margin-bottom: 40px;
  }
  header .catalog_menus li > a {
    gap: 5px;
  }
  .phone .phone_item {
    flex-direction: column;
    gap: 40px;
  }
  .phone .phone_block {
    gap: 60px;
    margin-bottom: 50px;
  }
  .article .content_block {
    padding: 45px 20px 73px 30px;
  }
  .article .article_title.article_page {
    margin-bottom: 30px;
  }
  .article_title {
    font-size: 30px;
  }
  .about .about_stats_block {
    gap: 40px;
    flex-wrap: wrap;
  }
  .about .stat_number {
    font-size: 42px;
    margin-bottom: 8px;
  }
  .about .stat_desc {
    font-size: 16px;
  }
  .service .service_desc_items {
    gap: 10px;
    margin-bottom: 60px;
  }
  footer .footer_bottom {
    gap: 0;
    justify-content: space-between;
  }
  .service .service_desc_items p {
    font-size: 16px;
  }
  .category .category_img {
    top: 41px;
    right: -46px;
  }
  .category .category_img img {
    width: 85%;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  .select-items {
    top: 131%;
    left: -60%;
  }
  .review_block.main_section {
    margin-bottom: 50px;
  }
  .detail_tab .character_table tr td:first-child {
    width: 387px;
  }
  .detail_swiper {
    margin-bottom: 100px;
  }
  .detail_tab .tab_navigation {
    flex-wrap: wrap;
  }
  .detail_swiper .detail_title {
    font-size: 25px;
    margin-bottom: 50px;
  }
  .navs {
    margin-bottom: 20px;
  }
  .mobile_wrapper {
    margin-bottom: 30px;
  }
  .select-selected::before {
    display: none;
  }
  .select-selected:hover {
    color: inherit;
  }
  .filter .sort_block {
    margin-bottom: 0;
  }
  .mobile_wrapper {
    gap: 25px;
  }
  .mob_filter {
    gap: 10px;
    padding: 13px 25px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: #022ed9;
    transition: all ease-in 0.1s;
  }
  .mob_filter:hover {
    background-color: #0028c4;
  }
  .filter .filter_part {
    flex: 0 0 auto;
    width: 40%;
    top: 0;
    position: absolute;
    background: #ffffff;
    z-index: 11222;
    padding: 50px 40px;
    left: -150%;
    transition: all ease-in-out 0.2s;
  }
  .filter .filter_part.active {
    left: 0;
  }
  .phone_banner .phone_banner_img {
    position: static;
    text-align: center;
    transform: translate(0px, -80px);
    margin-bottom: -80px;
  }
  .phone .screen_block {
    flex-wrap: wrap;
  }
  .phone_banner_img img {
    width: 60%;
  }
  .phone_banner .phone_banner_left {
    width: 100%;
  }
  .phone_banner .phone_banner_block {
    padding: 0px 25px 50px 42px;
  }
  .phone_banner .phone_banner_block {
    flex-direction: column-reverse;
  }
  .article .tab_item {
    padding: 7px 10px;
    font-size: 14px;
  }
  .phone .phone_screen_name {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .phone_rigt {
    width: 60%;
  }
  .phone .phone_screen_desc {
    font-size: 16px;
  }
  .article .article_banner_block {
    padding: 50px 0 68px 35px;
    margin-bottom: 30px;
  }
  .article .banner_desc {
    max-width: 71%;
    font-size: 16px;
  }
  header .catalog_btn {
    padding: 17px 12px;
  }
  .article .article_tab_block {
    gap: 10px;
    margin-bottom: 30px;
  }
  .article .article_name {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .service .service_name {
    font-size: 26px;
  }
  .article .article_desc {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .article .see_all {
    font-size: 14px;
  }
  .about .about_img {
    margin-bottom: 30px;
  }
  .main_section {
    margin-bottom: 80px;
  }
  header .search_result_block {
    padding: 30px 5px;
  }
  .about .about_stats_block {
    gap: 20px;
  }
  header .catalog_menus {
    gap: 18px;
    padding-right: 20px;
    margin-right: 21px;
  }
  .category .category_item {
    width: 50%;
  }
  header .catalog_menus .cat_name {
    font-size: 14px;
  }
  header .catalog_menus .cat_subtitle {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .menu_img {
    display: none;
  }
  header .cat_btn_text {
    font-size: 14px;
  }
  header .tel_types {
    margin-bottom: 20px;
    padding: 0 15px;
  }
  footer .footer_top {
    padding-bottom: 40px;
    flex-wrap: wrap;
    gap: 35px 25px;
  }
  .service .service_block {
    gap: 30px;
  }
  header .catalog_search input {
    width: 275px;
  }
  header .catalog_search button {
    padding: 18px 13px;
  }
  .cat_img img {
    width: 16px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  .filter .filter_part {
    width: 80%;
  }
  .detail_tab .video_block {
    flex-wrap: wrap;
    gap: 30px;
  }
  .detail_swiper {
    margin-bottom: 80px;
  }
  .detail_tab .video_block .video_desc {
    margin-top: 15px;
  }
  .video_item {
    width: 100%;
  }
  .detail_tab .character_table tr td:first-child {
    width: 250px;
  }
  .detail_swiper .detail_block {
    flex-wrap: wrap;
    gap: 25px;
  }
  .detail_swiper .detail_name,
  .detail_swiper .full_view,
  .detail_swiper .full_view_btn {
    display: none;
  }
  .detail_swiper .detail_title {
    margin-bottom: 20px;
  }
  .swiper_main_img img {
    width: 285px;
    margin-bottom: 40px;
  }
  .detail_swiper .swiper_part,
  .detail_swiper .detail_part {
    width: 100%;
  }
  .pagination .pagination_block {
    flex-direction: column;
    gap: 50px;
  }
  .detail_swiper .result_title {
    margin-bottom: 50px;
  }
  .filter_buttons {
    flex-direction: row;
    gap: 10px;
    align-items: center !important;
  }
  header .header_block {
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 15px;
    margin-bottom: 10px;
  }
  .filter_block .solar_block {
    display: none !important;
  }
  .phone_banner .phone_banner_title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .filter .filter_title {
    font-size: 29px;
    margin-bottom: 20px;
  }
  .filter .product_part .product_item {
    width: 50%;
  }
  .article .content_wrapper {
    flex-wrap: wrap;
  }
  .phone_banner .phone_banner_desc {
    font-size: 16px;
    margin-bottom: 35px;
  }
  .phone_rigt {
    width: 70%;
  }
  .article_item {
    width: 49%;
  }
  .article_title {
    font-size: 29px;
    margin-bottom: 20px;
  }
  .article .article_more {
    margin-bottom: 15px;
  }
  .about .about_title {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .breadcrumb_block {
    margin-bottom: 10px;
  }
  .not_found .not_found_img {
    margin-bottom: 40px;
    padding: 0 15px;
  }
  .not_found .not_found_img img {
    width: 100%;
  }
  header .catalog_open {
    top: 67px;
    padding-top: 30px;
  }
  header .catalog_menus {
    width: 32%;
  }
  .catalog_menus.fourth_menu {
    position: absolute;
    top: 30px;
    right: -55px;
    z-index: 9911;
    background: #fff;
    width: 35%;
  }
  header .catalog_menus .arrow {
    display: none;
  }
  .service .service_block {
    flex-direction: column;
    align-items: center !important;
  }
  .main_section {
    margin-bottom: 80px;
  }
  .service .service_desc_items {
    margin-bottom: 30px;
  }
  .service_desc_img {
    width: 100%;
  }
  .service_desc_img .service_image {
    text-align: center;
  }
  .service_desc_img .service_image img {
    width: 80%;
  }
  .banner .banner_block {
    padding: 150px 0;
  }
  .navs {
    margin-bottom: 15px;
  }
  .footer_item {
    flex: 0 0 auto;
    width: 47%;
  }
  header .catalog_search input {
    height: 40px;
    width: 100%;
    font-size: 12px;
    padding: 0 30px 0 15px;
  }
  header .catalog_search input::-moz-placeholder {
    font-size: 12px;
  }
  header .catalog_search input::placeholder {
    font-size: 12px;
  }
  .search_icon {
    position: absolute;
    top: 9px;
    right: 10px;
  }
  .catalog_search {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
  .review_block .mobile_otziv_btn {
    margin: 0 auto;
    width: 70%;
    margin-bottom: 35px;
  }
  .detail_tab .otziv_form_title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .detail_tab .otziv_star_title {
    font-size: 14px;
  }
  .detail_tab .otziv_headphone_block {
    margin-bottom: 40px;
  }
  .star_block {
    margin-bottom: 30px;
  }
  .mobayl_star_titles {
    color: #aeaeae;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    line-height: normal;
  }
  .mobile_otsenka {
    margin-bottom: 15px;
    justify-content: center;
  }
  .mobile_otsenka_title {
    font-size: 18px;
  }
  .filter .filter_main_title {
    margin-bottom: 0;
  }
  .detail_tab .buy_text {
    display: block;
    font-size: 16px;
  }
  .detail_tab .character_table tr td:first-child {
    width: unset;
  }
  .detail_tab .logo_name {
    margin-bottom: 6px;
  }
  .detail_swiper {
    margin-bottom: 60px;
  }
  .detail_tab .tab_navigation li {
    font-size: 14px;
    padding: 12px 20px;
  }
  .detail_swiper .rate_desc {
    display: block !important;
  }
  .detail_tab .price_name {
    font-size: 18px;
    margin-bottom: 28px;
  }
  .detail_swiper .old_price {
    font-size: 16px;
  }
  .detail_swiper .new_price {
    font-size: 24px;
  }
  .detail_swiper .detail_title {
    font-size: 19px;
    margin-bottom: 15px;
  }
  .swiper_main_img img {
    width: 190px;
  }
  .detail_tab .logo_name,
  .detail_tab .tab_price_desc {
    font-size: 14px;
  }
  .detail_tab .logo_desc,
  .detail_tab .salary_old_price {
    font-size: 12px;
  }
  .detail_tab .salary_count {
    font-size: 18px;
  }
  .filter_title_block {
    margin-bottom: 30px;
  }
  .filter .filter_part {
    width: 76%;
  }
  .filter .filter_title {
    font-size: 21px;
  }
  .filter .filter_title sup {
    font-size: 18px;
  }
  .filter .filter_title {
    margin-bottom: 30px;
  }
  .article .content_wrapper {
    gap: 20px;
  }
  .phone_banner_img img {
    width: 93%;
  }
  .article .content_item {
    flex: 0 0 auto;
    width: 100%;
    gap: 20px;
  }
  .phone_rigt {
    width: 80%;
  }
  .mobile_titles {
    margin-bottom: 30px;
    display: flex;
  }
  .article .article_title.article_page {
    margin-bottom: 20px;
  }
  .article .banner_date {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .article .banner_desc {
    max-width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .article .banner_btn {
    padding: 11px 16px;
    font-size: 12px;
  }
  .article .article_banner_block {
    padding: 25px 20px 150px 20px;
    margin-bottom: 25px;
    background: url(../images/mobile_article_hero.png) no-repeat center;
    background-size: cover;
  }
  .fourth_menu {
    display: none !important;
  }
  .article_item {
    width: 100%;
  }
  .breadcrumb li,
  .breadcrumb li a {
    font-size: 10px;
  }
  .article_title {
    font-size: 21px;
  }
  .article .tab_item {
    padding: 11px 16px;
    font-size: 12px;
  }
  .article .tab_item:nth-child(n+5) {
    display: none;
  }
  .about .about_title {
    font-size: 21px;
    margin-bottom: 20px;
  }
  .about .stat_number {
    font-size: 36px;
    margin-bottom: 8px;
  }
  .about .stat_desc {
    font-size: 14px;
  }
  .breadcrumb {
    margin-bottom: 0;
  }
  .mobile_name {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  header .catalog_menus {
    padding-right: 0;
    margin-right: 0;
    width: 100%;
    gap: 0;
    border-right: none;
  }
  header .catalog_menus li {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
  }
  header .catalog_menus li:last-child {
    border-bottom: none;
  }
  header .search_result_block {
    padding: 10px 0 30px 0;
  }
  .navs .nav_pagination {
    display: none !important;
  }
  .category .category_item {
    width: 80%;
  }
  header .result_name {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .back_block {
    gap: 20px;
  }
  .back_block .mobile_name {
    color: #aeaeae;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .second_menu {
      height: 100%;
    position: absolute;
    display: none !important;
  }
  .second_menu.active {
    display: block !important;
    padding-top: 35px;
    display: block !important;
    left: 0;
    top: 0;
    background: #fff;
    width: 100%;
    z-index: 222;
  }
  .third_menu {
    position: absolute;
    z-index: -2;
    display: none !important;
  }
  .third_menu.active {
    display: block !important;
    padding-top: 35px;
    display: block !important;
    left: 0;
    top: 0;
    background: #fff;
    width: 100%;
    z-index: 222;
    height: 100vh;
  }
  header .result_item {
    gap: 10px;
  }
  header .tel_types a {
    font-size: 12px;
  }
  .service .service_name {
    font-size: 18px;
    margin-bottom: 30px;
  }
  header .result_item:last-child {
    border-bottom: none;
  }
  .service .service_more_btn {
    font-size: 14px;
    padding: 13px 40px;
  }
  .service_desc_img .service_image img {
    width: 100%;
  }
  .service .service_desc_items p {
    font-size: 14px;
  }
  .main_section {
    margin-bottom: 80px;
  }
  .category_block {
    justify-content: center !important;
  }
  .discount_number {
    font-size: 12px;
    padding: 5px;
    top: 7px;
    left: 10px;
  }
  .rate_desc,
  .solar_block {
    display: none !important;
  }
  .product .title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .swiper_arrows {
    margin-bottom: 20px;
    gap: 30px;
  }
  .product .product_block {
    margin-bottom: 60px;
  }
  .headphone_prev svg,
  .headphone_next svg,
  .drel_next svg,
  .drel_prev svg,
  .washing_prev svg,
  .washing_next svg {
    width: 15px;
  }
  .banner .banner_title {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .banner .banner_block {
    padding: 100px 0;
  }
  .banner {
    margin-bottom: 40px;
  }
  .banner .banner_desc {
    font-size: 18px;
  }
  .product_desc {
    font-size: 12px;
    min-height: 43px;
  }
  .navs .navs_swiper {
    margin: 0 0px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  header .catalog_open {
    top: 60px;
  }
  .detail_tab .description_title {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .detail_tab .submit_desc {
    font-size: 12px;
  }
  .detail_tab .video_block .video_desc {
    font-size: 14px;
  }
  .file-area .img_count,
  .file-area .img_type {
    font-size: 12px;
  }
  .detail_tab .input_name {
    font-size: 12px;
  }
  .detail_tab .impression_title,
  .detail_tab .instruction_desc {
    font-size: 14px;
  }
  .tab_content_wrapper .review_block .mobile_otziv_btn {
    margin-bottom: 35px;
  }
  .detail_tab .instruction_block {
    margin-bottom: 30px;
  }
  .detail_tab .buyer_reviews {
    display: flex;
  }
  .detail_tab .otziv_name,
  .detail_tab .item_value {
    font-size: 12px;
  }
  .detail_tab .otziv_value {
    font-size: 14px;
  }
  .detail_tab .review_description_wrap {
    margin-bottom: 20px;
  }
  .detail_tab .buyer_name {
    font-size: 14px;
  }
  .bought_date {
    font-size: 10px;
  }
  .detail_tab .otziv_btn {
    font-size: 16px;
  }
  .detail_tab .buyer_left {
    gap: 20px;
    margin-bottom: 30px;
  }
  .detail_tab .otziv_btn {
    margin-bottom: 0px;
  }
  .pagination .pagination_more {
    padding: 13px 40px;
    font-size: 14px;
  }
  .detail_tab .character_title {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .detail_tab .all_character {
    font-size: 16px;
  }
  .detail_tab .description_title {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .detail_tab .description_desc {
    margin-bottom: 30px;
    font-size: 14px;
  }
  .detail_tab .character_table tr td {
    padding: 20px 0;
    font-size: 12px;
  }
  .detail_tab .character_table tr td a {
    font-size: 14px;
  }
  .pagination .pagination_numbers a {
    font-size: 16px;
  }
  .detail_tab .character_table {
    margin-bottom: 35px;
  }
  .detail_tab .character_table tr td:last-child {
    padding-left: 20px;
  }
  .detail_swiper .price_discount {
    padding: 5px 7px;
    color: #fff;
    text-align: center;
    font-size: 14px;
  }
  .detail_swiper .new_price_block {
    margin-bottom: 30px;
  }
  .detail_swiper .show_offer {
    padding: 15px 0;
    width: 100%;
    font-size: 16px;
    margin-bottom: 12px;
  }
  .select-items {
    left: -74px;
  }
  .detail_swiper .detail_extra_block {
    flex-direction: row !important;
    gap: 50px;
    flex-wrap: wrap;
  }
  .detail_swiper .detail_extra_block p {
    font-size: 11px;
    flex: 0 0 auto;
    width: calc(50% - 30px);
  }
  .detail_swiper .result_title {
    margin-bottom: 40px;
    text-align: center;
    font-size: 12px;
  }
  .navs .swiper-slide {
    margin: 0 11px;
  }
  .filter .filter_part {
    padding: 33px 10px 60px 10px;
  }
  .filter .apply {
    padding: 14px 33px;
    font-size: 14px;
  }
  .filter .filter_main_title {
    font-size: 18px;
  }
  .filter .show_all {
    font-size: 14px;
  }
  .filter .reset {
    font-size: 14px;
  }
  .mob_filter {
    padding: 13px 18px;
  }
  .mobile_wrapper {
    flex-wrap: wrap;
    gap: 20px 10px;
    justify-content: center !important;
  }
  .article .content_block {
    padding: 35px 20px 40px 25px;
  }
  .filter .product_part .product_item {
    width: 100%;
  }
  .filter .product_img img {
    width: 60%;
  }
  .filter .filter_part {
    width: 100%;
  }
  .product_img {
    margin-top: 0px;
  }
  .phone_banner .phone_banner_block {
    padding: 0 20px 35px 25px;
  }
  .phone_banner .phone_banner_title {
    font-size: 18px;
  }
  .phone_banner .phone_banner_desc {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .phone_banner_img img {
    width: 100%;
  }
  .phone_banner .phone_banner_btn {
    padding: 13px 40px;
    font-size: 14px;
  }
  .phone .phone_number {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .phone .phone_desc p,
  .phone .phone_screen_desc {
    font-size: 14px;
  }
  .phone .screen_block {
    gap: 30px;
  }
  .phone .screen_item {
    padding: 11px 16px;
    font-size: 14px;
  }
  .phone .phone_name {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .phone .phone_desc {
    margin-bottom: 25px;
  }
  .article.main_section {
    margin-bottom: 25px;
  }
  .phone .phone_block {
    gap: 40px;
    margin-bottom: 30px;
  }
  .phone_rigt {
    width: 100%;
  }
  .article .content_item p {
    font-size: 14px;
  }
  .article .content_name {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .article .article_date {
    font-size: 10px;
  }
  .article .article_name {
    font-size: 16px;
  }
  .article .article_desc {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .article .article_more {
    font-size: 14px;
  }
  .category .category_item {
    width: 100%;
    padding: 22px 0 150px 21px;
  }
  .navs .nav_title {
    font-size: 12px;
  }
  .not_found .not_found_desc {
    font-size: 14px;
    max-width: 300px;
    margin: 0 auto 20px auto;
  }
  .not_found .not_found_btn {
    padding: 18px 40px;
    font-size: 14px;
  }
  .category .category_img {
    top: -3px;
    right: -7px;
  }
  .category .category_img img {
    width: 185px;
  }
  .main_section {
    margin-bottom: 60px;
  }
  .category .category_name {
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    z-index: 121;
  }
  .buy_btn {
    padding: 14px 14px;
  }
  .product_price {
    font-size: 14px;
    padding: 15px 0px 15px 10px;
  }
  .header_logo a img {
    width: 150px;
  }
  footer {
    padding: 32px 0px 70px 0;
  }
  footer .footer_logo {
    margin-bottom: 25px;
  }
  footer .footer_logo img {
    width: 165px;
  }
  header .catalog_btn {
    padding: 10px 12px;
  }
  .cat_img img {
    width: 13px;
    margin-bottom: 1px;
  }
  footer .footer_top {
    gap: 10px;
    padding-bottom: 22px;
    margin-bottom: 18px;
  }
  footer .footer_links {
    gap: 10px;
  }
  footer .footer_links li a {
    font-size: 14px;
  }
  footer .footer_bottom {
    gap: 10px;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start !important;
  }
  .footer_item {
    flex: 0 0 auto;
    width: 100%;
  }
  .footer_item:first-child .footer_links {
    padding-right: 45px;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 14px;
  }

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