.header-bottom__nav {
  display: none;
}

@media (max-width: 430px) {
  .header-bottom__nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 56px;
    box-shadow: 0px -1px 0px rgba(0,0,0,0.04), 0px -8px 20px -7px rgba(0,0,0,0.1);
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #FFF;
    z-index: 9999;
  }
  .header-bottom__nav svg {
    width: 25px;
    height: 25px;
  }
  .header-bottom__nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    color: var(--third-text-color);
  }
  .header-bottom__nav-item_account svg {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    margin-bottom: 2px;
  }
  .header-bottom__nav-item .countsht {
    position: absolute;
    top: 8px;
    width: auto;
    height: 14px;
    right: 10px;
    background: var(--accent-color);
    color: var(--secondary-text-color);
    font-size: 10px;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    min-width: 14px;
  }
  .header-bottom__nav-item.active {
    color: var(--accent-color);
  }
  .header-bottom__nav-text {
    font-size: 11px;
    font-weight: 500;
  }
}