@charset "utf-8";

#gnav,
#sp-menu,
.slicknav_menu,
.title_area,
#search_area,
.breadcrumb,
#footer {
    display: none !important;
}

.single-streaming .uk-container {
    width: 700px;
    max-width: 100%;
}
@media (max-width:768px){
    .single-streaming .uk-container {
        padding: 0 15px;
    }
}

.main ul.track-ul {
    margin: 0;
}

.main li.track-list {
    list-style-type: none;
    padding: 0.2em 0.5em;
    background: #efefef;
    cursor: pointer;
}

.main li.track-list.active {
    background: #004285;
    color: #fff;
    transition: background-color 0.3s;
}

.main li.track-list:not(.active):hover {
    background: #81b5ea;
    transition: background-color 0.3s;
}

.single-streaming .main button {
    border: none;
    appearance: none;
    background: #eee;
    border-radius: 100px;
    width: 4em;
    font-weight: 700;
    color: #444;
}

.single-streaming .main button.s-play {
    width: 4em;
    height: 4em;
    background: url(./img/play.svg) no-repeat center / contain;
    margin-right: 1em;
}
@media screen and (max-width:768px){
    .single-streaming .main button {
        width: 3.2em;
    }
    .single-streaming .main button.s-play {
        width: 3em;
        height: 3em;
        margin-right: 0;
    }
}

.single-streaming .main button.s-play.playing {
    background-image: url(./img/pause.svg);
}

.s-speed-wrap {
    display: inline-block;
    font-weight: 700;
    background: #004285;
    color: #fff;
    border-radius: 100px;
    padding: 0.4em 1em 0.4em 1em;
}
@media screen and (max-width:768px){
    .s-speed-wrap {
        padding: 0.4em 0.75em;
        font-size: 0.8em;
    }
}

.s-control__label {
    font-size: 0.8em;
}

.s-speed {
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 3px;
    font-size: 16px;
    vertical-align: middle;
}

.s-prev,
.s-next {
    position: relative;
}

.s-next {
    margin-right: 1em;
}
@media screen and (max-width:768px){
    .s-next {
        margin-right: 0;
    }
}
.s-prev::before,
.s-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 1em;
    height: 1em;
    background: url(./img/arrow.svg) center / contain;
}

.s-prev::before {
    transform: translate(-50%, -50%) rotateZ(180deg);
}

.single-streaming h4 {
    font-weight: 700;
    margin: 1em 0;
}

.s-control {
    position: sticky;
    left: 0;
    top: 0;
    text-align: center;
    margin: 2em 0 3.6em;
    padding: 1em 0.7em;
    background: #fff;
    border: 4px solid #dce0e4;
}

@media screen and (max-width:500px) {
    .s-control {
        font-size: 3vw;
    }
}

.s-range {
    display: flex;
    justify-content: center;
    align-items: center;
}

.s-range-inner {
    background: #eee;
    position: relative;
    height: 0.5em;
    margin-right: 0.7em;
    flex: 1 1 auto;
}

.s-range-inner .gauge {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #004285;
}

.s-range-inner.playing .gauge {
    animation: audiobar linear backwards;
}

.s-range-inner.paused .gauge {
    animation-play-state: paused;
}

@keyframes audiobar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.s-range input {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}