/* =========================
   CATALOG WRAP
========================= */

.catalog-wrap {
  position: relative;
}

/* =========================
   SIDEBAR
========================= */

.sidebar {
  position: absolute;
  top: 100%;
  left: 0;
  width: calc(100% - 10px);
  background-color: #f5f5f5;
  padding: 10px 0 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
  display: none;
  z-index: 20;
  margin-left: 10px;
}

.catalog-wrap:hover .sidebar, .sidebar.open {
  display: block;
}

/* =========================
   SIDEBAR ITEMS
========================= */

.sidebar ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0 10px;
}

.sidebar li {
  position: static; /* важно */
  padding: 0 10px;
}

.sidebar li a, .sidebar .accent-link {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: background-color .2s, color .2s;
}

.sidebar li a:hover {
  background-color: #e7e7e7;
  color: #ff2f00;
}

.sidebar li a .icon, .sidebar .accent-link .icon img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar li a .icon img, .sidebar .accent-link .icon img {
  max-width: 100%;
  max-height: 100%;
}

.sidebar .dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  width: calc((100% * 3) + 17px);
  opacity: 0;
  pointer-events: none;
  background: #FFF;
  overflow-y: auto;
  height:100%;
  min-height: 0;
}

/* hover */
.sidebar li:hover > .dropdown,
.sidebar .dropdown:hover {
  opacity: 1;
  pointer-events: auto;
}

.sidebar:has(li:hover > .dropdown),
.sidebar:has(.dropdown:hover) {
    border-bottom-right-radius: 0;
}

.sidebar .dropdown ul {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  margin: 0;
  list-style: none;
}

.sidebar .dropdown ul li {
  width: calc(20% - 10px);
  margin: 0 5px 10px;
  text-align: center;
}

.sidebar .dropdown ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  border-radius: 5px;
  transition: background-color .2s;
}

.sidebar .dropdown ul li a:hover {
  background-color: #f5f5f5;
}

.sidebar .dropdown ul li img {
  max-width: 100%;
  margin-bottom: 10px;
}

.sidebar .dropdown ul li div {
  font-size: 10.3px;
  font-weight: 500;
  color: #131313;
  text-align: center;
}

.sidebar .accent-link {
  background-color: #e7e7e7;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  padding: 15px 20px;
}

.sidebar ul:has(+ a) {
  margin-bottom: 5px !important;
}

/* =========================
   SAFETY FIXES
========================= */

.catalog-wrap,
.sidebar {
  overflow: visible;
}


/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.54);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 100;
}

.header {
  position: relative;
  z-index: 200;
}

.header-nav,
.catalog-wrap {
  position: relative;
  z-index: 211;
}

body:has(.catalog-wrap:hover) .overlay, body:has(.search input:focus:not(:placeholder-shown)) .overlay {
  opacity: 1;
  visibility: visible;
}

 .sticky {
    position: sticky;
    top: 0;
  }

  @media (min-width: 992px) {
    .sticky.not-sticky {
      position: relative !important;
    }
  }


  .header-nav {
    background-color: var(--header-nav-background);
    font-size: 13px;
    font-weight: 500;
  }

  .header-nav a {
    color: var(--header-nav-link-color);
    text-decoration: none;
    padding: 14px 0;
  }

  .header-nav .nav {
    align-items: center !important;
  }

  .header-nav .nav a:hover {
    color: var(--header-nav-link-color-hover);
  }

  .header-nav .nav a.special-link {
    color:var(--special-link-color) !important;
  }

  .header-nav .nav a.special-link:hover {
    color:var(--header-nav-link-color) !important;
  }

  .header-nav .nav li + li {
    margin-left:30px;
  }

  .header-nav .logo img {
    max-width: 135px;
  }

  .header-nav .logo {
    line-height: 41px;
  }

  .header-nav .btn-default {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    -webkit-transition: all .2s;
    transition: all .2s;
    border-radius: var(--border-radius);
    background-color: #424242;
    position: relative;
    -webkit-box-shadow: 0 4px 4px 0 transparent;
    box-shadow: 0 4px 4px 0 transparent;
    padding: 6px 43px 6px 13px;
    border:0;
  }

  .header-nav .btn-default:hover {
    color: #333;
    background-color: #fff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
  }

  .header-nav .btn-default .arrow  {
    position: absolute;
    right: 17px;
    top: 9px;
    width: 12px;
    height: 13px;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    font-size: 0;
  }

  .header-nav .btn-default .arrow svg {
    width: inherit;
    height: inherit;
    -webkit-transition: fill .2s;
    transition: fill .2s;
  }

  .header-nav .btn-default:hover .arrow svg {
    -webkit-transform: scaleY(-1) translateY(-1px);
    transform: scaleY(-1) translateY(-1px);
  }

  .header-nav .btn-default:hover .header-dropdown  {
    opacity: 1;
    pointer-events: all;
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
    display: block;
    position: absolute;
  }

  .header-dropdown {
    opacity: 0;
    pointer-events: none;
    background-color: #fff;
    width: 100%;
    -webkit-transition: all .2s;
    transition: all .2s;
    position: absolute;
    left: 0;
    top: 100%;
    padding: 0 10px 15px;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    z-index: 14;
    -webkit-box-shadow: 0 4px 4px 0 transparent;
    box-shadow: 0 4px 4px 0 transparent;
    text-align: left;
  }

  .header-dropdown ul {
    list-style-type: none;
    padding:0;
    margin:0;
  }

  .header-dropdown .worktime {
    color: #999;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 15px;
    margin-left: 4px;
  }

  .header-dropdown .phone-wrap {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e7e7e7;
  }

  .header-dropdown a {
    padding:5px;
    color: #333;
    display: block;
    font-size: 14px;
    border-radius: var(--border-radius);
  }
  
  .header-dropdown a svg {
    margin-right: 5px;
  }

  .header-dropdown a:hover {
    background: #e7e7e7;
  }

  .header-dropdown .language-link {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    display: block;
  }

  header {
    position: relative;
    background-color: var(--header-backgorund);
    z-index: 210;
  }

  header a {
    text-decoration: none !important;
  }

  header .btn-catalog {
    color:#FFF;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1;
    letter-spacing: .05em;
    font-weight: 500;
    padding: 18px 0; /*delete*/
  }


  header .btn-catalog:hover {
    color:#FFF !important;
  }

  header .btn-catalog svg {
    margin-right: 15px;
  }

  header .btn-catalog svg path {
    stroke:rgb(255, 47, 0);
  }

  header .search {
    position: relative;
    padding:10px 0;
  }

  header .search input, header .search input:focus {
    background-color: #474747;
    outline: none;
    border:0;
    color:#FFF;
  }

  header .search input::-webkit-input-placeholder {
      color: #bdbdbd
  }

  header .search input::-moz-placeholder {
      color: #bdbdbd
  }

  header .search input:-ms-input-placeholder {
      color: #bdbdbd
  }

  header .search input:-moz-placeholder {
      color: #bdbdbd
  }

  header .search .icon {
    position: absolute;
    right: 14px;
    top: 48%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    height: 20px;
  }

  header .search .icon svg {
    vertical-align: middle;
    fill: #bdbdbd;
  }


  header .search-dropdown {
    display: none;
    opacity: 1;
    background-color: #fff;
    width: 100%;
    -webkit-transition: all .2s;
    transition: all .2s;
    position: absolute;
    left: 0;
    padding: 10px 0 15px;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    z-index: 14;
    -webkit-box-shadow: 0 4px 4px 0 transparent;
    box-shadow: 0 4px 4px 0 transparent;
    text-align: left;
  }

  header .search-dropdown:hover {
    display: block;
  }

  header .search-dropdown span.title {
    color: #ccc;
    margin-top: 10px;
    margin-bottom: 10px;
    display: inline-block;
    margin-left: 20px;
    width: calc(100% - 20px);
  }

  header .search-dropdown span.title a {
    float: right;
    margin-right: 20px;
    cursor: pointer;
    color:#3e77aa;
    border-bottom: .11em solid #3e77aa;
  }

  header .search-dropdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  header .search-dropdown li {
    padding: 9px 20px;
  }

  header .search-dropdown a, header .search-dropdown li a {
    color:#333;
    display: block;
    width: 100%;
    height: 100%;
  }

  header .search-dropdown .product-item {
    gap:20px;
    display: flex !important;
    align-items: center !important;
    padding:0 20px;
  }

  header .search-dropdown .price:has(strike) {
    color: #ff2f00;
    font-weight: 500;
  }

  header .search-dropdown .price strike {
    color: #909090;
    font-size: 14px;
    margin-right: 10px;
    font-weight: 400;
  }

  header .search-dropdown li:hover {
    background-color: #f3f3f3;
  }

  header .search-dropdown .search-bottom  {
    border-top:1px solid #f1f1f1;
  }
  header .search-dropdown .search-bottom .btn-result {
    padding-bottom: 23px;
    margin-top: 10px;
    margin-left: 20px;
    background: none;
    border: none;
    padding: 10px 0;
    text-decoration: underline;
    cursor: pointer;
    font-size:13px;
    color:#000;
  }

  .search:has(
    input:focus:not(:placeholder-shown)
  ):has(
    .search-dropdown:not(:empty)
  ) .search-dropdown {
    display: block;
  }


  header .user-actions a {
    background-color: transparent;
    border: 0;
    padding: 0 20px;
    margin: 0;
  }

  header .user-actions a svg {
    width: 25px;
    height: 25px;
  }

  header .user-actions .btn-account svg, header .user-actions .btn-compare svg, header .user-actions .btn-cart svg {
    fill: var(--header-icon-color);
  }

  header .user-actions .btn-account:hover svg, header .user-actions .btn-compare:hover svg, header .user-actions .btn-cart:hover svg {
    fill: var(--header-icon-color-hover);
  }

  header .user-actions .btn-wishlist svg {
    fill: none;
    stroke: var(--header-icon-color);
  }

  header .user-actions .btn-wishlist:hover svg {
    stroke: var(--header-icon-color-hover);
  }

  header .user-actions a {
    float:right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    color: #333;
    background-color: transparent;
    border: 0;
    padding: 0 4px;
    width:25%;
    height:60px;
  }

  header .user-actions a:hover {
    background-color: #FFF;
  }

  .menu-block ul {
    padding: 0;
    margin: 0;
  }

.slinky-menu {
  overflow: hidden;
  transform: translateZ(0); }
  .slinky-menu > ul {
    left: 0;
    position: relative;
    transform: translateZ(0); }
  .slinky-menu ul,
  .slinky-menu li {
    list-style: none;
    margin: 0; }
  .slinky-menu ul {
    width: 100%; }
  .slinky-menu a {
    align-items: center;
    display: flex; }
    .slinky-menu a span {
      flex: 1;
      line-height: 1.4; }
  .slinky-menu li ul {
    display: none;
    left: 100%;
    position: absolute;
    top: 0; }
  .slinky-menu .header {
    display: flex; 
  }

  .slinky-menu .header .title {
    flex: 1;
    line-height: 1.4;
    margin: 0;
    order: 1; 
  }

  .slinky-theme-default .title {
    color: #333;
    padding: 1em; 
  }

  .slinky-theme-default li {
    line-height: 1; 
    display: flex;
  }

  .slinky-theme-default a:not(.back) {
    text-decoration: none;
    color: #333;
    padding: 1em; 
  }

  .slinky-theme-default .back::before {
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+ICAgIDxwYXRoIGQ9Ik0xMi4yMTkgMi4yODFMMTAuNzggMy43MiAxOC4wNjIgMTFIMnYyaDE2LjA2M2wtNy4yODIgNy4yODEgMS40MzggMS40MzggOS05IC42ODctLjcxOS0uNjg3LS43MTl6IiAvPjwvc3ZnPg==) center no-repeat;
    background-size: 1em;
    content: '';
    height: 1em;
    opacity: 0.25;
    transition: 200ms;
    width: 1em; }
  .slinky-theme-default .back::before {
    padding: 1em;
    transform: scaleX(-1); }


.slinky-menu i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    float:left;
    margin-right:15px;
}
.slinky-menu i img {
    max-width: 100%;
    max-height: 100%;
}

.slinky-menu .submenu-toggle {
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+ICAgIDxwYXRoIGQ9Ik0xMi4yMTkgMi4yODFMMTAuNzggMy43MiAxOC4wNjIgMTFIMnYyaDE2LjA2M2wtNy4yODIgNy4yODEgMS40MzggMS40MzggOS05IC42ODctLjcxOS0uNjg3LS43MTl6IiAvPjwvc3ZnPg==) center no-repeat;
    background-size: 1em;
    border: none;
    padding: 0.5em 1em;
    margin-left: auto;
    cursor: pointer;
    opacity: 0.25;
    transition: 200ms;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#breadcrumbs {
  overflow-y: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow-x: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 5px;
}

#breadcrumbs li {
  margin:10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  color: #4c4c4c;
  word-wrap: break-word;
}

#breadcrumbs li:after {
    content: "";
    display: inline-block;
    margin: 0 9px 0 6px;
    background-image: url(/catalog/view/theme/default/image/breadcrumb-arrow.svg);
    width: 9px;
    background-repeat: no-repeat;
    background-position: 50%;
}

#breadcrumbs li:last-child:after {
  content: none;
}

#breadcrumbs li a {
  color: #4c4c4c;
  text-decoration: none;
}