@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=swap');

:root
{
    --theme-color: #008F2C;
    /*--theme-color: #55BC00;*/
    font-family: 'roboto', serif;
}

h1 {
    font-family: 'Montserrat', serif;
    font-size: 36px;
}

h2 {
    font-family: 'Montserrat', serif;
    font-size: 26px;
}

h3 {
    font-family: 'Montserrat', serif;
    font-size: 20px;
    margin: 0px;
}

div {
    box-sizing: border-box;
}

.headbar {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 51px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0px 20px;
    background-color: #FFF;
    /*background-image: linear-gradient(#EEE, #AAA);*/
    z-index: 50;
}

.headbar-sub {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 51px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0px 20px;
    box-shadow: 0px 0px 5px 1px #777;
    background-color: #FFF;
    /*background-image: linear-gradient(#EEE, #AAA);*/
    z-index: 35;
}

.sidebar {
    position: fixed;
    top: 51px;
    left: 0px;
    bottom: 0px;
    width: 300px;
    overflow: hidden auto;
    /*padding: 0px 20px;*/
    box-shadow: 0px 0px 5px 1px #777;
    background-color: #FFF;
    z-index: 40;
    transition: .25s cubic-bezier(.36,-0.01,0,.77);
    border-top: solid 1px #CCC;
    padding-top: 10px;
}

hr {
    border-top: solid 1px #CCC;
    border-bottom: none;
}

.body {
    background-color: #FFF;
    position: fixed;
    left: 300px;
    top: 51px;
    bottom: 0px;
    right: 0px;
    overflow-y: scroll;
    transition: .25s cubic-bezier(.36,-0.01,0,.77);
}

.sidebar-bkg {
    position: fixed;
    display: none;
    top: 51px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #0009;
    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: #64AAFF;
}
a:hover {
    text-decoration: underline;
}
a:visited {
}

a .list-box {
    text-decoration: none;
    font-size: 16px;
    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);*/
    background-color: #64AAFF77;
    text-decoration: none;
}

.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;
    }
}

.nav-hamburger {
    background-color: transparent;
    border: none;
    font-size: 32px;
}




.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;
    }
}

.ico-hover {
    fill: #AAA;
    transition: .125s;
}
.ico-hover-youtube:hover {
    fill: #FF0000;
}
.ico-hover-twitter:hover {
    fill: #1DA1F2;
}
.ico-hover-discord:hover {
    fill: #5865f2;
}





.qts
{
    background-color: #ddd;
    padding-left: 4px;
    padding-right: 4px;
    /*padding-top: 1px;
    padding-bottom: 1px;*/
    border-radius: 5px;
    font-family: "Inconsolata", consolas, monospace;
    font-size: 16px;
    /*font-size: 14px;*/
}

.qts a
{
    font-family: "Inconsolata", consolas, monospace;
    font-size: 16px;
}

.qtc
{
    /*width: 77%;*/
    width: 100%;
    max-width: 700px;
    margin: auto;
    border-radius: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #222;
    line-height: 20px;
    font-family: "Inconsolata", consolas, monospace;
    color: gainsboro;
    font-size: 14px;
    overflow-x: auto;
    font-size: 17px;
    font-size: 16px;

    /*background-color: #eee;
    color: black;*/
}

.qtc p
{
    font-family: "Inconsolata", consolas, monospace;
    color: gainsboro;
}

.qtc span
{
    font-family: "Inconsolata", consolas, monospace;
    color: gainsboro;
}

.qtc .kw
{
    /*color: aqua;*/
    /*color: orange;*/
    /*color: #6262ff;*/
    color: #91aafc;
}

.qtc .fn
{
    color: rgb(255, 210, 45);
}

.qtc .cm
{
    color: #888;
}

.qtc .in
{
    color: greenyellow;
}

.qtc .nm
{
    color: lightskyblue;
}

.qtc .st
{
    color: burlywood;
}

.qtc .ch
{
    color: yellow;
}

.qtc .ty
{
    /*color: aqua;*/
    /*color: orange;*/
    color: #91aafc;
}

.qtc .df
{
    color: rgb(247, 179, 254);
}

.qtc .cl {
    color: rgb(95, 250, 185);
}

.qtc a
{
	text-decoration: none;
    color: gainsboro;
    font-family: "Inconsolata", consolas, monospace;
    text-decoration-color: yellow!important;
}
.qtc a:visited
{
	text-decoration: none;
}
.qtc a:hover
{
	text-decoration: underline;
}
.qtc a:active
{
	text-decoration: underline;
}