.mobile-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  transition-delay: 0.6s;
  transition-property: z-index;
}
.mobile-sidebar-close {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  font-size: 1.5rem;
}
.mobile-sidebar-close i {
  transform: rotate(45deg);
  transition: 0.6s;
  transition-delay: 0.3s;
  color: #fff;
}
.mobile-sidebar-content {
  width: 80%;
  height: 100%;
  max-width: 18rem;
  background-color: #fff;
  transition: 0.6s;
  transform: translateX(-100%);
  z-index: 125;
  position: absolute;
  padding: 1rem;
}
.mobile-sidebar-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  bottom: 0;
  z-index: 110;
}
.mobile-sidebar.visible {
  z-index: 110;
  transition-delay: 0s;
}
.mobile-sidebar.visible .mobile-sidebar-content {
  transform: translateX(0%);
}
.mobile-sidebar.visible .mobile-sidebar-close i {
  transform: rotate(405deg);
  color: #737373;
}
.mobile-sidebar.visible .menu-item {
  transform: translateX(0%);
}
.mobile-sidebar .menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-transform: uppercase;
}
.mobile-sidebar .menu-item {
  padding: 0.5rem 0;
  margin: 0.4rem 0;
  transition: 0.3s;
  transition-delay: 0.4s;
  transition-property: transform;
  transform: translateX(-100%);
  cursor: pointer;
}
.mobile-sidebar .menu-item.strong {
  font-weight: bold;
}
.mobile-sidebar .menu-item.city-select {
  padding: 0;
}
.mobile-sidebar .menu hr {
  margin: 0;
  padding: 0;
}
.mobile-sidebar .menu .header-city-current {
  padding: 0.5rem 0;
}
.mobile-sidebar .menu .header-city-dropdown {
  height: auto;
}
.mobile-sidebar .menu .city-select-dropdown {
  background-color: #fff;
  color: #737373;
  position: relative;
  bottom: 0;
}
.mobile-sidebar .menu .city-select-dropdown .city-select-item {
  text-align: left;
  padding: 0.5rem 0;
}

.mobile-filter-btn {
  border: 1px solid #f3f3f3;
  padding: 6px 10px;
  cursor: pointer;
  display: none;
  line-height: 1;
}

.mobile-filters-overlay {
  display: none;
}

.mobile-filters-drawer-header,
.mobile-filters-drawer-footer {
  display: none;
}

@media (min-width: 768px) {
  body .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  body .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  body .container {
    width: 1170px;
  }
}
@media (min-width: 1500px) {
  body .container {
    width: 1440px;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .header-mobile {
    display: none;
  }
}
@media (max-width: 1200px) {
  .header-desktop {
    display: none;
  }
  .header-mobile {
    display: block;
    width: 100%;
    padding-bottom: 20px;
  }
  .header-mobile-content {
    width: 100%;
    background-color: rgb(43.1818181818, 51.8181818182, 118.3181818182);
    color: #fff;
    padding: 5px 0;
  }
  .header-mobile-blocks {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .header-mobile-logo {
    margin: 0 auto;
  }
  .header-mobile-logo .logo-big {
    display: block;
  }
  .header-mobile-logo .logo-small {
    display: none;
  }
  .header-mobile-cart {
    padding: 10px;
  }
  .header-mobile-sandwich {
    padding: 2px 15.5px;
    font-size: 28px;
  }
  .shop-cart-info {
    display: none;
  }
  .header-search {
    justify-content: center;
  }
  .header-search-container {
    width: 100%;
  }
  .header-mobile-search {
    padding: 10px 0;
    width: 100%;
    max-width: 500px;
  }
  .catalog-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .catalog-container .row {
    max-width: 100%;
  }
  .product-page .nal-content {
    flex-wrap: wrap;
  }
  .category-products-block .product-item {
    width: 25%;
  }
  .mobile-filter-btn {
    display: inline-block;
    margin: 0;
  }
  .mobile-filters-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
    display: none;
  }
  .mobile-filters-overlay.visible {
    display: block;
  }
  .category-filters-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 201;
    display: flex;
    flex-direction: column;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow: hidden;
  }
  .category-filters-block.visible {
    transform: translateX(0);
  }
  .category-filters-block .category-catalog-btn-block {
    display: none;
  }
  .category-filters-block .filters.category-filters {
    flex: 1;
    overflow-y: auto;
    padding-top: 10px;
  }
  .mobile-filters-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f3f3f3;
    flex-shrink: 0;
  }
  .mobile-filters-drawer-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: #323c89;
  }
  .mobile-filters-close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0 5px;
    color: #737373;
    line-height: 1;
  }
  .mobile-filters-close-btn:hover {
    color: #000;
  }
  .mobile-filters-drawer-footer {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid #f3f3f3;
    flex-shrink: 0;
  }
  .mobile-filters-reset-btn,
  .mobile-filters-apply-btn {
    flex: 1;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    border: none;
  }
  .mobile-filters-reset-btn {
    background: #f3f3f3;
    color: #323c89;
    border: 1px solid #ccc;
  }
  .mobile-filters-apply-btn {
    background: #323c89;
    color: #fff;
  }
  body.mobile-filters-open {
    overflow: hidden;
  }
  .product-filter-top {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    padding: 5px 0;
  }
  .product-filter-top .filter {
    margin: 0;
  }
  .list-type-view .product-items .product-top {
    display: none;
  }
  .list-type-view .product-items .product-item-content {
    padding: 10px;
  }
  .list-type-view .product-items .product-price-block {
    margin-left: 6px;
    margin-right: 6px;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
  }
  .list-type-view .product-items .product-price-value {
    font-size: 1.1em;
    margin-top: 0;
    white-space: nowrap;
  }
  .list-type-view .product-items .product-price-without-card {
    margin-right: 0;
  }
  .list-type-view .product-items .product-price-without-card .product-price-value {
    font-size: 0.85em;
    text-decoration: line-through;
    color: #737373;
  }
  .list-type-view .product-items .product-price-without-card .product-price-comment {
    display: none;
  }
  .list-type-view .product-items .product-price-comment {
    font-size: 0.65em;
    text-align: right;
    white-space: nowrap;
  }
  .list-type-view .product-items .product-to-block {
    align-self: stretch;
  }
  .list-type-view .product-items .product-to-block .to-cart-btn {
    height: 100%;
    padding: 0 12px;
  }
  .list-type-view .product-items .product-to-block .to-cart-btn > i {
    padding-right: 0;
    font-size: 1.3em;
  }
}
@media (max-width: 1025px) {
  .article-list-main-page {
    justify-content: space-evenly;
  }
  .article-list-main-page .article-item:nth-child(5),
  .article-list-main-page .article-item:nth-child(6) {
    display: block;
  }
  .article-list-main-page .article-item {
    padding-bottom: 10px;
    width: 33.3%;
  }
  .product-carousel {
    max-width: 100%;
  }
  .hot-list-container,
  .actions-list-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .company-blocks {
    flex-wrap: wrap;
  }
  .company-blocks .company-block {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .company-blocks .company-block-content {
    height: 220px;
  }
  .discount-map-page .company-blocks .company-block-content {
    height: 115px;
  }
  .start-page .start-page-bottom {
    flex-wrap: wrap;
  }
  .start-page .map-block {
    width: 100%;
    order: 1;
    margin-top: 20px;
  }
  .start-page .contacts-block {
    width: 100%;
    margin-left: 0;
    order: 0;
  }
  .footer-blocks {
    flex-wrap: wrap;
  }
  .footer-block-shop {
    padding-right: 0;
    width: 50%;
    margin-bottom: 25px;
    order: 0;
  }
  .footer-block-company {
    padding: 0;
    width: 50%;
    order: 3;
  }
  .footer-block-company .footer-block-content {
    height: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-block-contacts {
    padding-left: 0;
    width: 50%;
    order: 2;
    display: flex;
    justify-content: flex-end;
  }
  .footer-block-contacts .footer-block-content {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .footer-block-info {
    width: 50%;
    order: 4;
  }
  .catalog-page .root-category-list-container {
    display: none;
  }
  .catalog-page .category-item {
    width: 33.3%;
  }
  .price-category-page .category-item {
    width: 33.3%;
  }
  .category-products-block .product-item {
    width: 33.3%;
  }
}
@media (max-width: 800px) {
  .header-mobile-logo .logo-big {
    display: none;
  }
  .header-mobile-logo .logo-small {
    display: block;
  }
  .footer-blocks {
    flex-wrap: wrap;
  }
  .footer-left {
    width: 50%;
    order: 0;
    border-right-color: transparent;
    padding-bottom: 20px;
  }
  .footer-right {
    width: 50%;
    order: 1;
    padding-bottom: 20px;
  }
  .footer-center {
    width: 100%;
    border-right-color: transparent;
    order: 2;
    padding-left: 0;
    padding-bottom: 20px;
  }
  .footer-center .footer-block-content ul {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .col-md-hidden {
    display: none;
  }
  .article-list-main-page .article-item:nth-child(5),
  .article-list-main-page .article-item:nth-child(6) {
    display: none;
  }
  .article-list-main-page .article-item {
    width: 50%;
  }
  .catalog-page .category-item,
  .price-category-page .category-item {
    width: 50%;
  }
  .category-products-block .product-item {
    width: 50%;
  }
  .price-main-page .root-category-list-container .root-category-list {
    display: none;
  }
}
@media (max-width: 600px) {
  .footer-left, .footer-right {
    width: 100%;
    padding-left: 0;
    border-bottom: 1px dashed #ccc;
    margin-bottom: 20px;
  }
  .footer-block-shop,
  .footer-block-company,
  .footer-block-contacts,
  .footer-block-info {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer-block-contacts {
    justify-content: flex-start;
  }
  .footer-block-info .footer-block-content {
    text-align: left;
  }
  .footer .social-btns-block {
    justify-content: flex-start;
  }
  .need-help-content {
    padding: 15px 20px;
  }
  .need-help-btn {
    font-size: 1.5rem;
  }
  .need-help-block {
    right: 2rem;
    bottom: 1rem;
  }
  .article-list-main-page .article-item {
    width: 100%;
  }
  .article-list-main-page .article-description {
    height: auto;
  }
  .article-list-main-page .article-title {
    height: auto;
  }
  .product-nal-content {
    overflow-x: scroll;
  }
}
@media (max-width: 500px) {
  .catalog-page .category-item,
  .price-category-page .category-item {
    width: 100%;
  }
  .category-products-block .product-item {
    width: 50%;
  }
  .category-products-block .product-item-content {
    padding: 8px;
  }
  .breadcrumb > li {
    display: none;
  }
  .breadcrumb > li:nth-last-child(-n+3) {
    display: inline-block;
  }
  .breadcrumb > li:last-child {
    display: none;
  }
  .pagination {
    flex-wrap: wrap;
  }
}
@media (max-width: 335px) {
  .product-carousel-controls-block {
    width: 100%;
  }
}

/*# sourceMappingURL=mobile.css.map */
