.panel {
  display: flex;
  flex-direction: column;

  &__container {
    &Line {
      width: 100px;
      height: 14px;
      border-radius: 0;
      background: rgba(0, 0, 0, 0);
      pointer-events: auto;
      cursor: pointer;
      margin: 10px 0 0 10px;
    }

    &Management {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  }

  &__line {
    width: 100px;
    height: 4px;
    background: rgb(255, 255, 255, .3);
    border-radius: 1.4px;
    pointer-events: none;
    transition: transform 0.2s ease-in-out;
    position: absolute;
    border-radius: 10px;

    .circle {
      width: 15px;
      height: 15px;
      border-radius: 100%;
      border: none;
      background-color: #ffffff;
      position: absolute;
      top: 2px;
      transform: translateY(-50%);
      left: 20px;
    }

    &::before {
      content: '';
      position: absolute;
      height: inherit;
      left: 0;
      top: 0;
      right: 0;
      width: 30%;
      background: rgb(255, 153, 0);
    }
  }

  &__play {
    width: 20px;
    height: 20px;
    cursor: pointer;
    pointer-events: auto;
    background: transparent;
    border: none;
    position: relative;

    img {
      display: block;
      object-fit: contain;
      width: 100%;
      height: 100%;
    }
  }

  &__sound {
    background: none;
    border: none;
    margin: 0 10px;

    img {
      display: block;
      object-fit: contain;
      width: 100%;
      height: 100%;
    }
  }

  &__time {
    color: $c-white;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 10px;
    width: 73px;

    span {
      color: #f90;
    }
  }

  &__control {
    display: flex;
  }

  &__setting {
    background: none;
    border: none;
    margin-right: 10px;
  }

  &__wid {
    background: none;
    border: none;
  }
}

.dark {
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 60px;
  -webkit-backface-visibility: hidden;
  top: auto;
  left: auto;
  overflow: visible;
  direction: ltr !important;
  max-width: none !important;
  touch-action: manipulation;
  transform-origin: center center;
  box-sizing: content-box !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  text-indent: 0 !important;
  background: rgb(65, 65, 65);
  background: -moz-linear-gradient(180deg, rgba(65, 65, 65, 0) 0%, rgba(0, 0, 0, 0.8634847689) 100%);
  background: -webkit-linear-gradient(180deg, rgba(65, 65, 65, 0) 0%, rgba(0, 0, 0, 0.8634847689) 100%);
  background: linear-gradient(180deg, rgba(65, 65, 65, 0) 0%, rgba(0, 0, 0, 0.8634847689) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#414141",endColorstr="#000000",GradientType=1);
}
