@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700');

body {
	background-color: transparent;
	color: #fff;
	font-family: "Roboto Condensed", sans-serif;
	padding: 0;
	margin: 0 auto;
	max-width: 1920px;
	min-width: 300px;
}

.boxsongtitle {
   padding: 10px;
}

.boxradiotitle {
   padding: 0 0 10px 0;
}

@keyframes up-right {
    0% {
        transform: scale(1);
        opacity: .25;
    }
    50% {
        transform: scale (1, 5);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: .25;
    }
}

.circle {
    border-radius: 50%;
    width: 15px;
    height: 15px;
    opacity: .25;
}

.red {
    background-color: red;
    text-align: center;
    position: relative;
    margin: 0 auto;
    -webkit-animation: up-right 1s infinite;
    -moz-animation: up-right 1s infinite;
    -o-animation: up-right 1s infinite;
    animation: up-right 1s infinite;
}

.shadow {
  box-shadow: 10px 10px 10px 10px #ffffff;
}

.textshadow {
    color: #fff;
    text-shadow: 1px 1px 1px #3D3D3D;
}

.parent {
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    position: absolute;
    left: 0;
    right: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    margin: 0 auto;
}

.child {
    -webkit-filter: blur(0px);
    position: absolute;
    left: 0;
    right: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    margin: 0 auto;
}

.boxcenter {
    padding: 20px;
    min-width: 320px;
    text-align: center;
    z-index: 2;
    margin: 0 auto;
    position: relative;
}

.features-wpr-cuadro {
    max-width: 110px;
    box-sizing: border-box;
    text-align: center;
    padding: 5px 5px 15px 5px;
    display: inline-block;
    font-size: 16px;
    z-index: 3;
    position: relative;
}

.features-icon {
    width: 35px;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

.icon-signal:before {
    content: "\f012";
}

.icon-listeners:before {
    content: "\f0c0";
}

.icon-fast:before {
    content: "\f0e4";
}

a:link {
    color: #fff;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: #fff;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: #fff;
    background-color: transparent;
    text-decoration: underline;
}

a:active {
    color: #fff;
    background-color: transparent;
    text-decoration: underline;
}

/* =============================== NUEVO CÓDIGO PARA EL BOTÓN PLAY/STOP =============================== */

/* Botón Play/Stop */
.play-stop-button {
    width: 80px; /* Tamaño fijo */
    height: 80px; /* Tamaño fijo */
    background-color: transparent;
    border-radius: 50%; /* Botón redondeado */
    border: 2px solid #fff; /* Borde blanco */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Sombra suave */
}

.play-stop-button images {
    width: 18px; /* Tamaño fijo de la imagen */
    height: 18px; /* Tamaño fijo de la imagen */
    object-fit: contain; /* Asegura que la imagen se ajuste dentro del contenedor */
}

.play-stop-button:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Fondo suave cuando el cursor pasa por encima */
    transform: scale(1.1); /* Hace un pequeño zoom cuando pasa el mouse */
}
