@import url('https://fonts.googleapis.com/css2?family=Neuton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@700&display=swap');

:root
{
    --theme-color: #008F2C;
    /*--theme-color: #55BC00;*/
    font: 'Libre Baskerville', serif;
}

h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 36px;
}

h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 26px;
}

h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 20px;
    margin: 0px;
}

div {
    box-sizing: border-box;
}

.headbar {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0px 20px;
    box-shadow: 0px 0px 10px 2px #777;
    background-image: linear-gradient(#EEE, #AAA);
    z-index: 50;
}

.sidebar {
    position: fixed;
    top: 60px;
    left: 0px;
    bottom: 0px;
    width: 300px;
    overflow: hidden auto;
    /*padding: 0px 20px;*/
    box-shadow: 0px 0px 10px 2px #777;
    background-color: #999;
    z-index: 40;
    transition: .25s cubic-bezier(.36,-0.01,0,.77);
}

.body {
    background-color: #FFF;
    position: fixed;
    left: 300px;
    top: 60px;
    bottom: 0px;
    right: 0px;
    overflow-y: scroll;
    transition: .25s cubic-bezier(.36,-0.01,0,.77);
}

.sidebar-bkg {
    position: fixed;
    display: none;
    top: 60px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #000C;
    z-index: 21;
}

.doc-a {
    margin: 0 auto;
    padding: 20px;
}

.doc-c {
    margin: 0 auto;
    max-width: 900px;
    padding: 20px;
}

.list-box {
    padding: 5px 20px;
}

a {
    text-decoration: none;
    color: blue;
}
a:hover {
    text-decoration: underline;
}
a:visited {
}

a .list-box {
    text-decoration: none;
    font-size: 20px;
    color: black;
}
a .list-box:hover {
    /*background-image: linear-gradient(#FA0, rgb(147, 98, 0));*/
    background-image: linear-gradient(rgb(252, 191, 70), rgb(154, 103, 0));
    /*background-image: linear-gradient(rgb(255, 199, 86), #FA0);*/
}

.nsfw-warning {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background-color: #FFF;
    z-index: 10;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.dis-900 {
    display: unset;
}

.comp-900 {
    display: none;
}

img.qt
{
    border: solid #0001 1px;
    border-radius: 15px;
    width: 100%;
    margin-bottom: 10px;
    max-height: 400px;
    max-width: 400px;
    object-fit: cover;
    cursor: pointer;
}

.high-yellow {
    background-color: #FF0;
}

@media screen and (max-width: 900px) {

    .sidebar {
        /*width: unset;
        right: 64px;*/
        width: 300px;
        z-index: 25;
    }

    .sidebar-bkg {
        display: block;
    }
    
    .sidebar.closed {
        margin-left: -300px;
        right: unset;
    }
    
    .sidebar-bkg.closed {
        display: none;
    }

    .body {
        left: 0px;
    }

    .dis-900 {
        display: none;
    }
    
    .comp-900 {
        display: block;
    }
}





.progress-bar{
    color: #cdcdcd;
    background-color: #cdcdcd;
    /*border-radius: 20px;*/
}
.progress-int{
    color: green;
    background-color: green;
    /*padding: 5px;*/
}
.progress-text{
    color: black;
}
.liveIndicator{
    background-color: black;
    width: fit-content;
    padding-top: 0px;
    padding-right: 5px;
    padding-bottom: 0px;
    padding-left: 5px;
    font-size:14px;
    border-radius: 3px;
    color: white;
    
}

.livePulse{
    animation: pulseRed 1.5s linear 0s 1, exradioRed 0.75s linear 0s 1;
    /*animation: exradioRed 0.75s linear 0s 1;*/
}

/*.liveRadio{
    animation: exradioRed 0.75s linear 0s 1;
}*/

@keyframes exradioRed{
    from {
        box-shadow: 0px 0px 0px 0px #FF0000;
    }
    100% {
        box-shadow: 0px 0px 5px 16px #FF000000;
    }
}

@keyframes pulseRed{
    from {
        background-color: #FF0000;
        /*box-shadow: 0px 0px 0px 0px #FF0000;*/
    }
    10%{
        /*box-shadow: 0px 0px 30px 30px #FF000000;*/
    }
    100% {
        background-color: #000000;
    }
}

@keyframes pulseGreen{
    from {
        background-color: #00FF00;
    }
    100% {
        background-color: #000000;
    }
}

@keyframes pulseBlue{
    from {
        background-color: #0000FF;
    }
    100% {
        background-color: #000000;
    }
}