.radio-container{
    position: absolute;
    z-index: 150000;
    left: 25%;

    height: 70%;
    width: 40%;
    background-image: linear-gradient(to right, transparent 20%, rgba(0, 0, 0, 0.854) 15%);
    border-radius: 20px;
    padding: 15px;
    border-bottom: solid 2px aqua;
    border-top: solid 2px aqua;
    border-right: solid 2px aqua;

    overflow: hidden;
    display: none;
    opacity: 0;
    top: 0;
}
.radio-play-container{
    position: absolute;
    top: 10%;
    left: 25%;

    width: 70%;
    height: 60%;
}
.radio-song-container{
    position: absolute;
    top: 0%;
    width: 70%;
    height: 80%;
    left: 15%;
    border-radius: 20% 10% 10% 10%;
    overflow: hidden;
    border-right: solid 2px white;
}
.radio-song-img{
    position: absolute;
    width: 100%;
    height: 100%;
    
}

.radio-options{
    position: absolute;
    width: 60%;
    left: 20%;
    bottom: 0;
    border: solid 2px rgba(0, 255, 255, 0.337);
    border-radius: 15px;
    border-bottom: none;
    border-top: none;
    font-size: 5vh;
    color: white;
    font-family: 'Passero One', cursive;
    display: flex;
}
.radio-option:hover{
    cursor: url(imgs/cursorButton.png) 20 20, auto;
    animation: uiPop 0.05s linear forwards;
}
.radio-skip{
    color: aqua;
    padding-left: 20px;
    padding-right: 20px;
}
.radio-select-container{
    position: absolute;
    width: 18%;
    height: 95%;
    overflow: hidden;
    overflow-y: auto;
    background-color: rgba(124, 124, 124, 0.931);
    left: 0;
    border-radius: 20px;
}
.radio-select-container::-webkit-scrollbar-thumb{
    background-color: aqua;
}
.radio-select{
    width: 100%;
    height: 24%;
    transform: scale(0.8);
    transform-origin: center;
    border-radius: 10px;
}
.radio-select:hover{
    cursor: url(imgs/cursorButton.png) 20 20, auto;
    animation: radioPop 0.1s linear forwards;
}
@keyframes radioPop{
    100%{transform: scale(0.9);}
}
.radio-text{
    font-size: 2.5vh;
    font-family: 'Passero One', cursive;
    color: black;
    width: 100%;
    text-align: center;
    margin-bottom: 15%;
}
.radio-chill{
    box-shadow: 0px 0px 15px aqua;
}
.radio-country{
    box-shadow: 0px 0px 15px rgb(0, 255, 0);
}
.radio-pop{
    box-shadow: 0px 0px 15px rgb(255, 0, 255)
}
.radio-instrumental{
    box-shadow: 0px 0px 20px gold;
}
.radio-volume{
    position: absolute;
    left: 25%;
    bottom: 10%;
    width: 50%;
    height: 3%;
    border: solid 1px lightskyblue;
    border-left: none;
    border-radius: 5px;
    background-image: linear-gradient(to right, white 10%, transparent 10%);
    user-select: none;
}
.radio-volume::after{
    content: "Adjust Volume";
    position: absolute;
    width: 100%;
    top: 150%;
    text-align: center;
    font-size: 2.5vh;
    font-family: 'Passero One', cursive;
    color: white;
}
.radio-volume:hover{
    animation: uiPop 0.1s linear forwards;
    cursor: url(imgs/cursorButton.png) 20 20, auto;
}
.radio-exit{
    position: absolute;
    bottom: 5%;
    right: 4%;
    font-size: 5vh;
    color: aqua;
    font-family: 'Passero One', cursive;
    transform-origin: center;
    padding: 10px;
    border-radius: 10px;
}
.radio-exit:hover{
    animation: uiPop 0.1s linear forwards;
    cursor: url(imgs/cursorButton.png) 20 20, auto;
    background-color: aqua;
    color: black;
}