nav ul, nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}




.scrollTop {
  position: fixed;
  z-index: 99999999;
  top: 0;
  padding: 0px .0em !important;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,.1);
  color: #000 !important;
  transition: .2s;
}








.top_bar {
  background: #;
  padding: 8px 0;
}

  .top_bar .container {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-column-gap: 16px;
    align-items: center;
    justify-content: ;
    margin: 0 auto;
  }

    .top_bar .search {
      height: auto;
      border-radius: 8px;
      background: #fff;
      padding: 4px 0;
    }
      .top_bar .search img {
        width: 16px;
        height: 16px;
      }

    .top_bar .contacts {
      display: flex;
      align-items: center;
    }

      .top_bar .item {
        display: inline-flex;
        align-items: center;
        margin-right: 2em;
      }
        .top_bar .contact_icon {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 24px;
          height: 24px;
          margin-right: 8px;
          background: #;
          border-radius: 999em;
        }
          .top_bar .contact_icon i {
            width: 20px;
            height: 20px;
            background: #000;
          }

        .top_bar a,
        .top_bar span {
          font-size: .85em;
          font-weight: ;
          color: #000;
        }



@media screen and (max-width: 1025px) {

  .top_bar {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: #000;
    color: #fff;
  }
    .top_bar a,
    .top_bar span {
      position: relative;
      top: -4px;
      font-size: .85em;
      font-weight: ;
      color: #fff;
    }
}











nav {
  position: sticky;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin-bottom: 1em;
  background: #fff;
  border-bottom: 1px solid #eee;
}
  nav a[href="#"] {
    color: #000;
  }

  nav.desktop .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    align-items: center;
    width: 94%;
    margin: auto;
    padding: 12px 0;
    transition: .2s;
  }
  nav.desktop.scrollTop .container {
    padding: 0px 0;
  }

    nav.desktop .container > div {
      display: flex;
      align-items: center;
    }



      nav.desktop .logo {
        position: relative;
        left: 0;
        margin: 0;
        padding: 0;
        line-height: 0;
        margin-right: 16px;
      }
        nav.desktop .logo img {
          left: 0 !important;
          height: 64px;
        }

        nav.desktop.scrollTop .logo img {
          height: 48px;
          padding: 8px;
        }




      nav.desktop .menu {
        display: block !important;
        align-items: center;
      }
        nav.desktop .menu a.item {
          display: inline-block;
          background: #;
          margin-right: 1%;

          padding: 6px 8px;
          text-transform: uppercase;
          font-size: .9em;
          font-weight: 600;
          color: #000;
        }
        nav.desktop .menu a.item:hover {
          color: #777;
        }
        nav.desktop .menu a.item.activeee {
          background: #efefef;
          border-radius: 6px;
          color: #;
        }

        nav.desktop .menu .item {
          position: relative;
          display: inline-block;
          margin-right: 8px;
          text-transform: uppercase;
        }


          nav.desktop .menu .item > a {
            display: block;
            border-radius: 12px;
            padding: 6px 8px;
            text-align: center;
            font-size: .9em;
            font-weight: 600;
            color: #000;
          }

          nav.desktop .menu .item:nth-child(1) > a {
            padding-right: 32px;
            text-align: left;
          }

          nav.desktop .menu .item img.arrow {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 16px;
          }


          /*Подпункты*/
          nav.desktop .menu .item:hover .submenu {
            z-index: 1111;
            width: 225%;
            opacity: 1;
            transform: scaleY(1);
            transition: .2s;
          }
          nav.desktop .item .submenu {
            position: absolute;
            z-index: 10;
            top: 95%;
            left: -24px;
            width: 100%;
            background: #fff;
            box-shadow: var(--shadow);
            transform: scaleY(0); -moz-transform:scaleY(0); -webkit-transform:scaleY(0); -o-transform:scaleY(0); -ms-transform:scaleY(0);
            transform-origin: 0 0; -webkit-transform-origin:0 0; -moz-transform-origin:0 0; -o-transform-origin:0 0; -ms-transform-origin:0 0;
            transition: .4s .0s;
            padding: 16px 0;
            font-size: 1.00em;
          }

            nav.desktop .item .submenu a {
              display: block;
              box-sizing: border-box;
              width: 100%;
              background: ;

              border-radius: 0;
              padding: 12px 0px;
              padding-left: 32px;
              text-align: ;
              font-weight: 400;
              color: #000;
            }
          nav.desktop .item .submenu li:hover a {
            border-bottom: 0;
            background-color: #;
            font-weight: 700;
          }

          /*---*/

        nav.desktop .item a.activeee {
          background: #f39314;
          font-weight: 700;
          color: #fff;
        }






    nav .auth {
      position: relative;
      z-index: 999;
      display: inline-flex;
      align-items: center;
      width: ;
      height: 40px;
      margin-right: 16px;
      background: #;
      border: 1px solid #ccc;
      border-radius: 8px;
      padding: 0 12px;
    }
    nav .auth a {
      color: #000;
    }
    nav .auth span {
      margin-right: 8px;
      text-align: right;
      font-size: .9em;
      font-weight: 500;
      line-height: 1.15;
    }

    nav .auth .icon {
      display: flex;
      width: 24px;
      align-items: center;
      justify-content: center;
    }





    nav .basket {
      position: relative;
      z-index: 999;
      display: inline-flex;
      width: ;
      height: 40px;
      align-items: center;
      background: #000;
      border-radius: 8px;
      padding: 0 12px;
      color: #fff;
    }

      nav .basket span {
        position: relative;
        top: 1px;
        margin-right: 8px;
        font-size: 1em;
        font-weight: 500;
      }

      nav .basket .icon {
        display: block;
        background: #000;
        border-radius: 3200px;
      }
        nav .basket .icon img {
          position: relative;
          display: block;
          margin: auto;
          width: 24px;
        }






































/* Mobile Nav Menu */
@media screen and (max-width: 1025px) {

  #navmenu-page.win {
    position: fixed;
    z-index: 9999999999;
    top: 0;
    left: 0;
    display: flex;
    box-sizing: border-box;
    overflow: scroll;
    width: 100%;
    height: 100%;

    background: #fff;
    padding: 0 16px;
  }


  .win .header {
    display: grid;
    grid-template-columns: 1fr 32px;
    grid-column-gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
  }

    .win .logo {

    }
      .win .logo img {
        display: block;
        width: 100%;
        height: 100%;
        max-height: 36px;
        object-fit: contain;
        object-position: left center;
      }


    .win .close_win2 {
      display: flex;
      align-items: center;
      justify-content: center;
    }
      .win .close_win2 img {
        position: relative;
        bottom: 1px;
        right: 2px;
        width: 28px;
      }



  #navmenu-page .body {
    padding-top: 16px;
    margin-bottom: 32px;

  }





    .win .search {
      position: relative;
      left: calc(50% - 100px);
      margin-bottom: 16px;
    }



    .win_categories_grid {
      display: grid;
      max-width: 100%;
      grid-template-columns: 1fr 1fr 1fr;
      grid-column-gap: 8px;
      grid-row-gap: 12px;
      align-items: start;
      justify-content: center;
      margin-bottom: 0;
      text-align: center;
    }
      .win_categories_grid a.item {
        display: grid;
        background: #fff;
        border: 1px solid #efefef;
        border-radius: 12px;
      }
      .win_categories_grid a.item:hover {
        background: #f39314;
        color: #fff;
      }

        .win_categories_grid a.item img.photo {
          box-sizing: border-box;
          width: 100%;
          max-width: 80px;
          height: 72px;
          margin: 0 auto;
          object-fit: contain;
          padding: 4px;
        }
        .win_categories_grid a.item span.cat {
          position: relative;
          display: flex;
          align-items: center;
          justify-content: center;
          height: 40px;
          line-height: 1.15;
          font-size: 14px;
          font-weight: 500;
        }

    .win .nav_list {
      position: relative;
      display: grid;
      box-sizing: border-box;
      grid-template-columns: 1fr;
      grid-column-gap: 8px;
      grid-row-gap: 8px;
      align-items: start;
      margin-bottom: 16px;
    }
      .win .nav_list .item {
        display: grid;
        align-items: center;
        grid-column-gap: 8px;
        box-sizing: border-box;
        height: 48px;
        background: #fff;
        border: 1px solid #efefef;
        border-radius: 8px;
        text-align: left;
        padding: 0px 8px;
      }
      .win .nav_list .item:first-child {
        background: #efefef;
      }
      .win .nav_list .item:hover {
        background: #fcfcfc;
        color: #000;
      }


      .win .nav_list .item.r2 {
        grid-template-columns: 32px auto 32px;
      }
      .win .nav_list .item.r22 {
        grid-template-columns: 32px auto 48px;
      }
      .win .nav_list .item.r3 {
        grid-template-columns: 32px auto 32px;
      }

        .win .nav_list img.photo {
          width: 100%;
        }
        .win .nav_list span {
          display: ;

          line-height: 1.35;
          font-size: 14px;
          font-weight: 500;
          color: ;
        }
        .win .nav_list span.cat {
          margin-left: 12px;
        }

        .win .nav_list .userBalance {
          display: flex;
          align-items: center;
          justify-content: center;
          background: #f39314;
          border-radius: 12px;
          font-weight: 700;
          color: #fff;


        }

        .win .nav_list img {
          width: 100%;
          height: 32px;
          object-fit: cover;
          border-radius: 12px;
        }

}
/* ----- */
















/* Nav Mobile */
@media screen and (min-width: 1024px) { nav.mobile { display: none !important; } }
@media screen and (max-width: 1024px) {

  nav.mobile {
    position: sticky;
    z-index: 9;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 56px;
    background: rgba(255,255,255,1.95);
    padding: 0;
    background:
  }

    nav.mobile > div {
      display: grid;
      grid-template-columns: 1fr auto auto 32px;
      grid-column-gap: 16px;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    nav.mobile .logo {
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }
      nav.mobile .logo img {
        position: ;
        top: 0px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        height: 100%;
        max-height: 44px;
        object-fit: contain;
        object-position: left;
      }


      nav.mobile .icon {
        position: relative;
        display: flex;
        align-items: center;
        background: ;
      }
        .icon img {
          width: 28px;
        }




    nav.mobile .basket {
      background: #000;
      border-radius: 12px;
      color: #fff;
    }

    nav.mobile .basket .icon.rounded {
      background: transparent;
      margin-right: 8px;
    }
      nav.mobile .basket .icon.rounded img {
        position: relative;
        display: block;
        margin: auto;
        width: 20px;
        padding: 0px;
      }
    nav.mobile .basket span {
      position: relative;
      top: 2px;
      left: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin: 0 auto;

      font-size: 1em;
      font-weight: 600;
      color: #fff !important;
    }




    nav.mobile .profile {
      background: #;
      border-radius: 12px;
      color: #fff;
    }

    nav.mobile .profile.active:after {
      content: '✓';
      position: absolute;
      top: -4px;
      right: -4px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 12px;
      height: 12px;
      background: green;
      border-radius: 999px;
      padding: 2px;
      font-size: 10px;
      color: #fff;
    }

      nav.mobile .profile .icon.rounded img {
        position: relative;
        display: block;
        margin: auto;
        width: 20px;
        padding: 0px;
      }


}
/* ----- */


















.tabs_grid { display: ; }
@media screen and (min-width: 1025px) {
  .tabs_grid {
    position: sticky;
    z-index: 9 !important;
    top: 0px;
    display: flex;
    align-items: center;
    width: 100%;
    background: #fff;
    padding: 8px 0;
    overflow: auto;
  }
    .tabs_grid a.item:first-child {
      margin-left: 0px;
    }
    .tabs_grid a.item {
      flex: 0 0 auto;
      display: inline-flex;
      height: 32px;
      align-items: center;
      justify-content: center;
      margin-right: 8px;
      background: #000;
      border-radius: 12px;
      padding: 0 16px;
      font-weight: 700;
      color: #fff;
    }
    .tabs_grid a.item:hover {
      background: #ff0000;
    }
}

@media screen and (max-width: 1025px) {
  .tabs_grid {
    position: sticky;
    z-index: 3 !important;
    top: 56px;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    background: #fff;
    text-align: left;
    overflow: auto;
  }
    .tabs_grid a.item:first-child {
      margin-left: 0;
    }
    .tabs_grid a.item {
      position: relative;
      flex: 0 0 auto;
      display: inline-flex;
      height: 32px;
      align-items: center;
      justify-content: center;
      margin-right: 8px;
      background: #000;
      border-radius: 12px;
      padding: 0 16px;

      font-size: 14px;
      font-weight: 700;
      color: #fff;
    }
}