@font-face {
    font-family: 'Panchi Mono';
    src: url("media/PanchiMono-Regular.otf");
    font-display: swap;
}

body {
    margin: 0px;
}

.radio-inner {
    z-index: 28;
    display: flex;
    width: 24rem;
    height: 11rem;
    padding: 6px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    transition: all .25s;
    border: 2px white solid;
    border-radius: 1rem;
    background-color: rgba(43, 38, 58, 1);
}

#radio-play {
    height: 2rem;
    width: 2rem;
    margin: .5rem;
    margin-top: 1.5rem;
    margin-left: 1rem;
    z-index: 32;
    border-radius: inherit;
    transition: all .25s;
    cursor: pointer;
}

#radio-mute {
    height: 2rem;
    width: 2rem;
    margin: .5rem;
    margin-left: 1rem;
    cursor: pointer;
}

.radio-logo {
    height: 4rem;
    width: 4rem;
    z-index: 30;
    border-radius: 1rem;
    transition: all .25s;
}

.radio-heading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 20rem;
    height: 4rem;
    color: white;
    font-family: Panchi Mono;
}
.radio-heading {
    font-size: 18px;
    text-align: center;
    color: white;
    text-decoration: none;
    font-weight: 600;
}
.radio-heading-subtitle {
    font-size: 12px;
    text-align: center;
    margin: 0px;
}
.radio-heading-subtitle-link {
    color: white;
}


.radio-metadata-wrapper {
    margin-top: 1rem;
    width: 20rem;
    height: 3rem;
    box-sizing: border-box;
    padding: .5rem 1rem;
    color: white;
    display: flex;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.radio-metadata-text {
    margin: 0px;
}
#radio-artist {
    font-weight: 800;
}

.radio-volume-wrapper {
    width: 20rem;
    height: 3rem;
    box-sizing: border-box;
    padding: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
#radio-volume {
    -webkit-appearance: none;
    appearance: none;
    width: 19rem;
    height: 2px;
    margin: none;
    accent-color: #7eaed2;
    margin: .5rem;
    background: white;
    outline: none;
    -webkit-transition: .2s;
    transition: opacity .2s;
}
#radio-volume::-ms-track {
    width: 100%;
    cursor: pointer;
    background: transparent; 
    border-color: transparent;
    color: transparent;
}
#radio-volume::-moz-range-thumb { /*Mozilla*/
    width: 1rem;
    height: 1rem;
    background: white;
    border: solid 2px #2b263a;
    border-radius: 100%;
    cursor: pointer;
}
#radio-volume::-webkit-slider-thumb { /*Others*/
    -webkit-appearance: none;
    width: 1rem;
    height: 1rem;
    background: white;
    border: solid 2px #2b263a;
    border-radius: 100%;
    cursor: pointer;
}

.radio-small-shadow {
    z-index: 26;
    border-radius: 50%;
    box-shadow: 0px 0px 50px rgba(43, 38, 58, 1);
    height: 4rem;
    width: 4rem;
    position:fixed;
    bottom: 2rem;
    right: 2rem;
    opacity: 100%;
}