/* Resetando margens e padding do body */
body {
    margin: 0;
    padding: 0;
}

/* Estilos do UC Player */
.ucplayer {
    background: #fff;
    position: relative;
    height: 90px;
    overflow: hidden;
    display: table;
    width: 100%;
    max-width: 4000px;
}

.ucplayer1 {
    display: table-cell;
    width: 33%;
    position: relative;
}

.ucplayer2 {
    display: table-cell;
    width: 33%;
}

.ucplayer3 {
    display: table-cell;
    width: 33%;
    text-align: right;
}

/* Estilos do corpo da música */
.musica-body {
    background: #fff;
    position: relative;
    max-height: 90px;
    overflow: hidden;
}

/* Estilos dos controles */
.box-controls {
    position: relative;
    width: 147px;
    margin: 4px auto;
}

.musica-play {
    margin: auto;
    text-align: center;
    width: 60px;
    height: 60px;
    color: #000;
    padding: 10px;
    border-radius: 100%;
}

.musica-play i {
    margin: 8px 15px;
    display: block;
    font-size: 2.7em;
    color: #fff;
}

/* Animação do botão de play */
.musica-play:after {
    width: 140px;
    height: 140px;
    border: 1px solid #999;
    content: '';
    top: -30px;
    left: 3px;
    border-radius: 100px;
    position: absolute;
}

/* Animação das ondas */
.musica-play.animar:after,
.musica-play.animar:before,
.ondas.animar,
.ondas2.animar,
.ondas2.animar:after,
.ondas2.animar:before {
    -webkit-animation-name: animar;
    -webkit-animation-duration: 4s;
    animation-name: animar;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

@keyframes animar {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    50% { transform: scale(1.5); }
    75% { transform: scale(1.8); opacity: .5; }
    100% { transform: scale(2); opacity: .1; }
}

/* Estilos dos controles de volume */
.musica-vol1 {
    position: absolute;
    top: 50%;
    margin-top: -18px;
    background: #000;
    padding: 10px;
    border-radius: 100%;
    width: 15px;
    height: 15px;
    color: #fff;
    text-align: center;
}

.musica-pause {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -18px;
    background: #000;
    padding: 10px;
    border-radius: 100%;
    width: 15px;
    height: 15px;
    color: #fff;
    text-align: center;
}

.musica-vol1:hover body > .musica-vol2 {
    display: block;
}

.musica-vol2 {
    position: absolute;
    display: none;
    bottom: 0;
    left: 0;
}

/* Estilos do slider */
.slider-handle {
    border-radius: 100%;
}

.slider {
    width: 140px !important;
}

.slider-track {
    border: 1px solid #ccc;
}

/* Estilo do tooltip */
#GC > .tooltip {
    position: absolute;
    bottom: 20px;
    z-index: 10;
    color: #8716b8;
}

.slider-selection {
    background: #8716b8;
}

/* Estilos para redes sociais */
.shareds {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.shareds ul {
    padding: 10px;
    margin: 10px 0;
    text-align: center;
    display: table-cell;
    height: 50px;
    overflow: hidden;
}

.shareds li {
    width: 50px;
    border-radius: 100%;
    position: relative;
    display: inline-block;
    padding: 10px;
    height: 50px;
}

.shareds li:hover {
    border-radius: 100%;
    -webkit-filter: blur(2px);
    filter: blur(3px) brightness(200%);
}

.shareds li a {
    color: #fff;
    bottom: 0;
    position: relative;
    display: inline-block;
    padding: 9px 0;
}

.shareds li i {
    width: 50px;
}

/* Estilos específicos para as redes sociais */
.instagram {
    background: #8716b8;
    background-image: linear-gradient(to bottom, #b81639, #8716b8);
}

.twitter {
    background: #3193cc;
}

.whatsapp {
    background: #009652;
}

.facebook {
    background: #004196;
}

/* Estilos da capa da rádio */
.capa-radio {
    border: 1px solid #ddd;
    display: block;
    height: 80px;
    width: 100px;
    float: left;
    background-size: cover !important;
    margin: 4px 10px;
    border-radius: 4px;
}

/* Estilo da música atual */
.musica-musica-atual {
    background: #000;
    color: #fff;
    font-size: 16px;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    padding: 5px 15px;
    max-width: 600px;
    border-radius: 10px;
    width: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.musica-musica-atual label {
    font-weight: 700;
    overflow: hidden;
    float: left;
    display: inline-block;
}

.musica-musica-atual span {
    font-weight: 700;
    overflow: hidden;
    float: left;
    margin-left: 10px;
    max-width: 350px;
    display: inline-block;
}

/* Estilos da capa da música */
.cover {
    position: absolute;
    width: 140px;
    top: 0;
    z-index: 1;
    right: 310px;
    height: 90px;
    background-size: contain !important;
    background-repeat: no-repeat !important;
}

/* Estilos para a responsividade */
@media (max-width:1260px) {
    .twitter {
        display: none !important;
    }
    .shareds li {
        position: relative;
        display: inline-block;
        padding: 10px;
        height: 70px;
        transform: skew(-15deg);
    }
    .shareds li a {
        color: #fff;
        bottom: 0;
        position: relative;
        display: inline-block;
        padding: 10px 0;
        transform: skew(15deg);
    }
    .cover-musica {
        right: 220px;
        width: 90px;
        background-size: cover !important;
    }
}

@media (max-width:960px) {
    .twitter {
        display: none !important;
    }
    .shareds li {
        position: relative;
        display: inline-block;
        padding: 10px;
        height: 70px;
        transform: skew(-15deg);
    }
    .shareds li a {
        color: #fff;
        bottom: 0;
        position: relative;
        display: inline-block;
        padding: 10px 0;
        transform: skew(15deg);
    }
    .cover-musica {
        right: 220px;
        width: 90px;
        background-size: cover !important;
    }
    .musica-musica-atual {
        max-width: 500px;
        overflow: hidden;
    }
    .musica-musica-atual span {
        font-weight: 700;
        overflow: hidden;
        margin-left: 10px;
    }
}

@media (max-width:768px) {
    .twitter {
        display: none !important;
    }
    .shareds li {
        position: relative;
        display: inline-block;
        padding: 10px;
        height: 70px;
        transform: skew(-15deg);
    }
    .shareds li a {
        color: #fff;
        bottom: 0;
        position: relative;
        display: inline-block;
        padding: 10px 0;
        transform: skew(15deg);
    }
    .cover-musica {
        right: 150px;
        width: 90px;
        background-size: cover !important;
    }
    .capa-radio {
        width: 80px;
    }
    .twitter {
        display: none !important;
    }
    .instagram {
        display: none !important;
    }
}

@media (max-width:548px) {
    .cover-musica {
        display: none;
    }
    .musica-musica-atual {
        display: none;
    }
    .capa-radio {
        width: 60px;
    }
}

@media (max-width:430px) {
    .cover-musica {
        display: none;
    }
    .musica-musica-atual {
        display: none;
    }
    .capa-radio {
        width: 60px;
    }
}


@media (max-width:480px) {
    .cover-musica {
        display: none;
    }
    .musica-musica-atual {
        display: none;
    }
    .capa-radio {
        width: 60px;
    }
}

@media (max-width:400px) {
    .cover-musica {
        display: none;
    }
    .musica-musica-atual {
        display: none;
    }
    .capa-radio {
        width: 60px;
    }
}