* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    font-size: 14px;
  }
  
  :root {
    --primary-light: #8abdff;
    --primary: #6d5dfc;
    --primary-dark: #5b0eeb;
    
    --white: #FFFFFF;
    --greyLight-1: #E4EBF5;
    --greyLight-2: #c8d0e7;
    --greyLight-3: #bec8e4;
    --greyDark: #9baacf;
  }

  html {
    --bg: #f5f6f7;
    --color-text: #8d90a3;
    --banner: #333333;
    --color-shadow: -4px -2px 4px 0px #ffffff, 4px 2px 6px 0 #dfe4ea;
    --color-inset-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.8),
      inset 2px 2px 6px rgba(0, 0, 0, 0.1);
  }
  html[data-theme="dark"] {
    --bg: #161623;
    --color-text: #e2e2e2;
    --banner: #fefefe;
    --color-shadow: -3px -3px 10px rgba(255, 255, 255, 0.05),
      3px 3px 15px rgba(0, 0, 0, 0.5);
    --color-inset-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.01),
      inset 2px 2px 6px rgba(0, 0, 0, 0.8);
  }
  
  body {
    background: var(--bg);
    color: var(--color-text);
  }
  
  a {
    text-decoration: none;
  }
  
  .player {
    width: 80%;
    min-height: 550px;
    max-width: 300px;
    padding: 3rem 1.25rem;
    margin: 2rem auto;
    background: var(--bg);
    box-shadow: var(--color-shadow);
    border-radius: 15px;
    position: relative;
  }
  
  .header {
    height: 40px;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    align-items: center;
    justify-items: center;
  }
  
  .header > .button {
    width: 2rem;
    height: 2rem;
    display: grid;
    align-items: center;
    justify-items: center;
    background: var(--bg);
    box-shadow: var(--color-shadow);
    border-radius: 5px;
  }
  
  .image {
    display: block;
    width: 175px;
    height: 175px;
    object-fit: cover;
    margin: 1rem auto;
    border-radius: 50%;
    border: 4px solid #dcdfe2;
    transition: 1s ease-out;
    box-shadow: var(--color-shadow);
  }

  .image:hover{
    transition: 1s ease-out;
    box-shadow: -4px -2px 4px 0px rgba(0,0,0,0.2), 4px 2px 6px 0 rgba(0,0,0,0.2);
  }
  

  .information {
    margin: 1.5rem 0;
    text-align: center;
  }
  
  .information h1 {
    color: var(--black);
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: royalblue;
  }
  
  .information p {
    font-size: 1.15rem;
    color: royalblue;
  }
  
  .progress {
    padding: 10px 0;
  }
  
  .progress-time {
    padding: 3px 5px;
    color: coral;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
  }
  
  .progress-time > p {
    font-size: 0.65rem;
  }
  
  .buttons {
    margin: 2rem 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .button {
    color: var(--color-text);
    border-radius: 50%;
    margin: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: cornflowerblue;
    box-shadow: var(--color-shadow);
  transition : 0.5s;
  }
  
.button:hover{
  color:coral;
  transition : 0.01s;
}

  .button-sm {
    width: 2rem;
    height: 2rem;
    opacity: 0.75;
  }
  .button-md {
    width: 2.5rem;
    height: 2.5rem;
    opacity: 0.85;
  }
  .button-lg {
    width: 3.25rem;
    height: 3.25rem;
    /* opacity: 1; */
  }
  
  .bar {
    width: 50%;
    height: 2px;
    margin: auto;
    background: var(--color-text);
    border-radius: 25px;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: 1s ease-out;
    left: 50%;
    bottom: 1rem;
  }
  
  .playpause.active {
    box-shadow: var(--color-inset-shadow);
    color:coral
  }
  
  .loop.active,
  .shuffle:active,
  .prev:active,
  .next:active {
    box-shadow: var(--color-inset-shadow);
    color:coral;
  }

  .fa-play {
    display: block;
  }

  .fa-pause {
    display: none;
  }
  .playpause.active .fa-play {
    display: none;
  }
  .playpause.active .fa-pause {
    display: block;
  }
  
  .seekslider {
    width: 100px;
    height: 3px !important;
    -webkit-appearance: none;
    border-radius: 10px;
    background: var(--color-text);
    z-index: 3;
    outline: none;
    position: fixed;
    margin-left: 82px;
    margin-top: 10px;
  }
  
  .seekslider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    background: var(--color-text);
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    transform: scale(1);
  }
  .seekslider:active::-webkit-slider-thumb {
    transform: scale(1.2);
  }
  label {
    cursor: pointer;
  }
  
  input[type="checkbox"] {
    -webkit-appearance: none;
  }
  #bars:hover {
    box-shadow: var(--color-inset-shadow);
    transition: 0.5s;
  }
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-thumb {
    border-radius: 50px;
    max-width: 1px;
    background: rgba(255, 255, 255, 0.5);
    border: 0.5px solid rgba(250, 250, 250, 1);
  }
  .vtranscript {
    position: absolute;
    top: 15%;
    left: 50%;
    height: 150px;
    width: 500px;
    padding: 25px;
    text-align: auto;
    line-height: 25px;
    overflow-y: scroll;
    box-shadow: var(--color-inset-shadow);
    background: var(--bg);
    box-shadow: var(--color-shadow);
  }
  #hta {
    position: relative;
    top: 0;
    font-size: 1.5rem;
    padding: 2.5px;
    color: coral;
  }
  
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-thumb {
    border-radius: 50px;
    max-width: 1px;
    background: rgba(255, 255, 255, 0.5);
    border: 0.5px solid rgba(250, 250, 250, 1);
  }
  .green {
    color: green;
    font-weight: bold;
  }
  .red {
    color: red;
    font-weight: bold;
  }
  