.hlo {
    /* border-top: 1px ridge white;
    top: -5px;
    left: 0;
    right: 0px;
    bottom: -5px;
    box-shadow: 0px 0px 3px 3px rgba(255, 255, 255, 0.3);
    
    z-index:  -2; */
    content: '';
    position:absolute;
    display: inline-block;
    left: -5px;
    right: -5px;
    border-radius: 50%;
    box-shadow: 0 0 10px 10px rgb(255, 255, 255);
    z-index: -1;
  
}


.vl {
  border-left: 1px ridge white;
  height: auto;
  box-shadow: 0px 0px 2px 2px rgba(255, 255, 255, 0.3);
}

.hl {
  border-top: 1px ridge white;
  position:relative;
  box-shadow: 0px 0px 2px 2px rgba(255, 255, 255, 0.3);
}

.glow-effect {
  box-shadow: 0px 0px 10px 5px rgba(255, 255, 255, 0.7);
  /* adjust the values as needed */
  border-radius: 10px;
  border: 1px ridge white;
  /* optional */
}

.hr {
  height:2px;
  border-width:0.2;
  color:white;
  background-color:white;
}

.audio-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.audio-player {
  height: 50px;
  width: 350px;
  background: #181818;
  box-shadow: 0 0 7px 0 rgba(255, 255, 255);

  font-family: arial;
  color: white;
  font-size: 0.75em;
  overflow: hidden;

  display: grid;
  grid-template-rows: 6px auto;

  .timeline {
    background: rgb(0, 0, 0);
    width: 100%;
    position: relative;
    cursor: pointer;
    box-shadow: 0 2px 10px 0 #0008;

    .progress {
      background: yellow;
      width: 0%;
      height: 100%;
      transition: 0.25s;
    }
  }

  .controls {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 20px;

    >* {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .toggle-play {
      &.play {
        cursor: pointer;
        position: relative;
        left: 0;
        height: 0;
        width: 0;
        border: 7px solid #0000;
        border-left: 13px solid white;

        &:hover {
          transform: scale(1.1);
        }
      }

      &.pause {
        height: 15px;
        width: 20px;
        cursor: pointer;
        position: relative;

        &:before {
          position: absolute;
          top: 0;
          left: 0px;
          background: white;
          content: "";
          height: 15px;
          width: 3px;
        }

        &:after {
          position: absolute;
          top: 0;
          right: 8px;
          background: white;
          content: "";
          height: 15px;
          width: 3px;
        }

        &:hover {
          transform: scale(1.1);
        }
      }
    }

    .time {
      display: flex;

      >* {
        padding: 2px;
      }
    }

    .volume-container {
      cursor: pointer;

      .volume-button {
        height: 26px;
        display: flex;
        align-items: center;

        .volume {
          transform: scale(0.7);
        }
      }

      position: relative;
      z-index: 2;

      .volume-slider {
        position: absolute;
        left: -3px;
        top: 15px;
        z-index: -1;
        width: 0;
        height: 15px;
        background: white;
        box-shadow: 0 0 20px #000a;
        transition: .25s;

        .volume-percentage {
          background: coral;
          height: 100%;
          width: 75%;
        }
      }

      &:hover {
        .volume-slider {
          left: -123px;
          width: 120px;
        }
      }
    }
  }
}
