:root {
    --off-black: rgb(95, 95, 95);
    --light-gray: rgb(210, 210, 210);
}
@keyframes opacityIn{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
@keyframes searchAnimate {
    25%{
        content: ""
    }
    50%{
        content: "."
    }
    75%{
        content: ".."
    }
    100%{
        content: "..."
    }
}
@keyframes opacityInOut{
    0%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
.waiting-animation:after{
    animation: searchAnimate 1s infinite .3s;
    animation-fill-mode: forwards;
}
*{
    padding: 0;
    margin: 0;
}
body{
    font-family: "Slussen Mono", -apple-system, system-ui, BlinkMacSystemFont, SF Pro, helvetica neue, helvetica, sans-serif;-serif;
    color: var(--off-black);
}
body::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}
a{
    text-decoration: none;
    color: var(--off-black);
}
a:hover{
    opacity: 0.6;
    transition: 0.2s;
}
main{
    padding: 0 20px;
}
.font-white{
    color: rgb(245, 245, 245);
}
.font-off-black{
    color: var(--off-black);
}
.absolute{
    position: absolute;
}
.bottom{
    bottom: 0;
}
.opacity-in{
    animation: opacityIn 1s;
}
.opacity-in-out{
    animation: opacityInOut 2s infinite;
}
.link-row{
    overflow: auto;
}
.link-row a{
    float:left;
    margin: 0 5px;
}
section{
    display:block;
}
.margin-auto{
    margin: auto;
}
.margin-left-auto{
    margin-left:auto;
}
.margin-right-auto{
    margin-right: auto;
}
.margin-right{
    margin-right: 5px;
}
.margin-top{
    margin-top: 15px;
}
.margin-bottom-5{
    margin-bottom: 5px;
}
.margin-bottom-10{
    margin-bottom: 10px;
}
.margin-bottom-15{
    margin-bottom: 15px;
}
.padding-top{
    padding-top: 15px;
}
.padding-top-3{
    padding-top: 3px;
}
.padding-top-5{
    padding-top: 5px;
}
.padding-top-10{
    padding-top: 10px;
}
.padding-left-10{
    padding-left: 10px;
}
.padding-left-15{
    padding-left: 15px;
}
.padding-bottom-10{
    padding-bottom: 10px;
}
.padding-horizontal{
    padding: 0 15px;
}
.padding-vertical{
    padding: 15px 0;
}
.overflow{
    overflow: auto;
    padding-right: 3px;
}
label{
    display: block;
}
input{
    border:0;
    background: none;
    width: 100%;
}
.relative{
    position: relative;
}
textarea{
    border:0;
    background: none;
    width: 100%;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, SF Pro, helvetica neue, helvetica, sans-serif;
}
textarea:focus{
    outline: 0;
}
textarea::placeholder{
    color: rgba(155,155,155, 0.5);
}
input:focus{
    outline: 0;
}
input::placeholder { 
    color: rgba(155,155,155, 0.5);
}
button{
    font-family: "Slussen", -apple-system, system-ui, BlinkMacSystemFont, SF Pro, helvetica neue, helvetica, sans-serif;-serif;
    background:none;
    border: 0;
    cursor: pointer;
}
button:active{
    opacity: 0.6;
    transition: 0.15s;
}
.background-white{
    background:white;
}
popup{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.width-100p{
    width: 100%;
}
.grid{
    display: grid;
    grid-template: 1fr / 1fr;
}
.grid > *{
    grid-column: 1 / 1;
    grid-row: 1 / 1;
}
.flex{
    display:flex;
}
.align-bottom{
    display:flex;
    align-items: flex-end;
}
.center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.center-horizontal{
    display: flex;
    justify-content: center;
}
.center-vertical{
    display: flex;
    align-items: center;
}
.float{
    float: left;
}
.float-left{
    float:left;
}
.float-right{
    float:right;
}
.artwork{
    width: 350px;
    height: 350px;
}
.glass-gradient-border {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-radius: 1.25rem;
    border-style: inset;
    /* border: 2px solid #0000; */
    /* padding:2px; */
    background: linear-gradient(70deg, rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9)) border-box; 
    background-clip: border-area; /* The new added value */
}
.glass-gradient-border:before {}
/* weights */
.x-thin{
    font-weight: 100;
}
.thin{
    font-weight: 200;
}
.light{
    font-weight: 300;
}
.semibold{
    font-weight: 500;
}
.bold{
    font-weight: 600;
}
/*  */
.italic{
    font-style: italic;
}
.underline{
    text-decoration: underline;
    text-underline-offset: 5px;
}
.underline a{
    text-decoration: underline;
    text-underline-offset: 5px;
}
.text-right{
    text-align: right;
}
.text-center{
    text-align: center;
}
#play-pause{
    background: rgb(25, 25, 25);
    font-size: 14px;
    font-weight: 100;
    padding: 5px 10px;
    border-radius: 7px;
    color:white;
}
.centered-container{
    width: 350px;
}
.hr{
    border-bottom: 1px solid var(--light-gray);
}

.size-12{
    font-size: 12px;
}
.size-14{
    font-size: 14px;
}
.size-15{
    font-size: 15px;
}
.size-16{
    font-size: 16px;
}
.size-18{
    font-size: 18px;
}
.size-20{
    font-size: 20px;
}
.size-22{
    font-size: 22px;
}
.size-24{
    font-size: 24px;
}
.size-28{
    font-size: 28px;
}

#play-bar{
    border-bottom: 1px solid var(--light-gray);
}
.streaming{
    font-size: 14px;
}
.streaming p{
    float:left;
}
.streaming a{
    font-size: 16px;
    float: left;
    text-decoration: underline;
    text-underline-offset: 5px;
}
.full-width{
    width: 100%;
}
.block{
    display:block;
}

.link-stack a{
    display: block;
}

.image-30{
    width: 30px;
    height: 30px;
}
.image-40{
    width: 40px;
    height: 40px;
}
.image-50{
    width: 50px;
    height: 50px;
}
.image-r-10{
    width: 10px;
    height: auto;
}
.image-r-20{
    width: 20px;
    height: auto;
}
.image-r-30{
    width: 30px;
    height: auto;
}
.image-r-40{
    width: 40px;
    height: auto;
}
.image-r-50{
    width: 50px;
    height: auto;
}
.image-r-60{
    width: 60px;
    height: auto;
}
.image-r-70{
    width: 70px;
    height: auto;
}
.image-r-80{
    width: 80px;
    height: auto;
}
.image-r-90{
    width: 90px;
    height: auto;
}
.image-r-100{
    width: 100px;
    height: auto;
}
.image-r-125{
    width: 125px;
    height: auto;
}
.image-r-150{
    width: 150px;
    height: auto;
}

.image-r-175{
    width: 175px;
    height: auto;
}
.image-r-200{
    width: 200px;
    height: auto;
}
.image-r-300{
    width: 200px;
    height: auto;
}
.image-r-400{
    width: 400px;
    height: auto;
}
.image-r-500{
    width: 500px;
    height: auto;
}
.image-w-100p{
    width: 100%;
    height: auto;
}
.image-r-h-60{
    height: 60px;
    width: auto;
}
.image-r-h-80{
    height: 80px;
    width: auto;
}

.glass {
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 1.5rem;
        box-shadow: 0 8px 32px rgba(31, 38, 38, 0.2), 
                    inset 0 4px 20px rgba(255, 255, 255, 0.3);
    }

    @property --c1 {
        syntax: "<color>";
        inherits: false;
        initial-value: #dddddd;
    }
    @property --c2 {
        syntax: "<color>";
        inherits: false;
        initial-value: #555555;
    }
    @property --c3 {
        syntax: "<color>";
        inherits: false;
        initial-value: #333333;
    }

    .btn {
        position: absolute;
        /*   z-index: -1; */
        pointer-events: none;
        inset: 0px;

        border-radius: inherit;
        /* padding is the border width */
        padding: 2px;
        background: linear-gradient(
                to bottom right,
                var(--c1) 0%,
                var(--c3) 33%,
                var(--c2) 62%,
                var(--c3) 100%
            );
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        transition: --c1 300ms ease, --c2 300ms ease, --c3 300ms ease;
    }