#popupRadio {
    z-index: -1;
    /*position: fixed;*/
    width: 100%;
    max-width: 1360px;
    bottom: -10px;
    /*opacity: 0;*/
    transition: all 0.3s;
    padding: 33px 60px 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.ton-popupRadio {
    display: flex;
    max-height: 80px;
    padding: 20px;
    background: var(--defaultBlue);
    border-radius: 15px;
    backdrop-filter: blur(25px);
    max-width: 1360px;
    align-items: center;
    margin: auto;
}

.ton-popupRadio>.controls {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
}

.ton-popupRadio>.controls .play {
    filter: brightness(3.5);
    width: 46px;
    height: 46px;
    transition: 0.1s linear;
    cursor: pointer;
}

.ton-popupRadio>.controls .pause {
    width: 36px;
    height: 36px;
    margin-right: auto;
    cursor: pointer;
    filter: brightness(0) invert(1);
}

.ton-popupRadio>img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 15px 0 25px;
}


.ton-popupRadio>.info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 20px;
    margin-top: 7px;
}

.radio-wave {
    position: absolute;
    right: 20px;
    margin-top: 14px
}

.radio-wave img{
    height: 235px;
}

.ton-popupRadio>.info>h3 {
    font-size: 16px;
    line-height: 14px;
    color: white;
    font-family: "NunitoSans-SemiBold";
    text-transform: uppercase;
}

.ton-popupRadio>.info>h2 {
    font-size: 22px;
    line-height: 27px;
    color: var(--branco);
    font-family: "NunitoSans-SemiBold";
}

.ton-popupRadio>.vol {
    margin-left: auto;
    margin-right: 2%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ton-popupRadio input[type="range"] {
    -webkit-appearance: none;
    margin: 15px 0;
    width: 100%;
    filter: brightness(0) invert(1);
}


@media (max-width:600px){
    #popupRadio {
        padding: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .radio-wave img {
        height: 105px;
    }

    .radio-wave {
       margin-top: 10px;
    }
    
    #radio-wrapper {
        justify-content: center;
    }
}