.player {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  .bg-layer {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0, .5);
    z-index: 0;
  }

  .agree-age {
    font-weight: 300;
    font-size: 22px;
    text-align: center;
    width: 100%;
    color: #ffffff;
    padding: 10px;
    text-transform: uppercase;
    z-index: 1;
  }

  .ux {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 20px;
    flex-wrap: wrap;
    height: 50px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    background-color: rgb(0, 0, 0, .4);

    .timeline {
      width: 100%;
      height: 3px;
      background: #3D3D3D;
      margin: 3px 0 5px;
    }

    .ux__group {
      display: flex;
      flex-direction: row;
      width: auto;
      justify-content: space-between;
      align-items: center;
      gap: 10px;

      .ux__item {
        width: auto;
        height: auto;
        position: relative;

        &.ux__item_icon {
          max-width: 16px;
        }
        svg {
          width: 100%;
          height: auto;
        }
        &.sound {
          max-height: 20px;
          svg {
            height: 20px;
            width: auto;
          }
        }
        &.time {
          font-size: 12px;
          font-weight: bold;
          color: #ffffff;
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: center;
          flex-wrap: nowrap;
          white-space: nowrap;
          width: 100px;
        }
      }
    }

  }

}
