/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

*,
*:before,
*:after {
  box-sizing: border-box;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after {
  content: " ";
  display: table;
}

.clearfix:after,
.container:after {
  clear: both;
}

body {
  font-family: Inter, Arial, Tahoma, sans-serif;
  color: #000;
  background: #fff;
  font-size: 13px;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

p {
  line-height: 1.35;
}

.icon {
  display: inline-block;
  vertical-align: middle;
}

*,
*:active,
*:focus {
  outline: none !important;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
}

::-webkit-input-placeholder {
  color: #8E8E8E;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #8E8E8E;
  opacity: 1;
}

::placeholder {
  color: #8E8E8E;
  opacity: 1;
}

.page {
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.main-content {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-top: 244px;
}

.main-content.no-header {
  padding-top: 0;
}

.floatLeft {
  float: left;
}

.floatRight {
  float: right;
}

strong,
b {
  font-weight: 700;
}

img:not([src]) {
  visibility: hidden;
  position: relative;
}

img:not([src]):after {
  content: "";
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  background: url("../images/preloader.svg") center;
  background-size: cover;
}

.btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: all 0.3s ease-out;
  color: #000;
  font-family: Inter, Arial, Tahoma, sans-serif;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  background: #FEDC09;
  border-radius: 10px;
  border: 1px solid transparent;
  min-height: 44px;
  padding: 8px 40px;
}

.btn:hover {
  background: #FEB909;
}

.btn img {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  transition: all 0.3s ease-out;
}

.btn.blue-btn {
  background: #4471FB;
  color: #fff;
}

.btn.blue-btn:hover {
  background: #042EB0;
}

.btn.blue-btn img {
  filter: brightness(0) invert(1);
}

.btn.darkblue-btn {
  background: #042EB0;
  color: #fff;
}

.btn.darkblue-btn:hover {
  background: #4471fb;
}

.btn.darkblue-btn img {
  filter: brightness(0) invert(1);
}

.btn.yellow-btn {
  background: #FEDC09;
}

.btn.yellow-btn:hover {
  background: #FEB909;
}

.btn.yellow-btn img {
  filter: brightness(0);
}

.btn.black-empty-btn {
  color: #000;
  background: transparent;
  border-color: #000;
}

.btn.black-empty-btn:hover {
  border-color: #042EB0;
  color: #042EB0;
}

.btn.black-empty-btn:hover img {
  filter: grayscale(0);
}

.btn.black-empty-btn img {
  filter: grayscale(1);
}

.btn.blue-empty-btn {
  color: #042EB0;
  background: transparent;
  border-color: #042EB0;
}

.btn.blue-empty-btn:hover {
  border-color: #042EB0;
  background: #042EB0;
  color: #fff;
}

.btn.blue-empty-btn:hover img {
  filter: brightness(0) invert(1);
}

.btn.gray-btn {
  color: #8E8E8E;
  background: #fff;
  border-color: #E5E5E5;
}

.btn.gray-btn:hover {
  border-color: #000;
  color: #000;
}

.btn.gray-btn:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.btn.gray-btn img {
  filter: grayscale(1);
  opacity: 0.5;
}

.btn.white-empty-btn {
  color: #fff;
  background: transparent;
  border-color: #fff;
}

.btn.white-empty-btn:hover {
  border-color: #FEDC09;
  color: #FEDC09;
}

.btn.white-empty-btn:hover img {
  filter: grayscale(0);
}

.btn.white-empty-btn img {
  filter: brightness(0) invert(1);
}

.btn[disabled] {
  opacity: 0.4;
  pointer-events: none;
}

button.btn {
  cursor: pointer;
  font-family: Inter, Arial, Tahoma, sans-serif;
  line-height: 1.2;
}

.w-100 {
  width: 100%;
}

.simple-form input,
.simple-form textarea,
.simple-form select {
  display: block;
  width: 100%;
  height: 44px;
  transition: border-color 0.3s ease-out;
  padding: 0 20px;
  color: #222;
  font-size: 14px;
  font-weight: 400;
  font-family: Inter, Arial, Tahoma, sans-serif;
  border-radius: 10px;
  border: 1px solid #E0E0E0;
  background: #fff;
  transition: all 0.3s ease-out;
}

.simple-form textarea {
  height: auto;
}

.simple-form input::-webkit-input-placeholder,
.simple-form textarea::-webkit-input-placeholder,
.simple-form select::-webkit-input-placeholder {
  color: #8E8E8E;
  opacity: 1;
}

.simple-form input:-moz-placeholder,
.simple-form textarea:-moz-placeholder,
.simple-form select:-moz-placeholder {
  color: #8E8E8E;
  opacity: 1;
}

.simple-form input::-moz-placeholder,
.simple-form textarea::-moz-placeholder,
.simple-form select::-moz-placeholder {
  color: #8E8E8E;
  opacity: 1;
}

.simple-form input:-ms-input-placeholder,
.simple-form textarea:-ms-input-placeholder,
.simple-form select:-ms-input-placeholder {
  color: #8E8E8E;
  opacity: 1;
}

.simple-form input:focus,
.simple-form textarea:focus,
.simple-form select:focus {
  border-color: #042EB0;
}

.simple-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url("../images/select-arrow.svg") right 19px center no-repeat;
  background-size: 17px 9px;
  padding-right: 50px;
  cursor: pointer;
}

.simple-form select:hover {
  border-color: #042EB0;
}

.simple-form .custom-input {
  padding-top: 16px;
}

.simple-form .input-block {
  margin-bottom: 20px;
}

.input-block {
  position: relative;
}

.input-block.active .custom-input-label {
  font-size: 11px;
  color: #042EB0;
  font-weight: 700;
  top: 8px;
}

.custom-input-label {
  font-weight: 400;
  font-size: 14px;
  pointer-events: none;
  color: #8E8E8E;
  transition: color 0.3s ease-out, top 0.3s ease-out, font-size 0.3s ease-out;
  position: absolute;
  left: 21px;
  top: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: calc(100% - 30px);
  text-align: left;
  padding-bottom: 1px;
}

h1 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.2;
}

h2 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.22;
  margin-bottom: 20px;
}

.breadcrumbs-outer {
  padding-top: 13px;
  margin-bottom: 20px;
}

.breadcrumbs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #042EB0;
}

.breadcrumbs li {
  position: relative;
  margin: 0 9px 12px 0;
  padding-left: 30px;
  max-width: 100%;
}

.breadcrumbs li:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 9px;
  height: 9px;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-top: 2px solid #BFBFBF;
  border-right: 2px solid #BFBFBF;
  transform: rotate(45deg);
}

.breadcrumbs li:first-child {
  padding-left: 0;
}

.breadcrumbs li:first-child:before {
  display: none;
}

.breadcrumbs li:last-child {
  margin-right: 0;
}

.breadcrumbs a {
  color: #6B6B6B;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  display: inline-block;
  padding: 2px 0;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  display: inline-block;
  padding: 2px 0;
}

.js-slick .slick-arrow {
  position: absolute;
  z-index: 10;
  text-indent: -9999px;
  cursor: pointer;
  padding: 0;
  top: 50%;
  margin-top: -15px;
  height: 30px;
  width: 30px;
  background: #F0F0F0;
  transition: all 0.3s ease-out;
  border-radius: 10px;
  border: none;
}

.js-slick .slick-arrow:hover {
  background: #FEDC09;
}

.js-slick .slick-arrow:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: none;
  background: none;
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-top: -4px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

.js-slick .slick-arrow.slick-prev {
  left: 0px;
}

.js-slick .slick-arrow.slick-prev:after {
  transform: rotate(-135deg);
  margin-left: -2px;
}

.js-slick .slick-arrow.slick-next {
  right: 0px;
}

.js-slick .slick-arrow.slick-next:after {
  transform: rotate(45deg);
  margin-left: -5px;
}

.js-slick .slick-arrow.slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.js-slick .slick-dots {
  position: absolute;
  z-index: 11;
  width: 100%;
  left: 0;
  text-align: center;
  top: 100%;
  margin-top: 10px;
}

.js-slick .slick-dots li {
  display: inline-block;
  vertical-align: middle;
  text-indent: -9999px;
  cursor: pointer;
  width: 30px;
  height: 2px;
  background: #CECECE;
  transition: all 0.3s ease-out;
  border: none;
  border-radius: 1px;
  margin: 0 2px;
}

.js-slick .slick-dots li:hover {
  background: #042EB0;
}

.js-slick .slick-dots .slick-active {
  background: #042EB0;
}

header {
  background: #FFFFFF;
  border-bottom: 1px solid #EBEBEB;
  box-shadow: 0px 4px 65px rgba(118, 111, 111, 0.13);
  position: fixed;
  width: 100vw;
  padding-right: 15px;
  left: 0;
  top: 0;
  z-index: 99;
}

.header-bottom {
  display: -ms-flexbox;
  display: flex;
}

.header-catalog-favorites {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-item-align: center;
  align-self: center;
  margin: 0 -6px;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
}

.header-catalog-favorites a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 6px;
  transition: all 0.3s ease-out;
  width: max-content;
}

.header-catalog-favorites a:hover {
  color: #042EB0;
}

.header-catalog-favorites a:hover img {
  filter: none;
}

.header-catalog-favorites img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  transition: all 0.3s ease-out;
  filter: brightness(0);
}

.header-catalog {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 37px;
  position: relative;
  z-index: 5;
}

.header-catalog:hover .header-catalog-toggle {
  background: #FEB909;
}

.header-catalog:hover .header-catalog-dropdown {
  opacity: 1;
  visibility: visible;
}

.header-catalog-toggle {
  height: 100%;
  min-height: 58px;
  background: #FEDC09;
  border-radius: 2px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  padding: 5px 10px;
  width: 152px;
  transition: all 0.3s ease-out;
  cursor: pointer;
  border-radius: 10px 10px 0 0;
}

.header-catalog-toggle img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  filter: brightness(0);
}

.header-catalog-dropdown {
  transition: all 0.3s ease-out 0.25s;
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0;
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
}

.header-catalog-content {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  box-shadow: 0px 4px 30px rgba(118, 111, 111, 0.13);
  position: relative;
  width: 350px;
  border-radius: 10px;
}

.header-catalog-content:after,
.header-catalog-content:before {
  bottom: 100%;
  left: 95px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.header-catalog-content:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 9px;
  margin-left: -9px;
}

.header-catalog-content:before {
  border-color: rgba(235, 235, 235, 0);
  border-bottom-color: #EBEBEB;
  border-width: 10px;
  margin-left: -10px;
}

.header-catalog-list {
  font-weight: 500;
  font-size: 16px;
  padding: 10px 14px;
  height: 69vh;
  overflow: auto;
  overscroll-behavior-y: contain;
}

.header-catalog-list::-webkit-scrollbar {
  width: 3px;
  background: #F4F4F4;
}

.header-catalog-list::-webkit-scrollbar-thumb {
  border: none;
  border-radius: 7px;
  background: #7A7A7A;
}

.header-catalog-list a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: 44px;
  padding: 5px 15px 5px 0;
  position: relative;
  z-index: 2;
}

.header-catalog-list a:hover:before {
  opacity: 1;
}

.header-catalog-list a:hover:after {
  opacity: 1;
}

.header-catalog-list a:before {
  content: "";
  display: block;
  background: #FEDC09;
  left: -14px;
  top: 0;
  height: 100%;
  width: calc(100% + 28px);
  position: absolute;
  z-index: -1;
  transition: all 0.3s ease-out;
  opacity: 0;
}

.header-catalog-list a:after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url("../images/chevron-right.svg") center no-repeat;
  background-size: 100% 100%;
  position: absolute;
  z-index: 3;
  pointer-events: none;
  top: 50%;
  margin-top: -10px;
  right: -5px;
  transition: all 0.3s ease-out;
  opacity: 0;
}

.header-catalog-list .top-border {
  border-top: 1px solid #EBEBEB;
  padding-top: 10px;
  margin-top: 10px;
}

.header-catalog-list .icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  width: 25px;
}

.header-catalog-list img {
  display: block;
  margin: 0 auto;
  filter: brightness(0);
}

.header-catalog-list .no-subcatalog:after {
  display: none;
}

.header-catalog-list .opened:before {
  opacity: 1;
}

.header-catalog-list .opened:after {
  opacity: 1;
}

.header-subcatalog {
  background: #FFFFFF;
  box-shadow: 0px 4px 30px rgba(118, 111, 111, 0.13);
  position: absolute;
  width: 350px;
  left: 348px;
  top: 0;
  font-weight: 500;
  font-size: 14px;
  height: 69vh;
  overflow: auto;
  background: #FAFAFA;
  padding: 13px 15px;
  line-height: 1.2;
  display: none;
  border-radius: 10px;
  overscroll-behavior-y: contain;
}

.header-subcatalog::-webkit-scrollbar {
  width: 3px;
  background: #F4F4F4;
}

.header-subcatalog::-webkit-scrollbar-thumb {
  border: none;
  border-radius: 7px;
  background: #7A7A7A;
}

.header-subcatalog a {
  display: block;
  padding: 10px 0;
  transition: all 0.3s ease-out;
}

.header-subcatalog a:hover {
  text-decoration: underline;
  color: #042EB0;
}

.header-subcatalog .main-link {
  font-weight: 700;
}

.header-top {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 13px 0;
}

.header-top .main-logo {
  display: none;
}

.language-block {
  position: relative;
  z-index: 10;
  font-weight: 600;
  font-size: 14px;
  margin-left: 29px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.language-block:hover .language-block-toggle:after {
  border-color: #FEDC09;
}

.language-block:hover .language-block-dropdown {
  opacity: 1;
  visibility: visible;
}

.language-block-toggle {
  display: block;
  cursor: pointer;
  position: relative;
}

.language-block-toggle:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  border: 1px solid #D2D2D2;
  transition: all 0.3s ease-out;
}

.language-block-toggle .flag {
  display: block;
}

.language-block-dropdown {
  transition: all 0.3s ease-out 0.25s;
  position: absolute;
  z-index: 10;
  top: 100%;
  right: -12px;
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
}

.language-list {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  box-shadow: 0px 4px 30px rgba(118, 111, 111, 0.13);
  position: relative;
  border-radius: 10px;
}

.language-list:after,
.language-list:before {
  bottom: 100%;
  right: 26px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.language-list:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 9px;
  margin-right: -9px;
}

.language-list:before {
  border-color: rgba(235, 235, 235, 0);
  border-bottom-color: #EBEBEB;
  border-width: 10px;
  margin-right: -10px;
}

.language-list a {
  transition: all 0.3s ease-out;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 14px;
  white-space: nowrap;
}

.language-list a:first-child {
  border-radius: 8px 8px 0 0;
}

.language-list a:last-child {
  border-radius: 0 0 8px 8px;
}

.language-list a:only-child {
  border-radius: 8px;
}

.language-list a:last-child span {
  border-bottom: none;
}

.language-list a:hover {
  background: #FEDC09;
}

.language-list span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 48px;
  border-bottom: 1px solid #EBEBEB;
}

.language-list img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
}

.header-top-content {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.header-menu {
  -ms-flex-order: 1;
  order: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: #737373;
  margin: 0 -15px;
}

.header-menu li {
  margin: 0 15px;
}

.header-menu a {
  transition: all 0.3s ease-out;
}

.header-menu a:hover {
  color: #042EB0;
}

.header-options {
  -ms-flex-order: 2;
  order: 2;
  margin-left: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-right: -15px;
}

.header-options > li {
  margin: 0 15px;
  position: relative;
  z-index: 5;
}

.header-options > li:hover .header-options-link {
  color: #000;
}

.header-options > li:hover .header-options-link img {
  filter: brightness(0);
  opacity: 1;
}

.header-options > li:hover .header-options-dropdown {
  opacity: 1;
  visibility: visible;
}

.header-options-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: #737373;
  transition: all 0.3s ease-out;
}

.header-options-link:hover {
  color: #042EB0 !important;
}

.header-options-link:hover img {
  filter: none !important;
  opacity: 1;
}

.header-options-link .icon {
  margin-right: 7px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header-options > li .header-options-link .count {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  margin-left: 5px;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  line-height: 1.1;
  padding: 3px 4px;
  background: #698EFF;
  border-radius: 2px;
}

.header-options-link img {
  transition: all 0.3s ease-out;
  filter: brightness(0);
  opacity: 0.6;
  display: block;
  margin: 0 auto;
}

.header-options-link .active-circle {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FEDC09;
  display: none;
}

.header-options-link.active {
  color: #000;
}

.header-options-link.active img {
  filter: brightness(0);
  opacity: 1;
}

.header-options-link.active .active-circle {
  display: block;
}

.header-options-dropdown {
  transition: all 0.3s ease-out 0.25s;
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 100%;
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
}

.header-options-dropdown.message-dropdown {
  left: -25px;
}

.header-options-dropdown.bell-dropdown {
  width: 233px;
  margin-left: -116px;
}

.bell-dropdown-content {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  box-shadow: 0px 4px 30px rgba(118, 111, 111, 0.13);
  position: relative;
  width: 100%;
  border-radius: 10px;
}

.bell-dropdown-content:after,
.bell-dropdown-content:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.bell-dropdown-content:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 9px;
  margin-left: -9px;
}

.bell-dropdown-content:before {
  border-color: rgba(235, 235, 235, 0);
  border-bottom-color: #EBEBEB;
  border-width: 10px;
  margin-left: -10px;
}

.bell-dropdown-list {
  overflow: auto;
  max-height: 201px;
  overscroll-behavior-y: contain;
}

.bell-dropdown-list::-webkit-scrollbar {
  width: 3px;
  background: #F4F4F4;
}

.bell-dropdown-list::-webkit-scrollbar-thumb {
  border: none;
  border-radius: 7px;
  background: #7A7A7A;
}

.bell-dropdown-item {
  border-bottom: 1px solid #EBEBEB;
  padding: 15px;
  display: block;
}

.bell-dropdown-item:nth-last-of-type(1) {
  border-bottom: none;
}

.bell-dropdown-item:hover .type {
  text-decoration: underline;
}

.bell-dropdown-item .info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 5px;
}

.bell-dropdown-item .type {
  color: #042EB0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.bell-dropdown-item .count {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  margin-left: 10px;
  font-size: 11px;
  color: #fff;
  line-height: 1.1;
  padding: 3px 4px;
  background: #698EFF;
  border-radius: 2px;
}

.bell-dropdown-item p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 1px;
  max-width: 100%;
  color: #626262;
  line-height: 1.2;
  font-size: 11px;
  font-weight: 500;
}

.bell-dropdown-bottom {
  padding: 15px;
  border-top: 1px solid #EBEBEB;
}

.bell-dropdown-bottom .btn {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.message-dropdown-content {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  box-shadow: 0px 4px 30px rgba(118, 111, 111, 0.13);
  position: relative;
  width: 100%;
  min-width: 233px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
}

.message-dropdown-content:after,
.message-dropdown-content:before {
  bottom: 100%;
  left: 58px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.message-dropdown-content:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 9px;
  margin-left: -9px;
}

.message-dropdown-content:before {
  border-color: rgba(235, 235, 235, 0);
  border-bottom-color: #EBEBEB;
  border-width: 10px;
  margin-left: -10px;
}

.message-dropdown-content a {
  transition: all 0.3s ease-out;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 14px;
  white-space: nowrap;
}

.message-dropdown-content a:first-child {
  border-radius: 8px 8px 0 0;
}

.message-dropdown-content a:last-child {
  border-radius: 0 0 8px 8px;
}

.message-dropdown-content a:only-child {
  border-radius: 8px;
}

.message-dropdown-content a:last-child span {
  border-bottom: none;
}

.message-dropdown-content a:hover {
  background: #FEDC09;
}

.message-dropdown-content a:hover img {
  opacity: 1;
}

.message-dropdown-content span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 44px;
  border-bottom: 1px solid #EBEBEB;
}

.message-dropdown-content img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  transition: all 0.3s ease-out;
  opacity: 0.6;
}

.header-middle {
  padding: 5px 0 19px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  transition: all 0.3s ease-out;
}

.header-middle.fixedtop {
  padding: 0;
}

.main-logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.main-logo img {
  height: auto;
  display: block;
}

.header-information {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -15px;
}

.header-information-block {
  margin: 0 15px;
  position: relative;
  z-index: 4;
}

.header-information-block:hover .avatar:after {
  opacity: 1;
}

.header-information-block:hover .header-information-dropdown {
  opacity: 1;
  visibility: visible;
}

.header-information-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  transition: all 0.3s ease-out;
  font-weight: 600;
}

.header-information-link.empty {
  color: #646464;
}

.header-information-link.empty .icon {
  opacity: 0.6;
}

.header-information-link:hover {
  color: #042EB0;
}

.header-information-link:hover .icon {
  opacity: 1;
  filter: none;
}

.header-information-link .icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 8px;
  filter: brightness(0);
  transition: all 0.3s ease-out;
}

.header-information-link img {
  display: block;
}

.header-information-link .type {
  font-size: 14px;
}

.header-information-link .value {
  font-size: 12px;
  color: #042EB0;
  margin-top: 4px;
  white-space: nowrap;
}

.header-information-link .avatar {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 8px;
  position: relative;
}

.header-information-link .avatar:after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #FEDC09;
  transition: all 0.3s ease-out;
  opacity: 0;
}

.header-information-link .avatar:hover:after {
  opacity: 1;
}

.header-information-link .avatar img {
  height: 42px;
  width: 42px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  image-rendering: -webkit-optimize-contrast;
}

.header-information-dropdown {
  transition: all 0.3s ease-out 0.25s;
  position: absolute;
  z-index: 10;
  top: 100%;
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  left: 0;
}

.header-information-dropdown.user-dropdown {
  left: -10px;
}

.header-information-dropdown.cart-dropdown {
  left: auto;
  right: 0;
}

.lk-menu {
  font-size: 13px;
  font-weight: 600;
}

.lk-menu li:last-child div {
  border-bottom: none;
}

.lk-menu a {
  transition: all 0.3s ease-out;
  display: block;
  padding: 0 20px;
  border-radius: 10px;
}

.lk-menu a:hover {
  background: #FEDC09;
}

.lk-menu a:hover img {
  opacity: 1;
}

.lk-menu a:hover div {
  border-color: transparent;
}

.lk-menu div {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 47px;
  border-bottom: 1px solid #EBEBEB;
  transition: all 0.3s ease-out;
  line-height: 1.2;
}

.lk-menu span {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: block;
}

.lk-menu img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  transition: all 0.3s ease-out;
  opacity: 0.6;
  display: block;
}

.lk-menu .count {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  margin-left: 10px;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  line-height: 1.1;
  padding: 3px 4px;
  background: #698EFF;
  border-radius: 2px;
}

.lk-menu .active {
  background: #FEDC09;
}

.lk-menu .active img {
  opacity: 1;
}

.lk-menu .active div {
  border-color: transparent;
}

.user-dropdown-content {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  box-shadow: 0px 4px 30px rgba(118, 111, 111, 0.13);
  position: relative;
  width: 100%;
  border-radius: 10px;
}

.user-dropdown-content:after,
.user-dropdown-content:before {
  bottom: 100%;
  left: 62px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.user-dropdown-content:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 9px;
  margin-left: -9px;
}

.user-dropdown-content:before {
  border-color: rgba(235, 235, 235, 0);
  border-bottom-color: #EBEBEB;
  border-width: 10px;
  margin-left: -10px;
}

.user-dropdown-content span {
  white-space: nowrap;
}

.user-dropdown-content .lk-menu a {
  border-radius: 0;
}

.user-dropdown-content .lk-menu li:first-child a {
  border-radius: 8px 8px 0 0;
}

.user-dropdown-content .lk-menu li:last-child a {
  border-radius: 0 0 8px 8px;
}

.user-dropdown-content .lk-menu li:only-child a {
  border-radius: 8px;
}

.cart-dropdown-content {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  box-shadow: 0px 4px 30px rgba(118, 111, 111, 0.13);
  position: relative;
  min-width: 355px;
  border-radius: 10px;
}

.cart-dropdown-content:after,
.cart-dropdown-content:before {
  bottom: 100%;
  right: 41px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.cart-dropdown-content:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 9px;
  margin-right: -9px;
}

.cart-dropdown-content:before {
  border-color: rgba(235, 235, 235, 0);
  border-bottom-color: #EBEBEB;
  border-width: 10px;
  margin-right: -10px;
}

.cart-dropdown-list {
  overflow: auto;
  max-height: 530px;
}

.cart-dropdown-list::-webkit-scrollbar {
  width: 3px;
  background: #F4F4F4;
}

.cart-dropdown-list::-webkit-scrollbar-thumb {
  border: none;
  border-radius: 7px;
  background: #7A7A7A;
}

.cart-dropdown-item {
  border-bottom: 1px solid #EBEBEB;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 17px 15px;
}

.cart-dropdown-item:nth-last-of-type(1) {
  border-bottom: none;
}

.cart-dropdown-item .image {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 15px;
}

.cart-dropdown-item .image img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}

.cart-dropdown-item .name {
  line-height: 130%;
  color: #042EB0;
  max-width: 160px;
  display: block;
  max-height: 50px;
  overflow: hidden;
}

.cart-dropdown-item .name:hover {
  text-decoration: underline;
}

.cart-dropdown-item .price {
  margin-left: auto;
  white-space: nowrap;
  text-align: right;
  font-weight: 600;
  padding-left: 15px;
}

.cart-dropdown-item .yuan {
  color: #042EB0;
  font-size: 14px;
}

.cart-dropdown-item .ruble {
  font-size: 12px;
  margin-top: 5px;
}

.cart-dropdown-bottom {
  padding: 16px 15px;
  border-top: 1px solid #EBEBEB;
}

.cart-dropdown-bottom .total {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 19px;
}

.cart-dropdown-bottom .type {
  font-weight: 600;
  font-size: 14px;
}

.cart-dropdown-bottom .price {
  text-align: right;
  font-weight: 700;
  font-size: 15px;
  color: #042EB0;
}

.cart-dropdown-bottom .buttons {
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
}

.cart-dropdown-bottom .btn {
  margin: 0 5px;
  padding-left: 10px;
  padding-right: 10px;
  width: calc(50% - 10px);
}

.orders-dropdown-list {
  overflow: auto;
  max-height: 317px;
  min-width: 250px;
}

.orders-dropdown-list::-webkit-scrollbar {
  width: 3px;
  background: #F4F4F4;
}

.orders-dropdown-list::-webkit-scrollbar-thumb {
  border: none;
  border-radius: 7px;
  background: #7A7A7A;
}

.orders-dropdown-item {
  border-bottom: 1px solid #EBEBEB;
  padding: 15px;
}

.orders-dropdown-item:nth-last-of-type(1) {
  border-bottom: none;
}

.orders-dropdown-item .info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 12px;
  line-height: 1.25;
}

.orders-dropdown-item .number {
  font-weight: 700;
}

.orders-dropdown-item .count {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: right;
  margin-left: 15px;
  color: #8e8e8e;
  font-weight: 500;
}

.orders-dropdown-item .detail {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.2;
}

.orders-dropdown-item .image {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
}

.orders-dropdown-item .image img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}

.orders-dropdown-item .status {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: #042EB0;
}

.orders-dropdown-item .status-icon {
  width: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 7px;
}

.orders-dropdown-item .status-icon img {
  display: block;
  height: auto;
  width: 100%;
}

.orders-dropdown-item .status-type {
  font-size: 14px;
  font-weight: 700;
}

.orders-dropdown-item .status-date {
  font-size: 11px;
  font-weight: 500;
  margin-top: 3px;
}

.orders-dropdown-bottom {
  padding: 15px;
  border-top: 1px solid #EBEBEB;
}

.orders-dropdown-bottom .btn {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.header-search-outer {
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-left: 26px;
  margin-right: 26px;
  position: relative;
  background: #fff;
}

.header-search-outer input {
  display: block;
  width: 100%;
  height: 44px;
  transition: border-color 0.3s ease-out;
  padding-right: 148px;
  padding-left: 202px;
  color: #222;
  font-size: 14px;
  font-weight: 400;
  font-family: Inter, Arial, Tahoma, sans-serif;
  border-radius: 10px;
  border: 1px solid #000000;
  background: #fff;
  transition: all 0.3s ease-out;
}

.header-search-outer input::-webkit-input-placeholder {
  color: #8E8E8E;
  opacity: 1;
}

.header-search-outer input:-moz-placeholder {
  color: #8E8E8E;
  opacity: 1;
}

.header-search-outer input::-moz-placeholder {
  color: #8E8E8E;
  opacity: 1;
}

.header-search-outer input:-ms-input-placeholder {
  color: #8E8E8E;
  opacity: 1;
}

.header-search-outer input:focus {
  border-color: #042EB0;
}

.header-search-outer button {
  height: 44px;
  width: 44px;
  position: absolute;
  top: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease-out;
}

.header-search-submit {
  right: 0;
  border-radius: 0 10px 10px 0;
  background: #042EB0;
}

.header-search-submit:hover {
  background: #4471FB;
}

.header-search-outer button img {
  display: block;
  margin: 0 auto;
}

.header-search-image-btn {
  right: 44px;
  background: #fff;
  border-left: 1px solid #E0E0E0;
}

.header-search-image-btn:hover {
  background: #F5F7FB;
}

.header-search-image-btn img {
  filter: brightness(0);
}

.header-search-image-btn.loading img,
.header-search-image-btn[disabled] img {
  opacity: 0.45;
}

.header-search-outer.is-image-search-loading .header-search-image-btn {
  background: #F0F4FF;
}

.header-search-outer.is-image-search-loading .header-search-image-btn::before {
  display: none;
}

.header-search-outer.is-image-search-loading .header-search-image-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  margin-top: -9px;
  border-radius: 50%;
  border: 2px solid rgba(4, 46, 176, 0.18);
  border-top-color: #042EB0;
  animation: header-search-spin 0.75s linear infinite;
}

.header-search-image-preview {
  position: absolute;
  z-index: 4;
  right: 95px;
  top: 4px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  background: #F5F5F5;
  border: 1px solid #E0E0E0;
}

.header-search-image-preview.is-hidden {
  display: none;
}

.header-search-image-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-search-image-loader {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(2px);
}

.header-search-outer.is-image-search-loading .header-search-image-loader {
  display: flex;
}

.header-search-image-loader-spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(4, 46, 176, 0.2);
  border-top-color: #042EB0;
  animation: header-search-spin 0.75s linear infinite;
}

.header-search-image-preview .header-search-image-reset {
  position: absolute;
  z-index: 2;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.header-search-image-preview .header-search-image-reset:hover {
  background: rgba(0, 0, 0, 0.84);
}

.header-search-image-preview .header-search-image-reset span {
  display: block;
  font-size: 12px;
  line-height: 1;
  margin-top: -1px;
}

.header-search-outer.is-image-search-loading .header-search-image-reset {
  opacity: 0;
  pointer-events: none;
}

.header-search-outer .header-search-image-btn {
  top: 1px;
  height: 42px;
}

.header-search-outer .header-search-image-input {
  display: none;
}

@keyframes header-search-spin {
  to {
    transform: rotate(360deg);
  }
}

.search-select-block {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 5;
  width: 190px;
}

.search-select-block:after {
  content: "";
  height: 22px;
  width: 2px;
  display: block;
  background: #E5E5E5;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -11px;
}

.search-select-block select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  height: 44px;
  padding: 0;
  padding-left: 15px;
  font-size: 13px;
  font-weight: 600;
}

.search-select-block .select2-container {
  width: 100% !important;
}

.search-select-block .select2-container .select2-selection--single {
  background: transparent;
  border-radius: 4px !important;
  height: 44px;
  border: none;
  transition: all 0.3s ease-out;
}

.search-select-block .select2-container .select2-selection__rendered {
  height: 44px;
  line-height: 43px;
  font-size: 13px;
  font-weight: 600;
  padding-right: 40px;
  padding-left: 15px;
  color: #000;
}

.search-select-block .select2-container .select2-selection__arrow {
  top: 0;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  right: 17px;
  width: 14px;
}

.search-select-block .select2-container .select2-selection__arrow:after {
  content: url("../images/select-arrow.svg");
  display: inline-block;
  transition: all 0.3s ease-out;
}

.search-select-block .select2-container .select2-selection__arrow b {
  display: none;
}

.search-select-block .select2-container--open .select2-selection__arrow:after {
  transform: rotate(-180deg);
}

.select2-dropdown {
  background: #FFFFFF;
  border: 1px solid #EBEBEB !important;
  box-shadow: 0px 4px 30px rgba(118, 111, 111, 0.13);
  padding: 0;
  border-radius: 10px !important;
  overflow: hidden;
}

.select2-dropdown .select2-results > .select2-results__options {
  max-height: 406px;
  overflow-x: hidden;
  padding: 15px;
  overscroll-behavior-y: contain;
}

.select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar {
  width: 3px;
  background: #F4F4F4;
}

.select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
  border: none;
  border-radius: 7px;
  background: #7A7A7A;
}

.select2-dropdown .select2-results__option {
  padding: 2px 8px 2px 0;
  font-size: 13px;
  font-weight: 500;
  border-radius: 0;
  background: none !important;
  margin-bottom: 10px;
  line-height: 1.23;
}

.select2-dropdown .select2-results__option:last-child {
  margin-bottom: 0;
}

.select2-dropdown .select2-results__option[aria-selected="true"] {
  font-weight: 700;
  color: #042EB0;
}

.select2-dropdown .select2-results__option--highlighted[aria-selected] {
  color: #042EB0;
  text-decoration: underline;
}

.search-select-dropdown {
  width: auto !important;
  min-width: 188px;
}

.search-select-dropdown .select2-results__option {
  white-space: nowrap;
}

.header-close,
.header-buter,
.header-catalog-close,
.mobile-bottom {
  display: none;
}

.header-search-dropdown {
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 190px;
  padding-top: 10px;
  display: block;
  width: calc(100% - 234px);
  display: none;
}

.header-search-content {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  box-shadow: 0px 4px 30px rgba(118, 111, 111, 0.13);
  position: relative;
  width: 100%;
  border-radius: 10px;
}

.header-search-content:after,
.header-search-content:before {
  bottom: 100%;
  left: 70px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.header-search-content:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 9px;
  margin-left: -9px;
}

.header-search-content:before {
  border-color: rgba(235, 235, 235, 0);
  border-bottom-color: #EBEBEB;
  border-width: 10px;
  margin-left: -10px;
}

.header-search-list {
  max-height: 450px;
  line-height: 1.23;
  overflow: auto;
  overscroll-behavior-y: contain;
}

.header-search-list::-webkit-scrollbar {
  width: 3px;
  background: #F4F4F4;
}

.header-search-list::-webkit-scrollbar-thumb {
  border: none;
  border-radius: 7px;
  background: #7A7A7A;
}

.header-search-list .price {
  display: flex;
  gap: 20px;
}

.header-search-category {
  border-bottom: 1px solid #EBEBEB;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: 74px;
  padding: 10px 40px 10px 15px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease-out;
}

.header-search-category:after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url("../images/chevron-right.svg") center no-repeat;
  background-size: 100% 100%;
  position: absolute;
  z-index: 3;
  pointer-events: none;
  top: 50%;
  margin-top: -10px;
  right: 12px;
  transition: all 0.3s ease-out;
  opacity: 1;
}

.header-search-category:first-child {
  border-radius: 8px 6px 0 0;
}

.header-search-category:last-child {
  border-bottom: none;
}

.header-search-category:hover {
  background: #FEDC09;
}

.header-search-category .icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  width: 25px;
}

.header-search-category img {
  display: block;
  margin: 0 auto;
  filter: brightness(0);
}

.header-search-item {
  border-bottom: 1px solid #EBEBEB;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: 74px;
  padding: 10px 40px 10px 15px;
  position: relative;
  font-weight: 500;
}

.header-search-item:after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url("../images/chevron-right.svg") center no-repeat;
  background-size: 100% 100%;
  position: absolute;
  z-index: 3;
  pointer-events: none;
  top: 50%;
  margin-top: -10px;
  right: 12px;
  transition: all 0.3s ease-out;
  opacity: 1;
}

.header-search-item:last-child {
  border-bottom: none;
}

.header-search-item:hover .name {
  text-decoration: underline;
}

.header-search-item .image {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 15px;
}

.header-search-item .image img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}

.header-search-item .name {
  color: #042EB0;
  margin-bottom: 10px;
}

footer {
  background: #FAFAFA;
  border-radius: 130px 130px 0 0;
}

.footer-content {
  display: -ms-flexbox;
  display: flex;
  margin: 0 -25px;
  padding: 80px 0;
}

.footer-block {
  padding: 0 25px;
  width: 25%;
}

.footer-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 20px;
}

.footer-menu {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
}

.footer-menu li {
  margin-bottom: 20px;
}

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

.footer-menu a {
  color: #5F5F5F;
  transition: all 0.3s ease-out;
}

.footer-menu a:hover {
  color: #4471fb;
}

.footer-bottom {
  border-top: 1px solid #E3E3E3;
  padding: 20px 0;
}

.footer-bottom-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.footer-bottom-copyright {
  text-align: center;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.76);
  margin: 0 25px;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.footer-bottom-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.footer-bottom-qr {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 30px;
  box-shadow: -1px 1px 7px 0 rgba(0, 0, 0, 0.09);
  width: 84px;
}

.footer-bottom-qr img {
  display: block;
}

.footer-bottom-socials {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -5px;
}

.footer-bottom-socials li {
  margin: 0 5px;
}

.footer-bottom-socials a {
  display: block;
  transition: all 0.3s ease-out;
}

.footer-bottom-socials a:hover {
  opacity: 0.7;
}

.footer-bottom-socials img {
  display: block;
}

.simple-section {
  margin-bottom: 40px;
}

.section-text {
  white-space: pre-line;
  margin-bottom: 40px;
}

.section-text .read-more {
  font-weight: 700;
  color: #042EB0;
  cursor: pointer;
  display: inline-block;
}

.section-text .read-more:hover {
  text-decoration: underline;
}

.section-text .hidden-text {
  display: none;
}

.seo-text {
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-out;
  max-height: 141px;
}

.seo-text:after {
  content: "";
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100%;
  position: absolute;
  z-index: 5;
  display: block;
  pointer-events: none;
  transition: all 0.3s ease-out;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}

.seo-text.full {
  max-height: 2000px;
  transition: all 2s ease-out;
}

.seo-text.full:after {
  opacity: 0;
  visibility: hidden;
}

.seo-text p {
  margin-bottom: 9px;
  white-space: pre-line;
}

.seo-read-more.opened img {
  transform: rotate(-180deg);
}

.seo-read-more img {
  transition: all 0.3s ease-out;
}

.seo-outer {
  border-top: 1px solid #E0E0E0;
  padding-top: 40px;
}

.seo-outer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.seo-premium {
  width: 420px;
  margin-right: 48px;
  border-radius: 20px;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  padding: 40px;
  text-align: center;
  color: #fff;
}

.seo-premium .bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.seo-premium .bg img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: center center;
}

.seo-premium .premium-logo {
  margin-bottom: 28px;
}

.seo-premium .premium-logo img {
  border-radius: 4px;
  max-width: 100%;
  height: auto;
}

.seo-premium .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.seo-premium p {
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 30px;
}

.seo-premium p a {
  color: #FEDC09;
  text-decoration: underline;
}

.seo-premium p a:hover {
  text-decoration: none;
}

.seo-premium .btn {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.seo-content {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.product-outer {
  margin-bottom: 40px;
}

.product-outer-top {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 19px;
}

.product-outer-top h2 {
  margin-bottom: 0;
}

.to-catalog {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 20px;
  font-weight: 600;
  font-size: 14px;
  color: #042EB0;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.2;
}

.to-catalog:hover {
  text-decoration: underline;
}

.to-catalog img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 10px;
}

.product-block {
  position: relative;
}

.product-block .label {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.25;
  color: #000000;
  position: absolute;
  z-index: 5;
  padding: 5px;
  top: 5px;
  left: 5px;
  border-radius: 6px;
}

.product-block .label.top {
  background: #FEDC09;
}

.product-block .label.new {
  background: #07B004;
  color: #fff;
}

.product-block .image {
  display: block;
  margin: 0 auto 17px;
  transition: all 0.3s ease-out;
  max-width: 196px;
}

.product-block .image:hover {
  opacity: 0.8;
}

.product-block .image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 190px;
  margin: 0 auto;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  border-radius: 10px;
}

.product-block .name {
  display: block;
  height: 50px;
  margin-bottom: 14px;
  font-weight: 500;
  font-size: 13px;
  color: #042EB0;
  line-height: 130%;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  /* autoprefixer: off */
}

.product-block .name:hover {
  text-decoration: underline;
}

.product-block .reviews {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 13px;
}

.product-block .counts {
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 1px;
}

.product-block .price {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 17px;
  line-height: 1.2;
}

.product-block .yuan {
  font-weight: 700;
  font-size: 15px;
  margin-right: 10px;
}

.product-block .ruble {
  font-weight: 600;
  font-size: 13px;
  color: #808080;
}

.product-block .buttons {
  display: -ms-flexbox;
  display: flex;
}

.product-block .cart-btn {
  padding: 0 7px;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-right: 10px;
}

.product-block .cart-btn img {
  margin-right: 0;
}

.product-block .cart-btn.added {
  background: #042EB0;
}

.product-block .cart-btn.added img {
  margin-right: 10px;
}

.product-block .paid {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 44px;
  padding: 0 7px;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background: #F9F9F9;
  border-radius: 2px;
  font-weight: 700;
  font-size: 12px;
  line-height: 95%;
  color: #7E7E7E;
  max-width: 101px;
  border-radius: 10px;
}

.product-block .paid img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  margin-right: 6px;
}

.product-block .paid i {
  display: block;
}

.jq-stars {
  display: inline-block;
}

.jq-rating-label {
  font-size: 22px;
  display: inline-block;
  position: relative;
  vertical-align: top;
}

.jq-star {
  width: 100px;
  height: 100px;
  display: inline-block;
  cursor: pointer;
}

.jq-star-svg {
  padding-left: 3px;
  width: 100%;
  height: 100%;
}

.jq-star-svg path {
  /* stroke: #000; */
  stroke-linejoin: round;
}

/* un-used */

.jq-shadow {
  filter: drop-shadow(-2px -2px 2px #888);
}

.product-rating {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  margin-left: -3px;
  pointer-events: none;
}

.product-long-example {
  width: 100%;
  display: block;
  margin-bottom: 40px;
}

.product-long-example img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 126px;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}

.product-catalog {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -14px -40px;
}

.product-catalog .product-block {
  width: calc(100% / 7 - 28px);
  margin: 0 14px 40px;
}

.load-more {
  margin-top: 40px;
  text-align: center;
}

.product-example {
  margin: 0 14px 40px;
  width: calc(100% + 28px);
}

.product-example a {
  display: block;
}

.product-example img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 195px;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}

.product-half-example {
  margin: 0 14px 20px;
  width: calc(100% + 28px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-half-example a {
  display: block;
  width: calc(50% - 14px);
  margin-bottom: 20px;
}

.product-half-example img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 195px;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}

.product-like {
  background: url("../images/heart.svg") center no-repeat;
  background-size: 100% auto;
  width: 18px;
  height: 18px;
  position: absolute;
  z-index: 5;
  cursor: pointer;
  top: 7px;
  right: 7px;
}

.shop-vip-block .product-like {
  right: 17px;
}

.product-like:after {
  content: "";
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
  background: url("../images/heart-full.svg") center no-repeat;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.product-like.liked:after {
  opacity: 1;
}

/*================= МОДАЛКИ ======================*/

.popup-modal {
  max-width: 880px;
  margin: 20px auto;
  position: relative;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
}

.popup-modal .mfp-close {
  top: 34px !important;
  right: 34px;
  line-height: 1px;
  opacity: 1;
  width: 34px;
  height: 34px;
}

.popup-modal .mfp-close img,
.popup-modal .mfp-close i {
  pointer-events: none;
  transition: all 0.3s ease-out;
  filter: grayscale(1);
  opacity: 0.6;
}

.popup-modal .mfp-close:hover img,
.popup-modal .mfp-close:hover i {
  filter: grayscale(0);
  opacity: 1;
}

.mfp-bg {
  background: #050A1C;
}

.mfp-zoom-in {
  /* start state */
  /* animate in */
  /* animate out */
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: scale(0.65);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.49;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.65);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.popup-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 30px;
  padding-right: 40px;
  position: relative;
}

.small-modal {
  max-width: 480px;
}

.modal-text {
  margin-top: -10px;
}

.modal-text p {
  margin-bottom: 20px;
}

.modal-text p:last-child {
  margin-bottom: 0;
}

#MobileAppModal.mfp-hide {
  display: none;
}

#MobileAppModal .popup-content > div > img {
  width: 300px;
  max-width: 100%;
  margin: auto;
  display: block;
}

#MobileAppModal .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

#MobileAppModal .desc {
  color: #5F5F5F;
  margin-bottom: 20px;
  text-align: center;
}

#MobileAppModal .form-buttons-flex a {
  width: 100%;
}

#MobileAppModal .form-buttons-flex a+a {
  margin-top: 10px;
}

#MobileAppModal .form-buttons-flex img {
  filter: none;
}

/* ==================== MEDIA =========================== */

@media (min-width: 0) {
  .container {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }

  .footer-menu {
    display: block !important;
  }
}

@media (min-width: 1020px) {
  .container {
    width: 1000px;
  }

  .header-top-content {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .header-subcatalog-mobile,
  .header-overlay {
    display: none !important;
  }

  .header-catalog-dropdown {
    display: block !important;
  }
}

@media (min-width: 1300px) {
  .container {
    width: 1270px;
  }
}

@media (min-width: 1600px) {
  .container {
    width: 1560px;
  }
}

@media (max-width: 1599px) {
  .main-content {
    padding-top: 224px;
  }

  .header-menu {
    font-size: 13px;
    margin: 0 -11px;
  }

  .header-menu li {
    margin: 0 11px;
  }

  .header-options-link {
    font-size: 13px;
  }

  .header-information {
    margin: 0 -10px;
  }

  .header-information-block {
    margin: 0 10px;
  }

  .header-middle {
    padding: 0 0 12px;
  }

  .header-catalog {
    margin-right: 20px;
  }

  .header-catalog-toggle {
    font-size: 14px;
    min-height: 50px;
  }

  .header-catalog-list {
    font-size: 14px;
  }

  .header-catalog-favorites {
    font-size: 13px;
  }

  .product-catalog .product-block {
    width: calc(100% / 6 - 28px);
  }
}

@media (max-width: 1299px) {
  .main-content {
    padding-top: 210px;
  }

  h2 {
    font-size: 16px;
  }

  .header-menu {
    font-size: 11px;
    margin: 0 -6px;
  }

  .header-menu li {
    margin: 0 6px;
  }

  .header-options {
    margin-right: -6px;
  }

  .header-options > li {
    margin: 0 6px;
  }

  .header-options-link {
    font-size: 11px;
  }

  .message-dropdown-content {
    font-size: 13px;
  }

  .language-block {
    font-size: 13px;
    margin-left: 12px;
  }

  .main-logo img {
    max-width: 130px;
  }

  .search-select-block {
    width: 170px;
  }

  .search-select-block .select2-container .select2-selection__rendered {
    font-size: 12px;
  }

  .header-search-outer input {
    font-size: 13px;
    padding-left: 182px;
    padding-right: 148px;
  }

  .header-search-dropdown {
    left: 170px;
    width: calc(100% - 170px);
  }

  .header-search-category {
    font-size: 14px;
  }

  .header-information-link .type {
    font-size: 13px;
  }

  .header-catalog-toggle {
    font-size: 13px;
    width: 130px;
  }

  .header-catalog-content:after,
  .header-catalog-content:before {
    left: 70px;
  }

  .header-catalog-list {
    font-size: 14px;
  }

  .header-catalog-favorites {
    font-size: 12px;
  }

  .header-catalog-favorites a {
    max-width: 135px;
  }

  .header-catalog-favorites img {
    margin-right: 7px;
  }

  .product-catalog {
    margin: 0 -10px -30px;
  }

  .product-catalog .product-block {
    width: calc(100% / 5 - 20px);
    margin: 0 10px 30px;
  }

  .product-block .label {
    font-size: 11px;
    line-height: 1;
    padding: 4px 3px;
  }

  .product-block .paid {
    font-weight: 600;
  }

  .product-rating {
    margin-right: 8px;
  }

  .product-example {
    width: calc(100% + 20px);
    margin: 0 10px 30px;
  }

  .product-half-example {
    width: calc(100% + 20px);
    margin: 0 10px 10px;
  }

  .product-long-example img {
    height: 100px;
  }

  .seo-premium {
    margin-right: 30px;
    width: 362px;
    padding: 30px;
  }
}

@media (max-width: 1019px) {
  header {
    padding-right: 0;
  }

  html.no-hidden {
    overflow: hidden;
  }

  .page {
    overflow: hidden;
  }

  .main-content {
    padding-top: 150px;
  }

  h1 {
    font-size: 20px;
  }

  .breadcrumbs-outer {
    padding-top: 10px;
    margin-bottom: 10px;
  }

  .breadcrumbs li {
    margin: 0 5px 12px 0;
    padding-left: 25px;
  }

  .header-top {
    padding: 5px 0 9px;
  }

  .header-top .main-logo {
    display: block;
    margin: 0 auto;
  }

  .header-buter {
    display: block;
    padding: 5px 4px;
    padding-right: 0;
    cursor: pointer;
  }

  .header-buter:hover span {
    background: #042EB0;
  }

  .header-buter span {
    display: block;
    height: 2px;
    width: 28px;
    margin: 7px 0;
    background: #000;
    border-radius: 10px;
    transition: all 0.3s ease-out;
  }

  .header-buter span:nth-of-type(2) {
    width: 19px;
  }

  .language-block {
    margin-left: 0;
  }

  .main-logo img {
    max-width: 110px;
  }

  .header-top-content {
    display: none;
    width: 274px;
    position: fixed;
    z-index: 101;
    background: #fff;
    top: 0;
    left: 0;
    height: 100%;
    overflow: auto;
    padding: 0 10px;
  }

  .header-top-content::-webkit-scrollbar {
    width: 3px;
    background: #F4F4F4;
  }

  .header-top-content::-webkit-scrollbar-thumb {
    border: none;
    border-radius: 7px;
    background: #7A7A7A;
  }

  .header-menu {
    display: block;
    margin: 0;
    text-align: left;
    font-size: 14px;
    color: #000;
  }

  .header-menu li {
    margin: 0;
    border-bottom: 1px solid #E2E2E2;
  }

  .header-menu li:last-child {
    border-bottom: none;
  }

  .header-menu a {
    display: block;
    padding: 21px 0;
  }

  .header-options {
    display: block;
    margin: 0;
    text-align: left;
    font-size: 14px;
    color: #000;
  }

  .header-options > li {
    margin: 0;
    border-bottom: 1px solid #E2E2E2;
  }

  .header-options-link {
    font-size: 14px;
    color: #000;
    padding: 20px 0;
  }

  .header-options-link .icon {
    width: 20px;
  }

  .header-options-link img {
    filter: none;
    opacity: 1;
  }

  .header-options-dropdown {
    display: none !important;
  }

  .lk-menu a {
    padding: 0 10px;
  }

  .header-close {
    display: block;
    position: absolute;
    z-index: 102;
    right: 10px;
    top: 10px;
    cursor: pointer;
  }

  .header-close:hover img {
    opacity: 1;
    filter: none;
  }

  .header-close img {
    display: block;
    transition: all 0.3s ease-out;
    filter: grayscale(1);
    opacity: 0.6;
  }

  .header-overlay {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.44);
    display: none;
  }

  .language-block-dropdown {
    right: -1px;
  }

  .language-list:after,
  .language-list:before {
    right: 15px;
  }

  .header-middle {
    padding-bottom: 10px;
  }

  .header-middle.fixedtop {
    padding: 10px 0;
  }

  .header-middle .main-logo {
    display: none;
  }

  .header-search-outer {
    margin: 0;
  }

  .header-catalog-favorites {
    display: none !important;
  }

  .header-information {
    display: none;
  }

  footer {
    padding-bottom: 52px;
  }

  .mobile-bottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    box-shadow: 0px 0 20px rgba(118, 111, 111, 0.4);
    position: fixed;
    bottom: 0;
    left: 50%;
    width: 730px;
    margin-left: -365px;
    background: #fff;
    z-index: 50;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
  }

  .mobile-catalog-toggle {
    height: 52px;
    background: #FEDC09;
    border-radius: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: #000;
    padding: 5px 10px;
    width: 180px;
    transition: all 0.3s ease-out;
    cursor: pointer;
  }

  .mobile-catalog-toggle:hover {
    background: #FEB909;
  }

  .mobile-catalog-toggle img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 10px;
    filter: brightness(0);
  }

  .mobile-bottom-menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 40px;
    text-align: center;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-weight: 500;
    font-size: 11px;
  }

  .mobile-bottom-menu a {
    display: block;
  }

  .mobile-bottom-menu img {
    filter: brightness(0);
  }

  .mobile-bottom-menu span {
    display: block;
  }

  .mobile-bottom-menu .icon {
    margin-bottom: 1px;
    position: relative;
  }

  .mobile-bottom-menu .count {
    position: absolute;
    z-index: 3;
    font-size: 10px;
    font-weight: 600;
    min-width: 16px;
    padding: 0 2px;
    height: 16px;
    background: #698EFF;
    border-radius: 2px;
    color: #fff;
    text-align: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0;
    right: -8px;
  }

  .mobile-bottom-menu .avatar {
    margin-bottom: 1px;
  }

  .mobile-bottom-menu .avatar img {
    filter: none;
    height: auto;
    width: 28px;
    border-radius: 50%;
    image-rendering: -webkit-optimize-contrast;
  }

  .mobile-bottom-menu .price {
    color: #042EB0;
  }

  .header-bottom {
    display: block !important;
  }

  .header-catalog {
    margin: 0;
    z-index: 30;
  }

  .header-catalog-toggle {
    display: none !important;
  }

  .header-catalog-dropdown {
    opacity: 1;
    visibility: visible;
    display: none;
    transition: none;
    padding: 0;
    position: fixed;
    width: 730px;
    top: 0;
    left: 50%;
    margin-left: -365px;
  }

  .header-catalog-content {
    border: none;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    overflow: auto;
    width: 100%;
    border-radius: 0;
  }

  .header-catalog-content::-webkit-scrollbar {
    width: 3px;
    background: #F4F4F4;
  }

  .header-catalog-content::-webkit-scrollbar-thumb {
    border: none;
    border-radius: 7px;
    background: #7A7A7A;
  }

  .header-catalog-content:before,
  .header-catalog-content:after {
    display: none;
  }

  .header-catalog-list {
    height: auto;
    overflow: hidden;
    margin-bottom: 52px;
  }

  .header-catalog-list a:before,
  .header-catalog-list a:after {
    display: none;
  }

  .header-catalog-close {
    display: block;
    position: absolute;
    z-index: 10;
    right: 10px;
    top: 10px;
    cursor: pointer;
  }

  .header-catalog-close:hover img {
    opacity: 1;
    filter: none;
  }

  .header-catalog-close img {
    display: block;
    transition: all 0.3s ease-out;
    filter: grayscale(1);
    opacity: 0.6;
  }

  .header-subcatalog {
    position: fixed;
    width: 730px;
    top: 0;
    left: 50%;
    margin-left: -365px;
    z-index: 45;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    padding-top: 55px;
    padding-bottom: 0;
    border-radius: 0;
  }

  .header-subcatalog-list {
    margin-bottom: 65px;
  }

  .header-subcatalog-mobile {
    display: none;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #fafafa;
    padding-right: 13px;
    padding-left: 14px;
    position: fixed;
    z-index: 46;
    width: 730px;
    top: 0;
    left: 50%;
    margin-left: -365px;
  }

  .header-subcatalog-return {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #777;
    cursor: pointer;
    height: 55px;
  }

  .header-subcatalog-return img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 7px;
  }

  .section-text {
    margin-bottom: 20px;
  }

  .mfp-container {
    padding: 0;
  }

  .mfp-content {
    vertical-align: top;
  }

  .popup-modal {
    margin: 0 auto;
    padding: 25px;
    max-width: 100%;
    border-radius: 0 0 20px 20px;
  }

  .popup-modal .mfp-close {
    top: 5px !important;
    right: 5px;
  }

  .popup-title {
    padding-right: 10px;
    margin-bottom: 20px;
    font-size: 16px;
  }

  .product-outer {
    margin-bottom: 20px;
  }

  .product-long-example {
    margin-bottom: 20px;
  }

  .product-catalog .product-block {
    width: calc(25% - 20px);
  }

  .product-block .image {
    margin-bottom: 12px;
    max-width: 300px;
  }

  .product-block .image img {
    width: 100%;
  }

  .product-block .name {
    margin-bottom: 8px;
  }

  .product-block .reviews {
    margin-bottom: 10px;
  }

  .product-block .price {
    margin-bottom: 13px;
  }

  .product-block .yuan {
    font-size: 14px;
  }

  .product-block .ruble {
    font-size: 12px;
  }

  .product-block .cart-btn {
    margin-right: 5px;
    min-height: 40px;
  }

  .product-block .paid {
    font-size: 11px;
    min-height: 40px;
  }

  .product-example img {
    min-height: 120px;
  }

  .product-half-example img {
    min-height: 100px;
  }

  .simple-section {
    margin-bottom: 30px;
  }

  .load-more {
    margin-top: 30px;
  }

  .modal-text {
    margin-top: 0;
  }

  .seo-outer {
    padding-top: 30px;
    display: block;
  }

  .seo-premium {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
    padding: 30px 150px;
  }

  .seo-premium .btn {
    width: auto;
  }

  .seo-text {
    max-height: 185px;
    text-align: center;
  }

  footer {
    border-radius: 40px 40px 0 0;
  }

  .footer-content {
    padding: 40px 0;
    margin: 0 -10px;
  }

  .footer-block {
    padding: 0 10px;
  }

  .footer-title {
    font-size: 13px;
  }

  .footer-menu {
    font-size: 13px;
  }

  .footer-menu li {
    margin-bottom: 14px;
  }

  .footer-bottom-content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer-bottom-copyright {
    -ms-flex-order: 2;
    order: 2;
    margin: 0;
    width: 100%;
    margin-top: 20px;
  }

  .footer-bottom-qr {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .btn {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mobile-bottom,
  .header-catalog-dropdown,
  .header-subcatalog,
  .header-subcatalog-mobile {
    left: 0;
    width: 100%;
    margin-left: 0;
  }

  h2.mobile-center {
    text-align: center;
  }

  .seo-read {
    text-align: center;
  }

  .mobile-bottom-menu {
    padding: 0 12px;
  }

  .mobile-catalog-toggle {
    width: 150px;
  }

  .product-long-example img {
    height: 60px;
  }

  .product-outer-top {
    margin-bottom: 15px;
  }

  .to-catalog {
    margin-left: 10px;
    font-size: 13px;
  }

  .product-catalog {
    margin: 0 -5px -10px;
  }

  .product-catalog .product-block {
    width: calc(33.333% - 10px);
    margin: 0 5px 10px;
  }

  .product-block .name {
    font-size: 12px;
    height: 45px;
  }

  .product-block .paid {
    font-size: 10px;
  }

  .product-example {
    width: calc(100% + 10px);
    margin: 0 5px 10px;
  }

  .product-example img {
    min-height: 114px;
  }

  .product-half-example {
    width: calc(100% + 10px);
    margin: 0 5px;
  }

  .product-half-example a {
    margin-bottom: 10px;
    width: 100%;
  }

  .product-half-example img {
    min-height: 114px;
  }

  .seo-premium {
    padding: 30px;
  }

  .seo-premium .premium-logo {
    margin-bottom: 20px;
  }

  .seo-premium p {
    margin-bottom: 20px;
  }

  .footer-content {
    margin: 0;
    display: block;
    padding: 7px 20px;
  }

  .footer-block {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #E3E3E3;
  }

  .footer-block:last-child {
    border-bottom: none;
  }

  .footer-title {
    position: relative;
    padding: 14px 0;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 0;
    padding-right: 25px;
  }

  .footer-title:after {
    content: "";
    background: url("../images/select-arrow.svg") center no-repeat;
    background-size: 100% auto;
    width: 17px;
    height: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -5px;
    display: block;
    opacity: 0.4;
    transition: all 0.3s ease-out;
  }

  .footer-title.opened:after {
    opacity: 1;
    transform: rotate(-180deg);
  }

  .footer-menu {
    display: none;
    padding-bottom: 14px;
  }

  .footer-bottom-content {
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-copyright {
    -ms-flex-order: 2;
    order: 2;
    margin: 0;
  }

  .footer-bottom-block {
    margin-bottom: 20px;
  }

  .footer-bottom-socials {
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-bottom-qr {
    margin-bottom: 20px;
  }

  .image-search-preview-card .hint {
    display: none;
  }

}

@media (max-width: 500px) {
  .search-select-block {
    display: none;
  }

  .header-search-outer input {
    padding-left: 15px;
    padding-right: 148px;
  }

  .header-search-dropdown {
    left: 0;
    width: 100%;
  }

  .mobile-catalog-toggle {
    width: 110px;
  }

  .product-catalog .product-block {
    width: calc(50% - 10px);
  }

  .load-more .btn {
    width: 100%;
  }

  .seo-text.full {
    max-height: 2500px;
  }

  .seo-read-more {
    width: 100%;
  }

  .seo-premium {
    padding: 20px;
  }

  .seo-premium .title {
    font-size: 17px;
  }

  .seo-premium .btn {
    width: 100%;
  }

  .modal-text .btn {
    width: 100%;
  }
}
