
@media all and (max-width: 1024px) {

  .page-title h1 {
    width: 105.3%;
    margin-left: -2.6%;
  }

  .header /**/ {
    z-index: 1001;
    width: 95%;
    margin: 10px auto;
    text-align: center;
  }

  .desktop-header-right {
    display: none;
  }

  .admin-header-links {
    margin: -10px -5% 15px;
    background-color: #e87772;
    padding: 10px;
  }

    .admin-header-links > a {
      font-weight: bold;
      text-transform: none;
    }

  /* HEADER LINKS */

  .header-links-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1070;
    width: 100%;
    border-bottom: 5px solid rgba(255,255,255,.4);
    background-color: #e87772;
    padding: 10px;
    text-align: center;
    transition: 0.1s ease;
  }

    .header-links-wrapper.open {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      gap: 10px 5px;
      box-shadow: 0 2px 5px rgba(0,0,0,.3);
    }

  .header-links {
    display: inline-block;
    vertical-align: middle;
  }

    .header-links li {
      vertical-align: middle;
    }

    .header-links a {
      display: block;
      width: 36px;
      height: 36px;
      font-size: 0;
    }

    .header-links .ico-register {
      background: url(../img/m-icon-plus.png) no-repeat center;
    }

      .header-links .ico-register img {
        display: none;
      }

    .header-links .ico-login {
      background: url(../img/m-icon-lock.png) no-repeat center;
    }

    .header-links p > a.ico-login {
      display: none;
    }

    .header-links .ico-account {
      background: url(../img/m-icon-account.png);
      background-size: cover;
    }

    .header-links .org-calendar {
      background: url(../img/org-calendar.png) no-repeat center;
      width: 64px;
      height: 64px;
    }

    .header-links .my-calendar {
      background: url(../img/my-calendar.png) no-repeat center;
      width: 64px;
      height: 64px;
    }

    .header-links .ico-logout {
      background: url(../img/m-icon-logout.png) no-repeat center;
    }

    .header-links .ico-wishlist {
      background: url(../img/m-icon-star.png) no-repeat center;
    }

    .header-links .ico-inbox {
      background: url(../img/m-icon-inbox.png) no-repeat center;
    }

  .header-selectors {
    display: inline-block;
    vertical-align: middle;
  }

    .header-selectors select {
      min-width: 100px;
    }

  /* SEARCHBOX */

  .store-search-box {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1070;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border-bottom: 5px solid rgba(255,255,255,.4);
    background-color: #e87772;
    padding: 15px 10px 10px;
    text-align: center;
  }

    .store-search-box.open {
      display: block;
    }

    .store-search-box form {
      display: inline-block;
      position: relative;
    }

      .store-search-box form:after {
        content: "";
        display: block;
        clear: both;
      }

  .search-box input.search-box-text {
    float: left;
    width: 240px;
    height: 36px;
    border-width: 1px 0;
    border-style: solid;
    border-color: #fff;
    background-color: transparent;
    transition: 0.1s ease;
    color: #fff;
    opacity: 0.5;
  }

  .search-box .search-box-button {
    float: left;
    width: 36px;
    height: 36px;
    border: 2px solid #fff;
    border-radius: 100%;
    overflow: hidden;
    background: url(../img/icon-search-button.png) center no-repeat;
    font-size: 0;
    transition: 0.1s ease;
    opacity: 0.6;
  }

  .search-box .search-box-text:focus,
  .search-box .search-box-text:focus + button {
    opacity: 1;
  }

  /* RESPONSIVE NAV WRAPPER */

  .responsive-nav-wrapper-parent {
    display: block;
    z-index: 9999;
    /*height: 50px;*/
    height: auto !important;
  }

  .responsive-nav-wrapper {
    position: relative;
    width: 100%;
    box-shadow: 0 3px 3px rgba(0,0,0,.15);    
    background-color: #fff;
    text-align: center;
    font-size: 0;
    transition: 0.5s ease;
  }

    .responsive-nav-wrapper.stick {
      position: fixed;
      top: 0; /**/
      z-index: 1050;
    }

    .responsive-nav-wrapper.nav-down {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }

    .responsive-nav-wrapper.nav-up {
      -webkit-transform: translateY(-55px);
      transform: translateY(-55px);
    }

    .responsive-nav-wrapper:after {
      content: "";
      display: block;
      clear: both;
    }

    .responsive-nav-wrapper .button {
      display: inline-block;
      margin: 5px;
      cursor: pointer;
    }

      .responsive-nav-wrapper .button > span {
        display: block;
        height: 40px;
        width: 40px;
        font-size: 0;
      }

    .responsive-nav-wrapper .menu-title {
      float: left;
      background: url(../img/icon-menu.png) no-repeat center;
    }

    .responsive-nav-wrapper .search-wrap {
      display: inline-block;
      background: #e87772 url(../img/icon-search-opener.png) no-repeat center;
      border-radius: 50%;
    }

    .responsive-nav-wrapper .filters-button {
      display: none;
      background: #e87772 url(../img/icon-filters.png) no-repeat center;
      border-radius: 50%;
    }

    .responsive-nav-wrapper .personal-button {
      float: right;
      background: url(../img/icon-personal.png) no-repeat center;
    }

  /* RESPONSIVE MENU */

  .overlayOffCanvas {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1060;
    background-color: rgba(0,0,0,0);
    transition: background 0.3s ease;
  }

    .overlayOffCanvas.show {
      background: rgba(0,0,0,.4);
    }

    .overlayOffCanvas.active ~ .k-overlay {
      display: none !important;
    }

  .scrollYRemove {
    overflow: hidden !important;
    -ms-touch-action: none !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .header-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1070;
    width: 320px;
    height: 100%;
    overflow: hidden;
    background-color: #333;
    text-align: left;
    transition: 0.3s ease;
    -webkit-transform: translate(-320px);
    transform: translate(-320px);
  }

    .header-menu.open {
      box-shadow: 1px 0 5px rgba(0,0,0,.5);
      -webkit-transform: translate(0);
      transform: translate(0);
    }

    .header-menu .close-menu {
      background-color: #e87772;
      /*text-transform: uppercase;*/
      cursor: pointer;
    }

      .header-menu .close-menu > span {
        display: block;
        background: url(../img/mobile-nav-close.png) no-repeat 15px center;
        padding: 15px 20px;
        text-align: right;
        font-size: 20px;
        line-height: 15px;
        color: #fff;
      }

    .header-menu > ul li {
      background-color: #f6f6f6;
    }

      .header-menu > ul li:after {
        content: "";
        display: block;
        clear: both;
      }

      .header-menu > ul li > a,
      .header-menu > ul li > span {
        display: block;
        border-bottom: 1px solid #e6e6e6;
        padding: 16px 18px !important;
        font-size: 16px;
        line-height: 17px;
        text-transform: uppercase;
        color: #505050;
      }

      .header-menu > ul li:last-child > a,
      .header-menu > ul li:last-child > span {
        border-bottom: 0;
      }

      .header-menu > ul li > .with-subcategories {
        width: 270px;
        float: left;
      }

    .header-menu .plus-button {
      position: relative;
      z-index: 1;
      float: right;
      width: 50px;
      height: 50px;
      border-left: 1px solid #e6e6e6;
      border-bottom: 1px solid #e6e6e6;
      background: url(../img/mobile-nav-item-open.png) no-repeat center;
      cursor: pointer;
    }

    .header-menu .sublist-wrap {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 2;
      width: 320px;
      height: 100%;
      overflow: hidden;
      box-shadow: 1px 0 5px rgba(0,0,0,.5);
      background-color: #333 !important;
      transition: 0.3s ease;
      -webkit-transform: translate(-320px);
      transform: translate(-320px);
    }

      .header-menu .sublist-wrap.active {
        -webkit-transform: translate(0);
        transform: translate(0);
      }

    .header-menu .back-button {
      background-color: #e87772;
      cursor: pointer;
    }

      .header-menu .back-button > span {
        background: url(../img/mobile-nav-close.png) no-repeat 15px center;
        padding: 14px 18px !important;
        text-align: right;
        text-transform: none;
        color: #fff;
      }

  /* CATERGORY PAGE */

  .product-selectors {
    margin-left: -2.6%;
    width: 105.3%;
  }

  /* PRODUCT PAGE */

  .center-1 > .product-name {
    margin-left: -2.6%;
    width: 105.3%;
  }

  /* COMPARE PRODUCTS */

  .compare-products-table {
    display: none;
  }
.topic-block-body {
  line-height: 1.3;
  font-size: 14px;
  }
}
