.botonPoliticas {   
    font-size: 26pt;
}

#app{
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

.cabecera {
    top: 0;
    left: 0;
    align-items: center;
    height: 70px;
    width: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);

}

.nombreGeneral{
    margin-top: 10px;
}

.footer {
    width: 100%;
    height: 70px;
    align-items: center;
    bottom: 0;
    left: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);

}

#player {
    font-size: 30pt;
}

.btn-success {
    font-size: 18pt;
}

.portada {
    width: 250px;
    height: 250px;
    border-radius: 15px;
    overflow: clip;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.portada img {
    max-width: 100%;
    max-height: 100%;
}

.oculto {
    display: none;
}

.spinner {
    font-size: 28pt;
}

.cancion-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.cancion-info p{
    margin-top: -10px;
}

#info-cancion{
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.redes {
    list-style: none;
    padding: 0;
}

.redes li a {
    color: #fff;
    text-decoration: none;
}

.redes li a i{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    background: #fff;
    border-radius: 50%;
    font-size: 14pt;
}

.politicas {
    position: fixed;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 250px;
    border-radius: 25px 25px 0 0;
    bottom: -250px;
    left: 0;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    z-index: 500;
    padding-left: 15px;
    padding-right: 15px;
    transition: 0.5s ease-in-out;
}

.fullpoliticas {
    bottom: 0;
    transition: 0.5s ease-in-out;
}

#politicas.fullpoliticas::after {
    bottom: -250px;
    transition: 0.5s ease-in-out;
}

#politicas.fullpoliticas::before {
    bottom: 0;
    transition: 0.5s ease-in-out;
}