page-streaming {
  display: flex;
  flex-direction: column;

  ul {
    margin: 0;
    padding: 0;
  }

  streaming-graphic {
    margin-top: 50px;
  }

  .streaming-header {
    position: relative;
    height: 105px;

    .help {
      position: absolute;
      top: 20px;
      left: 40px;
    }

    .nav {
      margin: 0 162px;
      display: flex;

      li {
        width: 165px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;

        &:nth-child(2) {
          flex: 1;
        }

        .icon {
          width: 51px;
          height: 51px;
          border-radius: 50%;
          background: #f4f4f4;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 23px;
          color: #4c4c4c;
        }

        h6 {
          color: #525252;
          font-size: 13px;
          margin: 3px 0;
        }

        p {
          width: 165px;
          color: #8b8b8b;
          font-size: 12px;
          line-height: 18px;
        }
      }

      .is-active {
        .icon {
          color: white;
          background: linear-gradient(135deg, #defff4, #00c8c1);
        }

        h6 {
          color: #00c8c1;
        }
      }
    }
  }

  .streaming-title {
    margin: 0 -15px;
    padding: 0 15px;
    height: 40px;
    line-height: 40px;
    border-bottom: solid 1px #e6e6e6;

    .tit {
      float: left;
      font-size: 15px;
      color: #484848;
      font-weight: bold;
    }

    .line {
      display: flex;
      justify-content: space-around;
      position: relative;
      top: 21px;
      margin: 0 162px;

      li {
        position: relative;
        width: 165px;
        height: 2px;

        &:nth-child(2) {
          flex: 1;
        }

        &:before {
          content: '';
          width: 14px;
          height: 14px;
          border: solid 1px #00c8c1;
          border-radius: 50%;
          position: absolute;
          top: -6px;
          left: 50%;
          margin-left: -7px;
          background: white;
          z-index: 1;
        }

        &:after {
          content: '';
          width: 6px;
          height: 6px;
          border-radius: 50%;
          position: absolute;
          left: 50%;
          top: -2px;
          margin-left: -3px;
          background: #E1E1E1;
          z-index: 2;
        }
      }
    }

    .active1 {
      li {
        &:nth-child(1) {
          background: linear-gradient(to right, rgba(155, 155, 155, 0), rgba(0, 204, 197, 1) 50%, rgba(0, 204, 197, .7));
          &:after {
            background: #00c8c1;
          }
        }

        &:nth-child(2) {
          background: linear-gradient(to right, rgba(0, 204, 197, .7), rgba(155, 155, 155, .3) 50%, rgba(155, 155, 155, .1));
        }

        &:nth-child(3) {
          background: linear-gradient(to right, rgba(155, 155, 155, .1), rgba(155, 155, 155, 0));
        }
      }
    }

    .active2 {
      li {
        &:nth-child(1) {
          background: linear-gradient(to right, rgba(155, 155, 155, 0), rgba(155, 155, 155, .3));
        }

        &:nth-child(2) {
          background: linear-gradient(to right, rgba(155, 155, 155, .3), rgba(0, 204, 197, 1) 50%, rgba(155, 155, 155, .3));
          &:after {
            background: #00c8c1;
          }
        }

        &:nth-child(3) {
          background: linear-gradient(to right, rgba(155, 155, 155, .3), rgba(155, 155, 155, 0));
        }
      }
    }

    .active3 {
      li {
        &:nth-child(1) {
          background: linear-gradient(to right, rgba(155, 155, 155, 0), rgba(155, 155, 155, .1));
        }

        &:nth-child(2) {
          background: linear-gradient(to right, rgba(155, 155, 155, .1), rgba(155, 155, 155, .3) 50%, rgba(0, 204, 197, .7));
        }

        &:nth-child(3) {
          background: linear-gradient(to right, rgba(0, 204, 197, .7), rgba(0, 204, 197, 1) 50%, rgba(155, 155, 155, 0));

          &:after {
            background: #00c8c1;
          }
        }
      }
    }

    .btns {
      float: right;
      line-height: 38px;

      a {
        height: 100%;
        float: left;
        margin-left: 20px;
        font-size: 12px;
        color: #525252;
        font-weight: bold;
        display: flex;
        align-items: center;

        i {
          margin-right: 5px;
          font-size: 16px;
        }

        &:hover {
          color: #00c8c1;
        }
      }
    }
  }
}


[data-page=streaming], [data-page=filtersApp], [data-page=streamingDictionary] {
  ui-view {
    overflow-y: scroll;

    .btns-wrapper {
      height: 55px;

      .btn-group {
        margin: 15px 0 10px;

        .btn {
          border-color: #00c8c1;
          border-radius: 3px!important;
          color: #00c8c1;
          padding: 0 10px;
          height: 30px;
          margin-right: 10px;
          font-size: 12px;
          display: flex;
          justify-content: center;
          align-items: center;

          i {
            margin-right: 4px;
          }
        }
      }

      .left {
        margin-top: 15px;
        float: right;

        .search-by-keywords {
          height: 30px;
        }
      }
    }
  }
}
