.viewerUtilsWrapper {
  height: 90px;
  width: 100%;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  .centerContent {
    height: 54px;
    margin-bottom: 16px;
    color: #FFFFFF;
    border-radius: 5px;
    padding: 0 10px;
    background-color: #353535;
    display: flex;
    flex-direction: column;
    .currentMediaName {
      font-size: 14px;
      margin-top: 10px;
      text-align: center;
      user-select: none;
      max-width: 368px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .actionListWrapper {
      flex: 1;
      text-align: center;
      .utilItemWrapper {
        width: 46px;
        height: 100%;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        &:hover {
          color: #2A87EB;
        }
      }
      .utilItemWrapper_selected {
        color: #2A87EB;
      }
      .utilItemWrapper_disabled {
        opacity: 0.3;
        cursor: not-allowed;
        &:hover {
          color: #FFFFFF;
        }
      }
    }
  }
}