@import '../../variables.scss';

.teletext-list__panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin: 0;

  .teletext-list__panel__item-list {
    display: grid;
    width: 100%;
    // flex-direction: column;
    gap: 10px;
  }

  .teletext-list__panel__item-list--row {
    -ms-overflow-style: none;
    scrollbar-width: none;

    &::-webkit-scrollbar {
      display: none;
    }
  }

  &-head {
    display: flex;
    justify-content: space-between;
    width: 100%;
    //align-items: ;
    &-more {
      flex-shrink: 0;
      cursor: pointer;
      &-text {
        font-weight: 500;
        font-size: 14px;
        color: #666666;
        margin-right: 2px;
      }
      &-img {
        width: 5px;
        height: 10px;
      }
    }
  }

  &-head-user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    &-img {
      width: 45px;
      height: 45px;
      border-radius: 50%;
    }
    &-text {
      font-size: 14px;
      color: #222222;
    }
  }
}

