﻿#radio-cover {
    position: relative;
    top: 75px;
    right: 0;
    left: 0;
    margin: 25px auto 95px;
}

#radio-content {
    margin-top: 30px;
}

#radio-controls {
    background-color: #fff;
    border-radius: 12px;
    padding: 12px 10px;
    border: 1px solid #d8d8d8;
    margin-top: -100px;
}

#radio-index {
    display: none;
}

#radio-name {
    color: #54576f;
    font-size: 15px;
    font-weight: bold;
}

.dropdown-container {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 1fr 30px;
    gap: 8px;
    padding: 0px 20px;
}


.dropdown-button {
    text-align: right;
}

#menu-icon {
    cursor: pointer;
    transform: scale(1.1);
}

#radio-location {
    color: gray;
    font-size: 12px;
    margin: 0px;
    display: none;
}

#radio-station {
    color: gray;
    font-size: 12px;
    font-weight: bold;
    display: none;
}

@keyframes quiet {
    25% {
        transform: scaleY(.6);
    }

    50% {
        transform: scaleY(.4);
    }

    75% {
        transform: scaleY(.8);
    }
}

@keyframes normal {
    25% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(.4);
    }

    75% {
        transform: scaleY(.6);
    }
}

@keyframes loud {
    25% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(.4);
    }

    75% {
        transform: scaleY(1.2);
    }
}

.equalizer-box-container {
    display: flex;
    justify-content: space-around;
    margin: 18px 20px 18px 20px;
}

.equalizer-box {
    transform: scaleY(.4);
    width: 2px;
    background: #7e1631;
    animation-duration: 1.2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    border-radius: 8px;
    height: 25px;
}

.box1, .box3, .box5, .box6, .box8, .box10, .box11, .box13, .box15, .box16, .box18, .box20, .box21, .box23, .box25, .box26,
.box28, .box30, .box31, .box33, .box35, .box36, .box38, .box40, .box41, .box43, .box45, .box46, .box48, .box50 {
    animation-name: quiet;
}

.box4, .box9, .box14, .box19, .box24, .box29, .box34, .box39, .box44, .box49 {
    animation-name: normal;
}

.box2, .box7, .box12, .box17, .box22, .box27, .box32, .box37, .box42, .box47 {
    animation-name: loud;
}

#button-control {
    margin: -10px auto 0 auto;
}

.control {
    width: 33.333%;
    float: left;
    padding: 12px 0;
}

.button i {
    display: block;
    color: #7e1631;
    font-size: 25px;
    text-align: center;
    cursor: pointer;
}

#radio-list {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: auto;
    max-height: 450px;
}

.mp3 {
    display: grid;
    grid-template-columns: 45px 1fr 15px;
    padding: 10px 10px;
    cursor: pointer;
    gap: 10px;
    align-items: center;
}

.mp3:hover {
    background-color: #eee;
}

.mp3:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.left {
    display: inline-block;
}

.radio {
    display: block;
}

.city {
    color: gray;
    display: block;
}

.station {
    color: gray;
    display: block;
    font-weight: bold;
}

.audiofeed {
    color: gray;
    display: none !important;
}

.custom-playpause {
    color: #7e1631;
}

.radio-logo-container {
    border: 1px solid #ddd;
    border-radius: 4px;
}

.radio-logo-container img {
    width: 100%;
    border-radius: 4px;
}