@keyframes spin {
    from {
      transform: rotateZ(0);
    }
  
    to {
      transform: rotateZ(1turn);
    }
  }
  
  .gurully-audio-player {
    width: 100%;
    /* min-width: 280px; */
    height: 100%;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    box-sizing: border-box;
    outline: none;
  }
  .gurully-audio-player.player-accessible .play-pause-btn:hover,
  .gurully-audio-player.player-accessible .controls:hover,
  .gurully-audio-player.player-accessible .volume__button:hover,
  .gurully-audio-player.player-accessible .volume__controls:hover,
  .gurully-audio-player.player-accessible .download:hover {
    outline: dotted 1px #999;
  }
  .gurully-audio-player svg, .gurully-audio-player img {
    display: block;
    width: 18px;
    height: 18px;
    margin-left: 3px;
  }
  .gurully-audio-player .holder {
    position: relative;
  }
  .gurully-audio-player .holder .loading .loading__spinner {
    position: absolute;
    left: -3px;
    bottom: 2px;
    width: 16px;
    height: 16px;
    border: 2px solid #b0b0b0;
    border-right-color: rgba(0, 0, 0, 0);
    border-radius: 50%;
    animation: spin 0.4s linear infinite;
  }
  .gurully-audio-player .holder .play-pause-btn {
    visibility: hidden;
    cursor: pointer;
    outline: none;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #0D56F9;
  }
  .gurully-audio-player .holder .play-pause-btn:focus {
    outline: none;
  }
  .gurully-audio-player .slider {
    flex-grow: 1;
    background-color: #ECECEC;
    cursor: pointer;
    position: relative;
  }
  .gurully-audio-player .slider .gap-progress {
    background-color: #0D56F9;
    border-radius: inherit;
    position: absolute;
    pointer-events: none;
  }
  .gurully-audio-player .slider .gap-progress .pin {
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background-color: #0D56F9;
    position: absolute;
    pointer-events: all;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.15));
  }
  .gurully-audio-player .slider .gap-progress .pin::after {
    content: "";
    display: block;
    background: rgba(0, 0, 0, 0);
    width: 200%;
    height: 200%;
    margin-left: -50%;
    margin-top: -50%;
    border-radius: 50%;
  }
  .gurully-audio-player .controls {
    font-size: 16px;
    line-height: 18px;
    color: #55606e;
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
    margin-left: 15px;
    margin-right: 0px;
    outline: none;
    flex-flow: wrap;
  }
  .gurully-audio-player .controls .controls__slider {
    margin-left: 0;
    margin-right: 1px;
    border-radius: 86px;
    height: 9px;
  }
  .gurully-audio-player .controls .controls__slider .controls__progress {
    width: 0;
    height: 100%;
  }
  .gurully-audio-player .controls .controls__slider .controls__progress .progress__pin {
    right: -9px;
    top: -3px;
  }
  .gurully-audio-player .controls span {
    cursor: default;
  }
  .gurully-audio-player .controls:focus {
    outline: none;
  }
  .gurully-audio-player .volume {
    position: relative;
  }
  .gurully-audio-player .volume .volume__button {
    cursor: pointer;
    outline: none;
    display: none;
  }
  .gurully-audio-player .volume .volume__button:focus {
    outline: none;
  }
  .gurully-audio-player .volume .volume__button.open path {
    fill: #0D56F9;
  }
  .gurully-audio-player .volume .volume__controls {
    width: 30px;
    height: 135px;
    background-color: rgba(0, 0, 0, 0.62);
    border-radius: 7px;
    position: absolute;
    left: -3px;
    bottom: 52px;
    flex-direction: column;
    align-items: center;
    display: flex;
    z-index: 2;
    outline: none;
  }
  .gurully-audio-player .volume .volume__controls .volume__slider {
    margin-top: 12px;
    margin-bottom: 12px;
    width: 6px;
    border-radius: 3px;
  }
  .gurully-audio-player .volume .volume__controls .volume__slider .volume__progress {
    bottom: 0;
    height: 100%;
    width: 6px;
  }
  
  .gurully-audio-player .volume .volume__controls .volume__slider .volume__progress .volume__pin {
    left: -5px;
    top: -8px;
  }
  .gurully-audio-player .volume .volume__controls:focus {
    outline: none;
  }
  .gurully-audio-player .volume .volume__controls.hidden {
    display: none;
  }
  .gurully-audio-player .volume .volume__controls.top {
    bottom: 52px;
    left: -3px;
  }
  .gurully-audio-player .volume .volume__controls.middle {
    bottom: -54px;
    left: 54px;
  }
  .gurully-audio-player .volume .volume__controls.bottom {
    bottom: -164px;
    left: -3px;
  }
  .gurully-audio-player .download {
    display: none;
    margin-left: 16px;
    cursor: pointer;
    outline: none;
  }
  .gurully-audio-player .download:focus {
    outline: none;
  }
  .gurully-audio-player:focus {
    outline: none;
  }
  .message__offscreen {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
  }
  .play-pause-btn svg path {
    /* fill: #0D56F9; */
    fill: #292D32;
  }
  .play-pause-btn.pause-btn svg {
    margin: 0;
  }
  .play-pause-btn-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-bottom: 8px;
    color: #212121;
    text-align: justify;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  @media(max-width:1350px){
    .gurully-audio-player .controls .controls__slider {
      height: 6px;
    }
    .gurully-audio-player .slider .gap-progress .pin {
      height: 15px;
      width: 15px;
    }
    .gurully-audio-player .controls .controls__slider .controls__progress .progress__pin {
      right: -14px;
      top: -5px;
    }
    .play-pause-btn-box {
      font-size: 10px;
    }
    .gurully-audio-player svg, .gurully-audio-player img {
      width: 16px;
      height: 16px;
      margin-left: 4px;
    }
    .gurully-audio-player .holder .play-pause-btn {
      width: 30px;
      height: 30px;
      flex: 0 0 30px;
    }
  }