.aap-wrap {
    margin: 1em 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.aap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f3f4;
    border-radius: 100px;
    padding: 6px 16px 6px 8px;
    max-width: 560px;
    width: 100%;
    box-sizing: border-box;
}
.aap-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}
.aap-play-icon {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid #000;
    margin-left: 3px;
}
.aap-pause-icon {
    display: flex;
    gap: 3px;
}
.aap-pause-bar {
    width: 4px;
    height: 14px;
    background: #000;
}
.aap-time {
    font-size: 13px;
    color: #202124;
    white-space: nowrap;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}
.aap-sep {
    font-size: 13px;
    color: #80868b;
    flex-shrink: 0;
}
.aap-track {
    flex: 1;
    height: 24px;
    display: flex;
    align-items: center;
    cursor: pointer;
    min-width: 40px;
}
.aap-track-bg {
    width: 100%;
    height: 3px;
    background: #c7c9cc;
    border-radius: 3px;
}
.aap-track-fill {
    height: 100%;
    width: 0%;
    background: #5f6368;
    border-radius: 3px;
    transition: width 0.1s linear;
}
.aap-dl {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
}
.aap-dl-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.aap-dl-stem {
    width: 3px;
    height: 6px;
    background: #000;
    margin-bottom: -2px;
}
.aap-dl-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #000;
}
.aap-dl-base {
    width: 14px;
    height: 2px;
    background: #000;
}
