{
  "version": 3,
  "sources": ["../src/css/picobel.pitchfork.css"],
  "sourcesContent": [".pitchfork.picobel {\n    --grey: #dad8d2;\n    --white: #ffffff;\n    --black: #000;\n    --border: #a2a2a2;\n    --unplayed: #eeeeee;\n    --played: #ff3530;\n    --text_dark: var(--black);\n    --icon_grey: #7f7f7f;\n    --text_light: #969696;\n    --progressHeight: 0.4rem;\n}\n\n.pitchfork.picobel {\n    margin: 2em 0;\n    padding: 1em;\n    padding-left: 4em;\n    position: relative;\n    border: 2px solid var(--border);\n    overflow: hidden;\n    box-sizing: border-box;\n    background: var(--white);\n    font-family: \"Arial\", sans-serif;\n    color: var(--text_light);\n}\n.pitchfork.picobel *,\n.pitchfork.picobel *:before,\n.pitchfork.picobel *:after {\n    box-sizing: inherit;\n}\n\n.pitchfork.picobel .loader {\n    position: absolute;\n    top: 3.1em;\n    left: 7.2em;\n    right: 4.2em;\n    height: 0.4em;\n    z-index: 2;\n    pointer-events: none;\n    display: none;\n    transition: opacity 0.2s;\n    text-align: center;\n    line-height: 1;\n    overflow: hidden;\n    border-radius: 0.2em;\n    background: linear-gradient(\n        to right,\n        var(--highlight) 50%,\n        var(--black) 50%\n    );\n    background-size: 2em 2em;\n    background-repeat: repeat;\n    background-position: 0 0;\n    animation: pitchfork_background_slide linear infinite 0.3s;\n}\n.pitchfork.picobel.loading .loader {\n    display: block;\n}\n\n.pitchfork.picobel .playerTrigger {\n    border: none;\n    appearance: none;\n    width: 2.6em;\n    height: 2.6em;\n    font-size: 1em;\n    color: var(--icon_grey);\n    background: var(--white);\n    position: absolute;\n    top: 50%;\n    margin-top: -1.3em;\n    left: 1em;\n    border: 2px solid var(--black);\n    border-radius: 50%;\n    cursor: pointer;\n}\n\n.pitchfork.picobel .playerTrigger .buttonText {\n    display: none;\n}\n.pitchfork.picobel .playerTrigger:focus {\n    outline: none;\n}\n.pitchfork.picobel .playerTrigger:before {\n    content: \"\";\n    display: block;\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    margin-top: -0.6em;\n    margin-left: -0.25em;\n    border-top: 0.6em solid transparent;\n    border-left: 0.8em solid var(--black);\n    border-bottom: 0.6em solid transparent;\n}\n.pitchfork.picobel .playerTrigger:after {\n    content: \"\";\n    display: block;\n    position: absolute;\n    top: 50%;\n    right: 50%;\n    height: 1em;\n    margin-top: -0.5em;\n    margin-right: -0.5em;\n    border-top: 0;\n    border-left: 0.4em solid var(--black);\n    border-bottom: 0;\n    opacity: 0;\n}\n.pitchfork.picobel .playerTrigger.songPlaying:before {\n    height: 1em;\n    margin-top: -0.5em;\n    margin-left: -0.5em;\n    border-top: 0;\n    border-left: 0.4em solid var(--black);\n    border-bottom: 0;\n}\n.pitchfork.picobel .playerTrigger.songPlaying:after {\n    opacity: 1;\n}\n\n.pitchfork.picobel .metaWrapper {\n    color: var(--black);\n    padding: 0 1em;\n    margin-bottom: 1em;\n}\n\n.pitchfork.picobel .titleDisplay {\n    font-weight: bold;\n}\n.pitchfork.picobel .titleDisplay:before {\n    content: \"\u201C\";\n}\n.pitchfork.picobel .titleDisplay:after {\n    content: \"\u201D\";\n}\n\n.pitchfork.picobel .artistDisplay:before {\n    content: \" \u2013 \";\n}\n\n.pitchfork.picobel .songPlayTimer {\n    position: absolute;\n    bottom: 1em;\n    left: 5em;\n}\n.pitchfork.picobel .songDuration {\n    position: absolute;\n    bottom: 1em;\n    right: 1em;\n}\n\n.pitchfork.picobel .timingsWrapper {\n    padding: 0 4em;\n    position: relative;\n    font-size: 0.8em;\n    width: 100%;\n    float: left;\n}\n.pitchfork.picobel .timingsWrapper .songPlayTimer,\n.pitchfork.picobel .timingsWrapper .songDuration {\n    position: absolute;\n    top: -0.2em;\n    width: 4em;\n    text-align: center;\n    line-height: 1;\n}\n.pitchfork.picobel .timingsWrapper .songPlayTimer {\n    left: 0;\n    border-radius: 0.5em 0 0 0.5em;\n}\n.pitchfork.picobel .timingsWrapper .songDuration {\n    right: 0;\n    border-radius: 0 0.5em 0.5em 0;\n}\n\n.pitchfork.picobel .progress-slider__wrapper {\n    height: var(--progressHeight);\n    line-height: 1;\n    position: relative;\n    border-radius: 0.2rem;\n    overflow: hidden;\n}\n.pitchfork.picobel .progress-slider__wrapper .progress-slider__range {\n    width: 100%;\n    padding: 0;\n    margin: 0;\n    position: absolute;\n    top: 0;\n    left: 0;\n    opacity: 0;\n}\n\n.pitchfork.picobel .progress-slider__wrapper .progress-slider__background {\n    height: var(--progressHeight);\n    position: absolute;\n    bottom: 0;\n    left: 0;\n    background: var(--unplayed);\n    width: 100%;\n}\n.pitchfork.picobel\n    .progress-slider__wrapper\n    .progress-slider__progress-indicator {\n    height: var(--progressHeight);\n    position: absolute;\n    bottom: 0;\n    left: 0;\n    background: var(--played);\n    width: 0%;\n}\n.pitchfork.picobel .progress-slider__wrapper .progress-slider__playhead {\n    display: none;\n}\n\n/* Make sure the range Track is the right size and shape */\n.pitchfork.picobel\n    input[type=\"range\"].progress-slider__range::-webkit-slider-runnable-track {\n    width: 100%;\n    font-size: var(--progressHeight);\n    height: 2.2em;\n    cursor: pointer;\n}\n.pitchfork.picobel\n    input[type=\"range\"].progress-slider__range::-moz-range-track {\n    width: 100%;\n    height: var(--progressHeight);\n    cursor: pointer;\n}\n.pitchfork.picobel input[type=\"range\"].progress-slider__range::-ms-track {\n    width: 100%;\n    height: var(--progressHeight);\n    cursor: pointer;\n}\n\n.pitchfork.picobel .songVolume {\n    display: none;\n}\n\n/* Simulates an infinite slide-to-the-right effect. */\n@keyframes pitchfork_background_slide {\n    0% {\n        background-position: 0 0;\n    }\n    100% {\n        background-position: 2em 0;\n    }\n}\n"],
  "mappings": "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",
  "names": []
}
