/* ==================================================
   audioplayerscripts/tcris_player_a
================================================== */
/* Setup Player
================================================== */
.player_container {
    font-size: min(max(2px, 5vw), 18px);
    font-family: 'BernhardModernW01-Roman';
    font-style: italic;
    position: relative;
    margin: 0 auto;
    margin-top: 70px;
    margin-bottom: 100px;
    max-width: 1200px;
    width: 100%;
    color: #fff;
}

/* Audio Player Styles
================================================== */
audio {
    display: none;
}

#tracks {
    position: relative;
    text-align: center;
}

#nowPlay {
    display: block;
    font-size: 0;
}

#nowPlay span {
    display: inline-block;
    font-size: 1.05rem;
    vertical-align: top;
}

#nowPlay span#npAction {
    padding: 21px;
    width: 30%;
}

#nowPlay span#npTitle {
    padding: 21px;
    text-align: right;
    width: 70%;
}

#plList li {
    cursor: pointer;
    display: block;
    margin: 0;
    padding: 21px 0;
}

#plList li:hover {
    background-color: rgba(100,100,100,0.1);
}

.plItem {
    position: relative;
}

.plTitle {
    left: 50px;
    position: absolute;
    right: 65px;
    text-overflow: ellipsis;
    top: 0;
    white-space: nowrap;
}

.plNum {
    padding-left: 21px;
    width: 25px;
}

.plLength {
    padding-left: 21px;
    position: absolute;
    right: 21px;
    top: 0;
}

.plSel,
.plSel:hover {
    background-color: rgba(100,100,100,0.2);
    color: #9f1;
}

#tracks a:last-child {
    margin-left: 0;
}

/* Media Queries
================================================== */
@media only screen and (max-width:600px) {
    #nowPlay span#npAction {
        display: none;
    }

    #nowPlay span#npTitle {
        display: block;
        text-align: center;
        width: 100%;
    }
}


/* ==================================================
   audioplayerscripts/tcris_player_b
================================================== */

.plyr {
    direction: ltr;
    font-family: 'BernhardModernW01-Roman';
    font-weight: normal;
    line-height: 38px;
    background-color: #000;
    width: 1200px;
    max-width: 100%;
    min-width: 200px;

    position: relative;

    z-index: 1;
    text-shadow: none;
    transition: box-shadow 0.3s ease;
}

.player_audio {
    position: sticky;
    top: 72px;
    z-index: 2;
}

.player_column {
    width: inherit;
}

.plyr__control {
    background: transparent;
    border: none;
    border-radius: 3px;
    color: #7cfc00;
    cursor: pointer;
    flex-shrink: 0;
    overflow: visible;
    padding: 7px;
    position: relative;
    transition: all 0.3s ease;
}

.plyr__control svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: currentColor;
    pointer-events: none;
}

.plyr__control.plyr__control--pressed .icon--not-pressed,
.plyr__control.plyr__control--pressed .label--not-pressed,
.plyr__control:not(.plyr__control--pressed) .icon--pressed,
.plyr__control:not(.plyr__control--pressed) .label--pressed {
    display: none;
}

.plyr__controls {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    text-align: center;
}

.plyr__controls .plyr__progress__container {
    flex: 1;
    min-width: 0;
}

.plyr__controls .plyr__controls__item {
    margin-left: 2.5px;
}

.plyr__controls .plyr__controls__item:first-child {
    margin-left: 0px;
    margin-right: auto;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
    padding-left: 2.5px;
}

.plyr__controls .plyr__controls__item.plyr__time {
    padding: 0 5px;
}

.plyr__controls .plyr__controls__item.plyr__progress__container:first-child,
.plyr__controls .plyr__controls__item.plyr__time + .plyr__time,
.plyr__controls .plyr__controls__item.plyr__time:first-child {
    padding-left: 0;
}

.plyr__controls .plyr__controls__item.plyr__volume {
    padding-right: 5px;
}

.plyr__controls .plyr__controls__item.plyr__volume:first-child {
    padding-right: 0;
}

.plyr__controls:empty {
    display: none;
}

.plyr--audio .plyr__controls {
    background-color: #000;
    border-radius: inherit;
    color: #7cfc00;
    padding: 6px;
    padding-top: 6px;
}

.plyr--full-ui input[type="range"] {
    -webkit-appearance: none;
    background: 0 0;
    border: 0;
    border-radius: 26px;
    color: #900000;
    display: block;
    height: 19px;
    margin: 0;
    padding: 0;
    transition: box-shadow 0.3s ease;
    width: 100%;
}

.plyr--full-ui input[type="range"]::-webkit-slider-runnable-track {
    border: 0;
    border-radius: 2.5px;
    height: 5px;
    transition: box-shadow 0.3s ease;
    -webkit-user-select: none;
    user-select: none;
    background-image: linear-gradient(
        to right,
        currentColor var(--value, 0),
        transparent var(--value, 0)
    );
}

.plyr--full-ui input[type="range"]::-webkit-slider-thumb {
    background: #fff;
    border: 0;
    border-radius: 100%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(35, 41, 47, 0.2);
    height: 13px;
    position: relative;
    transition: all 0.2s ease;
    width: 13px;
    -webkit-appearance: none;
    margin-top: -4px;
}

.plyr--full-ui.plyr--video input[type="range"]::-webkit-slider-runnable-track {
    background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type="range"]:active::-webkit-slider-thumb {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(35, 41, 47, 0.2),
        0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--audio input[type="range"]::-webkit-slider-runnable-track {
    background-color: rgba(193, 201, 209, 1);
}

.plyr--full-ui.plyr--audio input[type="range"]:active::-webkit-slider-thumb {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(35, 41, 47, 0.2),
        0 0 0 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .plyr__time + .plyr__time {
        display: block;
        margin-right: 0px;
    }
}

@media (max-width: 400px) {
    .plyr__time + .plyr__time {
        display: none;
    }
}

.plyr__tooltip {
    background: rgba(250, 250, 250, 0.9);
    border-radius: 4px;
    bottom: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    color: #4a5764;
    font-size: 12px;
    font-weight: 100;
    left: 50%;
    line-height: 0.5;
    margin-bottom: 1px;
    opacity: 0;
    padding: 5px 7.5px;
    pointer-events: none;
    position: absolute;
    transform: translate(-50%, 10px) scale(0.8);
    transform-origin: 50% 100%;
    transition: transform 0.2s 0.1s ease,
        opacity 0.2s 0.1s ease;
    white-space: nowrap;
    z-index: 10;
}

.plyr__tooltip::before {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(250, 250, 250, 0.9);
    bottom: -4px;
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 0;
    z-index: 2;
}

.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr .plyr__control:hover .plyr__tooltip,
.plyr__tooltip--visible {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

.plyr__progress {
    left: 6.5px;
    margin-right: 13px;
    position: relative;
}

.plyr__progress input[type="range"],
.plyr__progress__buffer {
    margin-left: -6.5px;
    margin-right: -6.5px;
    width: calc(100% + 13px);
}

.plyr__progress input[type="range"] {
    position: relative;
    z-index: 2;
}

.plyr__progress__buffer {
    background: 0 0;
    border: 0;
    border-radius: 100px;
    height: 5px;
    left: 0;
    margin-top: -2.5px;
    padding: 0;
    position: absolute;
    top: 50%;
}

.plyr__volume {
    align-items: center;
    display: flex;
    flex: 0;
    position: relative;
}

.plyr__time {
    font-size: 14px;
}

.plyr__time + .plyr__time::before {
    content: "\2044";
    margin-right: 10px;
}

.plyr__sr-only {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
    display: none;
}