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

.rate-components {
  float: right;
  color: #fff;
  height: 35px;
  position: relative;
  box-sizing: border-box;
  margin-top: 5px;
}

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

.rate-list {
  position: absolute;
  bottom: 46px;
  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);
    }
  }
}
@media(max-width: 768px) {
  .current-rate {
    width: 40px;
  }
  .rate-list li {
    width: 43px;
  }
} 