.player-hidden {
  display: none !important;
}

.quality-components {
  float: right;
  color: #fff;
  height: 40px;
  position: relative;
  box-sizing: border-box;
  margin-top: 4px;
}

.current-quality-cto {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  width: 70px;
  cursor: pointer;
}

.quality-list {
  position: absolute;
  bottom: 39px;
  display: none;
  padding: 0;
  margin: 0;
  list-style: none;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  li {
    text-align: center;
    width: 70px;
    line-height: 30px;
    background-color: rgba(0, 0, 0, .6);
    cursor: pointer;
    &.current {
      color: #cf333e;
    }
    &:hover {
      background-color: rgba(0, 0, 0, .5);
    }
  }
}

.quality-modal {
  position: absolute;
  bottom: 20%;
  left:  5%;
  background-color: rgba(0, 0, 0, .6);
  border-radius: 5px;
  color: #fff;
  padding: 10px 15px;
  font-size: 14px;
  display: none;
  span.current-quality-tag {
    color: #cf333e;
  }
}
@media(max-width: 768px) {
  .current-quality-cto {
    width: 40px;
  }
  .quality-list li {
    width: 45px;
  }
} 