.tab-bar-panel {
    display: none;
}
@media (max-width: 767px) {




.tab-bar-item > a {
  color: #d7d7d7;
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: 0.4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.tab-bar-panel {
    background-color: #464646f2;
    bottom: 0;
    box-shadow: 0 -1px #0000000f;
    display: flex;
    height: 55px;
    position: fixed;
    width: 100%;
    z-index: 99;
}

.tab-bar-item {
    align-items: center;
    color: #999;
    display: flex;
    flex: 1 1;
    flex-direction: column;
    font-size: 10px;
    height: 100%;
    justify-content: center;
    line-height: 18px;
    padding: 0 6px;
    position: relative;
}
.tab-bar-item.select {
    align-items: center;
    color: #e60680;
    display: flex;
    flex: 1 1;
    flex-direction: column;
    font-size: 10px;
    height: 100%;
    justify-content: center;
    line-height: 18px;
    padding: 0 6px;
    position: relative;
}
.tab-bar-item.select svg.icon.icon-tabler.icon-tabler-template {
    width: 30px;
    height: 30px;
}

.tab-bar-item__text {
    margin-top: 2px;
    max-width: 99%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
}