::selection {
    background: transparent;
}
.player {
    background-color: rgb(83, 83, 83);
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
}
.player .stationimg{
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 20px;

}

.station_bg_image {
    filter: blur(8px);
    -webkit-filter: blur(8px);
    background-repeat: no-repeat;
    background-size: cover;
}

.icons {
    cursor: pointer;
    display: flex;
}

.play_pause_icon {
    font-size: 50px;
    color: aquamarine;
}

#vol-icon {
    font-size: 50px;
    color: rgb(1, 75, 50);
    margin-right: 10px;
}

.player_container {
    background: linear-gradient(rgba(4, 169, 236, 0.8), rgb(241, 242, 243));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid grey;
    border-radius: 10px;

}

.vol {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: aquamarine;
    width: 80%;
    border-radius: 10px;
    margin: 10px;
    padding: 5px 0;
}

.station_detail {
    width: 100%;
    display: flex;
    text-align: center;
    flex-direction: column;
}

.volumetext {
    margin: 0 20px;
    font-weight: 700;
    margin-left: 10px;
}

.stationSlogan {
    margin: 0 0 5px 0;
    font-weight: 700;
}

.stationDescription {
    font-weight: 400;
}

.searchcontrol {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body {
    background-color: rgba(76, 67, 158, 0.116) !important;
}

.navbar-custom {
    background-color: #6f42c1;
}

.navbar-custom .navbar-brand {
    color: azure;
    font-weight: 700;
}

.container {
    margin-top: 50px;

}

/* footer */
.footer {
    text-align: center;
    background: #c1c4c5;
    padding-top: 5px;
    padding-bottom: 10px;
}

.footer a {
    color: #005f79;
    font: 16px/1.2 Arial, Helvetica Neue, Helvetica, sans-serif;
}

.footer a:link {
    text-decoration: none;
}

.footer a:visited {
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer a:active {
    text-decoration: none;
}

.footer p {
    margin: 1px;
}

/* radio section */
.radio-section {
    border-left: 1px solid grey;
    border-right: 1px solid grey;
}
.radio-section h1{
    text-align: center;
    margin: 1rem 0;
}

.card {
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    padding: 0;
}
.card-title{
    font-size: 20px;
    font-weight: bold;
}
.card-text{
    font-size: 15px;
    font-weight: 400;
}

.card img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    margin-top: 0.4rem;
}

.card-img-top {
    border-bottom: 1px solid grey;
}
.station-items{
    display: flex;
    justify-content: center;
}
.onstatus{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin-left: 20px;
}
.material-symbols-outlined{
    color: aquamarine;
    font-size: 100px;
    cursor: pointer;
}
.right-col{
   margin-top: 1.4rem;
}

.right-item{
    display: grid;
   grid-template-columns: 3.6rem auto;
   gap:1rem;
    justify-content: left;
    border-radius: 5;
    transition: all 0.9s ease;
    margin-bottom: 1rem;
}
.right-col .right-item:hover {
    box-shadow: 5px 8px rgba(219, 218, 218, 0.63);
}
.right-col .right-item .moreinfo{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.right-item img{
    height: 50px;
    width: 50px;
    border-radius: 50%;
}
.moreinfo h3{
    font-size: 18px;
    margin-top: 0.8rem;
}
.moreinfo h4{
    font-size: 16px;
}
.moreinfo{
    text-align: left;
}
.moreinfo p{
    font-size: 12px;
}
.most-played{
    background-color: white;
    border-radius: 10px;
    padding: 0.4rem;
    box-shadow: 5px 8px rgba(219, 218, 218, 0.63);
    transition: all 0.5s ease;
    margin-top: 0.8rem;
}
.most-played:hover{
    box-shadow: none;
}
.site-description{
    margin: 20px;
    border-top: 1px solid grey;
    border-radius: 0 0 10px 10px;
    text-align: center;
}
.site-description h2{
    margin:2rem  0;
    
}